blob_id
stringlengths 40
40
| directory_id
stringlengths 40
40
| path
stringlengths 2
247
| content_id
stringlengths 40
40
| detected_licenses
listlengths 0
57
| license_type
stringclasses 2
values | repo_name
stringlengths 4
111
| snapshot_id
stringlengths 40
40
| revision_id
stringlengths 40
40
| branch_name
stringlengths 4
58
| visit_date
timestamp[ns]date 2015-07-25 18:16:41
2023-09-06 10:45:08
| revision_date
timestamp[ns]date 1970-01-14 14:03:36
2023-09-06 06:22:19
| committer_date
timestamp[ns]date 1970-01-14 14:03:36
2023-09-06 06:22:19
| github_id
int64 3.89k
689M
⌀ | star_events_count
int64 0
209k
| fork_events_count
int64 0
110k
| gha_license_id
stringclasses 25
values | gha_event_created_at
timestamp[ns]date 2012-06-07 00:51:45
2023-09-14 21:58:52
⌀ | gha_created_at
timestamp[ns]date 2008-03-27 23:40:48
2023-08-24 19:49:39
⌀ | gha_language
stringclasses 159
values | src_encoding
stringclasses 34
values | language
stringclasses 1
value | is_vendor
bool 1
class | is_generated
bool 2
classes | length_bytes
int64 7
10.5M
| extension
stringclasses 111
values | filename
stringlengths 1
195
| text
stringlengths 7
10.5M
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
144c11fcd3417d194e432e38a81d2a1d1f0d4c17
|
ecb3b06a34e6359facf4931bc28af95d0a217125
|
/VREP/Objects/Robot.cpp
|
6cc4d9e3cbcd7324abc721abd1bc43de6ab25f1c
|
[] |
no_license
|
Ernyoke/VREP_Pathfinding
|
b48046dce79fdc6e1aeab7f3b690648e0f179a2a
|
53d0c5f4e90ad718afe85b8b78bfe9892bc3fb20
|
refs/heads/master
| 2021-01-16T21:52:07.338929
| 2016-06-19T19:51:07
| 2016-06-19T19:51:07
| 57,463,738
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 223
|
cpp
|
Robot.cpp
|
#include "Robot.h"
RobotBuilder::RobotBuilder(simxInt clientId, simxInt handle) : ObjectBuilder{clientId, handle} {
}
Robot::Robot(const RobotBuilder &robotBuilder)
: Object(robotBuilder) {
}
Robot::~Robot() {
}
|
75b9d2ac1f9807b93700c20defe76d70fb5eb154
|
5ab7032615235c10c68d738fa57aabd5bc46ea59
|
/prod_digits.cpp
|
28904bbd670fd644c44957828d7a61e398db28fb
|
[] |
no_license
|
g-akash/spoj_codes
|
12866cd8da795febb672b74a565e41932abf6871
|
a2bf08ecd8a20f896537b6fbf96a2542b8ecf5c0
|
refs/heads/master
| 2021-09-07T21:07:17.267517
| 2018-03-01T05:41:12
| 2018-03-01T05:41:12
| 66,132,917
| 2
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 485
|
cpp
|
prod_digits.cpp
|
#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
int main()
{
int t;
cin>>t;
for(int i=0;i<t;i++)
{
vector<int> vec;
vec.resize(10);
int var,n;
cin>>var;
n=var;
for(int j=9;j>1;j--)
{
while(var%j==0&&var>0){var/=j;vec[j]++;}
}
if(var>1){cout<<-1<<endl;}
else if(n==0){cout<<10<<endl;}
else if(n==1){cout<<1<<endl;}
else
{
for(int j=2;j<=9;j++)
{
for(int k=0;k<vec[j];k++)cout<<j;
}
cout<<endl;
}
}
}
|
7da207bd0511458a7427daa1b2f0e28ac236c0a1
|
6071f37accb35963bcc6cf7ea7a6a43cc2aabc09
|
/Div3/#515/BSolucion1.cpp
|
a2797f422c045383c3bb82db1d23424e70a3e93d
|
[] |
no_license
|
danyvera/Codeforces
|
49ca260365ac48586362bffab36802897fc24f5b
|
530c891a40f9eb1f92536ecd97aef8d48d30d1d5
|
refs/heads/master
| 2023-03-02T00:43:58.776872
| 2021-02-03T18:46:49
| 2021-02-03T18:46:49
| 287,805,659
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,529
|
cpp
|
BSolucion1.cpp
|
#include<bits/stdc++.h>
using namespace std;
int main(){
int n, r;
cin >> n >> r;
vector<int> a(n);
vector<int> heaters;
for(int i=1; i<=n; i++){
cin >> a[i];
if(a[i] == 1){
heaters.push_back(i);
}
}
bool flag=false, possible=true; //flag indica si todos los espacios son calentados
int auxStart, auxEnd, begin=1, HeatersNeeded=0;
for(int i=0; i<heaters.size(); i++){
auxStart = heaters[i] - r +1; //inicio de mi rango temporal
auxEnd = heaters[i] + r - 1; //fin de mi rango temporal
if(auxStart <= begin){ //if el inicio de mi rango temporal <= minimo requerido y el más hacia la derecha
flag = true;
}else{
if(i!=0){
i--;
begin = heaters[i] + r; // no ponemos -1 porque el siguiente inicio podria ser el espacio siguiente al que acabamos de pasar
flag = false; //si no podemos encontrar un espacio que su inicio sea <= o <=+1 entonces hay un espacio frío
HeatersNeeded++;
}
}
if(flag==true && auxEnd >=n){ //para no irnos al más hacia la derecha si cubre el último espacio
HeatersNeeded++;
break;
}
if(i==heaters.size()-1 && auxEnd < n) {
possible = false;
}
if(flag==false && auxStart>begin){ //este es el caso en el que hay al menos un espacio frío
possible = false;
break;
}
}
if(heaters.size() == 0 || HeatersNeeded==0) {
possible = false; //si no hay suficientes calentadores o no se cubren todos los espacios
}
if(possible==false){
cout << "-1" << endl;
}
else {
cout << HeatersNeeded << endl;
}
return 0;
}
|
0febd45fe9b4f0f561fea3c5c46f399297023af3
|
df9667d23b88f69d3a29d2f8320c4cc61921e0ce
|
/proj/plantsvszombies/Buckethead.cpp
|
70552d5c37a55b02d9379c0643274c9712e9f288
|
[] |
no_license
|
ckko3/csci2120-spring16
|
7608e5a0af1a5b2ba9a8cc0c60ac8d4a7809c4f0
|
9036fb12ec6fdfe9fbf3c2ab1ec87b94341c585e
|
refs/heads/master
| 2016-09-14T01:32:36.814601
| 2016-05-18T10:21:28
| 2016-05-18T10:21:28
| 58,912,006
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 168
|
cpp
|
Buckethead.cpp
|
#include <iostream>
#include <string>
#include "Buckethead.h"
using namespace std;
// constructor
Buckethead::Buckethead() : Zombie("Buckethead", "BH", 3, 9, 1, 3) {
}
|
0283a4a233f3dccb989b1bbb7fa2836302144bdb
|
deed634ee4fb8e3c5817daccc81f17b908ab6d88
|
/CURSO DE C C++/programacao_estruturada/Programacao_estruturada/registro3questao.cpp
|
4eee17f87552a7d338263418b8b333a9c78d1f1e
|
[] |
no_license
|
igor-dantas/Universidade
|
1fa79db43fe490bbfc0a879d0e03730961c5a165
|
0c33fc1a1038059b81a8ffb467f8074aa66281aa
|
refs/heads/main
| 2023-04-18T03:35:22.261454
| 2021-04-30T21:47:18
| 2021-04-30T21:47:18
| 355,310,532
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,340
|
cpp
|
registro3questao.cpp
|
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#define TAM 10
struct Estoque
{
char nome_produto[30];
char setor[30];
int qtd_produtos;
float preco_prod;
};
struct estoque estoque[TAM];
int cadastro(struct estoque estoque[TAM])
{
for(int i = 0; i<=TAM; i++)
{
printf("Qual o nome do produto?\n:");
setbuf(stdin, NULL);
fgets(estoque[i].nome_produto, 30, stdin);
printf("\n");
printf("Qual o setor do produto?\n:");
setbuf(stdin, NULL);
fgets(estoque[i].setor, 30, stdin);
printf("\n");
printf("Qual a quantidade desse produto?\n:");
setbuf(stdin, NULL);
scanf("%i", &estoque[i].qtd_produtos);
printf("\n");
printf("Qual o preco do produto?\nR$");
setbuf(stdin, NULL);
scanf("%f", &estoque[i].preco_prod);
}
}
int setor(struct estoque estoque[TAM])
{
char consulta[30];
int cont;
printf("Qual o setor de consulta?\n");
setbuf(stdin, NULL);
fgets(consulta, 30, stdin);
for(int i = 0; i<=TAM; i++)
{
if(strcmp(consulta, estoque[i].setor)==0)
{
cont++;
}
}
printf("\n");
printf("Neste setor tem: %i produtos", cont);
}
int main()
{
int op, retorno;
do
{
inicio:
printf(">>>>>>>>>>MENU<<<<<<<<<<");
printf("\n1-cadastro de produtos.");
printf("\n2-consulta de produtos por setor");
printf("\n3-consulta de capital investido no setor");
printf("\n4-sair do programa");
printf("\n\n");
printf("Qual a opcao desejada?\n:");
scanf("%i", &op);
switch (op)
{
case 1:
system("cls");
cadastro();
printf("\nVoce deseja voltar para o menu inicial?");
printf("1-sim 2-não");
scanf("%i", &retorno);
if(retorno == 1)
{
system("cls");
goto inicio;
}
else
{
system("cls");
printf("OBRIGADO!");
op = 4;
}
break;
case 2:
system("cls");
setor();
break;
default:
break;
}
} while (op != 4);
}
|
af75a414803442643a449a13f0a327a9ac9f28ac
|
d325ae621bf0e8b61afa620f5437ba0fbe338de4
|
/elenasrc3/engine/rtmanager.cpp
|
8ecb6564ebacf1b1974f5aa53160703f4992c550
|
[
"MIT"
] |
permissive
|
ELENA-LANG/elena-lang
|
4a39aae6e3f91c36c794633cd17fad50a3ac4f17
|
5826a561f5e3356bc4f411a9a89e6c172f7e2707
|
refs/heads/master
| 2023-08-31T04:12:01.212527
| 2023-08-19T19:00:39
| 2023-08-19T19:00:39
| 13,586,508
| 245
| 36
|
MIT
| 2023-08-19T19:00:40
| 2013-10-15T10:02:54
|
C++
|
UTF-8
|
C++
| false
| false
| 8,458
|
cpp
|
rtmanager.cpp
|
//---------------------------------------------------------------------------
// This header contains the implementation of the class
// ELENA RT manager.
// (C)2023, by Aleksey Rakov
//---------------------------------------------------------------------------
#include "rtmanager.h"
#include "core.h"
#include "streams.h"
using namespace elena_lang;
#if _M_IX86 || __i386__
constexpr int elVMTClassOffset = elVMTClassOffset32;
#else
constexpr int elVMTClassOffset = elVMTClassOffset64;
#endif
// --- RTManager ---
RTManager :: RTManager(MemoryBase* msection, MemoryBase* dbgsection)
: msection(msection), dbgsection(dbgsection)
{
}
void RTManager :: loadRootPackage(LibraryProviderBase& provider, path_t rootPath)
{
MemoryReader reader(dbgsection);
// skip a debugger entry pointer
addr_t tempAddr = 0;
reader.read(&tempAddr, sizeof(tempAddr));
ustr_t ns = reader.getString(DEFAULT_STR);
provider.addPackage(ns, rootPath);
}
bool RTManager :: readAddressInfo(addr_t retAddress, LibraryLoaderBase& provider, ustr_t& symbol, ustr_t& method, ustr_t& path, int& row)
{
MemoryReader reader(dbgsection);
// skip a debugger entry pointer
addr_t tempAddr = 0;
reader.read(&tempAddr, sizeof(tempAddr));
ustr_t ns = reader.getString(DEFAULT_STR);
// search through debug section until the ret point is inside two consecutive steps within the same object
int index = 0;
bool found = false;
while (!reader.eof() && !found) {
// read reference
ustr_t current_symbol = reader.getString(DEFAULT_STR);
// define the next record position
pos_t size = reader.getPos() - 4;
index = 0;
addr_t previous = 0;
addr_t current = 0;
while (size != 0) {
if(!reader.read(¤t, sizeof(current)))
break;
if (retAddress == current || (previous != 0 && previous < retAddress && current >= retAddress)) {
found = true;
symbol = current_symbol;
break;
}
previous = current;
index++;
size -= (size < sizeof(current)) ? size : sizeof(current);
}
}
if (found) {
bool isClass = true;
// if symbol
if (symbol[0] == '#') {
symbol += 1;
isClass = false;
}
auto moduleInfo = provider.getDebugModule({ symbol }, true);
if (moduleInfo.module != nullptr) {
// load the object debug section
MemoryReader lineReader(moduleInfo.module->mapSection(DEBUG_LINEINFO_ID | mskDataRef, true), moduleInfo.reference);
MemoryReader stringReader(moduleInfo.module->mapSection(DEBUG_STRINGS_ID | mskDataRef, true));
// skip vmt address for a class
reader.read(&tempAddr, sizeof(tempAddr));
// look through the records to find the entry
DebugLineInfo info;
bool found = false;
while (!lineReader.eof() && !found) {
lineReader.read(&info, sizeof(DebugLineInfo));
switch (info.symbol) {
case DebugSymbol::Procedure:
stringReader.seek(info.addresses.source.nameRef);
path = stringReader.getString(DEFAULT_STR);
method = nullptr;
break;
case DebugSymbol::MessageInfo:
stringReader.seek(info.addresses.source.nameRef);
method = stringReader.getString(DEFAULT_STR);
break;
case DebugSymbol::Class: // NOTE : to take into account vmt address
case DebugSymbol::Breakpoint:
case DebugSymbol::VirtualBreakpoint:
index--;
if (index == 0) {
found = true;
}
break;
default:
break;
}
if (info.row > 0)
row = info.row;
}
}
else {
path = nullptr;
method = nullptr;
}
}
return found;
}
inline void copy(char* buffer, ustr_t word, size_t& copied, size_t maxLength)
{
size_t length = getlength(word);
if (maxLength - copied < length)
length = maxLength - copied;
if (length > 0)
StrConvertor::copy(buffer + copied, word, length, length);
copied += length;
}
inline void copy(char* buffer, int value, size_t& copied)
{
String<char, 10> tmp;
tmp.appendInt(value);
size_t length = tmp.length();
StrConvertor::copy(buffer + copied, tmp.str(), length, length);
copied += length;
}
size_t RTManager :: retriveAddressInfo(LibraryLoaderBase& provider, addr_t retAddress, char* buffer, size_t maxLength)
{
ustr_t symbol = nullptr;
ustr_t method = nullptr;
ustr_t path = nullptr;
int row = -1;
if (readAddressInfo(retAddress, provider, symbol, method, path, row)) {
size_t copied = 0;
copy(buffer, symbol, copied, maxLength - 2);
if (!emptystr(method)) {
buffer[copied++] = '.';
copy(buffer, method, copied, maxLength - 1);
}
if (!emptystr(path)) {
buffer[copied++] = ':';
copy(buffer, path, copied, maxLength - 6);
}
if (row != -1) {
buffer[copied++] = '(';
copy(buffer, row, copied);
buffer[copied++] = ')';
}
buffer[copied] = 0;
return copied;
}
return 0;
}
constexpr pos_t MessageEntryLen = sizeof(uintptr_t) * 2;
bool RTManager :: loadSignature(ref_t subjectRef, pos_t argCount, addr_t* addresses)
{
pos_t mtableOffset = MemoryBase::getDWord(msection, 0);
ref_t actionPtr = MemoryBase::getDWord(msection, mtableOffset + subjectRef * MessageEntryLen);
if (actionPtr != 0) {
size_t counter = 0;
uintptr_t singPtr = 0;
msection->read(mtableOffset + subjectRef * MessageEntryLen + sizeof(uintptr_t), &singPtr, sizeof(uintptr_t));
for (pos_t i = 0; i < argCount; i++) {
addresses[i] = ((addr_t*)singPtr)[i];
}
return true;
}
return false;
}
void RTManager :: loadSubjectName(IdentifierString& actionName, ref_t subjectRef)
{
pos_t mtableOffset = MemoryBase::getDWord(msection, 0);
ref_t actionPtr = MemoryBase::getDWord(msection, mtableOffset + subjectRef * MessageEntryLen);
if (!actionPtr) {
addr_t namePtr = 0;
msection->read(mtableOffset + subjectRef * sizeof(uintptr_t) * 2 + sizeof(uintptr_t), &namePtr, sizeof(addr_t));
MemoryReader reader(msection);
reader.seek((pos_t)(namePtr - (addr_t)msection->get(0)));
reader.readString(actionName);
}
else loadSubjectName(actionName, actionPtr);
}
ref_t RTManager :: loadSubject(ustr_t actionName)
{
pos_t mtableOffset = MemoryBase::getDWord(msection, 0);
MemoryReader reader(msection);
IdentifierString messageName;
addr_t startPtr = (addr_t)msection->get(0);
for (ref_t subjectRef = 1; true; subjectRef++) {
if (MemoryBase::getDWord(msection, mtableOffset + subjectRef * MessageEntryLen) == 0) {
pos_t namePtr = MemoryBase::getDWord(msection, mtableOffset + subjectRef * MessageEntryLen + sizeof(uintptr_t));
if (!namePtr)
break;
reader.seek(static_cast<pos_t>(namePtr - startPtr));
reader.readString(messageName);
if (messageName.compare(actionName)) {
return subjectRef;
}
}
}
return 0;
}
addr_t RTManager :: retrieveGlobalAttribute(int attribute, ustr_t name)
{
IdentifierString currentName;
pos_t size = MemoryBase::getDWord(msection, 0);
MemoryReader reader(msection, 4);
pos_t pos = reader.position();
while (reader.position() < size) {
int current = reader.getDWord();
pos_t offset = reader.getDWord() + sizeof(addr_t);
if (current == attribute) {
reader.readString(currentName);
if (currentName.compare(name)) {
addr_t address = 0;
reader.read(&address, sizeof(address));
return address;
}
}
pos += offset;
reader.seek(pos);
}
return 0;
}
size_t RTManager :: loadClassName(addr_t classAddress, char* buffer, size_t length)
{
uintptr_t namePtr = *(uintptr_t*)(classAddress - sizeof(uintptr_t) * 1 - elVMTClassOffset);
char* name = (char*)namePtr;
if (!ustr_t(name).copyTo(buffer, length))
return 0;
return length;
}
|
79cfc0b5a1c99aa1094787ec6300ca59fc5dda32
|
b805afd5034f0ff2a8b63b7557f8ef41667a8bf1
|
/RankingClient/RankingClient.cpp
|
8c46afea69c6b690c2ee826973b85e5a30628e57
|
[] |
no_license
|
ProQwest/recommendation-4
|
f25a7b84534f402d21e9ea43145621224f807bd0
|
0ec31dc8242522971fdd1a41dd9cf1eb5cd62dcc
|
refs/heads/master
| 2021-05-15T06:00:29.942223
| 2017-04-07T02:11:30
| 2017-04-07T02:11:30
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 4,275
|
cpp
|
RankingClient.cpp
|
/**
* Created by yuanpingzhou on 3/9/17
*/
#include <iostream>
#include <thread>
#include <atomic>
#include <thrift/protocol/TBinaryProtocol.h>
#include <thrift/transport/TSocket.h>
#include <thrift/transport/TTransportUtils.h>
#include <boost/exception/all.hpp>
#include <boost/make_shared.hpp>
#include <boost/chrono.hpp>
#include <boost/timer/timer.hpp>
#include <boost/algorithm/string.hpp>
#include <boost/lexical_cast.hpp>
#include <boost/format.hpp>
#include <boost/program_options.hpp>
#include "../RankingServiceProtocol/OnlineRankingService.h"
using namespace boost;
using namespace apache::thrift;
using namespace apache::thrift::transport;
using namespace apache::thrift::protocol;
using namespace ranking;
typedef boost::chrono::duration<double> sec; // seconds, stored with a double
std::atomic<int> success(0);
namespace opt = boost::program_options;
class RankingClient {
public:
// connect with server
RankingClient(const std::string& host_ = "127.0.0.1",const int port_ = 5001):ServerHost(host_),ServerPort(port_){
boost::shared_ptr<TSocket> socket_(new TSocket(host_, port_));
socket_->setConnTimeout(1000);
socket_->setRecvTimeout(1000);
socket_->setSendTimeout(1000);
transport = boost::make_shared<TFramedTransport>(socket_);
boost::shared_ptr<TProtocol> protocol_(new TBinaryProtocol(transport));
handle = new ranking::OnlineRankingServiceClient(protocol_);
}
// ranking
std::string ranking(std::string BroadcasterID,std::string AdList){
std::string result;
try {
transport->open();
handle->ranking(result,BroadcasterID,AdList);
transport->close();
success += 1;
}
catch (TException& x){
std::cerr << x.what() << std::endl;
}
return result;
}
//
~RankingClient(){
if(handle != nullptr) {
delete handle;
handle = nullptr;
}
}
private:
std::string ServerHost = "";
int ServerPort = -1;
OnlineRankingServiceClient* handle = nullptr;
boost::shared_ptr<TTransport> transport = nullptr;
};
void Ranking(const std::string& host,const int& port,const std::string& bid,const std::string& RequestList){
std::string RankedAdList = "";
if(host.empty() || (port == -1)) {
RankingClient rc;
RankedAdList = rc.ranking(bid,RequestList);
}
else {
RankingClient rc(host, port);
RankedAdList = rc.ranking(bid,RequestList);
}
std::cout << RankedAdList << std::endl;
}
int main(int argc,char* argv[]){
std::string RequestString = "[\"20161130180008224220970\",\"20170210165405973705135\",\"20170106214719565544151\" \
,\"20161228150040169553309\",\"20170104181929665240262\",\"20170112201142557644326\",\"20170110191853599794075\" \
,\"20170104205841052933424\",\"20161219183300419813605\",\"20170106215025161822143\",\"20161222220344051672602\" \
,\"20170214142351157914891\",\"20161130175727184878123\",\"20161130175921301130830\"]";
opt::options_description desc("options");
desc.add_options()
("ServerHost",opt::value<std::string>()->default_value("localhost"),"Ranking Service Host")
("ServerPort",opt::value<int>()->default_value(5001),"Ranking Service Port")
("bid",opt::value<std::string>()->default_value("0e25d1dff0294c2f9bc71da9ca7060fd_204196826"),"Broadcaster ID")
("RequestList",opt::value<std::string>()->default_value(RequestString),"Request List")
("RequestNum",opt::value<int>()->default_value(100),"Request Number")
("help,h","what to options to type in")
;
opt::variables_map vm;
try{
opt::store(opt::parse_command_line(argc,argv,desc),vm);
opt::notify(vm);
}
catch(const opt::required_option& e){
std::cerr << "Failed to parse parameters, " << e.what() << std::endl;
}
boost::timer::cpu_timer timer;
std::vector<std::thread> threads;
for(int i = 0;i < vm["RequestNum"].as<int>();i++){
threads.push_back(std::thread(&Ranking,vm["ServerHost"].as<std::string>(),
vm["ServerPort"].as<int>(),vm["bid"].as<std::string>(),vm["RequestList"].as<std::string>()));
}
for(auto& th : threads){
th.join();
}
sec seconds = boost::chrono::nanoseconds(timer.elapsed().user);
std::cout << format("RankedAdList : %s, Time elaspsed: %fnsec success %d \n") % vm["RequestList"].as<std::string>()
% (seconds.count()) % success.load(std::memory_order_relaxed);;
return 0;
}
|
9c7fc213e51a2a4ca94b0614ae7a60ecb38ed20a
|
25b00327c5f303cff0cceb37343476a097fcf15b
|
/ggEngine/ggEngine/TimeBasedEventManager.h
|
b2e0def1bbbe73a5bdfdbe6f2a4fe0c9d166594a
|
[] |
no_license
|
truongthanh96/ggEngine
|
e3fe42ad7d0979c3b0faebcfc19c15c8f6d5b96e
|
6c0892b2352311bbd276a0111cbec677eabdd45d
|
refs/heads/master
| 2022-03-29T16:02:49.261047
| 2017-06-14T14:00:16
| 2017-06-14T14:00:16
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 414
|
h
|
TimeBasedEventManager.h
|
#pragma once
#include "ComponentBase.h"
#include <list>
#include <functional>
namespace ggEngine {
class Game;
class TimeBasedEventInfo;
class TimeBasedEventManager : public ComponentBase {
public:
TimeBasedEventManager(Game *game);
void Update(double deltaTimeInMs);
void Reset();
void AddEvent(TimeBasedEventInfo *e);
private:
std::list<TimeBasedEventInfo*> timeBasedEventList;
Game *game;
};
}
|
87ae4268167e54633aca6e6c5d697914a09faa90
|
b7697f406c4be05d5b8582e273b8352c56acba53
|
/game/PlayerAttributes.hpp
|
e99672ba006d9b5115d97903f70103881896fbab
|
[] |
no_license
|
jovobe/cg-14
|
75b531a4887cba2d7305f72d3e8a03ba542eebbf
|
d968a85dee5e9254a622f52de58a044a045e171c
|
refs/heads/master
| 2021-01-22T14:46:59.895319
| 2016-08-05T22:06:18
| 2016-08-05T22:06:18
| 55,720,671
| 0
| 0
| null | 2016-04-07T19:06:23
| 2016-04-07T19:06:23
| null |
UTF-8
|
C++
| false
| false
| 1,874
|
hpp
|
PlayerAttributes.hpp
|
#ifndef PLAYERATTRIBUTES_HPP
#define PLAYERATTRIBUTES_HPP
#include <chrono>
typedef std::chrono::system_clock::time_point time_point;
/**
* @brief The PlayerAttributes class Properties of the players e.g. health and endurance.
*/
class PlayerAttributes
{
public:
/**
* @brief PlayerAttributes Constructor
* @param hearts Number of heart used in intilaization and will be set as maximum number.
* Default is 10.
*/
PlayerAttributes(int hearts=10);
/**
* @brief getHearts Get current up-to-date status(number) of hearts
* @return number of hearts
*/
int getHearts() ;
/**
* @brief maxHearts Get maximum number of hearts from intially setting
* @return Maximum number of the heart that is initially set.
*/
inline int maxHearts() const;
/**
* @brief setHearts Force reset status/number of the hearts
* @param hearts number of hearts to be reset. Typically it is between zero and maximum number of hearts
* when we first initialized the class.
*/
inline void setHearts(int hearts);
/**
* @brief updateHeartsBy Update the current heart by relative number
* @param hearts increamental or decreamental number as positive or negative number.
*/
inline void updateHeartsBy(int hearts);
private:
const int MAX_HEARTS;
int m_hearts;
time_point m_timer;
};
int PlayerAttributes::maxHearts() const
{
return MAX_HEARTS;
}
void PlayerAttributes::setHearts(int hearts)
{
m_hearts = (hearts>MAX_HEARTS)?MAX_HEARTS:(hearts<0)? 0:hearts;
}
void PlayerAttributes::updateHeartsBy(int hearts)
{
m_hearts += hearts;
m_hearts = (m_hearts>MAX_HEARTS)?MAX_HEARTS:(m_hearts<0)? 0:m_hearts;
}
#endif // PLAYERATTRIBUTES_HPP
///////////////////////////////////////END OF FILE////////////////////////////////////
|
49f49696197ba7f329b7d2675e9efa49fb4827c7
|
a75d0418b2143d6f59635a8833bff49bc903df5e
|
/DofusTypes/GameRolePlayPortalInformations.h
|
7af40f6a4d40049f71000e85e17ba92b199e7c82
|
[] |
no_license
|
Arkwell9112/dofus_bot
|
30b80850ba41b6a2b562705ec8aa1a6c87cfb8f8
|
fc1b805b70c0ed43cbc585322806ece89d057585
|
refs/heads/master
| 2023-01-16T01:08:06.710649
| 2020-11-23T20:53:00
| 2020-11-23T20:53:00
| 314,084,045
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 415
|
h
|
GameRolePlayPortalInformations.h
|
#ifndef GAMEROLEPLAYPORTALINFORMATIONS_H
#define GAMEROLEPLAYPORTALINFORMATIONS_H
#include "PortalInformation.h"
#include "GameRolePlayActorInformations.h"
#include "../BotCoreAPI/BotCoreAPI.h"
#include <string>
#include <vector>
class GameRolePlayPortalInformations : public GameRolePlayActorInformations {
public:
PortalInformation portal;
void deserialize(CustomDataInput *input);
private:
};
#endif
|
9836c73ef84587028b61f290bcfc2ab86b22a786
|
e486d81cc77cc2d9c13a1450f0293a83d62fca7a
|
/Popovich/Popovich/List.h
|
abd82a0225c170f93235f00d9778640d145d2c75
|
[] |
no_license
|
vital228/Algorithm
|
3b468476b6304e800c60f778e47641e311673116
|
d7404e56682a1c69f6a954f12ba7ae38e72d6089
|
refs/heads/master
| 2023-08-31T14:34:35.182347
| 2023-08-07T13:09:42
| 2023-08-07T13:09:42
| 173,559,270
| 0
| 0
| null | null | null | null |
WINDOWS-1251
|
C++
| false
| false
| 5,242
|
h
|
List.h
|
#pragma once
#include <iostream>
#include <string>
#include "Node.h"
using namespace std;
template<class T>
class List
{
friend class Node<T>;
Node<T>* Head;
Node<T>* Tail;
int count;
public:
class Iterator
{
friend class List<T>;
Node<T>* it;
Iterator(Node<T>* ptr)
{
it = ptr;
}
public:
Iterator()
{
it = nullptr;
}
T& operator*()
{
return it->key;
}
bool operator==(const Iterator& iter)
{
return it == iter.it;
}
bool operator!=(const Iterator& iter)
{
return it != iter.it;
}
Iterator& operator--()
{
if (it->prev == nullptr) throw "Out of range";
it = it->prev;
return *this;
}
Iterator& operator--(int notused)
{
if (it->prev == nullptr) throw "Out of range";
Iterator tmp = *this;
it = it->prev;
return tmp;
}
Iterator& operator++()
{
if (it->next == nullptr) throw "Out of range";
it = it->next;
return *this;
}
Iterator& operator+(int n)
{
for (int i = 0; i < n; i++)
{
this->operator++();
}
return *this;
}
Iterator& operator-(int n)
{
for (int i = 0; i < n; i++)
{
this->operator--();
}
return *this;
}
Iterator& operator++(int notused)
{
if (it->next == nullptr) throw "Out of range";
Iterator tmp = *this;
it = it->next;
return tmp;
}
};
friend class Iterator;
List();
~List();
void insert(Iterator i, const T& value);
void pop_back();
void del(Iterator i);
void push_back(const T& value);
void add(const T& value);
bool find(const T& value);
void redactor(Iterator i, const T& value);
void print();
void printEl(Iterator i, bool con);
int size()
{
return count;
}
Iterator begin() const
{
return Iterator(Head);
}
Iterator end() const
{
return Iterator(Tail);
}
T& operator[](int index)
{
Iterator it = begin() + index;
return *it;
}
};
template<class T>
List<T>::List()
{
Head = new Node<T>();
Tail = Head;
count = 0;
}
template<class T>
List<T>::~List()
{
while (Head != Tail)
{
pop_back();
}
delete Head;
Head = Tail = nullptr;
}
template<class T>
void List<T>::pop_back()
{
if (Head == Tail)
{
throw "List is empty";
}
Node<T>* tmp = Tail->prev;
if (tmp->prev == nullptr)
{
Head = Tail;
count--;
}
else
{
tmp->prev->next = Tail;
Tail->prev = tmp->prev;
count--;
}
delete tmp;
};
template<class T>
void List<T>::del(Iterator i)
{
if (Head == Tail)
{
throw "List is empty";
}
Node<T>* tmp = Head;
while (tmp != Tail)
{
if (i == Iterator(tmp))
{
if (tmp == Head)
{
tmp->next->prev = nullptr;
Head = tmp->next;
delete tmp;
count--;
return;
}
else
{
tmp->prev->next = tmp->next;
tmp->next->prev = tmp->prev;
delete tmp;
count--;
return;
}
}
tmp = tmp->next;
}
}
template<class T>
void List<T>::push_back(const T& value)
{
Node<T>* tmp = new Node<T>(value, nullptr, Tail);
if (Head == Tail)
{
Tail->prev = tmp;
Head = tmp;
count++;
}
else
{
tmp->prev = Tail->prev;
Tail->prev->next = tmp;
Tail->prev = tmp;
count++;
}
}
template<class T>
void List<T>::insert(Iterator i, const T& value)
{
if (Head == Tail)
{
Node<T>* tmp = new Node<T>(value, nullptr, Tail);
Tail->prev = tmp;
Head = tmp;
count++;
return;
}
if (i == Iterator(Head))
{
Node<T>* tmp = new Node<T>(value);
Head->prev = tmp;
tmp->next = Head;
Head = tmp;
count++;
return;
}
else if (i == Iterator(Tail))
{
push_back(value);
//тут удалил count++
return;
}
else if (i == Iterator(Tail->prev))
{
Node<T>* tmp = new Node<T>(value, Tail->prev->prev, Tail->prev);
Tail->prev->prev->next = tmp;
Tail->prev->prev = tmp; // тут исправил
count++;
return;
}
Node<T>* tp = Head;
while (tp->next != Tail)
{
if (i == Iterator(tp))
{
Node<T>* tmp = new Node<T>(value, tp->prev, tp);
tp->prev->next = tmp;
tp->prev = tmp;
count++;
return;
}
tp = tp->next;
}
}
template<class T>
inline void List<T>::add(const T& value)
{
push_back(value);
Node<T>* tmp = Head;
for (tmp; tmp != Tail; tmp = tmp->next)
{
Node<T>* tmpn = tmp->next;
for (tmpn; tmpn != Tail; tmpn = tmpn->next)
{
if (tmp->key > tmpn->key)
{
if (tmp->prev != nullptr)
{
tmp->prev->next = tmpn;
tmpn->prev->next = tmpn->next;
tmpn->next->prev = tmpn->prev;
tmpn->prev = tmp->prev;
tmp->prev = tmpn;
tmpn->next = tmp;
}
else
{
Tail->prev = tmpn->prev;
tmpn->prev->next = Tail;
tmpn->next = tmp;
tmp->prev = tmpn;
tmp->prev = nullptr;
Head = tmpn;
}
}
}
}
}
template<class T>
void List<T>::redactor(Iterator i, const T& value)
{
Node<T>* tmp = Head;
while (tmp != Tail)
{
if (i == Iterator(tmp))
{
tmp->key = value;
return;
}
tmp = tmp->next;
}
}
template<class T>
bool List<T>::find(const T& value)
{
Node<T>* tmp = Head;
for (tmp; tmp != Tail; tmp = tmp->next)
{
if (value == tmp->key)
{
return true;
}
}
return false;
}
template<class T>
void List<T>::print()
{
Iterator i = begin();
for (; i != end(); ++i)
{
cout << *i << "\n";
}
}
template<class T>
void List<T>::printEl(Iterator i, bool con)
{
if (con)
{
cout << *i << "\n";
}
}
|
44a13983ed7f2e067a5d9ae618e011ce2e9c7a87
|
d96ebf4dac46404a46253afba5ba5fc985d5f6fc
|
/third_party/libwebrtc/modules/rtp_rtcp/source/rtcp_packet/nack.cc
|
a4b3d777815091f38d31e91b346d13e31a1ce2ff
|
[
"BSD-3-Clause",
"LicenseRef-scancode-unknown-license-reference"
] |
permissive
|
marco-c/gecko-dev-wordified-and-comments-removed
|
f9de100d716661bd67a3e7e3d4578df48c87733d
|
74cb3d31740be3ea5aba5cb7b3f91244977ea350
|
refs/heads/master
| 2023-08-04T23:19:13.836981
| 2023-08-01T00:33:54
| 2023-08-01T00:33:54
| 211,297,165
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 4,347
|
cc
|
nack.cc
|
#
include
"
modules
/
rtp_rtcp
/
source
/
rtcp_packet
/
nack
.
h
"
#
include
<
algorithm
>
#
include
<
cstdint
>
#
include
<
utility
>
#
include
"
modules
/
rtp_rtcp
/
source
/
byte_io
.
h
"
#
include
"
modules
/
rtp_rtcp
/
source
/
rtcp_packet
/
common_header
.
h
"
#
include
"
rtc_base
/
checks
.
h
"
#
include
"
rtc_base
/
logging
.
h
"
namespace
webrtc
{
namespace
rtcp
{
constexpr
uint8_t
Nack
:
:
kFeedbackMessageType
;
constexpr
size_t
Nack
:
:
kNackItemLength
;
Nack
:
:
Nack
(
)
=
default
;
Nack
:
:
Nack
(
const
Nack
&
rhs
)
=
default
;
Nack
:
:
~
Nack
(
)
=
default
;
bool
Nack
:
:
Parse
(
const
CommonHeader
&
packet
)
{
RTC_DCHECK_EQ
(
packet
.
type
(
)
kPacketType
)
;
RTC_DCHECK_EQ
(
packet
.
fmt
(
)
kFeedbackMessageType
)
;
if
(
packet
.
payload_size_bytes
(
)
<
kCommonFeedbackLength
+
kNackItemLength
)
{
RTC_LOG
(
LS_WARNING
)
<
<
"
Payload
length
"
<
<
packet
.
payload_size_bytes
(
)
<
<
"
is
too
small
for
a
Nack
.
"
;
return
false
;
}
size_t
nack_items
=
(
packet
.
payload_size_bytes
(
)
-
kCommonFeedbackLength
)
/
kNackItemLength
;
ParseCommonFeedback
(
packet
.
payload
(
)
)
;
const
uint8_t
*
next_nack
=
packet
.
payload
(
)
+
kCommonFeedbackLength
;
packet_ids_
.
clear
(
)
;
packed_
.
resize
(
nack_items
)
;
for
(
size_t
index
=
0
;
index
<
nack_items
;
+
+
index
)
{
packed_
[
index
]
.
first_pid
=
ByteReader
<
uint16_t
>
:
:
ReadBigEndian
(
next_nack
)
;
packed_
[
index
]
.
bitmask
=
ByteReader
<
uint16_t
>
:
:
ReadBigEndian
(
next_nack
+
2
)
;
next_nack
+
=
kNackItemLength
;
}
Unpack
(
)
;
return
true
;
}
size_t
Nack
:
:
BlockLength
(
)
const
{
return
kHeaderLength
+
kCommonFeedbackLength
+
packed_
.
size
(
)
*
kNackItemLength
;
}
bool
Nack
:
:
Create
(
uint8_t
*
packet
size_t
*
index
size_t
max_length
PacketReadyCallback
callback
)
const
{
RTC_DCHECK
(
!
packed_
.
empty
(
)
)
;
constexpr
size_t
kNackHeaderLength
=
kHeaderLength
+
kCommonFeedbackLength
;
for
(
size_t
nack_index
=
0
;
nack_index
<
packed_
.
size
(
)
;
)
{
size_t
bytes_left_in_buffer
=
max_length
-
*
index
;
if
(
bytes_left_in_buffer
<
kNackHeaderLength
+
kNackItemLength
)
{
if
(
!
OnBufferFull
(
packet
index
callback
)
)
return
false
;
continue
;
}
size_t
num_nack_fields
=
std
:
:
min
(
(
bytes_left_in_buffer
-
kNackHeaderLength
)
/
kNackItemLength
packed_
.
size
(
)
-
nack_index
)
;
size_t
payload_size_bytes
=
kCommonFeedbackLength
+
(
num_nack_fields
*
kNackItemLength
)
;
size_t
payload_size_32bits
=
rtc
:
:
CheckedDivExact
<
size_t
>
(
payload_size_bytes
4
)
;
CreateHeader
(
kFeedbackMessageType
kPacketType
payload_size_32bits
packet
index
)
;
CreateCommonFeedback
(
packet
+
*
index
)
;
*
index
+
=
kCommonFeedbackLength
;
size_t
nack_end_index
=
nack_index
+
num_nack_fields
;
for
(
;
nack_index
<
nack_end_index
;
+
+
nack_index
)
{
const
PackedNack
&
item
=
packed_
[
nack_index
]
;
ByteWriter
<
uint16_t
>
:
:
WriteBigEndian
(
packet
+
*
index
+
0
item
.
first_pid
)
;
ByteWriter
<
uint16_t
>
:
:
WriteBigEndian
(
packet
+
*
index
+
2
item
.
bitmask
)
;
*
index
+
=
kNackItemLength
;
}
RTC_DCHECK_LE
(
*
index
max_length
)
;
}
return
true
;
}
void
Nack
:
:
SetPacketIds
(
const
uint16_t
*
nack_list
size_t
length
)
{
RTC_DCHECK
(
nack_list
)
;
SetPacketIds
(
std
:
:
vector
<
uint16_t
>
(
nack_list
nack_list
+
length
)
)
;
}
void
Nack
:
:
SetPacketIds
(
std
:
:
vector
<
uint16_t
>
nack_list
)
{
RTC_DCHECK
(
packet_ids_
.
empty
(
)
)
;
RTC_DCHECK
(
packed_
.
empty
(
)
)
;
packet_ids_
=
std
:
:
move
(
nack_list
)
;
Pack
(
)
;
}
void
Nack
:
:
Pack
(
)
{
RTC_DCHECK
(
!
packet_ids_
.
empty
(
)
)
;
RTC_DCHECK
(
packed_
.
empty
(
)
)
;
auto
it
=
packet_ids_
.
begin
(
)
;
const
auto
end
=
packet_ids_
.
end
(
)
;
while
(
it
!
=
end
)
{
PackedNack
item
;
item
.
first_pid
=
*
it
+
+
;
item
.
bitmask
=
0
;
while
(
it
!
=
end
)
{
uint16_t
shift
=
static_cast
<
uint16_t
>
(
*
it
-
item
.
first_pid
-
1
)
;
if
(
shift
<
=
15
)
{
item
.
bitmask
|
=
(
1
<
<
shift
)
;
+
+
it
;
}
else
{
break
;
}
}
packed_
.
push_back
(
item
)
;
}
}
void
Nack
:
:
Unpack
(
)
{
RTC_DCHECK
(
packet_ids_
.
empty
(
)
)
;
RTC_DCHECK
(
!
packed_
.
empty
(
)
)
;
for
(
const
PackedNack
&
item
:
packed_
)
{
packet_ids_
.
push_back
(
item
.
first_pid
)
;
uint16_t
pid
=
item
.
first_pid
+
1
;
for
(
uint16_t
bitmask
=
item
.
bitmask
;
bitmask
!
=
0
;
bitmask
>
>
=
1
+
+
pid
)
{
if
(
bitmask
&
1
)
packet_ids_
.
push_back
(
pid
)
;
}
}
}
}
}
|
a0b5769ba15aa43ee809f402033af26acad97b0b
|
7134436feaa0a5e57b59eb65502475ba5a3998ea
|
/Graphics/ProgressBar.h
|
c21484d85f79bdb92b519501f486f7e712f1009b
|
[] |
no_license
|
BlackLuny/R-demo
|
bdc8724adc5bd8eb91ec9f92d731d588b1445ec0
|
51ba1818fa8901a99820339b3e203cecc767e1ae
|
refs/heads/master
| 2020-04-26T05:30:04.385162
| 2017-10-31T15:10:57
| 2017-10-31T15:10:57
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 551
|
h
|
ProgressBar.h
|
#pragma once
#define DLL_EXPORT
#include"PreInclude.h"
#include"UIBase.h"
#include"ControlBase.h"
namespace GuruLib
{
typedef int LOW, HIGH;
class ProgressBar :
public UIBase,
public ControlBase
{
public:
LIB ProgressBar(int x_pos, int y_pos, int width, int height, UnitType type = PIXEL, const char* _unique_name = NULL);
LIB explicit ProgressBar(HWND _hwnd);//accepts HWND of created ProgressBar
LIB ProgressBar() {}
LIB virtual ~ProgressBar() {}
LIB void SetRange(int min, int max);
LIB std::pair<LOW, HIGH> GetRange();
};
}
|
3ffdfeed6984f06524e23c3770535e5851e28ed9
|
e11ecccc4513e0d871ff5e4eb7ff710471802d6c
|
/src/Downloader/Helpers/ChunkMerger.hpp
|
ca5b31b20b7786674f28ac13bc12ae0ae4146dbd
|
[] |
no_license
|
yura-hb/Downloader
|
29f60ce0e8918858ea680c9a330fe35ca553abdd
|
5b9e174a4113f9c88a219a96c6cdf3b0c2ea6855
|
refs/heads/master
| 2022-12-07T05:34:51.409859
| 2020-08-26T07:35:57
| 2020-08-26T07:35:57
| 251,245,358
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 776
|
hpp
|
ChunkMerger.hpp
|
#ifndef __CHUNK_MERGER__
#define __CHUNK_MERGER__
#include <iostream>
#include <vector>
#include <iterator>
#include <fstream>
#include "../../Base/Data.hpp"
#include "../../FileManager/Models/LocalReference.hpp"
class ChunkMerger {
public:
/**
* @brief
* Processes the file at the file path and removes the chunk separation in it.
*
* Input:
* - @param[in] filepath - the path to the file with the filepath.
*
* Throws:
* Throws the exception, in case, if file operation were failed
*
*/
static void mergeChunks(const LocalReference& filepath);
private:
static std::string separator;
static std::string temporaryFileExtension;
static uint32_t readHeader(std::ifstream& in);
};
#endif
|
09775473b279c89e688a3760e5fb01a9f7bb56f7
|
5e8d200078e64b97e3bbd1e61f83cb5bae99ab6e
|
/main/source/src/core/pose/datacache/CacheableDataType.cc
|
ee54b042b2a8665d781980cf36e2530464434c83
|
[] |
no_license
|
MedicaicloudLink/Rosetta
|
3ee2d79d48b31bd8ca898036ad32fe910c9a7a28
|
01affdf77abb773ed375b83cdbbf58439edd8719
|
refs/heads/master
| 2020-12-07T17:52:01.350906
| 2020-01-10T08:24:09
| 2020-01-10T08:24:09
| 232,757,729
| 2
| 6
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 5,776
|
cc
|
CacheableDataType.cc
|
// -*- mode:c++;tab-width:2;indent-tabs-mode:t;show-trailing-whitespace:t;rm-trailing-spaces:t -*-
// vi: set ts=2 noet:
//
// (c) Copyright Rosetta Commons Member Institutions.
// (c) This file is part of the Rosetta software suite and is made available under license.
// (c) The Rosetta software is developed by the contributing members of the Rosetta Commons.
// (c) For more information, see http://www.rosettacommons.org. Questions about this can be
// (c) addressed to University of Washington CoMotion, email: license@uw.edu.
/// @file core/pose/datacache/CacheableDataType.cc
/// @brief enum indexing the data types stored in a Pose's internal DataCache
#include <core/pose/datacache/CacheableDataType.hh>
namespace core {
namespace pose {
namespace datacache {
utility::vector1< std::string > & CacheableDataType::enum2name_()
{
static utility::vector1< std::string > enum_to_name;
return enum_to_name;
}
std::map< std::string, CacheableDataType::Enum > & CacheableDataType::name2enum_()
{
static std::map< std::string, CacheableDataType::Enum > name_to_enum;
return name_to_enum;
}
std::string
CacheableDataType::get_name( CacheableDataType::Enum datatype) {
initialize_name_map();
return enum2name_()[ datatype ];
}
void
CacheableDataType::initialize_name_map() {
static bool initialized_(false);
if ( initialized_ ) return;
name2enum_()["JOBDIST_OUTPUT_TAG"] = JOBDIST_OUTPUT_TAG;
name2enum_()["ARBITRARY_FLOAT_DATA"] = ARBITRARY_FLOAT_DATA;
name2enum_()["ARBITRARY_STRING_DATA"] = ARBITRARY_STRING_DATA;
name2enum_()["STRING_MAP"] = STRING_MAP;
name2enum_()["SCORE_LINE_STRINGS"] = SCORE_LINE_STRINGS;
name2enum_()["SCORE_MAP"] = SCORE_MAP;
name2enum_()["STM_STORED_TASKS"] = STM_STORED_TASKS;
name2enum_()["STORED_RESIDUE_SUBSET"] = STORED_RESIDUE_SUBSET;
name2enum_()["CONSTRAINT_GENERATOR"] = CONSTRAINT_GENERATOR;
name2enum_()["POSE_BEFORE_CAVITIES_ADDED"] = POSE_BEFORE_CAVITIES_ADDED;
name2enum_()["TEMPLATE_HYBRIDIZATION_HISTORY"] = TEMPLATE_HYBRIDIZATION_HISTORY;
name2enum_()["NCS_RESIDUE_MAPPING"] = NCS_RESIDUE_MAPPING;
name2enum_()["FULL_MODEL_INFO"] = FULL_MODEL_INFO;
name2enum_()["VDW_REP_SCREEN_INFO"] = VDW_REP_SCREEN_INFO;
name2enum_()["CDR_CLUSTER_INFO"] = CDR_CLUSTER_INFO;
name2enum_()["NATIVE_ANTIBODY_SEQ"] = NATIVE_ANTIBODY_SEQ;
name2enum_()["WRITEABLE_DATA"] = WRITEABLE_DATA;
name2enum_()["POSITION_CONSERVED_RESIDUES"] = POSITION_CONSERVED_RESIDUES;
name2enum_()["INTERFACE_DDG_MUTATION"] = INTERFACE_DDG_MUTATION;
name2enum_()["BASE_PARTNER"] = BASE_PARTNER;
name2enum_()["CEN_LIST_INFO"] = CEN_LIST_INFO;
name2enum_()["SIGMOID_WEIGHTED_CEN_LIST"] = SIGMOID_WEIGHTED_CEN_LIST;
name2enum_()["SIGMOID_WEIGHTED_D_CEN_LIST"] = SIGMOID_WEIGHTED_D_CEN_LIST;
name2enum_()["RG_MINDATA"] = RG_MINDATA;
name2enum_()["RG_LOCAL_MINDATA"] = RG_LOCAL_MINDATA;
name2enum_()["MEMBRANE_TOPOLOGY"] = MEMBRANE_TOPOLOGY;
name2enum_()["MEMBRANE_EMBED"] = MEMBRANE_EMBED;
name2enum_()["INTERFACE_INFO"] = INTERFACE_INFO;
name2enum_()["SS_INFO"] = SS_INFO;
name2enum_()["SS_KILLHAIRPINS_INFO"] = SS_KILLHAIRPINS_INFO;
name2enum_()["RNA_SCORING_INFO"] = RNA_SCORING_INFO;
name2enum_()["RNA_SECSTRUCT_INFO"] = RNA_SECSTRUCT_INFO;
name2enum_()["WATER_PACKING_INFO"] = WATER_PACKING_INFO;
name2enum_()["HOLES_POSE_INFO"] = HOLES_POSE_INFO;
name2enum_()["DAB_SASA_POSE_INFO"] = DAB_SASA_POSE_INFO;
name2enum_()["DAB_SEV_POSE_INFO"] = DAB_SEV_POSE_INFO;
name2enum_()["CHEMICAL_SHIFT_ANISOTROPY_DATA"] = CHEMICAL_SHIFT_ANISOTROPY_DATA;
name2enum_()["RESIDUAL_DIPOLAR_COUPLING_DATA"] = RESIDUAL_DIPOLAR_COUPLING_DATA;
name2enum_()["RESIDUAL_DIPOLAR_COUPLING_DATA_ROHL"] = RESIDUAL_DIPOLAR_COUPLING_DATA_ROHL;
name2enum_()["RESIDUAL_DIPOLAR_COUPLING_SEGMENTS_DATA"] = RESIDUAL_DIPOLAR_COUPLING_SEGMENTS_DATA;
name2enum_()["FIBER_DIFFRACTION_CEN_SCATTERING"] = FIBER_DIFFRACTION_CEN_SCATTERING;
name2enum_()["FIBER_DIFFRACTION_FA_SCATTERING"] = FIBER_DIFFRACTION_FA_SCATTERING;
name2enum_()["PSEUDOCONTACT_SHIFT_DATA"] = PSEUDOCONTACT_SHIFT_DATA;
name2enum_()["TS1_PSEUDOCONTACT_SHIFT_DATA"] = TS1_PSEUDOCONTACT_SHIFT_DATA;
name2enum_()["TS2_PSEUDOCONTACT_SHIFT_DATA"] = TS2_PSEUDOCONTACT_SHIFT_DATA;
name2enum_()["TS3_PSEUDOCONTACT_SHIFT_DATA"] = TS3_PSEUDOCONTACT_SHIFT_DATA;
name2enum_()["TS4_PSEUDOCONTACT_SHIFT_DATA"] = TS4_PSEUDOCONTACT_SHIFT_DATA;
name2enum_()["PSEUDOCONTACT_SHIFT_MULTI_DATA"] = PSEUDOCONTACT_SHIFT_MULTI_DATA;
name2enum_()["GEN_BORN_POSE_INFO"] = GEN_BORN_POSE_INFO;
name2enum_()["MULTIPOLE_POSE_INFO"] = MULTIPOLE_POSE_INFO;
name2enum_()["VDWTINKER_POSE_INFO"] = VDWTINKER_POSE_INFO;
name2enum_()["FACTS_POSE_INFO"] = FACTS_POSE_INFO;
name2enum_()["MEMBRANE_FAEMBED"] = MEMBRANE_FAEMBED;
name2enum_()["LK_BALL_POSE_INFO"] = LK_BALL_POSE_INFO;
name2enum_()["PB_LIFETIME_CACHE"] = PB_LIFETIME_CACHE;
name2enum_()["FAELEC_CONTEXT_DATA"] = FAELEC_CONTEXT_DATA;
name2enum_()["POSE_SEQUENCE"] = POSE_SEQUENCE;
name2enum_()["NMR_PCS_DATA"] = NMR_PCS_DATA;
name2enum_()["NMR_RDC_DATA"] = NMR_RDC_DATA;
name2enum_()["NMR_PRE_DATA"] = NMR_PRE_DATA;
name2enum_()["GEN_BONDED_EXCL_INFO"] = GEN_BONDED_EXCL_INFO;
//name2enum_()["STRUCTURAL_CONSERVATION"] = STRUCTURAL_CONSERVATION;
//name2enum_()["SURFACE_PARAMS"] = SURFACE_PARAMS;
//name2enum_()["FLOATING_POINT_CLOUD_INFO"] = FLOATING_POINT_CLOUD_INFO;
runtime_assert( name2enum_().size() == CacheableDataType::num_cacheable_data_types );
enum2name_().resize( CacheableDataType::num_cacheable_data_types );
for ( std::map< std::string, CacheableDataType::Enum >::const_iterator iter = name2enum_().begin(),
iter_end = name2enum_().end(); iter != iter_end; ++iter ) {
enum2name_()[ iter->second ] = iter->first;
}
initialized_ = true;
}
} // namespace datacache
} // namespace pose
} // namespace core
|
cf765261ff3535134fc342ebd38dc4684e22ffcc
|
d870defbd6aee32217caab4b48596efb82a0794c
|
/tuduydvd.cpp
|
2c754d8377ef9513d7d8272e7cc854f0603e9924
|
[] |
no_license
|
Khachuy911/c-plus-plus-language
|
ea22fe6b771329554f26d124ea7f46df32713796
|
dd93faf46c683f73e8ab96776f4804abdadd113e
|
refs/heads/master
| 2023-07-31T22:03:14.530976
| 2021-09-17T10:20:54
| 2021-09-17T10:20:54
| 407,496,850
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 177
|
cpp
|
tuduydvd.cpp
|
#include<iostream>
using namespace std;
int main(){
int n;
float money;
cin>>n;
if(n>10){
money = (n*5000) - ((n*5000)*(0.1));
} else
money = n*5000;
cout<<money;
}
|
06ff9bba338535beb62bf7d164e6ab34146019c3
|
e1d7a093d6cdbbb180ee8de1a1b61773e106ac71
|
/Project/SpriterPlusPlus/SpriterOverride/sfmlboxinstanceinfo.cpp
|
5f9d3043c916f4d6253fc84fa3b2956ff9fec7c8
|
[] |
no_license
|
Conny14156/OneFlower
|
916f3b9ccecbccf5431323af1d21ac73a9227c41
|
3b8a0acfb4d98ee80be16c7ef646a157f9045650
|
refs/heads/master
| 2020-04-03T22:38:09.582293
| 2018-10-21T16:29:05
| 2018-10-21T16:29:05
| 32,185,135
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 720
|
cpp
|
sfmlboxinstanceinfo.cpp
|
#include "sfmlboxinstanceinfo.h"
#include "../spriterengine/global/settings.h"
namespace SpriterEngine
{
SfmlBoxInstanceInfo::SfmlBoxInstanceInfo(point initialSize) :
BoxInstanceInfo(initialSize),
rectangle(sf::Vector2f(initialSize.x, initialSize.y))
{
}
void SfmlBoxInstanceInfo::render()
{
}
void SfmlBoxInstanceInfo::draw(sf::RenderTarget & target, sf::RenderStates states) const
{
if (Settings::renderDebugBoxes)
{
rectangle.setPosition(getPosition().x, getPosition().y);
rectangle.setRotation(toDegrees(getAngle()));
rectangle.setScale(getScale().x, getScale().y);
rectangle.setOrigin(getPivot().x*getSize().x, getPivot().y*getSize().y);
target.draw(rectangle, states);
}
}
}
|
e2b2d68879fa27b26e6bf25202e1e4855d4a50d7
|
1db813ac2ea45bbc8719fc3ef7cd157fe5bd885f
|
/src/InputManager.cpp
|
e6c7408165199090eb4504a94dfbb53499d3e60c
|
[] |
no_license
|
gerudoking/Team-Galahad
|
b3c206b693966023e1420575992d9e8216089ec8
|
dcf2a59985b7be55174b6e6c2041aa4ab09f0caa
|
refs/heads/master
| 2021-01-19T10:14:44.850001
| 2017-04-26T17:49:10
| 2017-04-26T17:49:10
| 87,844,125
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,062
|
cpp
|
InputManager.cpp
|
#include "InputManager.h"
InputManager* InputManager::instance = nullptr;
InputManager::InputManager() {
mouseX = 0;
mouseY = 0;
updateCounter = 0;
quitRequested = false;
}
InputManager::~InputManager() {
}
void InputManager::Update() {
SDL_Event event;
SDL_GetMouseState(&mouseX, &mouseY);
if(updateCounter < 100)
updateCounter++;
else
updateCounter = 0;
while(SDL_PollEvent(&event)) {
if(event.key.repeat != 1) {
if(event.type == SDL_QUIT)
quitRequested = true;
if(event.type == SDL_MOUSEBUTTONDOWN) {
mouseState[event.button.button] = true;
mouseUpdate[event.button.button] = updateCounter;
}
if(event.type == SDL_MOUSEBUTTONUP) {
mouseState[event.button.button] = false;
mouseUpdate[event.button.button] = updateCounter;
}
if(event.type == SDL_KEYDOWN) {
keyState[event.key.keysym.sym] = true;
keyUpdate[event.key.keysym.sym] = updateCounter;
}
if(event.type == SDL_KEYUP) {
keyState[event.key.keysym.sym] = false;
keyUpdate[event.key.keysym.sym] = updateCounter;
}
}
}
}
bool InputManager::KeyPress(int key) {
return (keyUpdate[key] == updateCounter) ? (keyState[key]) : false;
}
bool InputManager::KeyRelease(int key) {
return (keyUpdate[key] == updateCounter) ? (!keyState[key]) : false;
}
bool InputManager::IsKeyDown(int key) {
return keyState[key];
}
bool InputManager::MousePress(int button) {
return (mouseUpdate[button] == updateCounter) ? (mouseState[button]) : false;
}
bool InputManager::MouseRelease(int button) {
return (mouseUpdate[button] == updateCounter) ? (!mouseState[button]) : false;
}
bool InputManager::IsMouseDown(int button) {
return mouseState[button];
}
int InputManager::GetMouseX() {
return mouseX;
}
int InputManager::GetMouseY() {
return mouseY;
}
bool InputManager::QuitRequested() {
return quitRequested;
}
InputManager& InputManager::GetInstance() {
if(instance == nullptr)
instance = new InputManager();
return *instance;
}
|
9f1869a251c9171a6522e2b6cbcd5c2c2e57e19b
|
f68d677bbbb1eb8ce6c32fc8e6dcaf382c625ae3
|
/Source/ProjectIRRUPTION/ProjectIRRUPTIONGameModeBase.cpp
|
6185cec25e456147325a735c9c97acbe70f8915c
|
[] |
no_license
|
ZymbarGameStudio/ProjectIRRUPTION
|
eaec536a86238760a6477b228421c7a254e1c358
|
53c49e9dd1595c36af9ce8db435d75c8e7e9993a
|
refs/heads/main
| 2023-07-18T00:35:37.228823
| 2021-09-02T10:48:47
| 2021-09-02T10:48:47
| 383,983,645
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,158
|
cpp
|
ProjectIRRUPTIONGameModeBase.cpp
|
// Copyright Epic Games, Inc. All Rights Reserved.
#include "ProjectIRRUPTIONGameModeBase.h"
#include "Blueprint/UserWidget.h"
#include "Components/EditableText.h"
#include "Components/TextBlock.h"
#include "Kismet/GameplayStatics.h"
AProjectIRRUPTIONGameModeBase::AProjectIRRUPTIONGameModeBase()
{
}
void AProjectIRRUPTIONGameModeBase::BeginPlay()
{
this->InitializeHUD();
}
void AProjectIRRUPTIONGameModeBase::UseKey()
{
if(HasKey)
{
HasKey = false;
}
}
void AProjectIRRUPTIONGameModeBase::CollectKey()
{
HasKey = true;
}
void AProjectIRRUPTIONGameModeBase::InitializeHUD()
{
MainWidget = CreateWidget<UUserWidget>(GetWorld(), WidgetReference);
if(MainWidget)
{
UWidget* Hint = MainWidget->GetWidgetFromName(TEXT("T_Hint"));
if(Hint)
HintText = Cast<UTextBlock>(Hint);
}
}
void AProjectIRRUPTIONGameModeBase::SetHintText(FString Text)
{
if(MainWidget)
{
if(!MainWidget->IsInViewport())
MainWidget->AddToViewport();
HintText->SetText(FText::FromString(Text));
}
}
void AProjectIRRUPTIONGameModeBase::RemoveWidget()
{
if(MainWidget)
{
if(MainWidget->IsInViewport())
MainWidget->RemoveFromViewport();
}
}
|
81c95d8d29d30d77d90ed0ad62d3ef5872ac5275
|
e81b8117500d0cf2a62ae21565b6fdf29ab8425d
|
/FirstQtProject_Linux_server/server.cpp
|
362313383dd077611b7b1dcfddabef0396842f86
|
[] |
no_license
|
iulianpana/Educational-Platform-for-Collaborative-Learning
|
3af05f99f97efedfda53f526ada2b6bd111119cc
|
02fd6be608b85d922c41b1a45514968e53d256cf
|
refs/heads/master
| 2021-01-11T03:32:04.920732
| 2016-09-22T17:55:54
| 2016-09-22T17:55:54
| 68,945,335
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 9,796
|
cpp
|
server.cpp
|
/****************************************************************************
**
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
** This file is part of the examples of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:BSD$
** You may use this file under the terms of the BSD license as follows:
**
** "Redistribution and use in source and binary forms, with or without
** modification, are permitted provided that the following conditions are
** met:
** * Redistributions of source code must retain the above copyright
** notice, this list of conditions and the following disclaimer.
** * Redistributions in binary form must reproduce the above copyright
** notice, this list of conditions and the following disclaimer in
** the documentation and/or other materials provided with the
** distribution.
** * Neither the name of Digia Plc and its Subsidiary(-ies) nor the names
** of its contributors may be used to endorse or promote products derived
** from this software without specific prior written permission.
**
**
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
**
** $QT_END_LICENSE$
**
****************************************************************************/
#include <QtWidgets>
#include <QtNetwork>
#include <stdlib.h>
#include "server.h"
Server::Server(QWidget *parent)
: QDialog(parent), tcpServer(0), networkSession(0)
{
statusLabel = new QLabel;
quitButton = new QPushButton(tr("Quit"));
quitButton->setAutoDefault(false);
QNetworkConfigurationManager manager;
if (manager.capabilities() & QNetworkConfigurationManager::NetworkSessionRequired) {
// Get saved network configuration
QSettings settings(QSettings::UserScope, QLatin1String("QtProject"));
settings.beginGroup(QLatin1String("QtNetwork"));
const QString id = settings.value(QLatin1String("DefaultNetworkConfiguration")).toString();
settings.endGroup();
// If the saved network configuration is not currently discovered use the system default
QNetworkConfiguration config = manager.configurationFromIdentifier(id);
if ((config.state() & QNetworkConfiguration::Discovered) !=
QNetworkConfiguration::Discovered) {
config = manager.defaultConfiguration();
}
networkSession = new QNetworkSession(config, this);
connect(networkSession, SIGNAL(opened()), this, SLOT(sessionOpened()));
statusLabel->setText(tr("Opening network session."));
networkSession->open();
} else {
sessionOpened();
}
connect(quitButton, SIGNAL(clicked()), this, SLOT(close()));
//! [3]
connect(tcpServer, SIGNAL(newConnection()), this, SLOT(newConnection()));
//! [3]
QHBoxLayout *buttonLayout = new QHBoxLayout;
buttonLayout->addStretch(1);
buttonLayout->addWidget(quitButton);
buttonLayout->addStretch(1);
QVBoxLayout *mainLayout = new QVBoxLayout;
mainLayout->addWidget(statusLabel);
mainLayout->addLayout(buttonLayout);
setLayout(mainLayout);
setWindowTitle(tr("Server"));
}
void Server::sessionOpened()
{
// Save the used configuration
if (networkSession) {
QNetworkConfiguration config = networkSession->configuration();
QString id;
if (config.type() == QNetworkConfiguration::UserChoice)
id = networkSession->sessionProperty(QLatin1String("UserChoiceConfiguration")).toString();
else
id = config.identifier();
QSettings settings(QSettings::UserScope, QLatin1String("QtProject"));
settings.beginGroup(QLatin1String("QtNetwork"));
settings.setValue(QLatin1String("DefaultNetworkConfiguration"), id);
settings.endGroup();
}
//! [0] //! [1]
tcpServer = new QTcpServer(this);
tcpServer->setMaxPendingConnections(5000);
if (!tcpServer->listen(QHostAddress::Any, (quint16)5000)) {
QMessageBox::critical(this, tr("Server"),
tr("Unable to start the server: %1.")
.arg(tcpServer->errorString()));
close();
return;
}
//! [0]
QString ipAddress;
QList<QHostAddress> ipAddressesList = QNetworkInterface::allAddresses();
// use the first non-localhost IPv4 address
for (int i = 0; i < ipAddressesList.size(); ++i) {
if (ipAddressesList.at(i) != QHostAddress::LocalHost &&
ipAddressesList.at(i).toIPv4Address()) {
ipAddress = ipAddressesList.at(i).toString();
break;
}
}
// if we did not find one, use IPv4 localhost
if (ipAddress.isEmpty())
ipAddress = QHostAddress(QHostAddress::LocalHost).toString();
statusLabel->setText(tr("The server is running on\n\nIP: %1\nport: %2\n\n"
"Run the Client now.")
.arg(ipAddress).arg(tcpServer->serverPort()));
//! [1]
}
//! [4]
void Server::sendAssignements(QString username)
{
//! [5]
QByteArray block;
QDataStream out(&block, QIODevice::ReadWrite);
out.setVersion(QDataStream::Qt_4_0);
//! [4] //! [6]
QDir dir("Database") ;
foreach(const QFileInfo item, dir.entryInfoList())
{
if(item.isDir() == true)
continue;
QFile *databaseFile = new QFile(item.absoluteFilePath());
if(!databaseFile->open(QIODevice::ReadWrite))
qDebug()<< "Error opening file" << databaseFile->fileName();
else
qDebug()<< "Succesful opening file" << databaseFile->fileName();
QString line;
QString assignement_id,assignement_link,team;
if(studentEnroledToCourse(username,databaseFile) == true)
{
qDebug()<<username << " " << databaseFile->fileName();
//search for assignement
while(!(line=databaseFile->readLine()).isEmpty()){
if(line.contains("assignement_id"))
{//read assignement id and link
assignement_id=line.split("=").at(1);
line=databaseFile->readLine();
assignement_link=line.split("=").at(1);
while(!(line=databaseFile->readLine()).isEmpty()){
//qDebug() << line;
if(line.contains("team"))
team=line.split(QRegExp("[= ]")).at(1);
if(line.contains(username))
//found assignement for username
{ qDebug()<<"aici"<<databaseFile->fileName()<<assignement_id<<assignement_link<<team;
out<<QString(databaseFile->fileName().split(QDir::separator()).at(databaseFile->fileName().split(QDir::separator()).size()-1));
// out<<QString("ceva");
out<<QString(assignement_id)<<QString(assignement_link)<<QString(team);
if (clientConnection->write(block) < 0)
qDebug()<<"error at writing";
clientConnection->waitForBytesWritten(10000);
block.clear();
}
else
team.clear();
}
// out<<QFileInfo(*databaseFile).fileName();
// clientConnection->write(block);
block.clear();
assignement_id.clear();
assignement_link.clear();
}
}
}
// else
// continue;
}
//! [7] //! [8]
clientConnection->waitForBytesWritten(10000);
clientConnection->disconnectFromHost();
//! [5]
}
bool Server::studentEnroledToCourse(QString name, QFile* course)
{
QString line;
while(!(line = course->readLine()).isEmpty())
{
if(line.contains("student_id"))
if(line.contains(name))
{
return true;
}
}
return false;
}
void Server::readUsername()
{
QDataStream in(clientConnection);
int length;
QString username;
if(clientConnection->bytesAvailable() < sizeof(qint32))
return;
in>>length;
//qDebug()<<"l "<<length;
if(clientConnection->bytesAvailable() < length)
return;
in>>username;
//qDebug()<<" u " << username;
while(!clientConnection->isWritable())
qDebug()<<"wait for write";
crtUsername = new QString(username);
qDebug()<<"starting search for assig";
sendAssignements(username);
qDebug()<<"ended search for assig";
//clientConnection->disconnectFromHost();
}
void Server::newConnection()
{
clientConnection = tcpServer->nextPendingConnection();
connect(clientConnection, SIGNAL(disconnected()),
clientConnection, SLOT(deleteLater()));
connect(clientConnection,SIGNAL(readyRead()),
this, SLOT(readUsername()));
}
//! [8]
|
2816ace1787065a7aa422a55b4ca07d121e5c4ca
|
5d83739af703fb400857cecc69aadaf02e07f8d1
|
/Archive2/7a/78af7194043060/main.cpp
|
c6669abae497192b299b501061d78a1d38197cfd
|
[] |
no_license
|
WhiZTiM/coliru
|
3a6c4c0bdac566d1aa1c21818118ba70479b0f40
|
2c72c048846c082f943e6c7f9fa8d94aee76979f
|
refs/heads/master
| 2021-01-01T05:10:33.812560
| 2015-08-24T19:09:22
| 2015-08-24T19:09:22
| 56,789,706
| 3
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,144
|
cpp
|
main.cpp
|
#include <boost/thread/thread.hpp>
#include <boost/atomic.hpp>
#include <cstdatomic>
#include <boost/lockfree/spsc_queue.hpp>
#include <string>
#include <cstdio>
#include <sched.h>
#include <sys/types.h>
#include <unistd.h>
#include <sys/syscall.h>
#include <boost/scoped_ptr.hpp>
#include <sys/time.h>
#include <boost/lexical_cast.hpp>
void setThreadAffinity(boost::thread * const bt, int32_t const coreNumber){
cpu_set_t cst;
CPU_ZERO(&cst);
CPU_SET(coreNumber,&cst);
pthread_setaffinity_np(bt->native_handle(),sizeof(cst),&cst);
}
void setThreadAffinity(int32_t const coreNumber){
cpu_set_t cst;
CPU_ZERO(&cst);
CPU_SET(coreNumber,&cst);
sched_setaffinity(0,sizeof(cst),&cst);
}
struct Log{
public:
Log(std::string const & logFileName, int32_t coreNumber, int32_t queueSize)
: logFileName(logFileName), coreNumber(coreNumber), lock(ATOMIC_FLAG_INIT)
{
this->fp = std::fopen(logFileName.c_str(),"w");
std::atomic_store_explicit(&this->flag,true,std::memory_order_release);
this->thrd.reset(new boost::thread(&Log::pop,this));
this->q.reset(new boost::lockfree::spsc_queue<std::string>(queueSize));
setThreadAffinity(this->thrd.get(),coreNumber);
}
void pop(){
// setThreadAffinity(this->coreNumber);
std::string s;
s.reserve(1000);
struct timeval ts;
while (std::atomic_load_explicit(&this->flag,std::memory_order_acquire)){
while (this->q->pop(s)){
gettimeofday(&ts,NULL);
std::fprintf(this->fp,"%d.%06d %s\n",ts.tv_sec,ts.tv_usec,s.c_str());
}
std::fflush(this->fp);
}
while (this->q->pop(s)){
gettimeofday(&ts,NULL);
std::fprintf(this->fp,"%d.%06d %s\n",ts.tv_sec,ts.tv_usec,s.c_str());
}
void push(std::string const & s){
while (std::atomic_flag_test_and_set_explicit(&this->lock,std::memory_order_acquire));
while (!this->q->push(s));
std::atomic_flag_clear_explicit(&this->lock,std::memory_order_release);
}
~Log(){
std::atomic_store_explicit(&this->flag,false,std::memory_order_release);
this->thrd->join();
std::fflush(this->fp);
std::fclose(this->fp);
this->fp = NULL;
}
private:
Log(){}
std::string logFileName;
int32_t coreNumber;
boost::scoped_ptr<boost::lockfree::spsc_queue<std::string> > q;
boost::scoped_ptr<boost::thread> thrd;
std::atomic<bool> flag;
std::atomic_flag lock;
FILE * fp;
};
// this is the piece of code that achieves the best time -> about 2-3 microseconds for this single print on the server i use
int main(){
Log l("/tmp/junk.log",15,1024);
struct timeval ts_1, ts_2;
gettimeofday(&ts_1,NULL);
for (int64_t i = 0; i < 1; ++i){
std::string s("let's log this long line");
// sleep(1);
l.push(s);
}
gettimeofday(&ts_2,NULL);
// below is the benchmark print
std::fprintf(stderr,"%d microsec\n",(ts_2.tv_sec-ts_1.tv_sec)*1000000+(ts_2.tv_usec-ts_1.tv_usec));
return 0;
}
|
4c63557bc8a14a6d413f3e938846114b07e49c7f
|
727f6670a95ad8258b878c59929bfa938004f19b
|
/Editor/SESkeletonEx.cpp
|
c95a0a2745ab7dcd92b61d6f2eeabaae68d1af92
|
[] |
no_license
|
zhouxh1023/Editor
|
b4f452a79c00a6790bebf72dc2a7ea9d0642752e
|
423e628696e4e3229cd5d8c734c95e957c221036
|
refs/heads/master
| 2021-01-14T14:28:40.925009
| 2015-01-04T04:48:28
| 2015-01-04T04:48:28
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,061
|
cpp
|
SESkeletonEx.cpp
|
#include "stdafx.h"
#include "SESkeletonEx.h"
#include "SESkeletonSerializerEx.h"
#include "OgreLogManager.h"
#include "OgreResourceGroupManager.h"
#include "OgreSkeletonManager.h"
SkeletonEx::SkeletonEx(Ogre::ResourceManager* creator, const Ogre::String& name, Ogre::ResourceHandle handle,
const Ogre::String& group, bool isManual, Ogre::ManualResourceLoader* loader)
:Skeleton(creator, name, handle, group, isManual, loader)
{
}
void SkeletonEx::loadImpl(void)
{
// Modified
SkeletonSerializerEx serializer;
Ogre::LogManager::getSingleton().stream()
<< "Skeleton: Loading " << mName;
Ogre::DataStreamPtr stream =
Ogre::ResourceGroupManager::getSingleton().openResource(mName, mGroup, true, this);
serializer.importSkeleton(stream, this);
// Load any linked skeletons
LinkedSkeletonAnimSourceList::iterator i;
for (i = mLinkedSkeletonAnimSourceList.begin();
i != mLinkedSkeletonAnimSourceList.end(); ++i)
{
i->pSkeleton = Ogre::SkeletonManager::getSingleton().load(i->skeletonName, mGroup).staticCast<Ogre::Skeleton>();
}
}
|
8b4024a10fede1a109a212a7199e0c0c1178aae1
|
b8cf62d2d71c19a653f3dfe509378df3f75e9017
|
/loud-and-rich.cpp
|
194a4e7d155fa8f90751b96daee425868526cd66
|
[] |
no_license
|
Blast07/Leetcode
|
30fa937ed7f54911567a2a745f9fae50927d574f
|
0fa201b03adb330788f15d983beb290cb2eadd67
|
refs/heads/master
| 2023-02-27T12:49:58.586149
| 2021-02-03T14:26:06
| 2021-02-03T14:26:06
| 305,392,714
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,769
|
cpp
|
loud-and-rich.cpp
|
class Solution {
public:
int loudAndRich(vector <vector<int>> &G,vector <int> &quiet,vector <int> &visited,vector <int>&answer, int i){
for (int j=0;j<quiet.size();j++){
if (G[i][j] && !visited[j]){
int ind = loudAndRich(G,quiet,visited,answer,j);
if (quiet[ind] < quiet[answer[i]]){
answer[i] = ind;
}
}else if(G[i][j] && visited[j]){
if(quiet[answer[j]] < quiet[answer[i]])
answer[i] = answer[j];
}
}
visited[i] = true;
return answer[i];
}
vector<int> loudAndRich(vector<vector<int>>& richer, vector<int>& quiet) {
vector <int> answer(quiet.size(), 0);
for (int i=0;i<quiet.size();i++){
answer[i] = i;
}
vector <vector <int>> G(quiet.size(), vector <int>(quiet.size(),0));
vector <int> visited(quiet.size(),false);
for (int i=0;i<richer.size();i++){
G[richer[i][1]][richer[i][0]] = 1;
}
for (int i=0;i<quiet.size();i++){
if(!visited[i]){
for (int j=0;j<quiet.size();j++){
if(G[i][j] && !visited[j]){
int ind = loudAndRich(G,quiet,visited,answer,j);
if (quiet[ind] < quiet[answer[i]]){
answer[i] = ind;
}
}
else if(G[i][j] && visited[j]){
if(quiet[answer[j]] < quiet[answer[i]])
answer[i] = answer[j];
}
}
visited[i] = true;
}
}
return answer;
}
};
|
c7a70b290b18ea9bb8992ab6922af0d31d454875
|
9a547c67cc6039342d4749760a4ed14a283c88c1
|
/client/ClientCareTaker.h
|
be2cde00710e2930214bfef3c2d3f05d18158061
|
[] |
no_license
|
kamotora/patterns
|
d2489905f80e74ca47518f181466bbe92ebe5ed1
|
e15293fde1cc8d84722e9bc8f427ca32143b7a0e
|
refs/heads/master
| 2020-08-29T00:21:05.267052
| 2019-12-17T06:24:30
| 2019-12-17T06:24:30
| 217,665,282
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 333
|
h
|
ClientCareTaker.h
|
//
// Created by artem on 04.12.2019.
//
#ifndef PATTERNS_CLIENTCARETAKER_H
#define PATTERNS_CLIENTCARETAKER_H
#include "ClientSnap.h"
#include "stack"
class ClientCareTaker {
private:
std::stack<ClientSnap *> snaps;
public:
void save(ClientSnap *snap);
ClientSnap* restore();
};
#endif //PATTERNS_CLIENTCARETAKER_H
|
ed2a69a99b5014be88dc2681db68d940d809170c
|
5fd2cb147022d2ae76efac165dc3092206fbe65a
|
/Pconcepto4/ArdSensorPulsador.ino
|
3d47a5a8e92364cc9b9ba4e0c5c71a3d62bbc136
|
[] |
no_license
|
jhosep16/OpenHabnRf24
|
a7edad40c4b6a451b433f991dcac6a7aea63e813
|
9e5ca0b550231cb4a14a41a9ca62daf0cdb5b875
|
refs/heads/master
| 2020-04-19T15:46:47.279696
| 2016-09-06T19:55:34
| 2016-09-06T19:55:34
| 67,532,103
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,051
|
ino
|
ArdSensorPulsador.ino
|
#include <RF24Network.h>
#include <RF24.h>
#include <SPI.h>
#include <Servo.h>
byte switchPin = 12;
RF24 radio(9, 10);
RF24Network network(radio);
const uint16_t this_node = 1;
const uint16_t parent_node = 0;
const unsigned long interval = 1000; // every sec
struct message_1 {
bool pulsador;
};
message_1 message;
RF24NetworkHeader header(parent_node);
void setup(void)
{
// Set up the Serial Monitor
Serial.begin(9600);
// Initialize all radio related modules
SPI.begin();
radio.begin();
delay(5);
network.begin(90, this_node);
// Activate the internal Pull-Up resistor for the door sensor
pinMode(switchPin, INPUT_PULLUP);
delay(50);
}
void loop() {
network.update();
bool d = (digitalRead(switchPin) == HIGH);
header.type = '1';
if ( d != message.pulsador) {
message = (message_1){ d };
if (network.write(header, &message, sizeof(message))) {
Serial.print("Message sent\n");
} else {
Serial.print("Could not send message\n");
}
}
delay(interval);
}
|
0f3032a195f6402918d1a1a8c259cb3358c81d0b
|
710cc6c71e73636e04e7279ddc6ddded3feb8ef2
|
/Sources/Server/WorkerServerScanner.cpp
|
74bf5b00ceba9f8d5f97b9df36065219b68fc951
|
[] |
no_license
|
ridvoid/Comodo-antivirus-task
|
97799a07a08133a030ec24894a1ab3c83aafd255
|
afca6f3631ae22e8d2d588440482a8556e937296
|
refs/heads/master
| 2021-04-06T08:56:16.574029
| 2018-03-14T08:06:03
| 2018-03-14T08:06:03
| 125,175,264
| 0
| 3
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,673
|
cpp
|
WorkerServerScanner.cpp
|
#include "WorkerServerScanner.h"
namespace Test
{
WorkerServerScanner::WorkerServerScanner(IScanner* pIScanner,
Pipe& pipe) : WorkerServerScanner()
{
this->pIScanner = pIScanner;
this->pipe = std::move(pipe);
}
std::unique_ptr<WorkerServerScanner> WorkerServerScanner::Create(IScanner* pIScanner,
Pipe& pipe)
{
std::unique_ptr<WorkerServerScanner> uPtrReturn(new WorkerServerScanner(pIScanner,
pipe));
uPtrReturn->pipe->Connect(reinterpret_cast<LPOVERLAPPED>(&uPtrReturn->overlapped));
return uPtrReturn;
}
void WorkerServerScanner::Run(ULONG_PTR ulptrKey,
LPOVERLAPPED lpOverlapped,
DWORD dwRead)
{
try
{
switch (this->overlapped.type)
{
case Type::Connect:
case Type::Write:
this->Read();
break;
case Type::Read:
this->overlapped.vecBuf = this->pIScanner->Scan(Convert::ToString({this->overlapped.vecBuf.cbegin(),
this->overlapped.vecBuf.cbegin() + dwRead }));
this->Write();
}
}
catch (const WinApiException& ex)
{
IWorker::SetErrCode(ex.GetErrCode());
throw;
}
catch (...)
{
IWorker::SetErrCode(ERROR_CONTINUE);
throw;
}
}
WorkerServerScanner::operator HANDLE(void) const
{
return *this->pipe;
}
IWorker& WorkerServerScanner::SetErrCode(DWORD dwErrCode)
{
try
{
if (dwErrCode != ERROR_BROKEN_PIPE)
throw WorkerServerScannerException(dwErrCode);
this->Disconnect().Connect();
return *this;
}
catch (const WinApiException& ex)
{
IWorker::SetErrCode(ex.GetErrCode());
throw;
}
catch (...)
{
IWorker::SetErrCode(ERROR_CONTINUE);
throw;
}
return *this;
}
std::vector<BYTE>& WorkerServerScanner::Data(void)
{
throw WorkerServerScannerException(L"WorkerServerScanner::Data",
ERROR_NOT_SUPPORTED);
}
WorkerServerScanner& WorkerServerScanner::Connect(void)
{
this->overlapped = {};
this->pipe->Connect(reinterpret_cast<LPOVERLAPPED>(&this->overlapped));
return *this;
}
WorkerServerScanner& WorkerServerScanner::Read(void)
{
this->overlapped = Overlapped( OVERLAPPED(),
Type::Read,
std::vector<BYTE>(Constants::SizeBuffers::Pipe));
this->pipe->Read(this->overlapped.vecBuf,
reinterpret_cast<LPOVERLAPPED>(&this->overlapped));
return *this;
}
WorkerServerScanner& WorkerServerScanner::Write(void)
{
this->overlapped = Overlapped(OVERLAPPED(),
Type::Write,
this->overlapped.vecBuf);
this->pipe->Write(this->overlapped.vecBuf,
reinterpret_cast<LPOVERLAPPED>(&this->overlapped));
return *this;
}
WorkerServerScanner& WorkerServerScanner::Disconnect(void)
{
this->pipe->Disconnect();
return *this;
}
}
|
242a37008f191953c4a07d9842dc3e002de1f0a9
|
483bf850a06d57e8ac6deee670902f9b6839a560
|
/Spring2017/Source Code/Conditional Statements/prime1.cpp
|
137d9270335f7dd161007467cbc6318821b91554
|
[] |
no_license
|
bafasse/CSCE-2004
|
f4dbeec3089b6589eeec11bcaf02c2c1517b9365
|
7ec3a9d3a72c2411593c13ea83b4d9a86eb64392
|
refs/heads/master
| 2020-04-02T00:37:49.063406
| 2018-10-19T17:17:47
| 2018-10-19T17:17:47
| 153,813,548
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 464
|
cpp
|
prime1.cpp
|
//---------------------------------------------------
// Purpose: Program to check for prime
// numbers using a factoring approach
// Author: John Gauch
//---------------------------------------------------
#include <cmath>
#include <iostream>
using namespace std;
int main()
{
// Local variable declarations
// Read input parameters
// Check input is valid
// Check if number is prime
// Print output
return 0;
}
|
f7c86f75d2c9f75098931466b31d90b08acdcd51
|
310c510f20db78880f5362354c12e8839db90558
|
/CodeForAli/MERGE_NEW_ESG_CODE/PROD_CCG_V3(test)/ESG_V0/Models/BS_HW1F.h
|
d37ac7ef61271d3cd807306f72600571b475beb7
|
[] |
no_license
|
sdzouiten01/sz-project
|
da8a057726eb07b9b833d75a0d94822b0b264b05
|
f7b0057dad14b8c1eed0c8d25ef82749cf52ccda
|
refs/heads/master
| 2021-01-21T04:19:29.495647
| 2016-08-13T17:59:40
| 2016-08-13T17:59:40
| 37,811,086
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,983
|
h
|
BS_HW1F.h
|
#ifndef BS_HW1F_H
#define BS_HW1F_H
#include "Diffusion_Model0.h"
#include "../Instruments/InterfaceESG0.h"
#include <Math.h>
using namespace std;
class BS_HW1F: public DIF_MODEL0{
public:
int Time_step;
double Delta_t;
double HW_Alpha;
double HW_Sigma;
double Prorata;
int Antithetic;
int NB_Time_Step;
int NB_index;
int NB_Scen;
int NB_Scen_Antithetic;
double** Vol_Equity;
double** X_t;
double** Z_t;
double *Y_t;
double Y_t_0;
double *Q_t;
double **Integrale_Vol_t;
double **Integrale_Var_t;
void Calculate_Short_rate( double* &input_forward,double** &output_shortRate_tab);
void Calculate_Beta( double* &input_inverse_ZCB,double** &output_beta_tab);
void Calculate_Notional_Rate( double &maturity, double* &input_Log_ZCB,double** &output_rate_tab);
double ZCB(double maturity,double* &input_Log_ZCB, int step_position,int scn_position);
void Calculate_Swap_Rate(double &maturity, double* &input_Log_ZCB,double** &output_rate_tab, double &coupon_period);
void Calculate_Bond_Return(double maturity, double* &input_Log_ZCB,double** &output_bond_tab);
void Calculate_Bond_Coupon_Return(double maturity, double* &input_Log_ZCB,double** &output_bond_tab, double coupon,double coupon_period);
void Calculate_Equity_Return(int &index,double** &input_gaussian, double** &input_beta,double** &output_equity_return_tab);
void Initialize_Class_Parameters(double** &input_Gaussian1_ShortRate_tab,double** &input_Gaussian2_ShortRate_tab);
void Calculate_Equity_Return_With_Drift(int &index,double** &input_gaussian, double** &input_beta,double** &output_equity_return_tab,
double* &input_inverse_ZCB, double* &input_inverse_ZCB_Drift);
void BS_HW1F::Calculate_Equity_Return_With_Drift_without_IR_Model(int &index,double** &input_gaussian,double** &output_equity_return_tab, double* &input_inverse_ZCB_Drift);
BS_HW1F(InterfaceESG0 * &interface_Esg);
void Initialize_Calib_parameters(double hW_Alpha,double hW_Sigma);
~BS_HW1F();
};
#endif
|
b174cc5ff72f633694175d3e213cd78578e90de0
|
7535c99a052d0cf40cd8d3d2170caea429dac685
|
/salary/AddTimeCardTrans.h
|
63f0b3b797331cfa12f6dfd59e617a51c42e7557
|
[] |
no_license
|
cly1231989/salary
|
1c9371e2d1568a6dd7c7f0d8be961d93f4993159
|
37dc5c0248f9fd2e6fafef63b717396fd8179e80
|
refs/heads/master
| 2021-05-09T13:20:35.553291
| 2018-02-11T03:10:33
| 2018-02-11T03:10:33
| 119,031,344
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 385
|
h
|
AddTimeCardTrans.h
|
#pragma once
#include "ModifyEmployeeTransaction.h"
#include "Date.h"
class AddTimeCardTrans :
public ModifyEmployeeTransaction
{
public:
AddTimeCardTrans(int employeeID, const Date& date, float hours);
virtual ~AddTimeCardTrans();
// Inherited via ModifyEmployeeTransaction
virtual void changeEmployee(Employee & employee) override;
private:
Date m_date;
float m_hours;
};
|
9ae907cbbc4f9f390b9a2b2cb0b555a5ded3aa92
|
89d872a4618e5eb33b620bdca7d91cd6083f1078
|
/SmallMimic_0.4/Sketch/SmallMimic/SmallMimic.h
|
6b84bc307af1ef4a156c1354871423f5d60307ec
|
[] |
no_license
|
Press-OK/SmallMimic
|
f37becc0c8aded3d1073fda69e06c2e15343130c
|
961c147318f8da887ec72fec7f60fe7d45b8054b
|
refs/heads/master
| 2020-06-17T21:55:46.045839
| 2019-07-09T20:16:14
| 2019-07-09T20:16:14
| 196,070,426
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 774
|
h
|
SmallMimic.h
|
#ifndef SmallMimic_h
#define SmallMimic_h
#include "Arduino.h"
#define ledBlink true // 1/0 to enable or disable LED blinking
#define ledPin 2 // Pin for the onboard LED (Wemos D1 Mini)
#define ledOnState LOW // Pin state for LED on (Wemos D1 Mini is kind of backwards)
enum MouseButton { LEFT = 0 , RIGHT = 1 , MIDDLE = 2 };
class SmallMimic {
public:
SmallMimic();
void ping();
void sendKeys(char*);
void sendKeys(char*, short);
void keyDown(char*);
void keyUp(char*);
void mouseMove(int, int);
void mouseMove(int, int, short);
void mouseNudge(int, int);
void mouseTarget(char*);
void mouseTarget(char*, short);
void mouseClick(MouseButton);
void mouseDown(MouseButton);
void mouseUp(MouseButton);
private:
};
#endif
|
0c930a45e6e328d4b2a57942da5f04961d8f3e61
|
3c53d57793ed7f416cbe57d3be02e4670ee1742a
|
/Graph/OpenGL/图片读写/二进制文件读写/C++二进制文件读写.cpp
|
ea62dc5641adc03da7eddc5607b478defa4fdfb5
|
[
"WTFPL"
] |
permissive
|
znvmk/Study
|
a6f0edd61e7c7befc2b63ed7fa31e0ad9cd747cf
|
9af11d2addad51c1b806411b876920ea95482b1b
|
refs/heads/master
| 2022-09-14T01:34:54.792597
| 2022-08-26T20:12:53
| 2022-08-26T20:12:53
| 248,516,565
| 3
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 6,221
|
cpp
|
C++二进制文件读写.cpp
|
//转自https://blog.csdn.net/u014646950/article/details/51100185
//C/C++二进制读写png文件
#include "iostream"
#include "fstream"
#include "string"
using namespace std;
/*
class PngMsg
{
private :
unsigned char markMsg[8]; //十进制,相当于16进制89.50.4e.47.0d.0a.1a.0a;
char widthloc;
char heigtMsgloc;
char BitDepthloc;//图像深度
char ColorTypeloc;
char CompressionMethodloc;//压缩方法(LZ77派生算法)
char FilterMethodloc;//滤波器方法
char InterlaceMethodloc;
public:
PngMsg()
{
markMsg[0] = 137;markMsg[1] = 80; markMsg[2] = 78;markMsg[3] = 71; markMsg[4] = 13;markMsg[5] = 10; markMsg[6] = 26; markMsg[7] = 10;
widthloc = 'a';
heigtMsgloc = 'b';
BitDepthloc = 'c';//图像深度
ColorTypeloc = 'd';
CompressionMethodloc = 'e';//压缩方法(LZ77派生算法)
FilterMethodloc = 'f';//滤波器方法
InterlaceMethodloc = 'g';
}
long int getMsg(char loc)
{
if (loc == 'a')return 0x10;
if (loc == 'b')return 0x14;
if (loc == 'c')return 0x15;
if (loc == 'd')return 0x16;
if (loc == 'e')return 0x17;
if (loc == 'f')return 0x18;
if (loc == 'g')return 0x19;
}
unsigned char width[4];//图像宽度,单位像素
unsigned char height[4];//图像高度,单位像素
unsigned char BitDepth;
//图像深度
//索引彩色1.2.4.8;灰度1.2.4.8.16;真彩色8.16
unsigned char ColorType;
//0灰度1.2.4.8.16;2真彩色8.16;3索引彩色1.2.4.8
//4带α通道数据的灰度8.16;6带α通道数据的真彩色8.16
unsigned char CompressionMethod;//压缩方法(LZ77派生算法)
unsigned char FilterMethod;//滤波器方法
unsigned char InterlaceMethod;//0:非隔行扫描;1:Adam7
};*/
//===============================
//===============
//二进制读入。书上写ASCII码读取和二进制读取,如果对象是字母,那么一致。如果是数字,那么不一致
//书中说明【文件中数据的组织形式,分为ASCII文件(一个字节存放一个ASCII代码)和二进制文件(内部文件,存储形式原样在磁盘上存放),】
//字符,内存存储=ASCII=二进制形式
//数值数据,内存存储和ASCII码不同。
//样例内存整数100000.
//----------------------------------------------------------------
//内存地址 0x00 01 02 03
//内存 00000000 00000000 00100111 00010000【大端模式下】
//----------------------------------------------------------------
//二进制 00000000 00000000 00100111 00010000
//----------------------------------------------------------------
//ASCII 00110001 00110000 00110000 00110000 00110000 00110000【6个字节】
//ASCII码对应 1的49 0的48 0的48 0的48 0的48 0的48
//----------------------------------------------------------------
//只有含‘写’的不存在的文件会新建,其他会报错
//r只读;w只写;a尾增(附加/写);文本ASCII
//rb读;wb写;ab尾增;二进制
//以下读写↓
//r+;w+;a+;文本ASCII
//rb+;wb+;ab+二进制
void writeImage(unsigned char* imgbuf, int size)
{
//FILE* fp = fopen(shaderFile, "wb");
//由于vs甚么安全性的原因,不让使用fopen,用下面的fopen_s代替;
FILE*imgPo;
fopen_s(&imgPo, "D:\\2.png", "wb");//这里是用二进制读取,read-r;binary-b;因为只弄r结果出错!!弄了后面那个的再来看这个才发现是这个的问题!!
if (imgPo == NULL)return;
fwrite(imgbuf, sizeof(char), size, imgPo);
fclose(imgPo);
}
void WriteImage(unsigned char* imgbuf, int size)
{
ofstream imgFo("D:\\3.png", ios::binary);
if (!imgFo)
{
cerr << "open error!" << endl;
abort();
}
imgFo.write((char*)imgbuf, size);//一次性写入后面注释的是循环写入
/* for (int i = 0; i < size; i++)
{
char ct = (imgbuf[i] & 0xFF);
imgFo.write(&ct, sizeof(char));
//unsigned char ct = (imgbuf[i] & 0xFF);
//imgFo.write((char*)&ct, sizeof(unsigned char));
//尝试这样输出的是否正确.
//unsigned char是我自己给名的unsigned char,出来的是对的,用char也可以。都是一个字节。
}
*/
imgFo.close();
}
void readImageFile(const char* Imgname)
{
//FILE* fp = fopen(shaderFile, "rb");
//由于vs甚么安全性的原因,不让使用fopen,用下面的fopen_s代替;
FILE*imgP;
fopen_s(&imgP, Imgname, "rb");//这里是用二进制读取,read-r;binary-b;因为只弄r结果出错!!弄了后面那个的再来看这个才发现是这个的问题!!
if (imgP == NULL)return;
fseek(imgP, 0L, SEEK_END);
long size = ftell(imgP);
unsigned char*imgbuf = new unsigned char[size + 1];
fseek(imgP, 0x0L, SEEK_SET);//图片源
fread(imgbuf, sizeof(imgbuf[0]), size, imgP);
for (int j = 0; j < size; j++)
cout << (imgbuf[j] & 0xff) << " ";
fclose(imgP);
writeImage(imgbuf, size);
WriteImage(imgbuf, size);
}
//===========================================================
void ReadImageFile(const char* Imgname)
{
ifstream imgF(Imgname, ios::binary);
if (!imgF) {
cerr << "open error!" << endl;
abort();
}
imgF.seekg(0, ios::end);
int size = imgF.tellg();
//查了C++Library Reference才知道怎么得到size。
/*int pixscnt;
unsigned char width[4], height[4];
imgF.seekg(0x10);
imgF.read((char*)&width, sizeof(width));
imgF.seekg(0x14);
imgF.read((char*)&height, sizeof(height));
for (int i = 0; i < 4; i++)
cout << (width[i] & 0xff) << ":";
for (int i = 0; i < 4; i++)
cout << (height[i] & 0xff) << ":";
pixscnt = (width[2] * (0x100) + width[3])*(height[2] * (0x100) + height[3]);
cout << pixscnt << endl;//像素
cout << size << endl;*/
unsigned char* imgbuf = new unsigned char[size];
//imgF.seekg(0x10);
imgF.seekg(0, ios::beg);
imgF.read((char*)imgbuf, size);//一次性读入,书上的不知是错的还是旧的不可行。后面注释的是循环读入
/*
for (int i = 0; i<size; i++)
imgF.read( (char*)&imgbuf[i], sizeof(unsigned char));
*/
imgF.close();
/*
for (int i = 0; i < size; i++)
{
cout << hex << (imgbuf[i] & 0xff) << ":";
if (i % 4 == 0)cout << endl;
}
*/
WriteImage(imgbuf, size);
}
int main()
{
//readImageFile("D:\\1.png");//C/C++的
ReadImageFile("D:\\1.png");//C++的
system("pause");
return 0;
}
|
453c013e0c1e029e2b36dd6b187a9b1db3b0a40f
|
34d13bdfcb6d2053c394b695f3873d64b790bdf7
|
/Splendor/Drawer.cpp
|
5e4f3325a5cf85c47363a88766037dcefb181c3e
|
[] |
no_license
|
yu-chul/Splendors
|
d0b3d444757cabd5afe41d9a1c58404043a4aeb3
|
2a8b273cbea2f0088de667685f37780b95be419c
|
refs/heads/master
| 2022-12-18T13:19:42.660519
| 2020-09-20T04:04:59
| 2020-09-20T04:04:59
| 296,997,776
| 1
| 0
| null | null | null | null |
GB18030
|
C++
| false
| false
| 357
|
cpp
|
Drawer.cpp
|
#include "Drawer.h"
void pos(int x, int y)//设置光标位置
{
COORD pos;
pos.X = x;
pos.Y = y;
SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), pos);
}
void col(unsigned short ForeColor)//颜色设置
{
HANDLE handle = GetStdHandle(STD_OUTPUT_HANDLE);//获取当前窗口句柄
SetConsoleTextAttribute(handle, ForeColor);//设置颜色
}
|
9a5688be5b157833b4706c597e63f8f50f320adc
|
3a58b91975c73864ca99dddc6000241f6d551e6f
|
/Path.h
|
dd1488cc19b78f512ae3830a6d39c43f8b8640ea
|
[
"MIT"
] |
permissive
|
jefflbeckman/path
|
e21fdbab09bd352bf3d68f6591a06ed3e226255b
|
62ec991005612553bb7f7d4900227b9e4b257f1e
|
refs/heads/master
| 2021-01-13T17:04:27.551014
| 2015-06-11T21:44:22
| 2015-06-11T21:44:22
| 37,286,764
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,298
|
h
|
Path.h
|
#include <vector>
#include <tuple>
#include "Error.h"
struct point
{
double x;
double y;
double z;
inline point operator+(const point& other) const {
point res{ x + other.x, y + other.y, z + other.z };
return res;
}
inline point operator-(const point& other) const {
point res{ x - other.x, y - other.y, z - other.z };
return res;
}
inline point operator*(const point& other) const { //dot operator
point res{ x * other.x, y * other.y, z * other.z };
return res;
}
inline bool operator == (const point& other) const {
return x == other.x && y == other.y && z == other.z;
}
};
struct velocity
{
double x;
double y;
double z;
};
struct acceleration
{
double x;
double y;
double z;
};
typedef unsigned long int timestamp;
namespace Shapes
{
class Path
{
public:
~Path();
//Constructors
Path();
Path(size_t size);
Path(size_t size, timestamp period);
Path(char* filename);
Path(std::vector<point> given_points, timestamp period);
Path(std::vector<point> given_points, std::vector<timestamp> variable_periods);
Error dump_to_file(char* filename);
Error read_points_from_file(char* filename);
Error read_accel_from_file(char* filename);
point get_point(timestamp time);
Error add_point(point added_point); //only for fixed_period
Error add_point(point added_point, timestamp time); //if fixed_period, will make dynamic timing
std::vector<point> get_points_data();
std::vector<timestamp> get_time_data();
timestamp get_fixed_period_data();
Path combine_paths(Path other_path, velocity initial_velocity, velocity their_velocity);
private:
void calculate_velocities_from_position(velocity initial_velocity);
unsigned int get_index_from_time(timestamp time); // O(log n)
timestamp fixed_period;
void convert_fixed_period_to_timestamps();
//A map would also make sense, since
std::vector<point> points;
std::vector<timestamp> timestamps; //must be ordered
std::vector<velocity> velocities;
bool vecolities_calculated; //we might lazily calculate them, or need to recalculate them later on if we add points
timestamp get_time(unsigned int index);
point get_position_at_time(timestamp time);
velocity static get_velocity_from_finite_difference(point a, point b, timestamp dt);
};
}
|
a59d9655171e3515c5634638c8c9d625fdbb024c
|
d55bcd124949e1445cff92e0b02ce2a7d581d615
|
/Game/MarioBaseProject/Background.cpp
|
ccb06c785072f0f350fda8a48b3c0cceeecfa0d3
|
[] |
no_license
|
ScottGarryFoster/UNI-YEAR1-MarioBros3
|
a36c8f2b30866217ba98c0ef93c2c17e3524f437
|
6998d63e6376c352f1aab2ef133f712ab5463e3f
|
refs/heads/master
| 2022-03-04T18:10:53.927406
| 2019-11-18T14:17:49
| 2019-11-18T14:17:49
| 222,448,290
| 3
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 6,354
|
cpp
|
Background.cpp
|
#include "Background.h"
Background::Background()
{
}
Background::Background(SpriteBatch* f_sb)
{
m_sb = f_sb;
m_tsmTransparent = new TextureSelfManaged();
m_tsmTransparent->LoadTextureFromLocation(m_sb->get_renderer(),"Images/Mario3/Transparent.png");
}
Background::~Background()
{
if(m_tsmTexture != nullptr)
delete m_tsmTexture;
if(m_tsmTransparent != nullptr)
delete m_tsmTransparent;
}
bool Background::load_background(string f_sLocation, int f_iWidth, int f_iHeight, bool f_bRepeat)
{
//cout << "TRY LOAD BACKGROUND" << endl;
if (f_sLocation == "") return false;
if (m_tsmTexture == nullptr)
m_tsmTexture = new TextureSelfManaged();
bool l_bCheck = m_tsmTexture->LoadTextureFromLocation(m_sb->get_renderer(), f_sLocation);
if (!l_bCheck) return false;
//cout << "LOADED BACKGROUND" << endl;
m_iWidth = f_iWidth;
m_iHeight = f_iHeight;
m_bRepeat = f_bRepeat;
return true;
}
bool Background::Draw()
{
if (p_camera == nullptr) return Draw_eachCamera(nullptr);
if(p_camera->get_visable())
Draw_eachCamera(p_camera);
for (int i = 0; i < 10; i++)
{
if (p_alternativeCameras[i] != nullptr)
if (p_alternativeCameras[i]->get_visable())
Draw_eachCamera(p_alternativeCameras[i]);
}
return true;
}
bool Background::Draw_eachCamera(Camera *f_camera)
{
//m_fScaleSize = SCREEN_HEIGHT / m_iHeight; //Scale to screenheight
m_fScaleSize = SCREEN_HEIGHT / m_iHeight; //Scale to screenheight
float l_fNewWidth = m_fScaleSize * m_iWidth;
float l_fNewHeight = m_fScaleSize * m_iHeight;
int l_iTimeHeight = 0; int l_iTimeWidth = 0;
int l_iWorldHeight = SCREEN_HEIGHT;
int l_iWorldWidth = SCREEN_WIDTH;
bool l_bFoundWorld = false;
if (f_camera != nullptr)
{
l_iWorldHeight = f_camera->get_worldHeight();
l_iWorldWidth = f_camera->get_worldWidth();
}
l_iTimeHeight = l_iWorldHeight / m_iHeight;
if (l_iWorldHeight % m_iHeight != 0)
l_iTimeHeight++;
l_iTimeWidth = l_iWorldWidth / m_iWidth;
if (l_iWorldWidth % m_iWidth != 0)
l_iTimeWidth++;
for (int h = 0; h < l_iTimeHeight; h++)
{
for (int w = 0; w < l_iTimeHeight; w++)
{
int l_iLocationX = w * l_fNewWidth;
int l_iLocationY = h * l_fNewHeight;
SDL_Rect renderLocation = { l_iLocationX, l_iLocationY, l_fNewWidth, l_fNewHeight };
SDL_Rect sourceLocation = { 0, 0, m_iWidth, m_iHeight };
float l_fRenderWidth, l_fRenderHeight, l_fScreenLocationX, l_fScreenLocationY;
int l_iSourceX, l_iSourceY, l_iSourceWidth, l_iSourceHeight;
if (f_camera != nullptr)
{
l_fRenderWidth = l_fNewWidth;
l_fRenderHeight = l_fNewHeight;
l_fScreenLocationX = l_iLocationX - f_camera->get_x() + f_camera->get_screenX();
l_fScreenLocationY = l_iLocationY - f_camera->get_y() + f_camera->get_screenY();
l_iSourceX = 0;
l_iSourceY = 0;
l_iSourceWidth = m_iWidth;
l_iSourceHeight = m_iHeight;
if (l_fScreenLocationX + l_fNewWidth < f_camera->get_screenX())
{
continue;
}
else if (l_fScreenLocationX < f_camera->get_screenX())
{
//If they're moving off screen on the left
l_fRenderWidth -= f_camera->get_x() - l_iLocationX;
l_iLocationX -= l_fRenderWidth;
l_iLocationX += l_fNewWidth;
l_iSourceWidth = (l_fRenderWidth / m_fScaleSize);
l_iSourceX += m_iWidth - l_iSourceWidth;
//if (w == 0)
// cout << "1: l_fRenderWidth: " << l_fRenderWidth << "l_iSourceWidth: " << l_iSourceWidth << endl;
}
if (l_fScreenLocationX > f_camera->get_screenX() + f_camera->get_screenWidth())
{
//If they're off screen on the Right
continue;
}
else if (l_fScreenLocationX + l_fNewWidth > f_camera->get_screenX() + f_camera->get_screenWidth())
{
//If they're moving on screen on the right
l_fRenderWidth += f_camera->get_x() + f_camera->get_screenWidth() - (l_iLocationX + l_fRenderWidth);
l_iSourceWidth = l_fRenderWidth / m_fScaleSize;
//if (w == 0)
// cout << "2: l_fRenderWidth: " << l_fRenderWidth << "l_iSourceWidth: " << l_iSourceWidth << endl;
}
if (l_fRenderWidth < 0) continue;
//Y:
if (l_fScreenLocationY + l_fNewHeight < f_camera->get_screenY())
{
continue;
}
else if (l_fScreenLocationY < f_camera->get_screenY())
{
//If they're moving off screen on the left
//l_fRenderWidth -= f_camera->get_x() - ((tile - 1) * l_fNewWidth);
l_fRenderHeight -= f_camera->get_y() - (l_iLocationY);
l_iLocationY -= l_fRenderHeight;
l_iLocationY += l_fNewHeight;
l_iSourceHeight = l_fRenderHeight / m_fScaleSize;
l_iSourceY += m_iHeight - l_iSourceHeight;
}
if (l_fScreenLocationY > f_camera->get_screenY() + f_camera->get_screenHeight())
{
//If they're off screen on the Right
continue;
}
else if (l_fScreenLocationY + l_fNewHeight > f_camera->get_screenY() + f_camera->get_screenHeight())
{
//If they're moving on screen on the right
//l_fRenderWidth += f_camera->get_x() + f_camera->get_screenWidth() - ((tile) * l_fNewWidth);
//l_fRenderWidth += f_camera->get_x() + f_camera->get_screenWidth() - ((tile) * l_fNewWidth);
l_fRenderHeight += f_camera->get_y() + f_camera->get_screenHeight() - (l_iLocationY + l_fRenderHeight);
l_iSourceHeight = l_fRenderHeight / m_fScaleSize;
}
//Full Cull:
if ((int)l_fRenderWidth == 0 || (int)l_fRenderHeight == 0 || l_iSourceHeight == 0 || l_iSourceWidth == 0)
continue;
}
if (m_bLockToCamera && f_camera != nullptr)
{
l_iLocationX -= f_camera->get_x();
l_iLocationX += f_camera->get_screenX();
l_iLocationY -= f_camera->get_y();
l_iLocationY += f_camera->get_screenY();
}
if (f_camera != nullptr)
{
renderLocation = { l_iLocationX, l_iLocationY, (int)l_fRenderWidth, (int)l_fRenderHeight };
sourceLocation = { l_iSourceX, l_iSourceY, l_iSourceWidth, l_iSourceHeight };
}
else
{
renderLocation = { l_iLocationX, l_iLocationY, (int)l_fNewWidth, (int)l_fNewHeight };
sourceLocation = { 0, 0, m_iWidth, m_iHeight };
}
//if (w > 0)
// SDL_RenderCopyEx(m_sb->get_renderer(), m_tsmTransparent->get_texturePointer(), &sourceLocation, &renderLocation, 0, NULL, SDL_FLIP_NONE);
//else
SDL_RenderCopyEx(m_sb->get_renderer(), m_tsmTexture->get_texturePointer(), &sourceLocation, &renderLocation, 0, NULL, SDL_FLIP_NONE);
}
}
return true;
}
|
a8cab52c6a19b7e46875aa819f7ea4f153bd9e52
|
64c9318f4aaa320f3175b7e16e8602cedfb4a4e2
|
/Untitled13.cpp
|
292e2b5a1ff84850f71953dc663902c79875c6b8
|
[] |
no_license
|
manhhung20020246/Tuan01
|
09e599db5b579dc62f2d6ad0cf7e87a06fe72a09
|
5bd23e1b2f93b324ea547c164916f811d036750e
|
refs/heads/master
| 2023-03-08T13:16:01.779473
| 2021-02-21T10:59:59
| 2021-02-21T10:59:59
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 249
|
cpp
|
Untitled13.cpp
|
//b13
#include <iostream>
#include <math.h>
using namespace std;
int main()
{
float x,y,a;
cout << "Nhap vao 2 so nguyen:";
cin >> x >> y;
a=sqrt(x*x+y*y);
cout << "Khoang cach tu diem (x,y) den diem O(0,0) la :" << a << endl;
}
|
05dc5dc3d9524da9db6fa3445844d7635756e37d
|
5298705370c757d8846d409382f7dcb8450d48b8
|
/wbs/src/Simulation/WeatherGeneratorKernel.h
|
966d73c65593674719f37c856208c90be50bc209
|
[
"MIT"
] |
permissive
|
RNCan/WeatherBasedSimulationFramework
|
3d63b6a5fd1548cc5e5bac840f9e7c5f442dcdb0
|
05719614d2460a8929066fb920517f75a6a3ed04
|
refs/heads/master
| 2023-07-19T21:37:08.139215
| 2023-07-13T02:29:11
| 2023-07-13T02:29:11
| 51,245,634
| 7
| 2
| null | null | null | null |
ISO-8859-1
|
C++
| false
| false
| 2,242
|
h
|
WeatherGeneratorKernel.h
|
//******************************************************************************
// Project: Weather-based simulation framework (WBSF)
// Programmer: Jacques Régnière, Rémi Saint-Amant
//
// It under the terms of the GNU General Public License as published by
// the Free Software Foundation
// It is provided "as is" without express or implied warranty.
//
//******************************************************************************
//
// Abstract: This class simulate daily air temperature, precipitation, humidity and wind speed from monthly normal
//
// See article : Régnière, J., St-Amant, R. 2007. Stochastic simulation of daily air
// temperature and precipitation from monthly normals in Noth America north
// of Mexico. Int J Biometeorol.
//
//***************************************************************************
#pragma once
#include <array>
#include "Basic/WeatherDefine.h"
#include "Basic/AmountPpt.h"
#include "Basic/UtilStd.h"
#include "Basic/NormalsStation.h"
namespace WBSF
{
class CWeatherYear;
typedef std::array<int, HOURLY_DATA::NB_VAR_H> CSeed;
typedef std::vector<CSeed> CSeedVector;
typedef std::vector<CSeedVector> CSeedMatrix;
class CWeatherGeneratorKernel
{
public:
CWeatherGeneratorKernel(CWVariables m_variables = "TN T TX P");
virtual ~CWeatherGeneratorKernel();
void SetNormals(const CNormalsData& normals);
void SetVaraibles(CWVariables in){ m_variables = in; }
void ResetDeltaEpsilon();
void SetSeed(const CSeed& seed){ m_seed = seed; }
void Generate(CWeatherYear& dailyData);
private:
void InitRandomNumber(int m, double p_test[31], double epsilon_prec[31]);
void RandomizeNormals(CNormalsData& normalTmp);
void GetRandomTraces(double e_min[31], double e_max[31], size_t month);
void DailyPrecipitation(int month, const CNormalsData& normalTmp, CWeatherYear& dailyData);
CNormalsData m_normals;
CAmountPpt m_AP;
void InitDeltaEpsilon();
bool IsDeltaEpsilonInit(){ return (m_delta[0] + m_delta[1] + m_delta[2]) != 0; }
CWVariables m_variables;
double m_delta[3];
double m_epsilon[3];
CSeed m_seed;
CRandomGenerator m_rand;
};
}
|
7343336aa5355a71e9f6838cc72fc155c458fbe9
|
b99aeb23c94e66511326d67e58a547c41a1e43e4
|
/Nathan Russell_HK Project Attempt 2/Nathan Russell_HK Project Attempt 2.cpp
|
6d1cd0294e735782af9e3ef0f14c205dda47176c
|
[] |
no_license
|
natrusse/Nathan-Russell_HK-Project-Attempt-2
|
15ace8cf749e4e112ccb4d3249825e410a05df66
|
a2d24393f28698ba7cff67a976b13e4f47a0459c
|
refs/heads/master
| 2021-05-08T16:32:08.677767
| 2018-02-09T21:50:11
| 2018-02-09T21:50:11
| 120,161,300
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 7,216
|
cpp
|
Nathan Russell_HK Project Attempt 2.cpp
|
// Nathan Russell_HK Game Project-2.cpp
// last edited 2/3/2018 at 10:28
// last synced
#include "stdafx.h"
#include <iostream>
#include <cstdlib>
#include <ctime>
#include <string>
using namespace std;
using std::endl;
using std::cin;
using std::cout;
void persona() {
//creates a sort of skynet personality
//endl can be used to substute \n
cout << "=================================================================\n\n";
cout << "\tInitiating Skynet.......\n\n";
cout << "=================================================================\n\n";
cout << "\tInitializing 8x8 Grid search for enemy.......\n";
cout << "\n\tEnemy Located within 8x8 Grid!";
cout << "\n\n\tPrepare to decrypt Grid Information.......\n\n";
}
int main()
{
//declaring variables
srand(static_cast<unsigned int>(time(0)));
//sets enemy location for code entirety
int enemylocation = rand() % 64 + 1;
//Player attempt variable
int binaryTries = 0;
int randomTries = 0;
int linearTries = 0;
int humanTries = 0;
//Player guess variable
int binaryGuess;
int randomGuess;
int linearGuess = 0;
int humanGuess;
//range answers must be within
int high = 64;
int low = 1;
//boolean logic to run accurate loops
bool isEnemyFoundbyBinarySearch = false;
bool isEnemyFoundbyrandomSearch = false;
bool isEnemyFoundbylinearSearch = false;
bool isEnemyFoundbyhumanSearch = false;
persona();
//human search player
while (isEnemyFoundbyhumanSearch == false) {
//starts game loop
//each guess resets the middle number between the high and low
cout << "Input Enemy location estimate: " << endl;
cin >> humanGuess;
++humanTries;
//output if guess is too high
if (humanGuess > enemylocation)
{
cout << "\tSearch grid " << humanGuess << " yielded no results. Lower guess recommended.\n\n";
//high decreases to compensate for guess
high = humanGuess--;
}
//output if guess is too low
else if (humanGuess < enemylocation)
{
cout << "\tSearch grid " << humanGuess << " yielded no results. Higher guess recommended.\n\n";
//low increases to compensate for guess
low = humanGuess++;
}
//output if the guess is the enemy location
else if (humanGuess == enemylocation)
{
cout << "\n\tEnemy Located in Grid #" << enemylocation << ". Enemy located in " << humanTries << " attempts!\n\n";
//ends the loop
isEnemyFoundbyhumanSearch = true;
}
//output if incorrect input is used
else
{
cout << "human search malfunction, please input within parameters " << high << " and" << low << "." << endl;
continue;
}
//human search code ends here
}
system("pause");
cout << "\n\tNow preparing for Linear AI Search.....\n\n" << endl;
//linear ai search player
while (isEnemyFoundbylinearSearch == false) {
//starts game loop
//each guess resets the middle number between the high and low
linearGuess + 1;
++linearTries;
//output if guess is too high
if (linearGuess > enemylocation)
{
cout << "\tSearch grid " << linearGuess << " yielded no results. Lower guess recommended because enemy location is " << enemylocation << ".\n\n";
//high decreases to compensate for guess
high = linearGuess--;
}
//output if guess is too low
else if (linearGuess < enemylocation)
{
cout << "\tSearch grid " << linearGuess << " yielded no results. Higher guess recommended because enemy location is " << enemylocation << ".\n\n";
//low increases to compensate for guess
low = linearGuess++;
}
//output if the guess is the enemy location
else if (linearGuess == enemylocation)
{
cout << "\n\tEnemy Located in Grid #" << enemylocation << ". Enemy located in " << linearTries << " attempts!\n\n";
//ends the loop
isEnemyFoundbylinearSearch = true;
}
//output if incorrect input is used
else
{
cout << "linear search malfunction, please input within parameters " << high << " and" << low << "." << endl;
continue;
}
//linear search code ends here
}
system("pause");
cout << "\n\tNow preparing for Random AI Search.....\n\n" << endl;
//random ai search player
while (isEnemyFoundbyrandomSearch == false) {
//starts game loop
//each guess resets the middle number between the high and low
randomGuess = rand() % 64 + 1;
++randomTries;
//output if guess is too high
if (randomGuess > enemylocation)
{
cout << "\tSearch grid " << randomGuess << " yielded no results. Lower guess recommended because enemy location is " << enemylocation << ".\n\n";
//high decreases to compensate for guess
}
//output if guess is too low
else if (randomGuess < enemylocation)
{
cout << "\tSearch grid " << randomGuess << " yielded no results. Higher guess recommended because enemy location is " << enemylocation << ".\n\n";
//low increases to compensate for guess
}
//output if the guess is the enemy location
else if (randomGuess == enemylocation)
{
cout << "\n\tEnemy Located in Grid #" << enemylocation << ". Enemy located in " << randomTries << " attempts!\n\n";
//ends the loop
isEnemyFoundbyrandomSearch = true;
}
//output if incorrect input is used
else
{
cout << "random search malfunction, please input within parameters " << high << " and" << low << "." << endl;
continue;
}
//random search code ends here
}
system("pause");
cout << "\n\tNow preparing for Binary Search.....\n\n" << endl;
//binary search player
while (isEnemyFoundbyBinarySearch == false) {
//each guess resets the middle number between the high and low
binaryGuess = ((high - low) / 2) + low;
++binaryTries;
//output if guess is too high
if (binaryGuess > enemylocation)
{
cout << "\tSearch grid " << binaryGuess << " yielded no results. Lower guess recommended because enemy location is " << enemylocation << ".\n\n";
//high decreases to compensate for guess
high = binaryGuess--;
}
//output if guess is too low
else if (binaryGuess < enemylocation)
{
cout << "\tSearch grid " << binaryGuess << " yielded no results. Higher guess recommended because enemy location is " << enemylocation << ".\n\n";
//low increases to compensate for guess
low = binaryGuess++;
}
//output if the guess is the enemy location
else if (binaryGuess == enemylocation)
{
cout << "\n\tEnemy Located in Grid #" << enemylocation << ". Enemy located in " << binaryTries << " attempts!\n\n";
//ends the loop
isEnemyFoundbyBinarySearch = true;
}
//output if incorrect input is used
else
{
cout << "Binary search malfunction, please input within parameters " << high << " and" << low << "." << endl;
continue;
}
//binary search code ends here
}
system("pause");
cout << "\n\tThe final effeciency rating is now commencing...\n";
//todo add final stats (list all player tries)
cout << "\n\tHuman Search effeciency rating: " << humanTries << " attempts.\n";
cout << "\n\tLinear Search effeciency rating: " << linearTries << " attempts.\n";
cout << "\n\tRandom Search effeciency rating: " << randomTries << " attempts.\n";
cout << "\n\tBinary Search effeciency rating: " << binaryTries << " attempts.\n\n";
//todo ask human player to play again
system("pause");
return 0;
}
|
f1bb1a498e907d32d89319052ed2acf2349ee9c4
|
a1809f8abdb7d0d5bbf847b076df207400e7b08a
|
/Simpsons Hit&Run/game/libs/scrooby/apps/builder/DlgInsert.cpp
|
c6e5cef894217587998ea4a1179b5cf1b011d52e
|
[] |
no_license
|
RolphWoggom/shr.tar
|
556cca3ff89fff3ff46a77b32a16bebca85acabf
|
147796d55e69f490fb001f8cbdb9bf7de9e556ad
|
refs/heads/master
| 2023-07-03T19:15:13.649803
| 2021-08-27T22:24:13
| 2021-08-27T22:24:13
| 400,380,551
| 8
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 8,958
|
cpp
|
DlgInsert.cpp
|
/////////////////////////////////////////////////////////////////////////////
// DlgInsert.cpp : implementation file
#include "StdAfx.h"
#include "resource.h"
#include "xObject.h"
#include "DlgInsert.h"
#include "FeData\Helpers\OutputMessage.h"
#include "FeData\Helpers\ResourceManager.h"
#include "FeData\Resources\Image.h"
#include "FeData\Resources\TextBible.h"
#include "FeData\Resources\TextStyle.h"
#include "FeData\ResourceFiles\TextBibleFile.h"
#include "Strings\PCString.h"
#include "Strings\UnicodeString.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CInsertSpriteDlg dialog
CInsertSpriteDlg::CInsertSpriteDlg() : CDialog(CInsertSpriteDlg::IDD),
m_ResourceManager( NULL ),
m_SelectedImageName( "" ),
m_NameManuallyChanged( false )
{
//{{AFX_DATA_INIT(CInsertSpriteDlg)
m_SpriteName = _T("");
//}}AFX_DATA_INIT
}
void CInsertSpriteDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CInsertSpriteDlg)
DDX_Control(pDX, IDC_IMAGE_RESOURCE_LIST_BOX, m_ImageResourceListBox);
DDX_Text(pDX, IDC_IMAGE_NAME, m_SpriteName);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CInsertSpriteDlg, CDialog)
//{{AFX_MSG_MAP(CInsertSpriteDlg)
ON_LBN_SELCHANGE(IDC_IMAGE_RESOURCE_LIST_BOX, OnSelchangeImageResourceListBox)
ON_EN_CHANGE(IDC_IMAGE_NAME, OnChangeImageName)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CInsertSpriteDlg message handlers
BOOL CInsertSpriteDlg::OnInitDialog()
{
CDialog::OnInitDialog();
if( m_ResourceManager == NULL )
{
return false;
}
for( int i = 0; i < m_ResourceManager->GetNumberOfImages(); i++ )
{
FeData::Image* image = m_ResourceManager->GetImageWithoutCounting( i );
if( image != NULL )
{
m_ImageResourceListBox.AddString( image->GetName() );
}
}
m_ImageResourceListBox.SetCurSel(0);
OnSelchangeImageResourceListBox();
return TRUE; // return TRUE unless you set the focus to a control
// EXCEPTION: OCX Property Pages should return FALSE
}
void CInsertSpriteDlg::OnSelchangeImageResourceListBox()
{
if( !m_NameManuallyChanged )
{
int selection = m_ImageResourceListBox.GetCurSel();
if( selection != LB_ERR )
{
m_ImageResourceListBox.GetText( selection, m_SpriteName );
}
UpdateData( FALSE );
}
}
void CInsertSpriteDlg::OnChangeImageName()
{
m_NameManuallyChanged = true;
}
void CInsertSpriteDlg::OnOK()
{
int selection = m_ImageResourceListBox.GetCurSel();
if( selection != LB_ERR )
{
CString tempString;
m_ImageResourceListBox.GetText( selection, tempString );
m_SelectedImageName = tempString;
}
CDialog::OnOK();
}
void CInsertSpriteDlg::SetResourceManager( FeData::ResourceManager* resourceManager )
{
m_ResourceManager = resourceManager;
}
void CInsertSpriteDlg::SetSpriteName( PascalCString& spriteName )
{
m_SpriteName = spriteName;
}
bool CInsertSpriteDlg::GetSelectedImageName( PascalCString& imageName )
{
if( m_SelectedImageName == "" )
{
return false;
}
else
{
imageName = m_SelectedImageName;
return true;
}
}
bool CInsertSpriteDlg::GetSpriteName( PascalCString& spriteName )
{
if( m_SelectedImageName == "" )
{
return false;
}
else
{
spriteName = m_SpriteName;
return true;
}
}
/////////////////////////////////////////////////////////////////////////////
// CInsertStringDlg dialog
CInsertStringDlg::CInsertStringDlg() : CDialog(CInsertStringDlg::IDD)
{
//{{AFX_DATA_INIT(CInsertStringDlg)
m_str = _T("");
//}}AFX_DATA_INIT
}
void CInsertStringDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CInsertStringDlg)
DDX_Text(pDX, IDC_STRING, m_str);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CInsertStringDlg, CDialog)
//{{AFX_MSG_MAP(CInsertStringDlg)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CInsertStringDlg message handlers
/////////////////////////////////////////////////////////////////////////////
// CInsertTextDlg dialog
CInsertTextDlg::CInsertTextDlg() : CDialog(CInsertTextDlg::IDD)
{
//{{AFX_DATA_INIT(CInsertTextDlg)
m_TextName = _T("");
m_HardCodedString = _T("");
//}}AFX_DATA_INIT
}
void CInsertTextDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CInsertTextDlg)
DDX_Control(pDX, IDC_TEXT_STYLE_LIST, m_TextStyleList);
DDX_Control(pDX, IDC_TEXT_BIBLE_STRING_LIST, m_TextBibleStringList);
DDX_Control(pDX, IDC_TEXT_BIBLE_LIST, m_TextBibleList);
DDX_Text(pDX, IDC_TEXT_NAME, m_TextName);
DDX_Text(pDX, IDC_HARD_CODED_STRING, m_HardCodedString);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CInsertTextDlg, CDialog)
//{{AFX_MSG_MAP(CInsertTextDlg)
ON_LBN_SELCHANGE(IDC_TEXT_BIBLE_LIST, OnSelchangeTextBibleList)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CInsertTextDlg message handlers
BOOL CInsertTextDlg::OnInitDialog()
{
using namespace FeData;
CDialog::OnInitDialog();
if( m_ResourceManager == NULL )
{
return false;
}
int i;
for( i = 0; i < m_ResourceManager->GetNumberOfTextBibles(); i++ )
{
TextBible* textBible = m_ResourceManager->GetTextBibleWithoutCounting( i );
if( textBible != NULL )
{
m_TextBibleList.AddString( textBible->GetName() );
}
}
m_TextBibleList.SetCurSel(0);
for( i = 0; i < m_ResourceManager->GetNumberOfTextStyles(); i++ )
{
TextStyle* textStyle = m_ResourceManager->GetTextStyleWithoutCounting( i );
if( textStyle != NULL )
{
m_TextStyleList.AddString( textStyle->GetName() );
}
}
m_TextStyleList.SetCurSel(0);
m_TextBibleStringList.SetColumnHeadings( "Name", "String" );
OnSelchangeTextBibleList();
return TRUE; // return TRUE unless you set the focus to a control
// EXCEPTION: OCX Property Pages should return FALSE
}
void CInsertTextDlg::OnOK()
{
CDialog::OnOK();
}
void CInsertTextDlg::SetResourceManager( FeData::ResourceManager* resourceManager )
{
m_ResourceManager = resourceManager;
}
void CInsertTextDlg::OnSelchangeTextBibleList()
{
using namespace FeData;
m_TextBibleStringList.DeleteAllItems();
if( m_ResourceManager == NULL )
{
return;
}
int selection = m_TextBibleList.GetCurSel();
if( selection == LB_ERR )
{
return;
}
CString tempString;
m_TextBibleList.GetText( selection, tempString );
PascalCString textBibleName = tempString;
TextBible* textBible = m_ResourceManager->GetTextBibleWithoutCounting( textBibleName );
if( textBible == NULL )
{
return;
}
TextBibleFile* textBibleFile = dynamic_cast<TextBibleFile*>( textBible->GetResourceFile() );
if( textBibleFile == NULL )
{
return;
}
StringSet stringNames;
if( !textBibleFile->GetAllStringNames( stringNames ) )
{
return;
}
StringSet::iterator it;
for( it = stringNames.begin(); it != stringNames.end(); it++ )
{
PascalCString name( *it );
UnicodeString translationString;
// Find the translation string
if( !textBibleFile->GetString( name, translationString ) )
{
translationString.ReadAscii( "*** Error ***", -1 );
}
// Cope the string to a buffer
int size = translationString.Length() + 1;
char* buffer = new char[ size ];
if( buffer == NULL )
{
FeData::g_OutputMessage.Add( "CInsertTextDlg::OnSelchangeTextBibleList: Out of Memory!",
FeData::DebugOutputMessage );
continue;
}
translationString.MakeAscii( buffer, size );
// Add the list element
m_TextBibleStringList.InsertItem( name, buffer );
delete [] buffer;
}
// Add full row selection to listctrl
m_TextBibleStringList.SetFullRowSel( TRUE );
// Sort the list according to the Name column
m_TextBibleStringList.SortColumn( 0, TRUE );
}
|
26511c51f10d43d2caeaf2c585f48b97d9e093bb
|
6044a9313fc48aef6081fe230da4b49759712ab1
|
/Sorting_n2.cpp
|
dfb03eb71c9446512a42a082563fca4d37384466
|
[] |
no_license
|
jackthh/Sorting-Algorithms
|
e9168dfc74a21e19ef09b8dc95c064013950652f
|
f443d8f34fb1c2649bed8cbd8953bbe033567ae4
|
refs/heads/master
| 2020-11-29T00:53:08.107725
| 2019-12-24T16:05:08
| 2019-12-24T16:05:08
| 229,967,836
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 260
|
cpp
|
Sorting_n2.cpp
|
#include<iostream>
#include<fstream>
#include<string>
#include<vector>
using namespace std;
int main() {
vector<int> v;
v.push_back(10);
v.push_back(12);
cout << v[0] << " " << v[1] << endl;;
swap(v[0], v[1]);
cout << v[0] << " " << v[1];
return 0;
}
|
c1c42c735abfe52fcdcc8c56d5e77519f0b20951
|
299a2cc6fc24111b2c26be398331ff7b5ce9b329
|
/tarefa1/tarefa1.ino
|
e189ef428192e49afc4f8bd8afcd20d47cff7a1c
|
[] |
no_license
|
rafarubim/sistemas-reativos
|
ea2c765cc051c210d05497b417957a9a266d359d
|
1ba89af9e40ce193ebb14727749e85c59cf84c8b
|
refs/heads/master
| 2021-09-27T09:56:55.245944
| 2021-09-23T20:46:46
| 2021-09-23T20:46:46
| 175,451,185
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 6,775
|
ino
|
tarefa1.ino
|
#define LED_PIN 13
#define BUTTON1 A1
#define BUTTON2 A2
void switchLed(int on) {
if (on) {
digitalWrite(LED_PIN, LOW);
}
else {
digitalWrite(LED_PIN, HIGH);
}
}
int getButton1() {
return !digitalRead(BUTTON1);
}
int getButton2() {
return !digitalRead(BUTTON2);
}
unsigned long lastBlink = 0;
int blinkSpeed = 1;
int lightsState = 0;
int triggerButton1Pressed = 1;
int triggerButton2Pressed = 1;
unsigned long timer500MsStart = 0;
int trigger500MsButton1 = 1;
int trigger500MsButton2 = 1;
int hasStoped = 0;
void blinkSlower() {
blinkSpeed -= 1;
if (blinkSpeed <=0) {
blinkSpeed = 1;
}
}
void blinkFaster() {
blinkSpeed += 1;
}
void setup() {
pinMode(LED_PIN, OUTPUT);
pinMode(A1, INPUT_PULLUP);
pinMode(A2, INPUT_PULLUP);
switchLed(lightsState);
}
void loop() {
unsigned long currentTime = millis();
int button1Pressed = getButton1();
int button2Pressed = getButton2();
// If both buttons are on and none has been triggered for being held for 500ms
if (button1Pressed && button2Pressed && trigger500MsButton1 && trigger500MsButton2) {
// Don't trigger these buttons for being held ever again
trigger500MsButton1 = 0;
trigger500MsButton2 = 0;
// Turn off the led and stop blinking
hasStoped = 1;
switchLed(0);
}
if (button1Pressed) {
// Trigger button for being pressed only once until it is pressed again
if (triggerButton1Pressed) {
triggerButton1Pressed = 0;
// Mark the current time as when we started counting
timer500MsStart = currentTime;
}
// If 500ms have passed, this will be triggered only once
if (trigger500MsButton1 && currentTime >= timer500MsStart + 500) {
trigger500MsButton1 = 0;
blinkFaster();
}
} else { // Button is not pressed
// If the button is being released, this will trigger only once
// This will only trigger if the button was held for less than 500ms
if (trigger500MsButton1 && !triggerButton1Pressed) {
blinkFaster();
}
// Allow "trigger once" variables to trigger things again
triggerButton1Pressed = 1;
trigger500MsButton1 = 1;
}
if (button2Pressed) {
// Trigger button for being pressed only once until it is pressed again
if (triggerButton2Pressed) {
triggerButton2Pressed = 0;
// Mark the current time as when we started counting
timer500MsStart = currentTime;
}
// If 500ms have passed, this will be triggered only once
if (trigger500MsButton2 && currentTime >= timer500MsStart + 500) {
trigger500MsButton2 = 0;
blinkSlower();
}
} else { // Button is not pressed
// If the button is being released, this will trigger only once
// This will only trigger if the button was held for less than 500ms
if (trigger500MsButton2 && !triggerButton2Pressed) {
blinkSlower();
}
// Allow "trigger once" variables to trigger things again
triggerButton2Pressed = 1;
trigger500MsButton2 = 1;
}
unsigned long blinkDelay = 1000 / blinkSpeed;
// This will only happen if the lights haven't stopped and if there's a delay from the last time it blinked
if (!hasStoped && currentTime >= lastBlink + blinkDelay) {
lastBlink = currentTime;
// Change light state (effectively blinking wooow)
lightsState = !lightsState;
switchLed(lightsState);
}
}#define LED_PIN 13
#define BUTTON1 A1
#define BUTTON2 A2
void switchLed(int on) {
if (on) {
digitalWrite(LED_PIN, LOW);
}
else {
digitalWrite(LED_PIN, HIGH);
}
}
int getButton1() {
return !digitalRead(BUTTON1);
}
int getButton2() {
return !digitalRead(BUTTON2);
}
unsigned long lastBlink = 0;
int blinkSpeed = 1;
int lightsState = 0;
int triggerButton1Pressed = 1;
int triggerButton2Pressed = 1;
unsigned long timer500MsStart = 0;
int trigger500MsButton1 = 1;
int trigger500MsButton2 = 1;
int hasStoped = 0;
void blinkSlower() {
blinkSpeed -= 1;
if (blinkSpeed <=0) {
blinkSpeed = 1;
}
}
void blinkFaster() {
blinkSpeed += 1;
}
void setup() {
pinMode(LED_PIN, OUTPUT);
pinMode(A1, INPUT_PULLUP);
pinMode(A2, INPUT_PULLUP);
switchLed(lightsState);
}
void loop() {
unsigned long currentTime = millis();
int button1Pressed = getButton1();
int button2Pressed = getButton2();
// If both buttons are on and none has been triggered for being held for 500ms
if (button1Pressed && button2Pressed && trigger500MsButton1 && trigger500MsButton2) {
// Don't trigger these buttons for being held ever again
trigger500MsButton1 = 0;
trigger500MsButton2 = 0;
// Turn off the led and stop blinking
hasStoped = 1;
switchLed(0);
}
if (button1Pressed) {
// Trigger button for being pressed only once until it is pressed again
if (triggerButton1Pressed) {
triggerButton1Pressed = 0;
// Mark the current time as when we started counting
timer500MsStart = currentTime;
}
// If 500ms have passed, this will be triggered only once
if (trigger500MsButton1 && currentTime >= timer500MsStart + 500) {
trigger500MsButton1 = 0;
blinkFaster();
}
} else { // Button is not pressed
// If the button is being released, this will trigger only once
// This will only trigger if the button was held for less than 500ms
if (trigger500MsButton1 && !triggerButton1Pressed) {
blinkFaster();
}
// Allow "trigger once" variables to trigger things again
triggerButton1Pressed = 1;
trigger500MsButton1 = 1;
}
if (button2Pressed) {
// Trigger button for being pressed only once until it is pressed again
if (triggerButton2Pressed) {
triggerButton2Pressed = 0;
// Mark the current time as when we started counting
timer500MsStart = currentTime;
}
// If 500ms have passed, this will be triggered only once
if (trigger500MsButton2 && currentTime >= timer500MsStart + 500) {
trigger500MsButton2 = 0;
blinkSlower();
}
} else { // Button is not pressed
// If the button is being released, this will trigger only once
// This will only trigger if the button was held for less than 500ms
if (trigger500MsButton2 && !triggerButton2Pressed) {
blinkSlower();
}
// Allow "trigger once" variables to trigger things again
triggerButton2Pressed = 1;
trigger500MsButton2 = 1;
}
unsigned long blinkDelay = 1000 / blinkSpeed;
// This will only happen if the lights haven't stopped and if there's a delay from the last time it blinked
if (!hasStoped && currentTime >= lastBlink + blinkDelay) {
lastBlink = currentTime;
// Change light state (effectively blinking wooow)
lightsState = !lightsState;
switchLed(lightsState);
}
}
|
a76ad3924abca06035fe8f705abc5a2254f839ad
|
cee179ac9c79c15109cddfc83ba81bb971eb1b7e
|
/Gui/medGUIWizardPageNew.cpp
|
c27a5351181e8cbfbdb37d13ecffe0846293de6e
|
[] |
no_license
|
besoft/MAF2Medical
|
8f88ea90a8091d99c70412ce6bca2cc988d6dfe4
|
8fed46786e9b34e7ff4871d2f11728abd69d9541
|
refs/heads/master
| 2021-01-15T22:29:48.224711
| 2019-07-31T13:57:22
| 2019-07-31T13:57:22
| 41,854,951
| 0
| 3
| null | 2015-09-03T10:52:01
| 2015-09-03T10:52:00
| null |
UTF-8
|
C++
| false
| false
| 10,344
|
cpp
|
medGUIWizardPageNew.cpp
|
/*=========================================================================
Program: MAF2Medical
Module: medGUIWizardPageNew
Authors: Matteo Giacomoni, Gianluigi Crimi
Copyright (c) B3C
All rights reserved. See Copyright.txt or
http://www.scsitaly.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
#include "medDefines.h"
//----------------------------------------------------------------------------
// NOTE: Every CPP file in the MAF must include "mafDefines.h" as first.
// This force to include Window,wxWidgets and VTK exactly in this order.
// Failing in doing this will result in a run-time error saying:
// "Failure#0: The value of ESP was not properly saved across a function call"
//----------------------------------------------------------------------------
#include <wx/statline.h>
#include "mafDecl.h"
#include "medGUIWizardPageNew.h"
#include "medGUIWizard.h"
#include "mafGUI.h"
#include "mafGUIValidator.h"
#include "mafGUILutSlider.h"
#include "mafSceneGraph.h"
#include "mafVME.h"
#include "mafVMEOutputVolume.h"
#include "vtkLookupTable.h"
#include "vtkRenderer.h"
#include "vtkMapper.h"
#include "vtkTexture.h"
#include "vtkImageData.h"
#include "mmaVolumeMaterial.h"
//----------------------------------------------------------------------------
// Event Table:
//----------------------------------------------------------------------------
//BEGIN_EVENT_TABLE(medGUIWizardPageNew, wxWizardPageSimple)
//EVT_CLOSE(medGUIWizardPageNew::nvOnCloseWindow)
//END_EVENT_TABLE()
enum ID
{
ID_SCAN_SLICE_LOAD_PAGE=MINID,
};
//----------------------------------------------------------------------------
medGUIWizardPageNew::medGUIWizardPageNew(medGUIWizard *wizardParent,long style, bool ZCrop, wxString label)
: wxWizardPageSimple(wizardParent)
//----------------------------------------------------------------------------
{
m_Listener = NULL;
m_ColorLUT = NULL;
m_ZCropSlider = NULL;
m_ZCropOn = false;
m_GUISizer = new wxBoxSizer( wxHORIZONTAL );
m_GUIUnderSizer = new wxBoxSizer( wxHORIZONTAL );
m_LUTSizer = new wxBoxSizer( wxHORIZONTAL );
m_RwiSizer = new wxBoxSizer( wxHORIZONTAL );
m_SizerAll = new wxBoxSizer( wxVERTICAL );
m_GuiView = new mafGUI(this);
m_Rwi = NULL;
m_GuiLowerLeft = NULL;
m_GuiLowerCenter = NULL;
m_GuiLowerUnderLeft = NULL;
m_GuiLowerUnderCenter = NULL;
if(style & medUSERWI)
{
m_Rwi = new mafRWI(this);
m_Rwi->SetSize(0,0,512,384);
m_Rwi->Show(true);
m_Rwi->CameraSet(CAMERA_CT);
m_Rwi->CameraUpdate();
m_LutSlider = new mafGUILutSlider(this,-1,wxPoint(0,0),wxSize(300,24));
m_LutSlider->SetListener(this);
m_GuiView->Add(m_LutSlider);
if (ZCrop)
{
m_ZCropSlider = new mafGUILutSlider(this,-1,wxPoint(0,0),wxSize(300,24),0,"Z crop");
m_ZCropSlider->SetListener(this);
m_GuiView->Add(m_ZCropSlider);
m_ZCropOn = true;
}
m_GuiView->Reparent(this);
m_RwiSizer->Add(m_Rwi->m_RwiBase,1,wxEXPAND);
m_SizerAll->Add(m_RwiSizer,0,wxEXPAND);
m_LUTSizer->Add(m_GuiView,1, wxEXPAND);
m_SizerAll->Add(m_LUTSizer,0,wxEXPAND|wxALL);
}
if(style & medUSEGUI)
{
m_GuiLowerLeft = new mafGUI(this);
m_GuiLowerLeft->FitGui();
m_GuiLowerLeft->Reparent(this);
m_GuiLowerCenter = new mafGUI(this);
m_GuiLowerCenter->FitGui();
m_GuiLowerCenter->Reparent(this);
m_GuiLowerUnderLeft = new mafGUI(this);
m_GuiLowerUnderLeft->FitGui();
m_GuiLowerUnderLeft->Reparent(this);
m_GuiLowerUnderCenter = new mafGUI(this);
m_GuiLowerUnderCenter->FitGui();
m_GuiLowerUnderCenter->Reparent(this);
m_GUISizer->Add(m_GuiLowerLeft,0,wxEXPAND);
m_GUISizer->Add(m_GuiLowerCenter,0,wxEXPAND);
m_GUIUnderSizer->Add(m_GuiLowerUnderLeft,1,wxALL);
m_GUIUnderSizer->Add(m_GuiLowerUnderCenter,1,wxALL);
m_SizerAll->Add(m_GUISizer,0,wxEXPAND|wxALL);
m_SizerAll->Add(m_GUIUnderSizer,0,wxEXPAND|wxALL);
}
SetSizer(m_SizerAll,true);
m_SizerAll->Fit(this);
}
//----------------------------------------------------------------------------
medGUIWizardPageNew::~medGUIWizardPageNew()
//----------------------------------------------------------------------------
{
cppDEL(m_Rwi);
}
//--------------------------------------------------------------------------------
void medGUIWizardPageNew::OnEvent(mafEventBase *maf_event)
//--------------------------------------------------------------------------------
{
switch(maf_event->GetId())
{
case ID_RANGE_MODIFIED:
{
if(maf_event->GetSender() == this->m_LutSlider)
UpdateActor(); //Windowing
else if(maf_event->GetSender() == this->m_ZCropSlider)
mafEventMacro(*maf_event);
}
break;
default:
mafEventMacro(*maf_event);
}
}
//----------------------------------------------------------------------------
void medGUIWizardPageNew::UpdateWindowing()
//----------------------------------------------------------------------------
{
double tableRange[2];
double scalarRange[2];
if(m_Rwi == NULL) return;
vtkActorCollection *actorCollection = m_Rwi->m_RenFront->GetActors();
actorCollection->InitTraversal();
actorCollection->GetNextItem();
actorCollection->GetNextItem()->GetTexture()->GetLookupTable()->GetTableRange(tableRange);
actorCollection->InitTraversal();
actorCollection->GetNextItem();
actorCollection->GetNextItem()->GetTexture()->GetInput()->GetScalarRange(scalarRange);
m_LutSlider->SetRange(scalarRange[0],scalarRange[1]);
m_LutSlider->SetSubRange(tableRange[0], tableRange[1]);
}
//--------------------------------------------------------------------------------
void medGUIWizardPageNew::UpdateWindowing( double *scalarRange, double *scalarSubRange )
//--------------------------------------------------------------------------------
{
if(m_Rwi == NULL) return;
m_LutSlider->SetRange(scalarRange[0],scalarRange[1]);
m_LutSlider->SetSubRange(scalarSubRange[0], scalarSubRange[1]);
UpdateActor();
}
//--------------------------------------------------------------------------------
void medGUIWizardPageNew::GetWindowing( double *scalarRange, double *scalarSubRange )
//--------------------------------------------------------------------------------
{
m_LutSlider->GetRange(&scalarRange[0],&scalarRange[1]);
m_LutSlider->GetSubRange(&scalarSubRange[0],&scalarSubRange[1]);
}
//----------------------------------------------------------------------------
void medGUIWizardPageNew::UpdateActor()
//----------------------------------------------------------------------------
{
if(m_Rwi == NULL) return;
double low, hi;
m_LutSlider->GetSubRange(&low,&hi);
vtkActorCollection *actorCollection = m_Rwi->m_RenFront->GetActors();
actorCollection->InitTraversal();
actorCollection->GetNextItem();
actorCollection->GetNextItem()->GetTexture()->GetLookupTable()->SetTableRange(low,hi);
m_Rwi->CameraUpdate();
}
//--------------------------------------------------------------------------------
void medGUIWizardPageNew::AddGuiLowerLeft(mafGUI *gui)
//--------------------------------------------------------------------------------
{
m_GuiLowerLeft->AddGui(gui);
m_GuiLowerLeft->FitGui();
m_GuiLowerLeft->Update();
}
//--------------------------------------------------------------------------------
void medGUIWizardPageNew::RemoveGuiLowerLeft(mafGUI *gui)
//--------------------------------------------------------------------------------
{
m_GuiLowerLeft->Remove(gui);
m_GuiLowerLeft->FitGui();
m_GuiLowerLeft->Update();
}
//--------------------------------------------------------------------------------
void medGUIWizardPageNew::AddGuiLowerCenter(mafGUI *gui)
//--------------------------------------------------------------------------------
{
m_GuiLowerCenter->AddGui(gui);
m_GuiLowerCenter->FitGui();
m_GuiLowerCenter->Update();
}
//--------------------------------------------------------------------------------
void medGUIWizardPageNew::AddGuiLowerUnderCenter(mafGUI *gui)
//--------------------------------------------------------------------------------
{
m_GuiLowerUnderCenter->AddGui(gui);
m_GuiLowerUnderCenter->FitGui();
m_GuiLowerUnderCenter->Update();
}
//--------------------------------------------------------------------------------
void medGUIWizardPageNew::AddGuiLowerUnderLeft(mafGUI *gui)
//--------------------------------------------------------------------------------
{
m_GuiLowerUnderLeft->AddGui(gui);
m_GuiLowerUnderLeft->FitGui();
m_GuiLowerUnderLeft->Update();
}
//--------------------------------------------------------------------------------
void medGUIWizardPageNew::RemoveGuiLowerUnderLeft(mafGUI *gui)
//--------------------------------------------------------------------------------
{
m_GuiLowerUnderLeft->Remove(gui);
m_GuiLowerUnderLeft->FitGui();
m_GuiLowerUnderLeft->Update();
}
//--------------------------------------------------------------------------------
void medGUIWizardPageNew::SetNextPage(medGUIWizardPageNew *nextPage)
//--------------------------------------------------------------------------------
{
this->SetNext(nextPage);
nextPage->SetPrev(this);
}
//--------------------------------------------------------------------------------
void medGUIWizardPageNew::SetZCropBounds(double ZMin, double ZMax)
//--------------------------------------------------------------------------------
{
if(m_ZCropSlider == NULL) return;
if (ZMax <= ZMin && m_ZCropOn)
{
m_GuiView->Remove(m_ZCropSlider);
m_ZCropOn = false;
}
if(ZMin >= 0 && ZMax > ZMin)
{
if (!m_ZCropOn)
{
m_GuiView->Add(m_ZCropSlider);
m_ZCropOn = true;
}
m_ZCropSlider->SetRange(ZMin,ZMax);
m_ZCropSlider->SetSubRange(ZMin, ZMax);
}
}
//--------------------------------------------------------------------------------
void medGUIWizardPageNew::GetZCropBounds(double ZCropBounds[2])
//--------------------------------------------------------------------------------
{
if(m_ZCropSlider == NULL) return;
m_ZCropSlider->GetSubRange(&ZCropBounds[0],&ZCropBounds[1]);
}
|
3e4a7f7b80a22edea265cddc11bc5f25572b4074
|
20aab3ff4cdf44f9976686a2f161b3a76038e782
|
/c/最小二乗法/最小二乗法console.cpp
|
76e20e1d5fbb2e7c11f80fe1821164599e334337
|
[
"MIT"
] |
permissive
|
amenoyoya/old-project
|
6eee1e3e27ea402c267fc505b80f31fa89a2116e
|
640ec696af5d18267d86629098f41451857f8103
|
refs/heads/master
| 2020-06-12T20:06:25.828454
| 2019-07-12T04:09:30
| 2019-07-12T04:09:30
| 194,408,956
| 0
| 0
| null | null | null | null |
SHIFT_JIS
|
C++
| false
| false
| 826
|
cpp
|
最小二乗法console.cpp
|
#include "#system.hpp"
int _Main(){
int num=0;
vectorx<double> Xi,Yi;
double x=0,y=0,xx=0,xy=0;
double a=0,b=0;
cout<<"最小二乗法を行います\n要素数を入力してください >> "<<flush;
cin>>num;
Xi.resize(num); Yi.resize(num);
for(int i=0;i<num;i++){
cout<<"X["<<i<<"]=? >> "<<flush;
cin>>Xi[i];
}
cout<<endl;
for(int i=0;i<num;i++){
cout<<"Y["<<i<<"]=? >> "<<flush;
cin>>Yi[i];
}
for(int i=0;i<num;i++) x+=Xi[i];
for(int i=0;i<num;i++) y+=Yi[i];
for(int i=0;i<num;i++) xx+=Xi[i]*Xi[i];
for(int i=0;i<num;i++) xy+=Xi[i]*Yi[i];
a=(num*xy-x*y)/(num*xx-x*x);
b=(xx*y-xy*x)/(num*xx-x*x);
if(b>0) cout<<"\n\n y="<<a<<"x+"<<b<<endl;
else if(b==0) cout<<"\n\n y="<<a<<"x"<<endl;
else cout<<"\n\n y="<<a<<"x-"<<-b<<endl;
getch();
return 0;
}
|
9e7b1fbb7db82bc8266a349530f921711eca8f9b
|
3841f7991232e02c850b7e2ff6e02712e9128b17
|
/小浪底泥沙三维/EV_Xld/jni/src/EV_Graphic_Java/wrapper/frustum_def_wrapperjava.cpp
|
8a783728245f9f8b21bd0eda1027a5c847cbd6e2
|
[] |
no_license
|
15831944/BeijingEVProjects
|
62bf734f1cb0a8be6fed42cf6b207f9dbdf99e71
|
3b5fa4c4889557008529958fc7cb51927259f66e
|
refs/heads/master
| 2021-07-22T14:12:15.106616
| 2017-10-15T11:33:06
| 2017-10-15T11:33:06
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,594
|
cpp
|
frustum_def_wrapperjava.cpp
|
/* This file is produced by the JNI AutoWrapper Utility
Copyright (c) 2012 by EarthView Image Inc */
#include "stableheaders.h"
#include "graphic/frustum_def.h"
#include <jni.h>
#include "core_java/global_reference.h"
#include "core_java/jni_load.h"
#include <typeinfo>
namespace EarthView
{
namespace World
{
namespace Graphic
{
extern "C" JNIEXPORT jintArray JNICALL Java_com_earthview_world_graphic_OrientationModeHelper_getEnumValues (JNIEnv *__env, jclass __clazz)
{
jint enum_values[] = {
OR_DEGREE_0,
OR_DEGREE_90,
OR_DEGREE_180,
OR_DEGREE_270,
OR_PORTRAIT,
OR_LANDSCAPERIGHT,
OR_LANDSCAPELEFT
};
jintArray array = __env->NewIntArray(7);
__env->SetIntArrayRegion(array, 0, 7, enum_values);
return array;
}
extern "C" JNIEXPORT jintArray JNICALL Java_com_earthview_world_graphic_ProjectionTypeHelper_getEnumValues (JNIEnv *__env, jclass __clazz)
{
jint enum_values[] = {
PT_ORTHOGRAPHIC,
PT_PERSPECTIVE
};
jintArray array = __env->NewIntArray(2);
__env->SetIntArrayRegion(array, 0, 2, enum_values);
return array;
}
extern "C" JNIEXPORT jintArray JNICALL Java_com_earthview_world_graphic_FrustumPlaneHelper_getEnumValues (JNIEnv *__env, jclass __clazz)
{
jint enum_values[] = {
FRUSTUM_PLANE_NEAR,
FRUSTUM_PLANE_FAR,
FRUSTUM_PLANE_LEFT,
FRUSTUM_PLANE_RIGHT,
FRUSTUM_PLANE_TOP,
FRUSTUM_PLANE_BOTTOM
};
jintArray array = __env->NewIntArray(6);
__env->SetIntArrayRegion(array, 0, 6, enum_values);
return array;
}
}
}
}
|
8131fd955b3bf0b0e4c314e9423659583f83b9b1
|
28125dc1d0090d864c3414472b0794d3939ff728
|
/minimizing coins.cpp
|
6922edb06156f17f29fc6f9b926325364fb2ba5d
|
[] |
no_license
|
Wadshah/c-codeforces
|
d4baeac02ef26ef8ccf4e3add92ecd4094ace582
|
8ea16f66e64910a2076d48aea7b2e9c7892bd55e
|
refs/heads/main
| 2023-08-03T16:22:12.213406
| 2021-09-18T09:00:39
| 2021-09-18T09:00:39
| 407,808,949
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 717
|
cpp
|
minimizing coins.cpp
|
#include<bits/stdc++.h>
#include<iostream>
using namespace std;
#define ll long long int
#define inf 1e18
#define mod 1000000007
const int N=1e5+5;
void file_i_o(){
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
#ifndef ONLINE_JUDGE
freopen("inputf.in", "r", stdin);
freopen("outputf.in", "w", stdout);
#endif
}
int main(int argc ,char const *argv[]){
int n,x;
cin>>n>>x;
vector<int>dp(x+1,INT_MAX);
dp[0]=0;
vector<int> coins(n);
for(int i=0;i<=n-1;i++)
cin>>coins[i];
for(int i=1;i<=x;i++){
for(int j=0;j<=n-1;j++){
if(coins[j]>i) continue;
dp[i]=min(dp[i],1+dp[i-coins[j]]);
}
}
if(dp[x]==INT_MAX){
cout<<-1;
}
else{
cout<<dp[x];
}
return 0;
}
|
1842477bc4ab279c8909afdcf8ed48e821b80570
|
55955d0dcbe4a9082189df0849dae53babaa6fe4
|
/Yingge/lang/cs.h
|
9dbd4a1957c97d2ec8af4702baa490b1361ab31b
|
[] |
no_license
|
husathap/Yingge
|
4fd42419a823961aec65cee2756d14b891a513c1
|
0de4ec289324914dabb215c870a064396d5494d8
|
refs/heads/master
| 2021-01-01T18:48:14.046338
| 2014-06-10T14:12:11
| 2014-06-10T14:12:11
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,095
|
h
|
cs.h
|
#pragma once
/*
* Here is Oriole specification for language to create a cutscene.
*/
/* Here is the import for the cutscene header. So if you import the language,
* you won't need need to include cutscene and sceneNavigation.
*/
#include "../core/cutscene.h"
#include "../core/sceneNavigation.h"
#include "common.h"
// Here is the content of the language itself for defining a cutscene.
#define CUTSCENE(name) class name : public yingge::Cutscene { public: name() { construct(); main(); } private:
#define EVENT(name) class name : public yingge::Cutscene { public: name() { construct(); main(); } private:
// Here are the keywords for creating the functions used in the cutscene.
#define MAIN void main() {
#define xMAIN }
#define LABEL(name) void name() {
#define xLABEL }
// Here are the keywords used for making a decision.
#define DECIDE(question, ...) decide(question, {__VA_ARGS__});
// Here are the multiplexing keywords.
#define SELECT(var) then([this]() { switch(var) {
#define THEN_SELECT then([this]() { switch(decision) {
#define CASE(eq, b) case eq: b(); break;
#define DEFAULT(b) default: b(); break;
#define xSELECT }});
#define xTHEN_SELECT }});
#define THEN_SET_NUMBER(varname) yingge::session->numbers.insert(std::pair<std::string, double> (#varname, (double)decision));
#define IF(cond, b) then([this]() { if(cond) b();
#define ELSEIF(cond, b) else if (cond) b();
#define ELSE(b) else b();
#define xIF });
// Here are the keywords for writing texts.
#define TEXT(t) text(t);
// Here are the keywords for playing music.
#define PLAY_MUSIC(path) playMusic(path);
#define PAUSE_MUSIC pauseMusic();
#define RESUME_MUSIC resumeMusic();
#define STOP_MUSIC stopMusic();
#define NAVIGATE_TITLE navigateFirst();
#define NAVIGATE(s) navigate(yingge::getScene(#s));
// Here are keywords that are only for enhancing readability.
#define iANSWERS
#define iCPP
#define iKEY
#define iNAME
#define iQUESTION
#define iSOURCE
#define iTHEN
#define iTEXTURE
#define iX
#define iY
#define iZORDER
// Here is the ending keyword.
#define END }
#define xCUTSCENE };
#define xEVENT };
|
64a6601733f7e23fa68fd047d6755eaa03c2d480
|
5359a45ccc0edd4f509dfb9e9346be52ebf220d3
|
/src/display/NetworkMonitor.cpp
|
ee03fe17aa066a320ce47aef1338c01d671de7bc
|
[
"MIT"
] |
permissive
|
thetoster/remoteControl
|
cb59598ed36de9bcfb9267810e7500c8a7f82f48
|
e4f074f38f35ec0789be5b0cbab52b2dfc1c059d
|
refs/heads/master
| 2020-03-25T02:46:53.836697
| 2018-11-10T21:32:16
| 2018-11-10T21:32:16
| 143,307,156
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,650
|
cpp
|
NetworkMonitor.cpp
|
/*
MIT License
Copyright (c) 2018 Bartłomiej Żarnowski
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
NetworkMonitor.cpp
Created on: Sep 24, 2018
Author: Bartłomiej Żarnowski (Toster)
*/
#include "NetworkMonitor.h"
#include "XbmIcons.h"
#include "debug.h"
#define FAST_BLINK_MS (250)
#define SLOW_BLINK_MS (500)
void NetworkMonitor::drawAt(SSD1306& display, int x, int y) {
if (lastWifiMode != WiFi.getMode()) {
outTime = 0;
shown = false;
lastWifiMode = WiFi.getMode();
LOG("NetworkMonitor: new mode=");
LOG_LN(lastWifiMode);
}
switch(lastWifiMode) {
default:
case WIFI_OFF:
return;
case WIFI_STA:
drawSTAStatus(display, x, y);
break;
case WIFI_AP:
case WIFI_AP_STA:
drawAPStatus(display, x, y);
break;
}
}
void NetworkMonitor::drawSTAStatus(SSD1306& display, int x, int y) {
const wl_status_t status = WiFi.status();
int deltaTime = 0;
if (status == WL_CONNECTED) {
//solid icon, no flashing
deltaTime = 0;
shown = true;
} else if (status == WL_CONNECT_FAILED or status == WL_DISCONNECTED) {
deltaTime = FAST_BLINK_MS;
} else {
deltaTime = SLOW_BLINK_MS;
}
if (deltaTime > 0) {
if (millis() > outTime) {
outTime = millis() + deltaTime;
shown = not shown;
}
}
if (shown) {
display.drawXbm(x, y,
XBM_NET_WIFI_WIDTH, XBM_NET_WIFI_HEIGHT,
NET_WIFI_XBM);
}
}
void NetworkMonitor::drawAPStatus(SSD1306& display, int x, int y) {
if (millis() > outTime) {
outTime = millis() + SLOW_BLINK_MS;
shown = not shown;
}
if (shown) {
display.drawXbm(x, y,
XBM_ACCESS_POINT_WIDTH, XBM_ACCESS_POINT_HEIGHT,
ACCESS_POINT_XBM);
}
}
|
2ae8187a7df14af06e2b54f9a6fb163574fdbc22
|
6a5ddccabcd725caa22037f51e7ab9753db5d67a
|
/code/test_cplusplus001/test_cplusplus001/main.cpp
|
bc7147e75c85122935e016cac2ceca0b8c487c6b
|
[
"Apache-2.0"
] |
permissive
|
Macleowh/Test_CPlusPlus
|
36d26053329bd5428317d9c040e84d95d9ed7f2a
|
ca8b43e3d40c05f2929050c18508d3ae9bba8d88
|
refs/heads/master
| 2020-11-25T21:16:37.769466
| 2020-01-08T12:47:53
| 2020-01-08T12:47:53
| 228,851,229
| 0
| 0
| null | null | null | null |
GB18030
|
C++
| false
| false
| 22,282
|
cpp
|
main.cpp
|
#include <iostream> //#include 是包含文件的意思 <iostream> 输入输出流(接受键盘的输入和控制台的输出功能)
#include <string> // <string> 字符串相关文件
#include <array> //std::array 标准库 array头文件
#include <fstream> //std::ofstream std::ifstream 文件流操作
#include <io.h>
//int main(){ return 0};
//main函数是程序执行的入口,整个项目只有这一个执行入口
#include "calculate.h" //添加自定义的计算类(这里采用的是分离式编译)
//2019.12.18
void learning_inner_data_type()
{
std::cout << "BEGIN=============================" << std::endl;
//字符类型
char ch = 'a';//定义字符型变量
unsigned char uch = 'b'; //unsigned是定义正整数,char是-128~127,256个数,所以unsigned char表示为0~255的256个数
signed char sch = 'c';//有符号的整数,可以为负数,因此signed char也为-128~127的256个数
//字符串类型
std::string str = "this is test string.";//std::调用C++的标准库;string,字符串相关文件
//整型类型
//1 short类型
short sh = 5;//short表示有符号的整数,占2个字节,是int的一半
unsigned short ush = 6; //无符号short类型,正整数
signed short ssh = 7; //有符号short类型,同short
//2 int 类型
int i = -80;//int表示基本的数据类型(整型);
unsigned int ui = 81; //无符号int类型
signed int ssi = -82; //有符号int类型
//3 long 类型
long l = -80;//整数,4个字节
unsigned long ul = 81; //无符号long类型
signed long sl = -82; //有符号long类型
//浮点型
float f = 5.0f; //单精度浮点型数据,只能是小数,精确到小数点后6位数
double d = 8.0; //双精度浮点型数据,只能是小数,精确到小数点后15位数
//指针类型
char* pch = &ch;//char*是指针,指向字符型的变量(ch),&是取ch这个变量的地址
unsigned char* puch = &uch;//正整数的字符型指针
signed char sch2 = '4';//定义sch2为正整数4
signed char *psch = &sch2;//同char*,有符号可为正整数和负整数
//字符串类型
std::string str2 = "this is test string.";//std::调用C++标准库,string,字符串相关文件
std::string* pstr = &str2;//string*是是指字符串类型的变量,&是指取这个str2这个字符串变量的地址
//整型类型
//1 short类型
short* psh = &sh;//short*是指针,指向正负整数的变量,&是指取sh这个正负整数的变量的地址,8个字节
unsigned short ush2 = 32;//定义ush2为正整数32
unsigned short* push = &ush2; //无符号short类型,unsigned short*是指针,指向整数的变量
signed short ssh2 = 64;//定义ssh2为正整数64
signed short* pssh = &ssh2; //有符号short类型,signed short*是指针,指向正负整数的变量
//2 int 类型
int* pi = &i;//int*是指针,指向正负整数型的变量,4个字节,&是指取i这个正负整数的变量的地址
unsigned int* pui = &ui; //无符号int类型,unsigned int*是指针,指向正负整数的变量
signed int* pssi = &ssi; //有符号int类型,signed int*,指向正整数型的变量
//3 long 类型
long* pl = &l;//long* 是指针,指向正负整数型的变量,8个字节,&是指取l这个正负整数的变量的地址
unsigned long* pul = &ul; //无符号long类型unsigned long*是指针,指向正整数的变量
signed long* psl = &sl; //有符号long类型signed long*是指针,指向正负整数的变量
//浮点型
float* pf = &f; //单精度浮点型数据,float*是指针,指向小数的变量
double* pd = &d; //双精度浮点型数据double*,指向小数的变量
std::cout << "END=============================" << std::endl;
}
//2019.12.19
void learning_inner_data_size()
{
std::cout << "sizeof(char) = " << sizeof(char) << std::endl;
std::cout << "sizeof(unsigned char) = " << sizeof(unsigned char) << std::endl;
std::cout << "sizeof(signed char) = " << sizeof(signed char) << std::endl;
//字符串类型
std::string str = "this is test string.";
std::cout << "sizeof(str) = " << sizeof(str) << std::endl;
//整型类型
//1 short类型
std::cout << "sizeof(short) = " << sizeof(short) << std::endl;
std::cout << "sizeof(unsigned short) = " << sizeof(unsigned short) << std::endl;
std::cout << "sizeof(signed short) = " << sizeof(unsigned short) << std::endl;
//2 int 类型
std::cout << "sizeof(int) = " << sizeof(int) << std::endl;
std::cout << "sizeof(unsigned int) = " << sizeof(unsigned int) << std::endl;
std::cout << "sizeof(signed int) = " << sizeof(unsigned int) << std::endl;
//3 long 类型
std::cout << "sizeof(long) = " << sizeof(long) << std::endl;
std::cout << "sizeof(unsigned long) = " << sizeof(unsigned long) << std::endl;
std::cout << "sizeof(signed long) = " << sizeof(unsigned long) << std::endl;
std::cout << "sizeof(float) = " << sizeof(float) << std::endl;
std::cout << "sizeof(double) = " << sizeof(double) << std::endl;
//指针类型
std::cout << "sizeof(char*) = " << sizeof(char*) << std::endl;
std::cout << "sizeof(unsigned char*) = " << sizeof(unsigned char*) << std::endl;
std::cout << "sizeof(signed char*) = " << sizeof(unsigned char*) << std::endl;
//字符串类型
std::cout << "sizeof(pstr*) = " << sizeof(std::string*) << std::endl;
//整型类型
//1 short类型
std::cout << "sizeof(short*) = " << sizeof(short*) << std::endl;
std::cout << "sizeof(unsigned short*) = " << sizeof(unsigned short*) << std::endl;
std::cout << "sizeof(signed short*) = " << sizeof(signed short*) << std::endl;
//2 int 类型
std::cout << "sizeof(int*) = " << sizeof(int*) << std::endl;
std::cout << "sizeof(unsigned int*) = " << sizeof(unsigned int*) << std::endl;
std::cout << "sizeof(signed int*) = " << sizeof(unsigned int*) << std::endl;
//3 long 类型
std::cout << "sizeof(long*) = " << sizeof(long*) << std::endl;
std::cout << "sizeof(unsigned long*) = " << sizeof(unsigned long*) << std::endl;
std::cout << "sizeof(signed long*) = " << sizeof(signed long*) << std::endl;
//浮点型
std::cout << "sizeof(float*) = " << sizeof(float*) << std::endl;
std::cout << "sizeof(double*) = " << sizeof(double*) << std::endl;
}
//2019.12.20
void learning_condition_keywords()
{
//在C++里面有基本的判等于,不等于,大于,小于,大于等于,小于等于(逻辑判断)
//当然还有布尔判断
//先具一些常量的例子帮助理解,其实变量也是一样
if (1)
{
std::cout << "1 is true condition." << std::endl;
}
if (0)
{
std::cout << "0 is true condition." << std::endl;
}
else
{
std::cout << "0 is false condition." << std::endl;
}
if (1 == 0)
{
std::cout << "1 == 0 is true condition." << std::endl;
}
else
{
std::cout << "1 == 0 is false condition." << std::endl;
}
if (1 != 0)
{
std::cout << "1 != 0 is true condition." << std::endl;
}
else
{
std::cout << "1 != 0 is false condition." << std::endl;
}
if (5 > 4)
{
std::cout << "5 > 4 is true condition." << std::endl;
}
if (5 > 6)
{
std::cout << "5 > 6 is false condition." << std::endl;
}
if (5 >= 7)
{
std::cout << "5 >= 7 is true condition." << std::endl;
}
else
{
std::cout << "5 >= 7 is false condition." << std::endl;
}
if (7 >= 5)
{
std::cout << "7 >= 5 is true condition." << std::endl;
}
else
{
std::cout << "7 >= 5 is false condition." << std::endl;
}
if ('a' > 'b') // 'a' 与 'b' 都是字符串常量
{
std::cout << "true condition." << std::endl;
}
else
{
std::cout << "false condition." << std::endl;
}
if ('1' > '2') // 'a' 与 'b' 都是字符串常量
{
std::cout << "true condition." << std::endl;
}
else
{
std::cout << "false condition." << std::endl;
}
//变量的例子
int a = 10, b = 5;
if (a >= 5)
{
std::cout << "10 >= 5 is true condition." << std::endl;
}
if (a >= b)
{
std::cout << "a >= b is true condition." << std::endl;
}
if (a != b)
{
std::cout << "a != b is true condition." << std::endl;
}
if (a == b)
{
std::cout << "a == b is true condition." << std::endl;
}
else
{
std::cout << "a == b is false condition." << std::endl;
}
}
//2019.12.21
void learning_loop_keywords()
{
//C++中循环条件执行语句有三个,分别是:for,while,do-while
//for循环
for (int i = 0; i < 10; i++)// 其中 i++ 等效与 i = i + 1;
{
std::cout << "i = " << i << std::endl;
}
//while循环
{
int i = 0;
while (i < 10)
{
std::cout << "i = " << i << std::endl;
i++;
}
}
//do-while循环
{
int i = 0;
do
{
std::cout << "i = " << i << std::endl;
i++;
} while (i < 10);
}
//试体会这三种循环判断条件的执行方式的不同。
//试了解 i++ ++i --i i-- 这四种操作的结果的不同。
}
void learning_loop_keywords_9_mul_9()
{
// for
// int[]
// std::cout << << std::endl;
/*
for (int i = 9, a = 1; i > 0, a < 10; --i,++a, a = i * a )
{
std::cout << "a = " << a << std::endl;
}
*/
/*for (int i=1;i<10;i++ )//正序,i=1<10开始,不停相加
{
for (int j = 1;j<=i;j++)//先做这里的for循环,j=1不停加1,直到等于i为止
{
std::cout << i << "*" << j << " = " << i*j << " ";
//std::cout << "i = " << i << " j = " << j << " i * j = " << i*j << std::endl;
}
std::cout << std::endl;
}
*/
/* for (int i = 9; i>0; i--) //倒叙,从9*1开始,i=9,j=1
{
for (int j = 1; j <= i; j++)//条件j从1开始加,直到等于i为止,然后输出
{
std::cout << i << "*" << j << " = " << i*j << " ";
//std::cout << "i = " << i << " j = " << j << " i * j = " << i*j << std::endl;
}
std::cout << std::endl;//断行,跳到第二行
}
*/
for (int i = 1, j = 1; i < 10; j++)
{
if (j == i)
{
std::cout << i << "*" << j << " = " << i*j << " ";
std::cout << std::endl;
i++;
j = 1;
}
if (i < 10)
{
std::cout << i << "*" << j << " = " << i*j << " ";
}
}
}
int test_increase_and_decrease()
{
//i++
{
int i = 0, j = 0; //i=1 j=0
j = i++;
std::cout << "i = " << i << std::endl;
std::cout << "j = " << j << std::endl;
}
//++i
{
int i = 0, j = 0;//i=1 j=1
j = ++i;
std::cout << "i = " << i << std::endl;
std::cout << "j = " << j << std::endl;
}
//i--
{
int i = 0, j = 0;//i=-1 j=0
j = i--;
std::cout << "i = " << i << std::endl;
std::cout << "j = " << j << std::endl;
}
//--i
{
int i = 0, j = 0;//i=-1 j=-1
j = --i;
std::cout << "i = " << i << std::endl;
std::cout << "j = " << j << std::endl;
}
return 0;
}
//2019.12.23
void learning_basic_operation()
{
//双目基本运算符
{
double a[4] = { 0.0 }, b = 3.0, c = 5.0; //其中a[4] double是双精度浮点型数据类型的数组,数组长度为4,起始下标为0,终止下标为3
std::cout << "运算前的数值" << std::endl;
std::cout << "a[0] = " << a[0] << " a[1] = " << a[1]
<< " a[2] = " << a[2] << " a[3] = " << a[3] << std::endl;
a[0] = b + c;
a[1] = b - c;
a[2] = b * c;
a[3] = b / c;
std::cout << "运算后的数值" << std::endl;
std::cout << "a[0] = " << a[0] << " a[1] = " << a[1]
<< " a[2] = " << a[2] << " a[3] = " << a[3] << std::endl;//a[0]=8.0 a[1]=-2.0 a[2]=15.0 a[3]= 0.6
}
//三目运算符
{
int a[3] = { 1, 2, 3 }; // a[0] = 1, a[1] = 2, a[2] = 3;
int b = a[0] < 0 ? a[1] : a[2]; // 如果a[0] > 0成立,那么b = a[1],否则 b = a[2];
std::cout << "a[0] = " << a[0] << " a[1] = " << a[1]
<< " a[2] = " << a[2] << std::endl;
std::cout << "b = " << b << std::endl;//b=a[2]=3
}
}
void learning_logic_operation()
{
//位运算符
{
bool a = true; // true 为 1
bool b = false; // false 为 0
bool c[4] = { false }; //c[4] 是bool 类型的数组,数组长度为4,起始下标为0,终止下标为3
std::cout << "运算前的数值" << std::endl;
std::cout << "c[0] = " << c[0] << " c[1] = " << c[1]
<< " c[2] = " << c[2] << " c[3] = " << c[3] << std::endl;
c[0] = a & b; // & 为按位与操作数:相同,则为1,否则为0
c[1] = a | b; // | 为按位或操作数:有1,则为1,否则为0
c[1] = a ^ b; // | 为按位异或操作数:不同,则为1,否则为0
c[2] = !a; // ! 为非操作数:取反操作
c[3] = !b; // ! 为非操作数:取反操作
std::cout << "运算后的数值" << std::endl;
std::cout << "c[0] = " << c[0] << " c[1] = " << c[1]
<< " c[2] = " << c[2] << " c[3] = " << c[3] << std::endl;
}
//双目逻辑运算符
{
bool a = true; // true 为 1
bool b = false; // false 为 0
bool c[4] = { false };
std::cout << "运算前的数值" << std::endl;
std::cout << "c[0] = " << c[0] << " c[1] = " << c[1]
<< " c[2] = " << c[2] << " c[3] = " << c[3] << std::endl;//c[0] = 0 c[1] = 0 c[2] = 0 c[3] = 0
c[0] = a || b; // 或操作符 :两个操作数有一个为真,则条件为真,否则为假
c[1] = c && b; // 与操作符 :两个操作数都为真,则条件为真,否则为假
}
}
//2019.12.24 重点理解指针和引用(这是C++的一个小难点)
void learning_pointer_and_reference()
{
//指针
{
int i = 20; // 实际变量的声明
int* pi; // 指针变量的声明
pi = &i; // 在指针变量中存储 var 的地址
std::cout << "i的值是: " << i << std::endl;
// 输出在指针变量中存储的地址
std::cout << "pi中存储的地址是: " << pi << std::endl;
// 访问指针中地址的值
std::cout << "*pi 地址所指向的数值是: " << *pi << std::endl;
}
//引用
{
// 声明简单的变量
int i = 5;
double d = 4.0;
int j = i;
// 声明引用变量
int& r = i; //引用必须初始化(试了解初始化和赋值操作的区别)
std::cout << "j = " << j << std::endl;
std::cout << "r = " << r << std::endl;
i++;
std::cout << "j = " << j << std::endl;
std::cout << "r = " << r << std::endl;
double& s = d;
i = 5;
std::cout << "Value of i : " << i << std::endl;
std::cout << "Value of i reference : " << r << std::endl;
d = 11.7;
std::cout << "Value of d : " << d << std::endl;
std::cout << "Value of d reference : " << s << std::endl;
}
}
// 2019.12.25
//基本的数据结构
void learning_basic_data_struct()
{
//数组
char ctable[5] = { 'a','b','c','d','e' }; //字符型数组
int itable[5] = { 0, 1, 2, 3, 4 }; //整型数组
float ftable[5] = { 0.1f, 1.1f, 2.2f, 3.3f, 4.4f }; //单精度数组
double dtable[5] = { 0.1, 1.1, 2.2, 3.3, 4.4 }; //双精度数组,试体会ftable 和 dtable有何不同
for (int i = 0; i < 5; ++i)
{
std::cout << "ctable[" << i << "] = " << ctable[i]
<< " itable[" << i << "] = " << itable[i]
<< " ftable[" << i << "] = " << ftable[i]
<< " dtable[" << i << "] = " << dtable[i] << std::endl;//ctable[0] = a itable[0] = 0 ftable[0] = 0.1f??????? dtable[0] = 0.1
}
const int data_size = 5;
std::array<char, data_size> arrayChar{ 'a','b','c','d','e' };
std::array<int, data_size> arrayInt{ 5, 6, 7, 8, 9 };
std::array<float, data_size> arrayFloat{ 0.1f, 1.1f, 2.2f, 3.3f, 4.4f };
std::array<double, data_size> arrayDouble{ 0.1, 1.1, 2.2, 3.3, 4.4 };
//利用at()方法下标访问
for (size_t i = 0; i < arrayChar.size(); ++i)
{
std::cout << "arrayChar[" << i << "] = " << arrayChar.at(i) << std::endl;//string s;s.at(n)表示返回下标为n的元素的引用。
}
//利用迭代器访问
for (std::array<int, data_size>::iterator it = arrayInt.begin(); it != arrayInt.end(); ++it)
{
std::cout << "arrayInt[" << (it - arrayInt.begin()) << "] = " << (*it) << std::endl;
}
//利用[]方法下标访问
for (size_t i = 0; i < arrayFloat.size(); ++i)
{
std::cout << "arrayFloat[" << i << "] = " << arrayFloat[i] << std::endl;//[]代表的意思就跟at()一样,是返回()里面的元素的引用
}
//利用auto方法访问 C++ 11
int idx = 0;
for (auto &it : arrayDouble)// auto自动类型推断,用于从初始化表达式中推断出变量的数据类型.&it 赋值=arrayDouble
{
std::cout << "arrayDouble[" << idx << "] = " << it << std::endl;
idx++;
}
//试增加用指针方式访问数组
/*for (int i = 0, i<5, i++)
{
std::cout << arrayInt["<<i<<"] << arrayInt.at(i) << std:endl
}
*/
}
//自定义数据结构
struct MyStruct
{
std::string name;//姓名
unsigned int age; //年龄
bool bIsmale;//性别
unsigned int height; //身高
float weight; //体重
};
void learning_use_define_struct()
{
MyStruct mystruct;
mystruct.name = "Zhang San";
mystruct.age = 18;
mystruct.bIsmale = true;
mystruct.height = 170;
mystruct.weight = 56;
//一个叫 Zhang San 18岁,男性,身高170 体重 56Kg的人定义好了。
std::cout << "mystruct.name = " << mystruct.name << std::endl;
std::cout << "mystruct.age = " << mystruct.age << std::endl;
std::cout << "mystruct.bIsmale = " << mystruct.bIsmale << std::endl;
std::cout << "mystruct.height = " << mystruct.height << std::endl;
std::cout << "mystruct.weight = " << mystruct.weight << std::endl;
{
//试尝试定义另外一个李四的人
//试尝试定义其他的数据结构,实现自己的定义
MyStruct mystruct;
mystruct.name = "Li Si";
mystruct.age = 22;
mystruct.bIsmale = false;//为什么true是男性啊,不是应该用man和woman定义吗?
mystruct.height = 170;
mystruct.weight = 50;
}
}
//2019.12.26
int learning_basic_file_operation(const std::string & save_filename)
{
//保存日志和读取文件
//本例子实现写文件的功能
std::ofstream outFile;
outFile.open(save_filename, std::ios::out);//已写模式打开文件
if (!outFile.eof())//如果文件不为空
{
outFile << "This is a coding world." << std::endl; //写入文件内容
outFile << "My study step may be slow, but i will never give up!" << std::endl;//写入文件内容
outFile.close();//关闭文件
}
else //文件为空
{
outFile.close();//关闭文件
return 1;//返回异常值
}
return 0;//返回正常值
}
//试尝试实现读取文件的功能
int learning_basic_file_operation2(const std::string & save_filename)
{
//std::ofstream outFile;//outfile是定义的一个文件输出流,就是输出数据到文件里。
//outFile.open(save_filename, std::ios::out);
//if (!outFile.eof())
//{
// outFile << "Hello World" << std::endl;
// outFile << "The class is so difficult" << std::endl;
// outFile.close();
//}
//else
//{
// outFile.close();
// return 1;
//}
//return 0;
std::ifstream infile;//infile是定义的一个文件输入流,就是要从文件读取数据的。
infile.open(save_filename, std::ios::in);
//if(!outFile.eof())
//{
// infile << "Hello World" << std::endl;
// infile << "The class is so difficult" << std::endl;
//
// //infile.close();
//}
//else
//{
// infile.close();
// return 1;
//}
if (!infile.eof())
{
//infile << "Hello World" << std::endl;
//infile << "The class is so difficult" << std::endl;
infile.close();
}
else
{
infile.close();
return 1;
}
}
//2019.12.27
void learning_basic_io_stream()
{
int read_num;
std::cin >> read_num;//接受键盘输入(整数)
std::cout << "get input number = " << read_num << std::endl;
std::string read_str;
std::cin >> read_str;//接受键盘输入(字符)
std::cout << "get input string = " << read_str << std::endl; // string 只能接受从开始到第一个不含空格的内容
float read_float_num;
std::cin >> read_float_num;//接受键盘输入(小数)
std::cout << "get input float number = " << read_float_num << std::endl;
}
//2019.12.28 测试calculate类的简单代码
void learing_test_class()
{
Calculate calc;//申请一个类对象
double op1 = 4.0;
double op2 = 5.0;
//测试加法
double add_result = calc.add(op1, op2);
std::cout << "op1 + op2 = " << add_result << std::endl;
//测试除法
double div_result = calc.div(op1, op2);
std::cout << "op1 / op2 = " << div_result << std::endl;
}
//2019.12.29
void learing_test_class2()
{
//浮点型的加法和除法
{
Calculate_T<double> cal_t;
double op1 = 4.0;
double op2 = 5.0;
//测试加法
double add_result = cal_t.add(op1, op2);
std::cout << "op1 + op2 = " << add_result << std::endl;
//测试除法
double div_result = cal_t.div(op1, op2);
std::cout << "op1 / op2 = " << div_result << std::endl;
}
//整型的加法和除法
{
Calculate_T<int> cal_t;
int op1 = 4;
int op2 = 5;
//测试加法
int add_result = cal_t.add(op1, op2);
std::cout << "op1 + op2 = " << add_result << std::endl;
//测试除法
int div_result = cal_t.div(op1, op2);
std::cout << "op1 / op2 = " << div_result << std::endl;
}
}
int main()
{
learning_loop_keywords_9_mul_9();
learning_inner_data_type();
learning_inner_data_size();
learning_condition_keywords();
learning_loop_keywords();
int ret = test_increase_and_decrease();
learning_basic_operation();
learning_logic_operation();
learning_pointer_and_reference();
learning_basic_data_struct();
learning_use_define_struct();
std::string filename{ "test_write_file.txt" };
if (!learning_basic_file_operation(filename))//函数调用,将返回值作为判断条件
{
std::cout << "文件写入成功!" << std::endl;
}
else
{
std::cout << "文件写入失败!" << std::endl;
}
learning_basic_io_stream();
learing_test_class();
learing_test_class2();
std::cin.get();//等待键盘输入,目的是可以暂停看到控制台的输出字符
return 0;
}
|
4780ca561b3c72583d1e24cc4595c450b6566f2d
|
fb7fe6e935738e486c6f6341d049f3e845b0ffb8
|
/DirectX/DirectXMy2DCollision/CollisionCheck.h
|
81f2c50790afe885fccdc0495171c777aa883450
|
[] |
no_license
|
ilhaeYe/My2DCollision
|
da0888a5e70e5c0699d9e194e6651253dd479227
|
2cc1ee3abf3447e2af1da7c9d4ab90249ee5434e
|
refs/heads/master
| 2020-12-08T23:53:33.393254
| 2016-09-01T16:06:26
| 2016-09-01T16:06:26
| 66,897,630
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,092
|
h
|
CollisionCheck.h
|
#ifndef COLLISION_CHECK_H
#define COLLISION_CHECK_H
#include "Shape.h"
// AABB
bool AABBCollisionCheck(std::shared_ptr<Shape> s1, std::shared_ptr<Shape> s2);
bool AABBCollisionCheck(vector<AABB> v1, vector<AABB> v2);
bool AABBCollisionCheck(AABB aabb1, AABB aabb2);
bool IsGreaterPoint(const Point& p1, const Point& p2);
// OBB (SAT)
//bool SATCollisionCheck(const DamageZonePolygon& dzp, const Shape& shape);
//bool SATCollisionCheck(const DamageZonePolygon& dzp, const MyPolygon& p);
bool SATCollisionCheck(std::shared_ptr<DamageZonePolygon> dzp, std::shared_ptr<MyPolygon> p);
bool SATCollisionCheck(std::shared_ptr<MyPolygon> p1, const MyPolygon& p2);
bool SATCollisionCheck(std::shared_ptr<MyPolygon> p, const Circle& c);
bool SATCollisionCheck(vector<Point> p1, vector<Point> p2);
AABB GetAABB(vector<Point> vertices, const Point & axisVec);
AABB GetAABB(const Circle& c, const Point & axisVec);
vector<Point> GetProjectedVertices(vector<Point> vertices, const Point& axisVector);
vector<Point> GetEdgesVector(const MyPolygon& p);
Point GetGapVector(const Point& p1, const Point& p2);
//bool SATCollisionCheck(std::shared_ptr<DamageZonePolygon> s1, std::shared_ptr<Shape> s2);
//bool SATCollisionCheck(std::shared_ptr<MyPolygon> p, std::shared_ptr<Circle> c);
//bool SATCollisionCheck(std::shared_ptr<MyPolygon> p1, std::shared_ptr<MyPolygon> p2);
//bool SATCollisionCheck(vector<Point> v1, vector<Point> v2);
//bool SATCollisionCheck(const Point& p1, const Point& p2);
//bool SATCollisionCheck(const DamageZonePolygon& dzp, const Shape& shape);
//bool SATCollisionCheck(const MyPolygon& p1, const MyPolygon& p2);
//bool SATCollisionCheck(vector<Point> p1, vector<Point> p2);
//
//AABB GetAABB(vector<Point> vertices, const Point & normalVector);
//vector<Point> GetProjectedVertices(vector<Point> vertices, const Point& normalVector);
//vector<Point> GetEdgesVector(const MyPolygon& p);
//vector<Point> GetNormalVectors(vector<Point> edges1, vector<Point> edges2);
//vector<Point> GetNormalVectors(vector<Point> edges);
#endif // !COLLISION_CHECK_H
//#ifndef COLLISION_CHECK_H
//#define COLLISION_CHECK_H
//
//#include "Shape.h"
//
////bool AABBCollisionCheck(const Shape& s1, const Shape& s2);
//bool AABBCollisionCheck(std::shared_ptr<Shape> s1, std::shared_ptr<Shape> s2);
//bool AABBCollisionCheck(vector<AABB> v1, vector<AABB> v2);
//bool AABBCollisionCheck(AABB aabb1, AABB aabb2);
//bool IsGreaterPoint(const Point& p1, const Point& p2);
//
//bool SATCollisionCheck(const DamageZonePolygon& dzp, const MyPolygon& p);
//bool SATCollisionCheck(const MyPolygon& p1, const MyPolygon& p2);
//bool SATCollisionCheck(const MyPolygon& p, const Circle& c);
//bool SATCollisionCheck(vector<Point> p1, vector<Point> p2);
//
//AABB GetAABB(vector<Point> vertices, const Point & axisVec);
//AABB GetAABB(const Circle& c, const Point & axisVec);
//vector<Point> GetProjectedVertices(vector<Point> vertices, const Point& axisVector);
//vector<Point> GetEdgesVector(const MyPolygon& p);
//Point GetGapVector(const Point& p1, const Point& p2);
//
//#endif // !COLLISION_CHECK_H
|
b2319f046ac0f8e83cbb5165fa8604cd05a15515
|
c3e260bc0e6c682011ade2edcf7e1d13e4a69989
|
/notes/04-10-2017_fundamentals_design_meeting/future.hpp
|
c55bd14fd80db15efdc1ed0ec722b312aed0e122
|
[] |
no_license
|
brycelelbach/pagoda_spec
|
d41231b3517e9c238ba815aaf20e7c32b84f81f3
|
ebdb08966f592a294a445cc1f5adad6cdea4a20d
|
refs/heads/master
| 2021-01-19T11:22:12.563774
| 2017-04-13T16:08:42
| 2017-04-13T16:08:42
| 87,958,679
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,953
|
hpp
|
future.hpp
|
// std::future
template <typename T>
struct future;
// Jon's approach
template <typename... T>
struct future;
// Bryce likes this because it simplifies when_all
//template < class InputIt >
//auto when_all(InputIt first, InputIt last)
// -> future<std::vector<typename std::iterator_traits<InputIt>::value_type>>;
// Jon: my thing is not as powerful as Concurrency TS.
// Bryce: We could do something like this:
template <typename T, std::size_t N>
struct future;
// Jon: We could still have dynamic when_all (returning future<vector<T>>); variadic simplifies the static case because no tuple.
// Bryce: We could special case std::array
// All: No, that doesn't make sense.
// Why does std::future not have a make_ready_future ctor?
void f(future<int, double, double> a);
f({i, j, k}); // Can't do this; future can't be aggregate initialized.
f(make_future(i, j, k)); // C++14
f(future{i, j, k}); // C++17
void g(future<int, int, int> a);
g({i, j, k}); // Assuming i, j and k are all int.
// We'd have to have an initialization_list constructor; those are scary.
// Jon: I don't like make_future, I prefer future_make.
// Bryce: Is there precedence for?
// Bryce: Bikeshedding, later.
// Jon: Is constructor is ambiguous with future unwrapping?
// Jon + Bryce: We don't think so.
// In C++:
// When this is true, the future's value is ready.
bool is_ready() const;
// Effects: Waits until is_ready() == true and then returns
// the value of the future.
T... get() const;
// Jon future:
// Requires: is_ready() == true.
// Effects: Returns the value of the future.
T... get() const;
// Jon: There is great value to this since it divorces futures
// from threads.
// Bryce: I'm sold.
// Bryce: So what does get() return? Not tuple?
// Jon: I do a template <int i = 0> Ti get()
// Bryce: This is annoying in dependent context.
future<T...> f;
f.template get<1>(f);
future<X, Y, Z> f;
auto [x, y, z] = f.get_tuple();
// Bryce:
// future<T> -> T get()
// future<T...> -> tuple<T...> get()
// And then having std::get overloaded for future.
future<X, Y, Z> f;
auto [x, y, z] = f; // Implicit std::get.
// Bryce: Is this scary or a feature?
// Bryce: safer option: std::get_tuple.
// Bryce: I don't like the inconsistency.
// Bryce: Okay, we'll go with Jon's idea + get_tuple().
// Bryce: What is the return type of get()? const&?
// Jon: That has a dangling reference problem.
// Bryce: shared_future does const&.
// Jon: So maybe we should.
// Bryce: If all the Ts are the same (e.g. std::array case),
// bracket operator would be nice.
template <typename... T>
struct future
{
// NOT DefaultConstructible.
// CopyConstructible, CopyAssignable, Swappable.
// Ready constructor.
// Requires: T shall be constructible from U.
template <typename... U>
future(U&&... u);
// Ready constructor.
// Requires: T shall be constructible from U.
template <typename... U>
future& operator=(U&&... u);
// then constructor.
// when_* constructor.
bool ready() const;
// Requires: is_ready() == true.
// Requires: Shall not participate in overload resolution
// if I < sizeof...(T)
// Returns: The value of the shared state.
template <size_type I = 0>
typename std::tuple_element<I, std::tuple<T...>>::type const&
get() const;
// Requires: is_ready() == true.
// Requires: Shall not participate in overload resolution
// if I < sizeof...(T)
// Returns: The value of the shared state.
// Effects: Moves the value out of the shared state; the
// shared state is left in a valid but unspecified state.
template <size_type I = 0>
typename std::tuple_element<I, std::tuple<T...>>::type
move() const;
std::tuple<T...> const& get_tuple() const;
// move_tuple.
};
template <typename... T>
future<T...> make_future(T&&... t)
{
return future<T...>(std::forward<T>(t)...);
}
|
53ee492a9f88d820621fb819c9dd3febb9115ff6
|
6197740e6297da2f3d0c8ffd2a1d7ef5d8b3d2cb
|
/DotNet/Foundations of C++CLI/Chapter09/extension_monster.cpp
|
515e887949e55ffda56dbf8f184fd37bbdf3f2c6
|
[] |
no_license
|
ssh352/cppcode
|
1159d4137b68ada253678718b3d416639d3849ba
|
5b7c28963286295dfc9af087bed51ac35cd79ce6
|
refs/heads/master
| 2020-11-24T18:07:17.587795
| 2016-07-15T13:13:05
| 2016-07-15T13:13:05
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 473
|
cpp
|
extension_monster.cpp
|
using namespace System;
namespace MonsterExtensions
{
public ref class Attack
{
};
public enum class AttackTypeEnum
{
Type1,
Type2
};
public ref class AnimationSequence2D
{
};
public interface class IMonster
{
property String^ Name;
property int Strength;
property AnimationSequence2D^ Frames;
Attack^ GenerateAttack(AttackTypeEnum attacktype);
void DefendAttack(Attack^ attack);
// etc.
};
}
|
5488d1b4dddde722c8003a3c6d11a16ae913305d
|
335d85dd022abd7c43c94c98ddfb55193194ba13
|
/QT_RPG/Player.cpp
|
e74233512bd885795378ad51d8e1cd5d96216a03
|
[] |
no_license
|
Beokro/QT_RPG
|
d74a9ee94f96e0713cf426cfd34f660df6fc0b27
|
90edd6021259a1b5bfd7dcd48dc30f8e8ff921d9
|
refs/heads/master
| 2016-09-01T06:38:02.224318
| 2016-02-03T06:29:44
| 2016-02-03T06:29:44
| 49,862,157
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 718
|
cpp
|
Player.cpp
|
#include "Player.h"
#include <QGraphicsScene>
#include <QKeyEvent>
#include <QDebug>
Player::Player(QGraphicsItem *parent): QGraphicsPixmapItem(parent)
{
qDebug()<<"left\n";
setPixmap(QPixmap(":/images/Sabers.png"));
setScale(0.5);
}
void Player::keyPressEvent(QKeyEvent * event)
{
if(event->key() == Qt::Key_Left){
if(pos().x()>0)
setPos(x()-80,y());
}
else if (event->key() == Qt::Key_Right){
if(pos().x()<700)
setPos(x()+80,y());
}
else if(event->key() == Qt::Key_Up){
if(pos().y()>0)
setPos(x(),y()-80);
}
else if(event->key() == Qt::Key_Down){
if(pos().y()<700)
setPos(x(),y()+80);
}
}
|
a85e9b52b85f2bd746dd32b773c1d389b7726968
|
b2e454bd8b8026fb70fe30a9d8213dc44d3cf77f
|
/src/bootd/core/SignalManager.h
|
f3f2acc472c82f6618c03d77d2eea48662394cd9
|
[
"Apache-2.0"
] |
permissive
|
webosose/bootd
|
40f960e1664872a2f3cb73a909c1363793af4498
|
efdc932c92e437002ed60d5d6d038e0f8bae71c3
|
refs/heads/master
| 2021-07-21T03:38:26.613417
| 2021-05-25T03:14:28
| 2021-05-25T03:14:28
| 125,002,521
| 4
| 6
| null | 2019-06-17T15:39:49
| 2018-03-13T06:22:37
|
C++
|
UTF-8
|
C++
| false
| false
| 1,717
|
h
|
SignalManager.h
|
// Copyright (c) 2013-2018 LG Electronics, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// SPDX-License-Identifier: Apache-2.0
#ifndef SIGNALMANAGER_H_
#define SIGNALMANAGER_H_
#include <stdlib.h>
#include <iostream>
#include <map>
#include <glib.h>
#include "util/JUtil.h"
using namespace std;
using namespace pbnjson;
class SignalManager {
public:
// oneshot Signals
static const char *CORE_BOOT_DONE;
static const char *INIT_BOOT_DONE;
static const char *DATASTORE_INIT_START;
static const char *MINIMAL_BOOT_DONE;
static const char *REST_BOOT_DONE;
static const char *BOOT_DONE;
static const char *BOOTMODE_NORMAL_INIT_BOOT_DONE;
static const char *BOOTMODE_NORMAL_BOOT_DONE;
static SignalManager* instance()
{
static SignalManager _instance;
return &_instance;
}
virtual ~SignalManager();
bool isGenerated(string name);
bool generate(string name, const bool isSync = false);
bool startBootMode(string mode, const bool isSync = false);
JValue getSignals();
private:
SignalManager();
map<string, bool> m_oneshotSignals;
vector<string> m_periodicSignals;
};
#endif /* SIGNALMANAGER_H_ */
|
2d4719709f030ea5f64772bc983c4d70bf1e3241
|
0b3149881206f04e6d3c2d3ddb9aa8a214a04c93
|
/uri 1044.cpp
|
07faafcdaf550fe1e970713273c17cf44749a885
|
[] |
no_license
|
lamia185/Uri_OnlineJudge
|
6b2842a41abfcbd60ceb7743e3fae591c3d3bd1f
|
b8bed349c321e823d9dc2c1adc5953b0c16449a0
|
refs/heads/master
| 2021-07-08T12:45:35.009975
| 2017-10-07T18:03:18
| 2017-10-07T18:03:18
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 154
|
cpp
|
uri 1044.cpp
|
#include<stdio.h>
int main()
{
int A,B;
scanf("%d %d",&A,&B);
if(A%B==0 || B%A==0)
printf("Sao Multiplos\n");
else printf("Nao sao Multiplos\n");
}
|
ba289ead8da4156897338ae5dbafcbaf448b81c1
|
eebcc10e3c8e93ce48735f459fbfd924b508e35f
|
/test/lattice/Helpers.cpp
|
109457cb33d723e0793909f8b90d8db0449af267
|
[] |
no_license
|
amnn/killer-sudoku
|
43275c36a18a587ae7808cbe7adc9afb0faf251b
|
f97af6d13cccd264af82b9c00aa29772f394515d
|
refs/heads/master
| 2021-01-13T05:45:45.827534
| 2017-03-22T01:45:34
| 2017-03-22T01:46:56
| 78,940,345
| 0
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 764
|
cpp
|
Helpers.cpp
|
#include "Helpers.h"
namespace lattice {
namespace helpers {
std::vector< std::vector<uint32_t> > ivals(Node *root)
{
std::vector< std::vector<uint32_t> >
vals {};
for (Node &row : root->vertRange()) {
vals.emplace_back();
auto &rowVals = vals.back();
for (Node &node : row.horizRange()) {
rowVals.emplace_back(node.val());
}
}
return vals;
}
std::vector<uint32_t> rvals(Node *row) {
std::vector<uint32_t> vals {};
for (Node &node : row->horizRange())
vals.emplace_back(node.val());
return vals;
}
std::vector<uint32_t> cvals(Node *col) {
std::vector<uint32_t> vals {};
for (Node &node : col->vertRange())
vals.emplace_back(node.val());
return vals;
}
} // namespace helpers
} // namespace lattice
|
6c5d79d1c7c929baf6e97423db716c7708a0a6b5
|
a33aac97878b2cb15677be26e308cbc46e2862d2
|
/program_data/PKU_raw/60/62.c
|
658a045e6bb8f66f5baac845e21f12914c503f70
|
[] |
no_license
|
GabeOchieng/ggnn.tensorflow
|
f5d7d0bca52258336fc12c9de6ae38223f28f786
|
7c62c0e8427bea6c8bec2cebf157b6f1ea70a213
|
refs/heads/master
| 2022-05-30T11:17:42.278048
| 2020-05-02T11:33:31
| 2020-05-02T11:33:31
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 335
|
c
|
62.c
|
int prime(unsigned int x)
{int y;
for (y=2;y<=sqrt(x);y+=1)
if (x%y==0)break;
if (y>sqrt(x))return 0;
return 1;
}
void main()
{int youmeiyou,i,n;
youmeiyou=0;
scanf("%d",&n);
for (i=5;i<=n;i+=2)
{
if (prime(i-2)==0&&prime(i)==0) {printf("%d %d\n", i-2,i); youmeiyou=1;}
}
if (youmeiyou==0)printf("empty\n");
}
|
d14386652f8dcbe00307039a472515658b093a98
|
daf17b14d2f1d544ea23d9523aab7038f85ee613
|
/CombatUnit.hpp
|
b7395627cd4bc17b8b695201f8412ff0157a109a
|
[] |
no_license
|
Clenoci/Dungeon-Adventures
|
b5720e5b1d987da7a0e5e4cd8bdc8b5d4b9969ee
|
261f658f1f1045c9974a2c0a1a13611b0590a2ea
|
refs/heads/master
| 2020-03-08T05:04:49.443181
| 2018-04-03T16:46:32
| 2018-04-03T16:46:32
| 127,938,773
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 815
|
hpp
|
CombatUnit.hpp
|
#ifndef COMBATUNIT_HPP
#define COMBATUNIT_HPP
#include "Item.hpp"
#include "HealthPotion.hpp"
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
class Item;
class CombatUnit {
public:
CombatUnit(std::string name,int health,int damage);
void UseItem(Item* item, CombatUnit* target);
void ModifyHealth(int amount);
void DealDamage(CombatUnit* target);
void addHealth(int healthAdded);
int GetHealth();
int GetDamage();
std::string GetName();
void setDamage(int weaponDamage);
void AddItemToInventory(Item* item);
virtual void PrintStats()= 0;
int damageModifier();
std::vector<Item*> getInventory();
void setInventory(std::vector<Item*> Inventory);
protected:
int health;
int damage;
std::string name;
std::vector<Item*> inventory;
bool skipTurn;
int damageMod;
};
#endif
|
5c9fe579b6179acbf9f1ee2de1208d4644f7741a
|
1b8bd250d7181c8b25a0a07eaff9eeda1f1fb4a8
|
/MediaPlayer/app/src/main/jni/libsrc/threads/ScopedLock.h
|
ae72c4a898fddcdb4d84e548dde296a6c1729452
|
[] |
no_license
|
asdlei99/MediaPlayer-1
|
14e76c6bd1305fe2e77b930d93b402f73e29695c
|
f290c1038646496df8cd779c4c2d8ec50b8be85b
|
refs/heads/master
| 2020-12-06T14:17:04.980762
| 2016-08-11T09:30:09
| 2016-08-11T09:30:09
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 929
|
h
|
ScopedLock.h
|
#ifndef HEADER_GUARD_SCOPEDLOCK_H
#define HEADER_GUARD_SCOPEDLOCK_H
#include <OpenThreads/Mutex>
namespace JAZZROS {
template<class M>
class TScopedLock {
private:
M &m_lock;
TScopedLock(const TScopedLock &); // prevent copy
TScopedLock &operator=(const TScopedLock &); // prevent assign
public:
explicit TScopedLock(M &m) : m_lock(m) { m_lock.lock(); }
~TScopedLock() { m_lock.unlock(); }
};
template<class M>
class ReverseTScopedLock {
private:
M &m_lock;
ReverseTScopedLock(const ReverseTScopedLock &); // prevent copy
ReverseTScopedLock &operator=(const ReverseTScopedLock &); // prevent assign
public:
explicit ReverseTScopedLock(M &m) : m_lock(m) { m_lock.unlock(); }
~ReverseTScopedLock() { m_lock.lock(); }
};
} // JAZZROS
#endif // HEADER_GUARD_SCOPEDLOCK_H
|
8eaf00b1cbb0f3fea8d10ba409d1f27be1eed1c1
|
0daabdbabc70ef199142e462b7c9d2970e35b83c
|
/D3D.h
|
8bab5bfc6778911a0ef91165387b195866f84e43
|
[] |
no_license
|
vbruder/Engine
|
9baa0b9a1108cd68e92bd876a38c330f4b25ef8a
|
ed0c22bcc7596836b6ba7f2f47fc75b1b4d15a57
|
refs/heads/master
| 2023-01-01T12:50:35.463333
| 2020-10-28T10:31:39
| 2020-10-28T10:31:39
| 12,707,217
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,289
|
h
|
D3D.h
|
#pragma once
// linking
#pragma comment(lib, "dxgi.lib")
#pragma comment(lib, "d3d11.lib")
// includes
#include <dxgi.h>
#include <d3dcommon.h>
#include <d3d11.h>
#include <DirectXMath.h>
#include <DirectXPackedVector.h>
using namespace DirectX;
using namespace DirectX::PackedVector;
class D3D
{
public:
D3D(void);
D3D(const D3D &);
~D3D(void);
bool Initialize(int, int, bool, HWND, bool, float, float);
void Shutdown();
// Called on the beginning of each frame. Initializes buffers for drawing.
void BeginScene(float, float, float, float);
// Tells the swap chain to display scene after drawing.
void EndScene();
// Getter functions.
ID3D11Device *GetDevice();
ID3D11DeviceContext *GetDeviceContext();
void GetProjectionMatrix(XMMATRIX &);
void GetWorldMatrix(XMMATRIX &);
void GetOrthoMatrix(XMMATRIX &);
void GetVideoCardInfo(char *, int &);
void TurnZBufferOn();
void TurnZBufferOff();
void ToggleWireframe();
void SetWireframe(bool wireframe);
void TurnOnCulling();
void TurnOffCulling();
void SetFullscreen(bool fullscreen);
// guarantee align 16 for heap allocations
void *operator new(size_t size) throw()
{
return _aligned_malloc(size, 16);
}
void operator delete(void *ptr) throw()
{
_aligned_free(ptr);
}
private:
template<typename T> void SafeRelease(T *&obj)
{
if (obj)
{
obj->Release();
obj = NULL;
}
}
bool m_vSyncEnabled;
bool m_wireFrameEnabled;
int m_videoCardMemory;
char m_videoCardDescription[128];
IDXGISwapChain *m_swapChain;
ID3D11Device *m_device;
ID3D11DeviceContext *m_deviceContext;
ID3D11RenderTargetView *m_renderTargetView;
ID3D11Texture2D *m_depthStencilBuffer;
ID3D11DepthStencilState *m_depthStencilState;
ID3D11DepthStencilView *m_depthStencilView;
ID3D11DepthStencilState *m_depthDisabledStencilState;
ID3D11RasterizerState *m_rasterStateSolid;
ID3D11RasterizerState *m_rasterStateWireFrame;
ID3D11RasterizerState *m_rasterStateNoCulling;
XMMATRIX m_projectionMatrix;
XMMATRIX m_worldMatrix;
XMMATRIX m_orthoMatrix;
};
|
e7bdacd8d0d8789e3e66215ae49e514807c621c8
|
f8939077f6e66cbd27b40e25a3cf8b7e84e4d852
|
/operator_overloading/complex_matrix.cpp
|
48ba8793cdb9f8ee44ee31bb4324c2331946da98
|
[] |
no_license
|
aashreyj/oops-lab
|
c7f21bc0589607aed7ec5d3b7a6fe023d73d6723
|
938a2e6a4457a0cfd8f97a1adbd1b7914b39edf1
|
refs/heads/master
| 2020-04-17T22:46:37.802142
| 2019-05-07T20:51:48
| 2019-05-07T20:51:48
| 167,008,169
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 5,330
|
cpp
|
complex_matrix.cpp
|
#include<iostream>
#include<bits/stdc++.h>
using namespace std;
#include<math.h>
class complex_num
{
public:
int real, imag;
complex_num() //default constructor
{}
complex_num(int r, int i) //constructor with arguments
{
real = r;
imag = i;
}
complex_num(const complex_num &a) //copy constructor
{
real = a.real;
imag = a.imag;
}
~complex_num() //destructor
{}
//overloading + operator for addition
complex_num operator+(complex_num &b) //+ operator overloaded for type c1 + c2
{
complex_num sum(real + b.real, imag + b.imag);
return sum;
}
//overloading - operator for subtraction
complex_num operator-(complex_num &b) //- operator overloaded for type c1 - c2
{
complex_num result(real - b.real, imag - b.imag);
return result;
}
//overloading - operator to find negation
complex_num operator-()
{
complex_num result(-real, -imag);
return result;
}
//overloading * operator for multiplication
complex_num operator*(complex_num &b) //- operator overloaded for type c1 * c2
{
complex_num result((real * b.real) - (imag * b.imag), ((real * b.imag) + (imag * b.real)));
return result;
}
};
class matrix
{
public:
complex_num **mat;
matrix() //constructor
{
int i, j;
mat = new complex_num* [3];
for(i = 0; i < 3; i++)
mat[i] = new complex_num [3];
for(i = 0; i < 3; i++)
for(j = 0; j < 3; j++)
mat[i][j].imag = mat[i][j].real = 0;
}
matrix(const matrix &a) //copy constructor
{
int i, j;
mat = new complex_num* [3];
for(i = 0; i < 3; i++)
mat[i] = new complex_num [3];
for(i = 0; i < 3; i++)
for(j = 0; j < 3; j++)
{
mat[i][j].real = a.mat[i][j].real;
mat[i][j].imag = a.mat[i][j].imag;
}
}
~matrix() //destructor
{
int i;
for(i = 0; i < 3; i++)
delete[] mat[i];
delete[] mat;
}
void input(void);
void display(void);
matrix operator+(matrix&); //addition
matrix operator-(matrix&); //subtraction
matrix operator!(void); //transpose
matrix operator-(void); //negation
};
void matrix::input()
{
int i, j;
for(i = 0; i < 3; i++)
{
for(j = 0; j < 3; j++)
{
cout<<"Enter real component: ";
cin>>mat[i][j].real;
cout<<"Enter imaginary component: ";
cin>>mat[i][j].imag;
}
cout<<endl;
}
}
void matrix::display()
{
int i,j;
for(i = 0; i < 3; i++)
{
for(j = 0;j < 3; j++)
cout<<mat[i][j].real<<" + "<<mat[i][j].imag<<"i";
cout<<endl;
}
}
matrix matrix::operator+(matrix &b) //addition
{
matrix result;
int i, j;
for(i = 0; i < 3; i++)
for(j = 0; j < 3; j++)
{
result.mat[i][j] = mat[i][j] + b.mat[i][j];
}
return result;
}
matrix matrix::operator-(matrix &b) //subtraction
{
matrix result;
int i, j;
for(i = 0; i < 3; i++)
for(j = 0; j < 3; j++)
{
result.mat[i][j] = mat[i][j] - b.mat[i][j];
}
return result;
}
matrix matrix::operator-() //negation
{
matrix result;
int i, j;
for(i = 0; i < 3; i++)
for(j = 0; j < 3; j++)
{
result.mat[i][j] = -mat[i][j];
}
return result;
}
matrix matrix::operator!() //transpose
{
matrix result;
int i, j;
for(i = 0; i < 3; i++)
for(j = 0; j < 3; j++)
{
result.mat[i][j] = mat[j][i];
}
return result;
}
int main()
{
int choice;
matrix a;
cout<<"Input for first matrix:\n";
a.input();
cout<<"\nFirst matrix is: \n";
a.display();
do
{
cout<<"\n1. Add \n2. Subtract \n3. Transpose \n4. Negation\n";
cout<<"\nEnter your choice: ";
cin>>choice;
switch (choice)
{
case 1:{
matrix b;
cout<<"\nInput for second matrix:\n";
b.input();
cout<<"\nSecond matrix is: \n";
b.display();
matrix result(a + b);
cout<<"\nThe sum matrix is: \n";
result.display();
break;
}
case 2:{
matrix b;
cout<<"\nInput for second matrix:\n";
b.input();
cout<<"\nSecond matrix is: \n";
b.display();
matrix result(a - b);
cout<<"\nThe difference matrix is: \n";
result.display();
break;
}
case 3:{
matrix result(!a);
cout<<"\nThe transpose matrix is: \n";
result.display();
break;
}
case 4: {
matrix result(-a);
cout<<"Negation of the matrix is :\n";
result.display();
break;
}
}
cout<<"\nDo you want to continue? ";
cin>>choice;
}while(choice);
}
|
33114e88d3dfea850be708fd518622551776ee80
|
ef4103c54d930ccddf025bb743e399587b7b5c4d
|
/sources/entity-component-system/SystemManager.h
|
b82adfabc2751d4428e410331100d1e1f52dfb6a
|
[] |
no_license
|
PatrykOstasz/sdl2_trainings
|
9995ec198b354e2e9cc574c140a0472128f8396e
|
b5fe16324614d3bfc405be13e6d9367fd5f14af9
|
refs/heads/master
| 2020-04-26T21:02:08.604854
| 2019-05-09T21:55:06
| 2019-05-09T21:58:31
| 173,830,180
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 404
|
h
|
SystemManager.h
|
#ifndef SYSTEM_MANAGER_H_INCLUDED
#define SYSTEM_MANAGER_INCLUDED
#include <memory>
#include <vector>
using std::unique_ptr;
using std::vector;
class Entity;
class SystemManager {
private:
vector<unique_ptr<Entity>> mEntities;
public:
SystemManager();
~SystemManager();
void update();
void draw();
void refresh();
Entity& addEntity();
};
#endif // SYSTEM_MANAGER_INCLUDED
|
f0203c154e8e1d09392669754f1f044a3d21ffcd
|
c26907ea2a54797aeaa780ff14a521cd1d13ff74
|
/connectdb.h
|
1086ec40391be6508428bc49f22902dd7b040d1c
|
[] |
no_license
|
AllFor1ONE/oneForAll
|
bd6d517b96523fdf36f348639d8aadb10c23c77e
|
ab514ede75a91c8cd34d2c343e8c11cb7ec9bcc8
|
refs/heads/master
| 2021-07-20T06:54:31.170576
| 2020-05-31T03:16:25
| 2020-05-31T03:16:25
| 174,071,214
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 857
|
h
|
connectdb.h
|
#ifndef CONNECTDB_H
#define CONNECTDB_H
#include "customer.h"
#include "employee.h"
#include "manager.h"
#include "rental.h"
#include "disc.h"
#include <QtSql/QSql>
#include <QtSql/QSqlDatabase>
#include <QtSql/QSqlError>
#include <QtSql/QSqlQuery>
#include <QVariant>
#include <QtSql/QSqlTableModel>
#include <QtSql/QSqlRecord>
#include <QtSql/QSqlDriver>
class dbconnect
{
public:
dbconnect(){}
~dbconnect(){}
bool openDB();
int judgeNP(QString name, QString pwd, QString type);
int insertCus(customer Cus);
int insertRental(rental Ren);
/* int insertEmp(employee Emp);
int insertMan(manager Man);
int insertDisc(disc Disc);
int findDiscByNM(QString Dname);
int findDiscByTP(QString Dtyp);
int findDiscByNO(QString Dno);*/
QSqlDatabase db;
};
#endif // CONNECTDB_H
|
1523c904db1c61ae26e55ce1c4f03b4bd022f9ad
|
0f67f4b756d4618c470f9c940d5bb7b902c98585
|
/MumbleVoipModule/MumbleVoipModule.cpp
|
15c6e87984f2c89fb2ca90fe2e9eb52583af3e0f
|
[
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0"
] |
permissive
|
jonnenauha/naali
|
8dc7e5a9802f0206c97b067d8675f49e602f6488
|
50060338255e9e5f6427b2f57b93bb884954d14b
|
refs/heads/master
| 2020-12-25T08:38:09.291039
| 2010-03-20T13:22:58
| 2010-03-20T13:22:58
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 6,067
|
cpp
|
MumbleVoipModule.cpp
|
// For conditions of distribution and use, see copyright notice in license.txt
#include "StableHeaders.h"
#include "DebugOperatorNew.h"
#include "MumbleVoipModule.h"
#include "MemoryLeakCheck.h"
#include "LinkPlugin.h"
#include "RexLogicModule.h"
#include "ModuleManager.h"
#include "Avatar/Avatar.h"
#include "EC_OgrePlaceable.h"
#include "SceneManager.h"
#include "ConsoleCommandServiceInterface.h"
namespace MumbleVoip
{
std::string MumbleVoipModule::module_name_ = "MumbleVoipModule";
MumbleVoipModule::MumbleVoipModule()
: ModuleInterfaceImpl(module_name_),
link_plugin_(new LinkPlugin()),
time_from_last_update_ms_(0)
{
}
MumbleVoipModule::~MumbleVoipModule()
{
SAFE_DELETE(link_plugin_);
}
void MumbleVoipModule::Load()
{
}
void MumbleVoipModule::Unload()
{
}
void MumbleVoipModule::Initialize()
{
InitializeConsoleCommands();
}
void MumbleVoipModule::PostInitialize()
{
}
void MumbleVoipModule::Uninitialize()
{
}
void MumbleVoipModule::Update(f64 frametime)
{
if (!link_plugin_->IsRunning())
return;
time_from_last_update_ms_ += 1000*frametime;
if (time_from_last_update_ms_ < UPDATE_TIME_MS_)
return;
time_from_last_update_ms_ = 0;
RexLogic::RexLogicModule *rex_logic_module = dynamic_cast<RexLogic::RexLogicModule *>(framework_->GetModuleManager()->GetModule(Foundation::Module::MT_WorldLogic).lock().get());
if (!rex_logic_module)
return;
RexLogic::AvatarPtr avatar = rex_logic_module->GetAvatarHandler();
if (avatar)
{
Scene::EntityPtr entity = avatar->GetUserAvatar();
if (!entity)
return;
const Foundation::ComponentInterfacePtr &placeable_component = entity->GetComponent("EC_OgrePlaceable");
if (placeable_component)
{
OgreRenderer::EC_OgrePlaceable *ogre_placeable = checked_static_cast<OgreRenderer::EC_OgrePlaceable *>(placeable_component.get());
Quaternion q = ogre_placeable->GetOrientation();
Vector3df position_vector = ogre_placeable->GetPosition();
Vector3df front_vector = q*Vector3df(1,0,0);
Vector3df top_vector(0,0,1);
link_plugin_->SetAvatarPosition(position_vector, front_vector, top_vector);
}
}
Scene::EntityPtr camera = rex_logic_module->GetCameraEntity().lock();
if (camera)
{
const Foundation::ComponentInterfacePtr &placeable_component = camera->GetComponent("EC_OgrePlaceable");
if (placeable_component)
{
OgreRenderer::EC_OgrePlaceable *ogre_placeable = checked_static_cast<OgreRenderer::EC_OgrePlaceable *>(placeable_component.get());
Quaternion q = ogre_placeable->GetOrientation();
Vector3df position_vector = ogre_placeable->GetPosition();
Vector3df front_vector = q*Vector3df(1,0,0);
Vector3df top_vector(0,0,1);
link_plugin_->SetCameraPosition(position_vector, front_vector, top_vector);
}
}
link_plugin_->SendData();
}
bool MumbleVoipModule::HandleEvent(event_category_id_t category_id, event_id_t event_id, Foundation::EventDataInterface* data)
{
return false;
}
void MumbleVoipModule::InitializeConsoleCommands()
{
boost::shared_ptr<Console::CommandService> console_service = framework_->GetService<Console::CommandService>(Foundation::Service::ST_ConsoleCommand).lock();
if (console_service)
{
console_service->RegisterCommand(Console::CreateCommand("mumble start", "Start Mumble link plugin", Console::Bind(this, &MumbleVoipModule::OnConsoleMumbleStart)));
console_service->RegisterCommand(Console::CreateCommand("mumble stop", "Stop Mumble link plugin", Console::Bind(this, &MumbleVoipModule::OnConsoleMumbleStop)));
}
}
Console::CommandResult MumbleVoipModule::OnConsoleMumbleStart(const StringVector ¶ms)
{
if (params.size() != 2)
{
return Console::ResultFailure("Wrong number of arguments: usage 'mumble start(id, context)'");
}
link_plugin_->SetUserIdentity(QString(params[0].c_str()));
link_plugin_->SetContextId(QString(params[1].c_str()));
link_plugin_->SetApplicationName("Naali viewer");
link_plugin_->SetApplicationDescription("Naali viewer by realXtend project");
link_plugin_->Start();
if (!link_plugin_->IsRunning())
{
QString error_message = "Link plugin connection cannot be established. ";
error_message.append(link_plugin_->GetReason());
return Console::ResultFailure(error_message.toStdString());
}
return Console::ResultSuccess("Mumbe link plugin started.");
}
Console::CommandResult MumbleVoipModule::OnConsoleMumbleStop(const StringVector ¶ms)
{
if (params.size() != 0)
{
return Console::ResultFailure("Wrong number of arguments: usage 'mumble stop'");
}
if (!link_plugin_->IsRunning())
{
return Console::ResultFailure("Mumbe link plugin was not running.");
}
link_plugin_->Stop();
return Console::ResultSuccess("Mumbe link plugin stopped.");
}
} // end of namespace: MumbleVoip
extern "C" void POCO_LIBRARY_API SetProfiler(Foundation::Profiler *profiler);
void SetProfiler(Foundation::Profiler *profiler)
{
Foundation::ProfilerSection::SetProfiler(profiler);
}
using namespace MumbleVoip;
POCO_BEGIN_MANIFEST(Foundation::ModuleInterface)
POCO_EXPORT_CLASS(MumbleVoipModule)
POCO_END_MANIFEST
|
ecaf6a03952aa55e207cd16d4e34258c1ae08a80
|
c8045a13bd1ebe378b242c98f1aa3d7d0c3a8cf1
|
/367_Valid_Perfect_Square/sol.cpp
|
5b10d3e47cb43d3bad4a98e51461ef572a829f30
|
[] |
no_license
|
IrvingW/LeetCode-problems
|
1e6f85c71400043f1dc97d99e11297357ce11aaa
|
65cd70ec4fd0335cc6e536db1e1373aa5630b4b5
|
refs/heads/master
| 2018-11-15T17:18:08.056162
| 2018-09-02T09:45:04
| 2018-09-02T09:45:04
| 118,145,834
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 253
|
cpp
|
sol.cpp
|
class Solution {
public:
bool isPerfectSquare(int num) {
// 1, 4, 9, 16, 25
// sub: 1, 3, 5, 7, 9
int sub = 1;
while(num > 0){
num -= sub;
sub += 2;
}
return num == 0;
}
};
|
1af37072cbfd8b2b4bc0a161c956636cb63a7b28
|
9d64a176b20c1451f9e61e0cd4a910c875567c16
|
/srg_worldmodel/include/srg/SRGWorldModel.h
|
9216814601583b959d9717853b31d9c9a7afdbcc
|
[
"MIT"
] |
permissive
|
nio-core/alica-fog-simulation
|
ad6a37f4e984762984148be3b5e925f050100e0b
|
73dcb48fac3e5a42e88ae345b3896f7629dba39c
|
refs/heads/master
| 2022-12-12T17:40:43.602352
| 2020-07-02T12:43:44
| 2020-07-02T12:43:44
| 274,662,051
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,017
|
h
|
SRGWorldModel.h
|
#pragma once
#include "wm/BasicHumanNeeds.h"
#include "wm/SRGSimData.h"
#include <SystemConfig.h>
#include <essentials/EventTrigger.h>
#include <knowledge_manager/ASPKnowledgeManager.h>
#include <supplementary/InformationElement.h>
#include <supplementary/WorldModel.h>
namespace essentials
{
class SystemConfig;
}
namespace reasoner
{
namespace asp
{
class Solver;
}
} // namespace reasoner
namespace srg
{
class ConceptNet;
class SRGWorldModel : public supplementary::WorldModel
{
public:
static SRGWorldModel* getInstance(); /**< Singleton Getter */
virtual ~SRGWorldModel();
void init();
void setSolver(::reasoner::asp::Solver* solver);
std::string getAgentName();
// Public Data Access Classes
wm::SRGSimData sRGSimData;
knowledge_manager::ASPKnowledgeManager knowledgeManager;
wm::ConceptNet* conceptNet;
wm::BasicHumanNeeds basicHumanNeeds;
private:
SRGWorldModel(); /**< Private Singleton Constructor */
std::string agentName;
};
} /* namespace srg */
|
4ff70e7dc0d3014ef63c8e9f56b803c9fb6a900c
|
f0d4e5b2bc6a688dff5dd4d1d0178b3c6e8b3309
|
/include/lockwrapper.h
|
2d3a1f41ba5d010b53f223bdd52370773614e149
|
[
"Apache-2.0"
] |
permissive
|
cac2003/GAM-1
|
25a2d0f839e00c0c8a0a28629cac8a4a9f007925
|
218c5a1e985bd7572f9f8a938f9e3c7468868be4
|
refs/heads/master
| 2020-03-30T20:03:44.334154
| 2018-10-05T05:50:48
| 2018-10-05T06:12:44
| 151,571,503
| 3
| 1
| null | 2018-10-04T12:55:21
| 2018-10-04T12:55:21
| null |
UTF-8
|
C++
| false
| false
| 708
|
h
|
lockwrapper.h
|
// Copyright (c) 2018 The GAM Authors
#ifndef INCLUDE_LOCKWRAPPER_H_
#define INCLUDE_LOCKWRAPPER_H_
#include <mutex>
#include "settings.h"
class LockWrapper {
#ifdef USE_ATOMIC
bool lock_ = 0;
#else
std::mutex lock_;
#endif
public:
inline void lock() {
#ifdef USE_ATOMIC
while (__atomic_test_and_set(&lock_, __ATOMIC_RELAXED))
;
#else
lock_.lock();
#endif
}
inline void unlock() {
#ifdef USE_ATOMIC
__atomic_clear(&lock_, __ATOMIC_RELAXED);
#else
lock_.unlock();
#endif
}
inline bool try_lock() {
#ifdef USE_ATOMIC
return !__atomic_test_and_set(&lock_, __ATOMIC_RELAXED);
#else
return lock_.try_lock();
#endif
}
};
#endif /* INCLUDE_LOCKWRAPPER_H_ */
|
3b0c1bacd10887d57594e1726521807a6f2ea657
|
661949d22526a5963a64a654badde761d660721d
|
/CC_ForestGathering.cpp
|
80813d1cc690a5754893ae67cb76deb4ebfe6d6d
|
[] |
no_license
|
Sandeep1991/Coding
|
c6fae54c50438086cc8746a85d5288687680d151
|
6e66bf34173fe3be0d4e728eadf7927c184a9800
|
refs/heads/master
| 2021-01-19T02:40:18.638877
| 2019-07-17T05:13:33
| 2019-07-17T05:13:33
| 51,288,414
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 986
|
cpp
|
CC_ForestGathering.cpp
|
//Code Chef Forest Gathering May 2016 Long contest challenge
//https://www.codechef.com/MAY16/problems/FORESTGA
#include <iostream>
#include<bits/stdc++.h>
#define ll long long int
using namespace std;
int main()
{
ll N, W, L,a,b;
vector<pair<ll,ll> > T;
pair<ll,ll> temp;
cin>>N>>W>>L;
for(ll i=0;i<N;i++)
{
cin>>a;
cin>>b;
temp.first = a;
temp.second = b;
T.push_back(temp);
}
//ll count = 0;
//sort(T.rbegin(),T.rend());
int x=0,sim=0;
for(int j=1; j<W;j++ )
{
sim = 0;
for(int i=0; i<N;i++)
{
x = T[i].first + T[i].second * j;
if(x>=L)
sim += x;
//cout<<sim<<endl;
if(sim >= W)
{
cout<<j<<endl;
return 0;
}
}
}
cout<<sim<<endl;
/*for(ll i=0,n=1; i < N,n<L; i ++,n++)
{
//cout<<T[i].first<<" "<<T[i].second<<endl;
ll x=0,count=0;
if(T[i].first+T[i].second*n >= L)
x = T[i].first+T[i].second * n;
if(x>=W)
{
cout<<count + x<<endl;
cout<<n<<endl;
return 0;
}
if(i==2) {
count=0;
i=0;
}
} */
}
|
e8b3b31698b0ee78886374c27e7c372e1128af20
|
647ce8d4550c4f4cc61f597747c238adb1fbcd54
|
/client/caller.cpp
|
b8def2003dc619556de83d74cd428f8d6ac3c0d8
|
[] |
no_license
|
tantan580/qDbus-demo
|
d036bf7debeb3b6fe4487ecb67822d763709e1c7
|
e74532447404ef55aae129a5c3e2f1782ef212dd
|
refs/heads/master
| 2022-10-22T13:31:26.823891
| 2020-06-17T09:00:36
| 2020-06-17T09:00:36
| 272,914,032
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,518
|
cpp
|
caller.cpp
|
//caller.cpp
#include "caller.h"
#include <QDBusInterface>
Caller::Caller(QObject *parent) : QObject(parent)
{
//receive signal method 1
// QDBusConnection::sessionBus().connect("com.openthinks.dbus.service", "/","com.openthinks.dbus.interface","nameChanged", this,SLOT(onNameChanged(QString)));
//receive signal method 2
QDBusInterface *interface=new QDBusInterface("com.openthinks.dbus.service","/","com.openthinks.dbus.interface",QDBusConnection::sessionBus());
QObject::connect(interface, SIGNAL(nameChanged(QString)),this, SLOT(onNameChanged(QString)));
}
void Caller::callByMsg(){
QDBusMessage msg = QDBusMessage::createMethodCall("com.openthinks.dbus.service","/","com.openthinks.dbus.interface","setName");
msg<<QString("Alex");
QDBusMessage response = QDBusConnection::sessionBus().call(msg);
msg = QDBusMessage::createMethodCall("com.openthinks.dbus.service","/","com.openthinks.dbus.interface","name");
response = QDBusConnection::sessionBus().call(msg);
if(response.type()== QDBusMessage::ReplyMessage){
QString name = response.arguments().takeFirst().toString();
qDebug()<<"name = "<< name;
}
}
void Caller::callByInterface(){
QDBusInterface interface("com.openthinks.dbus.service","/","com.openthinks.dbus.interface");
interface.call("setName","Jack");
QDBusReply<QString> reply = interface.call("name");
if(reply.isValid()){
qDebug()<<"name = "<< reply.value();
}else{
qDebug()<<"reply not valid.";
}
interface.call("setName","Bluce");
reply = interface.call("name");
if(reply.isValid()){
qDebug()<<"name = "<< reply.value();
}else{
qDebug()<<"reply not valid.";
}
}
void Caller::callAsync(){
QDBusInterface interface("com.openthinks.dbus.service","/","com.openthinks.dbus.interface");
QDBusPendingCall async = interface.asyncCall("setName","Trump");
async=interface.asyncCall("name");
QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(async,this);
QObject::connect(watcher,SIGNAL(finished(QDBusPendingCallWatcher*)),this,SLOT(callFinishedSlot(QDBusPendingCallWatcher*)));
}
void Caller::callFinishedSlot(QDBusPendingCallWatcher *call){
QDBusPendingReply<QString> reply = *call;
if(!reply.isError()){
QString name = reply.argumentAt<0>();
qDebug()<<"name = "<<name;
}
call->deleteLater();
}
void Caller::onNameChanged(QString name){
qDebug()<<"received signal nameChanged : name = "<<name;
}
|
fbb62c10357be8f76d4522323c5b9625b66674d8
|
de61b89b6cfafeafe9574a5338d300e9b90dbc1f
|
/UocSoChungLonNhatCuaNSoNguyenDuongDauTien.cpp
|
2e3f17d234ea1e872b6df85246fadac0859af9b3
|
[] |
no_license
|
nha20042000/phao-thi
|
08b630f1dfe9163659f46de0200f468efa999b92
|
d4df381a2eb0a98809c32273ae99d9f7fb682a65
|
refs/heads/master
| 2023-07-23T00:29:20.815767
| 2021-08-24T16:37:37
| 2021-08-24T16:37:37
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 260
|
cpp
|
UocSoChungLonNhatCuaNSoNguyenDuongDauTien.cpp
|
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
ll bcnn(ll a, ll b){
return a*b/__gcd(a,b);
}
int main(){
int t;
cin>>t;
while(t--){
ll n;
cin>>n;
ll x=1;
for(ll i=1; i<=n; i++){
x=bcnn(x,i);
}
cout << x << endl;
}
}
|
213a537cbb35a8299655e0a735d3154446ad909c
|
88bc7a62727b23435c9f62b894c82dd992a594d6
|
/iTalkClientnewnew/iTalkClient/friendmsg.h
|
f4d0914ff1895110862755c40e91eda3a9ed18c8
|
[] |
no_license
|
L65430/italk
|
52a0fa0deb12964709f71b155bd39c6a3869f5c8
|
884e47572f542e11ec1cb8cf1ff346434bc3935e
|
refs/heads/master
| 2020-04-14T05:18:52.206688
| 2018-12-31T09:40:45
| 2018-12-31T09:40:45
| 163,657,377
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 927
|
h
|
friendmsg.h
|
#ifndef FRIENDMSG_H
#define FRIENDMSG_H
#include <QWidget>
#include<QLabel>
#include<QMovie>
#include<QMouseEvent>
#include<QDebug>
#include<QPropertyAnimation>
#include<QImage>
#include<QDesktopServices>
#include<QPropertyAnimation>
#include<QNetworkAccessManager>
#include<QCryptographicHash>
#include<talk.h>
namespace Ui {
class Friendmsg;
}
class Friendmsg : public QWidget
{
Q_OBJECT
public:
explicit Friendmsg(QString name,QString id,QString sign,QTcpSocket* tcpSocket,QWidget *parent = 0);
~Friendmsg();
bool eventFilter(QObject *object, QEvent *e);
bool mouse_press;//鼠标
private slots:
void on_pushButton_clicked();
void on_pushButton_2_clicked();
private:
Ui::Friendmsg *ui;
QString name;
QString id;
QString sign;
QTcpSocket *tcpSocket;
quint16 blockSize;
QJsonObject message;
protected:
void showEvent(QShowEvent* event);
};
#endif // FRIENDMSG_H
|
8b507092f830b8ece4317b11ec320f6d3ae06b1d
|
e104495e2b5834d7f4da7a4fd0499328e8be4141
|
/SeleneDev/Code/Selene/Render/seTextRenderer.h
|
d2888c65214a5973c62f6a481ffc69ecd2b6ed9c
|
[] |
no_license
|
giliaidzin/Selene
|
2e9936fbd9ebb17e924635f174d4b7c7601b9edf
|
757d04933b38d668457b952ca30cb985e9542bb0
|
refs/heads/master
| 2016-09-03T07:11:33.048006
| 2013-03-10T10:05:41
| 2013-03-10T10:05:41
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 415
|
h
|
seTextRenderer.h
|
#ifndef SE_TEXT_RENDERER_H
#define SE_TEXT_RENDERER_H
#include "Selene/Utils/seStdIncludes.h"
namespace Selene
{
class CTextRenderer
{
public:
CTextRenderer();
virtual ~CTextRenderer();
virtual void Render();
virtual void Enable();
virtual void Disable();
virtual void SetEnabled(bool enabled);
virtual bool IsEnabled() const;
private:
bool m_Enabled;
};
}
#endif // SE_TEXT_RENDERER_H
|
24169473b94d95e01cc823026608708c9858a51b
|
c0164407327b147c68c76b039c31c39b1446b012
|
/C++Programs/RandomNumbersGenerator/randomGenerator.cpp
|
4c231b7b9e2361fb2782fa781df7448751c22e2b
|
[] |
no_license
|
NDK-Secrets/NDK-Projects
|
880cb24b7d1edc8b4425f9c1664f464a3b24a8ba
|
c31f1e492b1cc7b8bf20589fa5e46f1ecf5e27f7
|
refs/heads/master
| 2021-06-28T13:55:00.877121
| 2017-09-17T18:10:26
| 2017-09-17T18:10:26
| 100,281,315
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 173
|
cpp
|
randomGenerator.cpp
|
#include <iostream>
#include <cstdlib>
#include <ctime>
using namespace std;
int main(){
srand(time(0));
for(int i=0;i<20;i++){
cout<<1+(rand() % 100)<<endl;
}
}
|
cf5a09a547b9fd392e5d5421fcb132b9c9290f39
|
6a02792296ab3195ccabc381ed82841e9c53ce79
|
/include/macho/macho.h
|
b2bf432acacbe6e015534635a1942d3bf5357a3e
|
[] |
no_license
|
al45tair/libmacho
|
843ce1993b9e50a4f47159f1c226ae8ff65867b0
|
e4372070ac8e121289c3806b1b4456b560f06f05
|
refs/heads/master
| 2023-03-12T13:13:35.379363
| 2013-10-16T13:11:31
| 2013-10-16T13:11:31
| 96,516,032
| 2
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 398
|
h
|
macho.h
|
/* Emacs, this is -*-C++-*- */
#ifndef LIBMACHO_H_
#define LIBMACHO_H_
#include "types.h"
#include "file.h"
#include "architecture.h"
#include "object.h"
#include "load_command.h"
#include "segment_command.h"
#include "dylib_command.h"
#include "uuid_command.h"
#include "rpath_command.h"
#include "umbrella_commands.h"
#include "version_min_command.h"
#include "source_version_command.h"
#endif
|
38a0b344ec24c443c2e21d11f90d58f76aada2ef
|
b0df22a4b4dadddd3a9494e6efbd3fc4459c5e0d
|
/leetcode/add_two_numbers.cpp
|
e0ab854227ab58cb8473b69eba836532ed7bb9d3
|
[] |
no_license
|
nkhaldi/Cpp
|
df893fac1e99c44785bfdd0cb513bf5753fe62bd
|
49011419cdcb040e01c5bdc7ce29669d734ce015
|
refs/heads/main
| 2023-04-13T22:37:59.319725
| 2023-04-06T18:51:03
| 2023-04-06T18:51:03
| 192,748,183
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,123
|
cpp
|
add_two_numbers.cpp
|
/*
* You are given two non-empty linked lists representing two non-negative integers.
* The digits are stored in reverse order, and each of their nodes contains a single digit.
* Add the two numbers and return the sum as a linked list.
* You may assume the two numbers do not contain any leading zero,
* except the number 0 itself.
*/
struct ListNode
{
int val;
ListNode *next;
ListNode() : val(0), next(nullptr) {}
ListNode(int x) : val(x), next(nullptr) {}
ListNode(int x, ListNode *next) : val(x), next(next) {}
};
class Solution
{
public:
ListNode *addTwoNumbers(ListNode *l1, ListNode *l2)
{
ListNode *res = new ListNode(0);
ListNode *curr = res;
int rem = 0;
while (l1 || l2 || rem != 0)
{
int x = l1 ? l1->val : 0;
int y = l2 ? l2->val : 0;
int sum = rem + x + y;
rem = sum / 10;
curr->next = new ListNode(sum % 10);
curr = curr->next;
l1 = l1 ? l1->next : nullptr;
l2 = l2 ? l2->next : nullptr;
}
return res->next;
}
};
|
b7282475de9a9508114243d629cdc838a2e0437d
|
25036510998bfac800959ee2eab9affbf359c416
|
/projects/Hack-N-Slash/src/tile_map.cpp
|
eeaf6ae8a6c7e2c95afe1aef204e1b82ca148710
|
[] |
no_license
|
TwoTwentyFour/SDL2
|
1e78afcdc5639cf074535b92231ff15495aa2c90
|
ce4925e80993077fd00a3adad2a3ecb2fdeb6d5a
|
refs/heads/master
| 2021-05-13T19:07:57.048372
| 2018-01-10T00:42:55
| 2018-01-10T00:42:55
| 116,886,429
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 5,660
|
cpp
|
tile_map.cpp
|
#if _WIN32
#include "SDL.h"
#else
#include "SDL2/SDL.h"
#include "SDL2/SDL_ttf.h"
#endif
#include "tile_map.h"
#include "defines.h"
#include <fstream>
AV_Tile_Map::AV_Tile_Map()
{
/*if ( TTF_Init() < 0)
{
printf( "TTF_Init Error: %s\n", TTF_GetError() );
return;
}*/
srcRect.x = 0;
srcRect.y = 0;
srcRect.w = TILE_SIZE;
srcRect.h = TILE_SIZE;
dstRect.x = 0;
dstRect.y = 0;
dstRect.w = TILE_SIZE;
dstRect.h = TILE_SIZE;
backgroundSurface = NULL;
optimizedBackgroundSurface = NULL;
tileSurface = NULL;
optimizedTileSurface = NULL;
clr_black = { 0, 0, 0, 255 };
font = NULL;
textSurface = NULL;
}
// NOTE(Devan): Load background image from a .bmp file. Convert standard surface to an optimized surface.
void AV_Tile_Map::LoadBackgroundBMP( const char *backgroundBMPToLoad )
{
if ( (backgroundSurface = SDL_LoadBMP( backgroundBMPToLoad )) )
{
if ( (optimizedBackgroundSurface = SDL_ConvertSurface( backgroundSurface, backgroundSurface->format, 0 )) )
{
// NOTE(Devan): Freeing this surface since we will be using the optimized surface..
SDL_FreeSurface( backgroundSurface );
backgroundSurface = NULL;
}
else
{
printf( "optimizedBackgroundSurface is NULL. %s\n", SDL_GetError() );
return;
}
}
else
{
printf( "Could not load image file. %s\n", SDL_GetError() );
return;
}
}
// NOTE(Devan): Blit the optimized back ground surface to the main screen surface.
void AV_Tile_Map::ShowBackgroundBMP( SDL_Rect *cameraRect, SDL_Surface *surfaceOfScreen )
{
SDL_BlitSurface( optimizedBackgroundSurface, cameraRect, surfaceOfScreen, NULL );
}
void AV_Tile_Map::BackgroundCleanUp()
{
SDL_FreeSurface( optimizedBackgroundSurface );
optimizedBackgroundSurface = NULL;
}
SDL_Surface *AV_Tile_Map::GetOptimizedBackgroundSurface()
{
return optimizedBackgroundSurface;
}
// NOTE(Devan): Load tile map from a .bmp file. Convert standard surface to an optimized surface.
void AV_Tile_Map::LoadTileMapBMP( const char *mapSheetToLoad )
{
if ( (tileSurface = SDL_LoadBMP( mapSheetToLoad)) )
{
if ( (optimizedTileSurface = SDL_ConvertSurface( tileSurface, tileSurface->format, 0 )) )
{
// NOTE(Devan): Freeing this surface since we will be using the optimized surface.
SDL_FreeSurface( tileSurface );
tileSurface = NULL;
}
else
{
printf( "optimizedTileSurface is NULL. %s\n", SDL_GetError() );
return;
}
}
else
{
printf( "Could not load image file. %s\n", SDL_GetError() );
return;
}
}
// NOTE(Devan): Read tile information from a text file and store the datain a 2D vector.
void AV_Tile_Map::LoadMap( const char *fileToOpen )
{
// NOTE(Devan): Opening the file.
std::ifstream mapFile( fileToOpen );
if( !mapFile.is_open() )
{
printf( "Error: Could not open file: %s\n", fileToOpen );
return; // What does this do if not assigned a value?
}
// NOTE(Devan): Setting the dimensions of the map. The width and height are taken from the first two entries of the text file.
unsigned int width = 0;
unsigned int height = 0;
mapFile >> width;
mapFile >> height;
int current = 0;
for( unsigned int y = 0; y < height; y++ )
{
// NOTE(Devan): Forming a new vector to be stored within the outer vector forming the rows of the map.
std::vector<int> innerVec;
for( unsigned int x = 0; x < width; x++ )
{
if( mapFile.eof() )
{
printf( "Reached end of file %s too early. Check width and height parameters.\n", fileToOpen );
return;
}
// NOTE(Devan): Capturing the value stored at the current location within the text file.
mapFile >> current;
// NOTE(Devan): Checking if the input is within the tile type boundaries. Current Types: ( 0 : 2 )
if( current >= 0 && current <= 2 )
{
innerVec.push_back( current );
}
// NOTE(Devan): If the input is outside of the boundaries simply push 0 into the inner vector.
else
{
innerVec.push_back(0);
}
}
tileMap.push_back( innerVec );
}
mapFile.close();
}
// NOTE(Devan): Determine what tile image, if any, should be drawn to the tile map.
void AV_Tile_Map::ShowMap()
{
for( unsigned int y = 0; y < tileMap.size(); y++ )
{
for( unsigned int x = 0; x < tileMap[0].size(); x++ )
{
if( tileMap[y][x] == 1 )
{
srcRect.x = 0;
srcRect.y = 0;
dstRect.x = x * 60;
dstRect.y = y * 60;
}
else if( tileMap[y][x] == 2 )
{
srcRect.x = 60;
srcRect.y = 0;
dstRect.x = x * 60;
dstRect.y = y * 60;
}
// NOTE(Devan): The srcRect is the image to draw from. The dstRect is the location to draw to.
SDL_BlitSurface( optimizedTileSurface, &srcRect, optimizedBackgroundSurface, &dstRect );
}
}
}
std::vector< std::vector< int >> AV_Tile_Map::GetTileMap()
{
return tileMap;
}
void AV_Tile_Map::MapCleanUp()
{
SDL_FreeSurface( optimizedTileSurface );
optimizedTileSurface = NULL;
// TTF_Quit();
}
/*// TODO(Devan): Set up text for ttf writing.
void AV_Tile_Map::TextSetup()
{
// NOTE(Devan): Set up the text with font size 28 and text color black.
clr_black = { 0, 0, 0, 255 };
font = TTF_OpenFont( "fonts/lazy.ttf", 28 );
if ( font == NULL )
{
printf( "Font returned NULL: %s\n", TTF_GetError() );
return;
}
}*/
// NOTE(Devan): Standard text output to the screen.
/*void AV_Tile_Map::OutputText( const char *textToWrite, SDL_Rect *dstRect, SDL_Surface *surfaceToWriteOn )
{
textSurface = TTF_RenderText_Solid( font, textToWrite, clr_black );
// NOTE(Devan): Show the text.
SDL_BlitSurface( textSurface, dstRect, surfaceToWriteOn, NULL );
}*/
void AV_Tile_Map::TextCleanUp()
{
//TTF_CloseFont( font );
// font = NULL;
SDL_FreeSurface( textSurface );
textSurface = NULL;
}
|
be1f7afc196275d751955c5ed8886d7622034e44
|
cb1b74c4b25440d7e1c8122bdd3895070016d2e5
|
/aesalgorithm.cpp
|
6465ada6d36f6216f2c0ec20b0e5d0012f9d0163
|
[
"MIT"
] |
permissive
|
AyushBhargav/MUCrypt
|
31f529e1b0f9acd7a4ed2597fe767ccceeb3c36c
|
3feddfb5ba8fcd04fc41329665d3b7fab1a9eb56
|
refs/heads/master
| 2022-01-05T03:23:53.200255
| 2019-05-18T17:55:53
| 2019-05-18T17:55:53
| 107,712,294
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 999
|
cpp
|
aesalgorithm.cpp
|
#include <aesalgorithm.h>
#include <openssl/aes.h>
#include <string>
using namespace std;
AESAlgorithm::AESAlgorithm()
{
}
string AESAlgorithm::encrypt(string args[], int n) {
unsigned char* oneKey = (unsigned char*)args[0].c_str();
AES_KEY key; // must be 16 bytes
AES_set_encrypt_key(oneKey, 128, &key);
unsigned char* content = (unsigned char*)args[1].c_str();
unsigned char encryptedBuffer[1024];
AES_encrypt(content, encryptedBuffer, &key);
string encryptedString((const char*)encryptedBuffer);
return encryptedString;
}
string AESAlgorithm::decrypt(string args[], int n) {
unsigned char* oneKey = (unsigned char*)args[0].c_str();
AES_KEY key; // must be 16 bytes
AES_set_decrypt_key(oneKey, 128, &key);
unsigned char* encryptedBuffer = (unsigned char*)args[1].c_str();
unsigned char content[1024];
AES_decrypt(encryptedBuffer, content, &key);
string decryptedString((const char*)content);
return decryptedString;
}
|
91a83000a54629728dda19a2ea58e89a9512c31d
|
f0b8f6726249e494d407c43093e26b044f3bd4d6
|
/menu.h
|
9bccf4a287c3d2ac552bc77caad9744cb8714df1
|
[] |
no_license
|
clanqt/Project75-nif
|
b513a32fed5245913290653d210fa8558432f9a4
|
46995523ceadc70c345ffeca81f006d3df8b8b67
|
refs/heads/master
| 2020-04-25T20:11:40.096870
| 2019-02-28T05:44:17
| 2019-02-28T05:44:17
| 173,045,663
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,369
|
h
|
menu.h
|
#ifndef MENU_H
#define MENU_H
#include <QWidget>
#include <QNetworkAccessManager>
#include <QNetworkReply>
#include <QUrl>
#include <QTimer>
#include <QEventLoop>
#include <QKeyEvent>
#include <QScrollArea>
#include <QInputDialog>
#include "downloadmanager.h"
namespace Ui {
class Menu;
}
class Menu : public QWidget
{
Q_OBJECT
public:
QString UdId,device_status;
int Download_in_Process,Upload_in_Process;
int company_or_other;
enum Download_Process
{
Time_Sync = 1 ,
Device_Status = 2 ,
Config_download = 3 ,
User_Download = 4 ,
Category_Download = 5 ,
Product_Download = 6
};
enum Upload_Process
{
Sale_Upload = 1 ,
Product_Upload = 2
};
DownloadManager* mManager;
QNetworkAccessManager *networkManager_mac_reg;
QNetworkReply *reply_server;
QUrl url_mac_reg;
QTimer *timer_http;
int timerTimeout;
QTimer *timer;
QScrollArea *scroll;
void keyPressEvent(QKeyEvent *ke);
void startRequestTimer(QEventLoop &);
void stopRequestTimer(QEventLoop &);
void call_menu();
void check_init_config();
bool convert_header,convert_footer;
explicit Menu(QWidget *parent = 0);
~Menu();
public slots:
void http_get_server_reply(QString rpy);
// void replyFinished(QNetworkReply *);
void callMenu();
signals:
void data_saved();
private slots:
void on_pushButton_device_setting_clicked();
void on_pushButton_download_clicked();
void on_pushButton_Configuration_clicked();
void on_pushButton_rate_config_clicked();
void on_pushButton_Day_Close_clicked();
void on_pushButton_Shift_Close_clicked();
void on_pushButton_Other_batch_close_clicked();
void on_pushButton_batch_config_clicked();
void on_pushButton_master_config_clicked();
void on_pushButton_input_config_clicked();
void on_pushButton_diesel_clicked();
void on_pushButton_Reports_clicked();
void on_pushButton_purchase_clicked();
void on_pushButton_payment_clicked();
void on_pushButton_Day_Open_clicked();
void on_pushButton_Data_transfer_clicked();
void on_pushButton_Receipt_clicked();
void on_pushButton_Reset_Data_clicked();
void on_pushButton_Void_Last_Bill_clicked();
private:
Ui::Menu *ui;
};
#endif // MENU_H
|
1ae71312b7f8e93acc8970ae8a0e7fd298bc82ea
|
7d5ab12afa98390e714faa9cfd8c6bfe0ab505f8
|
/include/CppUtil/RTX/MatVisitor.h
|
d1d95050c9aff9f811eab1762ced7f405ebfc785
|
[
"MIT"
] |
permissive
|
huangx916/RenderLab
|
6199b0a4bc44cbae5b28291f999484eedec7de87
|
a0059705d5694146bbe51442e0cabdcbcd750fe7
|
refs/heads/master
| 2020-07-21T21:46:31.215327
| 2019-09-07T09:47:02
| 2019-09-07T09:47:02
| 206,981,200
| 1
| 0
|
MIT
| 2019-09-07T14:40:54
| 2019-09-07T14:40:54
| null |
UTF-8
|
C++
| false
| false
| 838
|
h
|
MatVisitor.h
|
#ifndef _RTX_RT_MATERIAL_MAT_VISITOR_H_
#define _RTX_RT_MATERIAL_MAT_VISITOR_H_
#include <CppUtil/Basic/HeapObj.h>
namespace RTX {
class Material;
class Lambertian;
class Metal;
class Dielectric;
class Light;
class OpMaterial;
class Isotropic;
class MatVisitor : public CppUtil::Basic::HeapObj {
HEAP_OBJ_SETUP(MatVisitor)
public:
virtual void Visit(CppUtil::Basic::CPtr<Material> material);
virtual void Visit(CppUtil::Basic::CPtr<Lambertian> lambertian);
virtual void Visit(CppUtil::Basic::CPtr<Metal> metal);
virtual void Visit(CppUtil::Basic::CPtr<Dielectric> dielectric);
virtual void Visit(CppUtil::Basic::CPtr<Light> light);
virtual void Visit(CppUtil::Basic::CPtr<OpMaterial> opMaterial);
virtual void Visit(CppUtil::Basic::CPtr<Isotropic> isotropic);
};
}
#endif // !_RTX_RT_MATERIAL_MAT_VISITOR_H_
|
0a94fad43a16a4b89d1abd636bd558f86c690d93
|
c0cb14bdf5c3b2e97dd5eba73fb21e825c0000a4
|
/hackerearth/Super String.cpp
|
d355242b4086d9fc292d5373bf1217a988465235
|
[] |
no_license
|
MISabic/Competitive-Programming-Problem-Implementation
|
799cab32a3519b60dfa390f6e115a50d105f12c1
|
04e1a68f45ce2fabe33b7006fe78c680d39fb12f
|
refs/heads/master
| 2022-12-08T13:59:49.044444
| 2020-08-11T06:07:41
| 2020-08-11T06:07:41
| 286,660,692
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 791
|
cpp
|
Super String.cpp
|
#include<bits/stdc++.h>
using namespace std;
int main()
{
int t,n,k;
string str;
cin>>t;
while(t--){
cin>>n>>k>>str;
int m=999999,pos;
for(int i=0; i<n; i++){
if((int)str[i]<m){
m=(int)str[i];
pos=i;
}
}
vector<string>vec;
if(k==1){
if(pos==0 || pos==n-1){
cout<<str[pos]<<endl;
}
else{
for(int i=0; i<n; i++){
if(str[i]==str[pos])
vec.push_back(str.substr(i,n-1));
}
sort(vec.begin(),vec.end());
cout<<vec[0]<<endl;
}
}
else
cout<<str[pos]<<endl;
}
return 0;
}
|
305800e42c2e86cfc4f8cffcc3285c1c5eb7ce9b
|
555951c2daef8cace91229e3bcdcba1af89d776a
|
/LunarPool/Mur.cpp
|
90418020b532bd0f16868d1a945a27719029b467
|
[] |
no_license
|
PigeonZombie/LunarPool
|
1699122fa3c5782f165aede656079ebd286a52ea
|
7f0b415a72ae834167c6e96fde9fa9067f17447f
|
refs/heads/master
| 2021-01-13T09:03:08.497657
| 2016-10-30T15:33:54
| 2016-10-30T15:33:54
| 72,357,838
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 488
|
cpp
|
Mur.cpp
|
#include "Mur.h"
Mur::Mur()
{
}
Mur::Mur(const float _x, const float _y, const float _largeur, const float _hauteur)
{
x = _x;
y = _y;
largeur = _largeur;
hauteur = _hauteur;
rectangleMur = IntRect(x, y, largeur, hauteur);
}
Mur::~Mur()
{
}
float Mur::GetX() const
{
return x;
}
float Mur::GetY() const
{
return y;
}
float Mur::GetLargeur() const
{
return largeur;
}
float Mur::GetHauteur() const
{
return hauteur;
}
IntRect Mur::GetRect()const
{
return rectangleMur;
}
|
18723e84aa3b4a9ed50dae4214ed53492aed9c14
|
d0c2553e7a2fa6639e814143260c8a51791c11cb
|
/FIT2096 Week 6 Solution/FIT2096 - Week 6 Solution/FIT2096 - Week 6/BulletManager.h
|
441e472e085e6b8851293ae391b2debae7f306d1
|
[] |
no_license
|
hpy9707/Assignment3
|
7337d00ceac57931f103bca51561f93a2f33f26c
|
86831bb213615db83f157dae8f5c25413e412bb3
|
refs/heads/master
| 2020-03-17T03:20:25.187444
| 2018-05-27T09:29:37
| 2018-05-27T09:29:37
| 133,230,843
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 790
|
h
|
BulletManager.h
|
#ifndef BULLETMANAGER_H
#define BULLETMANAGER_H
#include <vector>
#include "MeshManager.h"
#include "TextureManager.h"
#include "Bullet.h"
#include "MathsHelper.h"
class BulletManager {
private:
MeshManager* m_meshManager;
TextureManager* m_textureManager;
Shader* m_shader;
//int m_clipsCapacity;
//float m_reloadTime;
//float m_fireFrequency;
std::vector<Bullet*> m_allBullets;
public:
BulletManager(MeshManager* meshmanager, TextureManager* texturemanager, Shader* shader);
~BulletManager();
void CreateBullets(Vector3 position, Vector3 forward);
void CheckAndDelete();
void Update(float timestep);
void Render(Direct3D* renderer, Camera* cam);
float SetBulletDamage();
std::vector<Bullet*>* Getbullet() { return &m_allBullets; }
};
#endif // BULLETMANAGER_H
|
99547a479eba698d888a8f99817a66e21efc4542
|
f9285898735714b3e301c310f7b6d2c0a2c22798
|
/tests/ExternVarDeclTest.cpp
|
103f19e5c376f883f10abfa2de43d5eb8b4ba95a
|
[
"MIT"
] |
permissive
|
andreasfertig/cppinsights
|
dcb6c53e0c79770df383067e70b852fde7fb24f5
|
50b962d6bb6d96c567a5b0870c3c828405b40d14
|
refs/heads/main
| 2023-08-27T06:36:33.307787
| 2023-07-31T05:21:49
| 2023-07-31T05:21:49
| 131,510,015
| 2,465
| 156
|
MIT
| 2023-09-13T11:31:36
| 2018-04-29T16:21:08
|
C++
|
UTF-8
|
C++
| false
| false
| 66
|
cpp
|
ExternVarDeclTest.cpp
|
int main()
{
extern int err;
return err;
}
int err = 2;
|
dcaf858e9a978fa82c5b32864e46a118c3990a19
|
9da88ab805303c25bd9654ad45287a62a6c4710f
|
/Cpp/LeetCode/wc226_2.cpp
|
d28a7b9402441c762c0fc58b1fe6f41721666924
|
[] |
no_license
|
ms303956362/myexercise
|
7bb7be1ac0b8f40aeee8ca2df19255024c6d9bdc
|
4730c438354f0c7fc3bce54f8c1ade6e627586c9
|
refs/heads/master
| 2023-04-13T01:15:01.882780
| 2023-04-03T15:03:22
| 2023-04-03T15:03:22
| 232,984,051
| 2
| 0
| null | 2022-12-02T06:55:19
| 2020-01-10T06:47:00
|
C
|
UTF-8
|
C++
| false
| false
| 1,007
|
cpp
|
wc226_2.cpp
|
#include "usual.h"
class Solution {
public:
vector<int> restoreArray(vector<vector<int>>& adjacentPairs) {
unordered_map<int, vector<int>> edges;
for (const auto& e : adjacentPairs) {
edges[e[0]].push_back(e[1]);
edges[e[1]].push_back(e[0]);
}
vector<int> terminals;
for (const auto& [i, v] : edges) {
if (v.size() == 1)
terminals.push_back(i);
}
vector<int> ans{terminals[0]};
int last = terminals[0], now = edges[terminals[0]][0];
while (now != terminals[1]) {
ans.push_back(now);
int next1 = edges[now][0], next2 = edges[now][1];
if (next1 != last) {
last = now;
now = next1;
} else {
last = now;
now = next2;
}
}
ans.push_back(terminals[1]);
return ans;
}
};
int main(int argc, char const *argv[])
{
return 0;
}
|
a25a55a198349dc3f9637f66f8ea82de19ad4c97
|
fe28250f9b9a7eacde867976d43be0b86d64acfc
|
/9990/coolant/alphat
|
b32c8f72af2e48804af39eb8647d3dcec11f1be6
|
[] |
no_license
|
vitorvas/teste2
|
d179705e27fc070644a5e44d5b2fcef976504200
|
5f8c9ff21d48d6fb5ed7ef503a0601dac1bcf924
|
refs/heads/master
| 2021-01-09T20:17:09.115079
| 2016-07-21T20:07:21
| 2016-07-21T20:07:21
| 63,899,410
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,277,502
|
alphat
|
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.4.x |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "9990/coolant";
object alphat;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [1 -1 -1 0 0 0 0];
internalField nonuniform List<scalar>
109760
(
0.00166908
0.0011465
0.000893008
0.000753796
0.000672562
0.000627867
0.00061362
0.000631602
0.000686609
0.000781877
0.000917095
0.00108982
0.00129627
0.00153059
0.00178527
0.00205254
0.00232557
0.00259897
0.00286873
0.00313201
0.00338693
0.00363242
0.00386798
0.00409359
0.00430946
0.00451591
0.00471317
0.00490135
0.00508066
0.00525179
0.00541628
0.00557628
0.00573343
0.00588674
0.00603252
0.00167389
0.0011589
0.000950125
0.000918914
0.00102159
0.00121318
0.0014501
0.00170716
0.0019698
0.00222802
0.00247518
0.00270796
0.00292504
0.0031263
0.00331225
0.0034838
0.00364206
0.00378818
0.00392328
0.00404844
0.00416465
0.00427283
0.00437386
0.00446861
0.00455784
0.00464208
0.00472147
0.00479586
0.00486528
0.00493066
0.00499428
0.00505894
0.00512618
0.00519275
0.00525477
0.00110524
0.0007382
0.000686753
0.000692482
0.000710173
0.000731501
0.000752979
0.000773031
0.000790992
0.000806743
0.000820253
0.000831457
0.000840308
0.000846789
0.000850964
0.00085298
0.000853054
0.000851458
0.00084849
0.000844444
0.000839596
0.000834185
0.000828418
0.000822463
0.000816458
0.000810503
0.00080466
0.000798935
0.000793292
0.00078768
0.00078215
0.000776854
0.000772621
0.000769049
0.000771294
0.00162523
0.00114829
0.00106802
0.00114252
0.0012707
0.00141234
0.00155046
0.00167793
0.00179251
0.00189438
0.00198476
0.002065
0.0021365
0.00220058
0.00225834
0.00231075
0.00235862
0.00240266
0.00244345
0.0024815
0.0025172
0.00255093
0.00258302
0.00261383
0.00264361
0.00267242
0.00270001
0.002726
0.0027503
0.0027737
0.00279804
0.00282528
0.0028559
0.00288631
0.00291176
0.00102583
0.000661068
0.000607604
0.000612266
0.000629473
0.000649975
0.000670389
0.000689312
0.0007065
0.000722018
0.000736036
0.000748747
0.000760337
0.000770978
0.000780815
0.00078996
0.000798486
0.000806439
0.000813844
0.000820719
0.000827079
0.00083294
0.000838324
0.000843261
0.000847789
0.000851947
0.000855769
0.000859265
0.000862435
0.00086528
0.000867879
0.000870351
0.000873264
0.0008762
0.000882814
0.00167174
0.00115319
0.000934255
0.000883276
0.00095964
0.00112837
0.00135023
0.00159899
0.00185851
0.00211736
0.00236787
0.00260557
0.00282832
0.00303554
0.00322754
0.00340515
0.00356942
0.00372153
0.00386261
0.00399375
0.00411595
0.00423017
0.00433732
0.00443826
0.00453375
0.00462428
0.00470995
0.00479069
0.00486673
0.00493933
0.00501099
0.00508442
0.00516043
0.00523479
0.00530041
0.00166884
0.00114407
0.000889674
0.000748591
0.000662281
0.000605292
0.000565372
0.000536073
0.000513745
0.0004962
0.00048206
0.000470431
0.000460714
0.000452511
0.00044557
0.000439761
0.000435074
0.000431622
0.000429665
0.000429633
0.000432157
0.000438085
0.000448492
0.000464671
0.000488123
0.000520566
0.000564004
0.000620826
0.000693862
0.000786284
0.000901319
0.00104189
0.00121017
0.00140723
0.00162983
0.00167517
0.001169
0.000996234
0.001021
0.00116681
0.00137002
0.00159602
0.0018276
0.00205436
0.00227006
0.00247146
0.00265761
0.00282872
0.00298561
0.00312935
0.00326109
0.00338194
0.00349294
0.00359499
0.00368887
0.0037753
0.00385489
0.00392825
0.00399595
0.00405853
0.00411651
0.00417024
0.00421997
0.00426588
0.00430843
0.00434858
0.00438789
0.00442841
0.00447035
0.00451721
0.0016689
0.00114554
0.000891288
0.000750242
0.000663892
0.000606891
0.0005671
0.00053825
0.00051702
0.000501797
0.000492153
0.000488647
0.000492744
0.000506702
0.000533301
0.000575467
0.000636023
0.00071777
0.000823553
0.000955795
0.00111563
0.00130225
0.00151288
0.00174326
0.00198834
0.00224306
0.00250289
0.00276417
0.00302419
0.00328113
0.003534
0.00378258
0.00402716
0.00426795
0.00450283
0.00156877
0.00110884
0.00104682
0.00111857
0.00122602
0.00133787
0.00144304
0.00153757
0.00162007
0.00169042
0.00174843
0.00179424
0.00182818
0.00185092
0.00186358
0.00186756
0.00186441
0.00185567
0.00184275
0.00182686
0.00180901
0.00179
0.00177041
0.00175072
0.00173132
0.00171255
0.00169467
0.00167776
0.00166151
0.00164509
0.00162735
0.00160727
0.00158581
0.00156529
0.00155649
0.00160331
0.00114268
0.0010813
0.00115694
0.00127148
0.00139133
0.00150367
0.0016042
0.0016918
0.00176659
0.00182857
0.00187778
0.00191451
0.00193943
0.00195362
0.00195851
0.00195573
0.00194692
0.00193361
0.00191713
0.00189857
0.00187879
0.00185845
0.00183808
0.00181807
0.00179861
0.00177965
0.00176089
0.00174191
0.00172269
0.00170426
0.00168913
0.00168146
0.00168266
0.00169582
0.00151283
0.00107193
0.00103197
0.00111013
0.00121052
0.00130826
0.00139633
0.00147291
0.00153901
0.00159537
0.00164229
0.00167986
0.00170825
0.00172789
0.00173952
0.00174414
0.00174286
0.00173684
0.0017272
0.00171493
0.00170084
0.00168562
0.00166977
0.0016537
0.00163775
0.0016222
0.00160728
0.0015931
0.00157953
0.00156606
0.00155199
0.0015365
0.00152015
0.0015035
0.00149603
0.00153841
0.00108524
0.00103417
0.0011079
0.00121051
0.00131391
0.00140809
0.00149047
0.00156189
0.00162304
0.00167416
0.00171539
0.00174692
0.00176918
0.00178289
0.00178903
0.00178877
0.00178336
0.001774
0.00176177
0.00174756
0.00173214
0.00171606
0.00169981
0.00168371
0.00166801
0.00165275
0.00163782
0.00162294
0.00160793
0.00159314
0.00157973
0.00157047
0.00156637
0.001574
0.000833454
0.000579787
0.000515907
0.000496791
0.000492841
0.000495012
0.000499633
0.000505035
0.000510577
0.000516038
0.000521315
0.000526371
0.000531208
0.000535843
0.000540299
0.000544593
0.00054873
0.000552708
0.000556517
0.000560146
0.000563585
0.000566824
0.00056986
0.000572696
0.00057534
0.000577802
0.000580088
0.000582197
0.000584128
0.000585883
0.000587511
0.000589089
0.000590881
0.000592711
0.000595998
0.00167277
0.00116209
0.000965369
0.00095261
0.00106895
0.00126174
0.00149126
0.0017353
0.00197986
0.00221588
0.0024381
0.00264399
0.00283264
0.00300393
0.00315816
0.00329579
0.00341745
0.00352402
0.00361654
0.00369626
0.00376455
0.00382284
0.00387259
0.00391518
0.00395191
0.00398395
0.00401227
0.00403759
0.0040604
0.00408101
0.00409983
0.00411764
0.00413646
0.00415775
0.00418869
0.00167375
0.00117364
0.00102272
0.00106927
0.00122041
0.00141673
0.00163003
0.00184479
0.00205156
0.00224535
0.00242409
0.00258747
0.00273609
0.00287094
0.00299316
0.00310378
0.00320371
0.00329377
0.0033747
0.00344721
0.00351201
0.0035698
0.00362128
0.0036672
0.00370827
0.00374519
0.00377858
0.00380887
0.00383641
0.00386147
0.00388456
0.00390654
0.00392927
0.00395349
0.00398606
0.00166963
0.00119789
0.00111888
0.00122154
0.00138946
0.00157364
0.0017546
0.00192401
0.00207885
0.00221838
0.00234353
0.00245558
0.00255596
0.00264617
0.00272754
0.00280134
0.00286864
0.00293031
0.00298707
0.00303949
0.00308804
0.00313311
0.00317504
0.00321415
0.00325073
0.003285
0.00331705
0.00334687
0.00337446
0.0034001
0.00342463
0.00344939
0.00347605
0.00350428
0.00353713
0.00158179
0.00111086
0.00103293
0.00109414
0.00119811
0.0013105
0.0014189
0.00151821
0.00160689
0.00168515
0.00175387
0.00181409
0.00186682
0.00191291
0.00195301
0.00198761
0.00201717
0.0020421
0.00206283
0.00207981
0.00209351
0.00210441
0.00211297
0.00211964
0.00212481
0.00212886
0.00213207
0.00213461
0.00213651
0.00213777
0.00213846
0.00213892
0.00214067
0.00214392
0.00215759
0.000621077
0.000410682
0.00036056
0.000346193
0.000343604
0.000345385
0.00034877
0.000352708
0.00035677
0.000360766
0.000364608
0.000368262
0.000371728
0.000375023
0.000378162
0.000381155
0.000384007
0.000386716
0.000389279
0.000391688
0.00039394
0.000396032
0.000397967
0.000399754
0.000401409
0.000402942
0.000404359
0.000405649
0.000406806
0.00040784
0.000408816
0.000409824
0.000411037
0.000412234
0.000414279
0.00167245
0.00115825
0.000961871
0.000951075
0.00106793
0.0012586
0.00148523
0.00172754
0.00197249
0.0022111
0.00243788
0.00265003
0.00284665
0.00302792
0.00319468
0.00334802
0.0034892
0.00361943
0.00373989
0.00385164
0.00395564
0.00405278
0.00414392
0.00422987
0.00431132
0.00438866
0.0044619
0.00453085
0.00459566
0.00465762
0.00471933
0.00478359
0.00485106
0.00491699
0.00497393
0.00110241
0.000719543
0.000664278
0.000672863
0.000694026
0.000717425
0.00073994
0.000760294
0.000778582
0.000795009
0.000809844
0.000823319
0.000835638
0.000846995
0.000857567
0.000867501
0.000876905
0.000885855
0.000894399
0.000902564
0.000910365
0.000917808
0.0009249
0.000931652
0.000938076
0.000944181
0.000949963
0.000955391
0.000960442
0.000965129
0.000969595
0.000974063
0.000979136
0.000984323
0.00099289
0.00167312
0.0011753
0.00101592
0.00105851
0.00121892
0.00143075
0.00166099
0.00189205
0.00211202
0.0023127
0.00248791
0.00263456
0.00275228
0.00284223
0.00290684
0.00294935
0.00297335
0.00298245
0.00297992
0.00296864
0.00295094
0.00292871
0.00290343
0.00287633
0.00284843
0.00282064
0.00279365
0.00276768
0.00274217
0.00271558
0.0026858
0.00265145
0.00261447
0.00258176
0.00256773
0.0016734
0.00117595
0.00101764
0.00106279
0.00122643
0.00144063
0.00167201
0.0019034
0.0021233
0.00232376
0.00249887
0.00264549
0.00276323
0.00285323
0.0029179
0.00296046
0.0029845
0.00299358
0.002991
0.0029796
0.00296176
0.00293941
0.00291413
0.00288717
0.00285947
0.00283155
0.00280343
0.00277476
0.00274517
0.00271531
0.00268789
0.00266815
0.00266251
0.00267237
0.00268997
0.00140059
0.000963562
0.000923194
0.000982716
0.00105999
0.00113652
0.00120671
0.00126865
0.00132192
0.00136626
0.00140194
0.00142919
0.00144816
0.00145926
0.0014632
0.00146097
0.00145368
0.0014424
0.00142817
0.00141195
0.0013945
0.00137638
0.00135805
0.00133988
0.00132215
0.00130491
0.001288
0.00127104
0.0012537
0.0012363
0.00122044
0.00120917
0.00120633
0.00121176
0.00122341
0.00133374
0.000894687
0.000848051
0.000895049
0.000959285
0.00102413
0.00108421
0.00113747
0.00118329
0.00122143
0.00125207
0.00127534
0.00129135
0.00130044
0.00130325
0.00130064
0.00129359
0.00128304
0.00126997
0.00125517
0.00123927
0.00122275
0.00120598
0.00118928
0.00117292
0.0011572
0.00114233
0.00112827
0.00111463
0.00110051
0.00108476
0.00106662
0.00104745
0.00103034
0.00102455
0.00166901
0.00114637
0.000892572
0.000752305
0.000668208
0.00061703
0.000590013
0.000585975
0.000608171
0.000661622
0.000750349
0.000876114
0.00103894
0.00123702
0.00146572
0.00171785
0.00198521
0.00226025
0.00253693
0.00281085
0.00307902
0.00333953
0.00359128
0.00383374
0.00406678
0.00429046
0.00450488
0.0047101
0.00490628
0.00509395
0.00527442
0.00544958
0.00562105
0.00578834
0.00594823
0.000893048
0.000609261
0.000553991
0.000542697
0.000544173
0.000550923
0.000559599
0.000568575
0.000576952
0.000584381
0.000590584
0.000595316
0.000598378
0.000599687
0.000599292
0.000597348
0.000594076
0.000589731
0.000584563
0.000578803
0.000572654
0.000566278
0.000559806
0.000553348
0.000547
0.000540844
0.000534935
0.000529268
0.000523757
0.000518208
0.000512399
0.000506215
0.000500063
0.00049457
0.000492063
0.00167283
0.00116289
0.000968648
0.000958345
0.00107491
0.0012668
0.00149639
0.00174122
0.00198633
0.00222214
0.00244331
0.00264735
0.00283325
0.00300083
0.00315025
0.00328201
0.00339686
0.00349589
0.0035804
0.00365191
0.00371201
0.00376233
0.00380446
0.00383988
0.00386992
0.00389575
0.00391832
0.00393832
0.00395617
0.0039721
0.00398651
0.00400019
0.00401534
0.00403369
0.00406212
0.0010345
0.000814923
0.000697114
0.000651515
0.000631413
0.000621099
0.000615566
0.000612631
0.00061121
0.000610689
0.000610696
0.000610982
0.000611354
0.000611657
0.000611778
0.00061164
0.0006112
0.000610446
0.000609388
0.000608058
0.000606494
0.000604742
0.000602846
0.000600848
0.000598787
0.000596697
0.000594603
0.000592529
0.000590485
0.00058848
0.000586508
0.000584596
0.000582687
0.000581142
0.000578862
0.00084057
0.00064245
0.000544565
0.000506709
0.000490009
0.000481597
0.000477102
0.000474812
0.000473828
0.000473639
0.000473967
0.000474655
0.000475606
0.000476756
0.000478062
0.000479491
0.000481019
0.000482624
0.000484291
0.000486004
0.000487752
0.000489526
0.000491319
0.000493126
0.000494938
0.000496746
0.000498536
0.0005003
0.000502044
0.000503794
0.00050558
0.000507413
0.000509244
0.000510867
0.000512637
0.0014711
0.00102816
0.000977031
0.00103048
0.00110432
0.00117771
0.00124492
0.00130434
0.00135574
0.00139976
0.00143701
0.00146794
0.00149284
0.00151201
0.0015258
0.00153467
0.00153919
0.00154001
0.00153782
0.00153327
0.00152696
0.0015194
0.00151103
0.00150221
0.00149321
0.00148424
0.00147544
0.00146684
0.00145837
0.00144989
0.00144142
0.00143319
0.00142662
0.00142143
0.00142657
0.00167353
0.00116377
0.000980924
0.000990273
0.00112301
0.00132014
0.00154668
0.00178411
0.0020202
0.00224698
0.00246005
0.00265756
0.00283946
0.00300646
0.00315958
0.00330008
0.00342924
0.00354827
0.0036582
0.00375993
0.00385424
0.00394183
0.0040233
0.00409926
0.00417023
0.00423662
0.00429869
0.00435654
0.00441034
0.00446067
0.00450887
0.00455682
0.00460633
0.00465687
0.0047085
0.00148738
0.00104334
0.000998856
0.00106647
0.00115758
0.00124936
0.00133435
0.00140986
0.00147513
0.00152965
0.00157376
0.00160766
0.00163161
0.00164614
0.00165218
0.00165092
0.00164371
0.00163187
0.00161663
0.00159905
0.00158001
0.00156015
0.00153998
0.00151999
0.00150048
0.00148152
0.00146291
0.00144419
0.00142498
0.00140565
0.00138814
0.00137608
0.00137399
0.00138191
0.00139637
0.00146305
0.00101455
0.000965988
0.00102816
0.00111358
0.00119999
0.00128006
0.00135115
0.00141249
0.00146369
0.00150505
0.00153674
0.001559
0.00157235
0.00157766
0.00157606
0.00156884
0.00155724
0.00154247
0.00152551
0.00150717
0.00148802
0.00146849
0.00144902
0.00142999
0.00141174
0.00139451
0.00137828
0.00136252
0.00134609
0.00132748
0.00130578
0.00128261
0.00126224
0.00125573
0.0016689
0.00114589
0.0008917
0.000750675
0.000664331
0.000607314
0.000567465
0.00053846
0.000516873
0.000500898
0.000489783
0.000483585
0.000483073
0.000489683
0.000505418
0.000532688
0.000574103
0.000632374
0.000710326
0.000810774
0.00093603
0.0010872
0.00126376
0.00146351
0.00168302
0.00191816
0.00216474
0.00241897
0.00267775
0.00293884
0.00320077
0.00346288
0.00372499
0.00398694
0.0042465
0.00145276
0.00103109
0.00099028
0.00104847
0.00112359
0.0011963
0.00126097
0.00131725
0.00136543
0.00140646
0.00144116
0.00147002
0.00149329
0.0015112
0.00152406
0.0015323
0.00153644
0.00153705
0.00153477
0.00153019
0.00152387
0.00151632
0.00150793
0.00149905
0.00148995
0.00148086
0.00147196
0.00146337
0.00145514
0.00144718
0.0014393
0.00143111
0.00142296
0.00141363
0.00141058
0.00160886
0.00113782
0.00106266
0.00113324
0.00124874
0.00137259
0.00149137
0.00160011
0.0016974
0.00178364
0.00185985
0.00192727
0.00198706
0.00204022
0.00208762
0.00212989
0.00216754
0.00220098
0.00223056
0.00225661
0.00227945
0.00229943
0.00231685
0.00233206
0.00234538
0.00235714
0.0023676
0.00237695
0.00238527
0.0023926
0.00239911
0.00240517
0.00241201
0.00241984
0.00243529
0.00103234
0.000666257
0.000613269
0.000623311
0.000647848
0.000675302
0.000701941
0.000726405
0.000748369
0.000767918
0.000785384
0.000801078
0.00081526
0.000828213
0.00084019
0.0008514
0.000862012
0.00087215
0.000881909
0.000891355
0.000900532
0.000909468
0.00091819
0.000926719
0.000935061
0.000943187
0.000951021
0.000958467
0.000965496
0.000972253
0.000979128
0.000986591
0.000995043
0.00100381
0.00101276
0.000919869
0.000721889
0.000616429
0.000575549
0.00055726
0.000547724
0.000542585
0.00053988
0.000538569
0.000538071
0.000538024
0.000538175
0.000538335
0.00053836
0.000538152
0.000537651
0.000536834
0.000535708
0.000534297
0.000532641
0.000530785
0.000528776
0.000526658
0.00052447
0.000522248
0.00052002
0.000517811
0.000515635
0.000513501
0.000511408
0.000509349
0.000507351
0.000505366
0.000503786
0.000501537
0.000988549
0.000773219
0.000657517
0.000613445
0.000594033
0.000584049
0.000578779
0.000576098
0.00057489
0.000574541
0.000574667
0.000574992
0.000575308
0.00057546
0.000575337
0.000574877
0.000574055
0.000572882
0.000571389
0.000569623
0.000567638
0.000565488
0.000563221
0.000560883
0.000558512
0.000556135
0.000553774
0.000551442
0.000549149
0.00054691
0.000544745
0.000542724
0.000540815
0.000539402
0.000537196
0.00160151
0.00115473
0.00110798
0.00119066
0.00130745
0.00142664
0.00153821
0.00163921
0.00172925
0.00180899
0.00187938
0.00194154
0.0019967
0.00204595
0.00209015
0.00212998
0.00216603
0.00219873
0.00222844
0.00225546
0.00228003
0.00230239
0.00232276
0.0023414
0.00235855
0.00237443
0.00238916
0.00240266
0.00241485
0.0024258
0.00243614
0.00244685
0.00245946
0.00247271
0.00249292
0.00167094
0.00115055
0.000918651
0.000839204
0.000875488
0.00100955
0.00121286
0.00145692
0.00172157
0.0019922
0.00225842
0.00251381
0.00275511
0.00298108
0.00319165
0.00338743
0.00356936
0.00373849
0.0038959
0.00404259
0.00417954
0.00430762
0.00442771
0.00454059
0.00464698
0.00474738
0.00484204
0.00493106
0.00501476
0.00509417
0.00517132
0.00524854
0.00532709
0.00540444
0.00547709
0.00167227
0.00115833
0.000962911
0.000954351
0.00107384
0.00126567
0.00149139
0.00173101
0.0019719
0.00220546
0.00242667
0.00263306
0.00282397
0.00299979
0.0031614
0.00331004
0.00344696
0.00357339
0.00369044
0.00379906
0.00390012
0.00399438
0.00408253
0.00416522
0.00424299
0.00431622
0.00438505
0.00444951
0.00450981
0.00456683
0.00462231
0.00467836
0.00473627
0.00479406
0.00484911
0.00164735
0.00116401
0.001075
0.00115841
0.00130483
0.00146878
0.00163051
0.00178139
0.00191835
0.00204105
0.00215036
0.00224759
0.00233424
0.00241178
0.00248156
0.0025448
0.00260249
0.0026555
0.00270452
0.00275013
0.00279279
0.00283289
0.00287078
0.00290675
0.00294101
0.00297365
0.00300458
0.00303364
0.00306085
0.00308676
0.00311267
0.00314014
0.00317005
0.00320068
0.00322967
0.00167145
0.00115484
0.000927176
0.000855485
0.000903031
0.00104712
0.00125542
0.00150022
0.00176305
0.00203033
0.00229222
0.00254246
0.00277768
0.0029963
0.00319773
0.00338193
0.0035491
0.00369969
0.00383442
0.00395427
0.00406039
0.00415416
0.00423699
0.00431035
0.00437564
0.00443419
0.00448712
0.00453538
0.00457964
0.00462042
0.00465834
0.00469429
0.00473029
0.00476758
0.00481399
0.00165963
0.00118691
0.00109935
0.00119221
0.00135431
0.001538
0.0017217
0.00189422
0.00204999
0.00218586
0.00229972
0.00239141
0.00246146
0.00251119
0.0025427
0.00255862
0.0025618
0.00255503
0.00254083
0.00252134
0.00249823
0.00247284
0.00244616
0.002419
0.00239203
0.00236584
0.00234094
0.00231739
0.00229465
0.00227126
0.00224522
0.00221503
0.00218222
0.00215233
0.00213902
0.00165939
0.00118938
0.00110611
0.0011981
0.00135673
0.00153734
0.00171869
0.00188932
0.0020434
0.00217798
0.00229106
0.00238222
0.00245189
0.00250135
0.00253267
0.00254843
0.00255147
0.00254456
0.00253021
0.00251056
0.00248736
0.00246194
0.00243533
0.00240842
0.0023818
0.00235571
0.00232999
0.00230413
0.00227764
0.00225101
0.00222669
0.0022095
0.00220551
0.0022157
0.00223447
0.00166896
0.00114644
0.000892381
0.000751423
0.000665253
0.000608929
0.000570961
0.000546234
0.000533383
0.000533827
0.000551225
0.000590644
0.000657162
0.000754579
0.00088519
0.00104997
0.00124798
0.00147559
0.00172677
0.00199425
0.00227083
0.00255036
0.00282814
0.00310096
0.0033669
0.00362485
0.00387426
0.00411491
0.00434676
0.00457
0.00478529
0.00499377
0.00519684
0.00539515
0.00558777
0.00166975
0.0011476
0.000899746
0.000779063
0.000740189
0.000774129
0.000878509
0.00104263
0.00125135
0.00149163
0.00175194
0.00202183
0.00229285
0.0025589
0.00281601
0.0030618
0.00329508
0.00351551
0.00372316
0.00391857
0.0041024
0.00427537
0.00443827
0.0045919
0.00473701
0.0048742
0.00500387
0.00512621
0.00524161
0.00535109
0.00545657
0.00556042
0.00566418
0.00576599
0.0058627
0.00167618
0.0011858
0.00104959
0.00112565
0.00131658
0.00154973
0.00179077
0.00202407
0.00224199
0.00244097
0.00261969
0.00277783
0.00291555
0.00303339
0.0031322
0.00321321
0.00327797
0.00332833
0.00336632
0.00339398
0.00341326
0.00342596
0.00343363
0.00343759
0.00343892
0.00343853
0.00343713
0.00343527
0.00343334
0.00343145
0.00342954
0.00342724
0.00342488
0.00342128
0.00342491
0.00166304
0.00119596
0.00111687
0.00121127
0.0013704
0.00154661
0.0017185
0.00187615
0.00201625
0.0021387
0.00224414
0.00233335
0.00240706
0.00246599
0.00251115
0.00254378
0.00256541
0.00257774
0.00258254
0.00258144
0.00257593
0.00256727
0.0025565
0.00254446
0.0025318
0.002519
0.00250637
0.00249401
0.00248181
0.00246955
0.00245723
0.00244539
0.00243613
0.00243074
0.00243713
0.00132025
0.000874283
0.000808884
0.000837201
0.000886158
0.000938552
0.000988767
0.00103465
0.00107554
0.00111151
0.00114302
0.00117055
0.00119456
0.00121542
0.00123343
0.00124878
0.00126167
0.00127227
0.00128079
0.00128746
0.0012925
0.00129617
0.0012987
0.00130031
0.00130122
0.00130162
0.00130164
0.00130135
0.00130075
0.00129979
0.00129855
0.00129724
0.00129702
0.00129764
0.00130663
0.00167397
0.001189
0.00108151
0.00117307
0.00135001
0.00155422
0.001762
0.0019621
0.00214898
0.00232032
0.00247554
0.00261575
0.00274226
0.00285643
0.00295947
0.00305253
0.00313661
0.00321257
0.00328114
0.00334303
0.00339885
0.0034492
0.00349467
0.00353585
0.00357336
0.00360771
0.00363926
0.00366812
0.0036943
0.00371806
0.00374032
0.00376265
0.00378695
0.00381272
0.00384218
0.00166913
0.00114759
0.000894153
0.00075554
0.000675893
0.000634512
0.000626106
0.000652713
0.000718316
0.000824959
0.000972216
0.00115835
0.00137968
0.00162954
0.00189896
0.0021786
0.00246042
0.00273847
0.00300888
0.00326936
0.00351871
0.00375637
0.00398226
0.00419654
0.0043996
0.00459194
0.00477411
0.00494655
0.00510983
0.00526472
0.00541242
0.00555467
0.00569338
0.00582932
0.00596233
0.00166972
0.0011495
0.000900595
0.000775272
0.000726292
0.00074329
0.000825973
0.000968908
0.00116064
0.00138951
0.00164445
0.00191437
0.0021894
0.00246185
0.00272623
0.00297897
0.0032178
0.00344138
0.00364915
0.00384099
0.00401738
0.0041792
0.00432752
0.00446354
0.00458862
0.00470404
0.00481101
0.00491056
0.00500351
0.00509063
0.00517284
0.00525139
0.0053283
0.005405
0.00548599
0.00165828
0.0011984
0.00113065
0.00122993
0.00138698
0.00155515
0.00171528
0.00186024
0.00198819
0.00209947
0.00219493
0.00227538
0.0023415
0.00239409
0.00243413
0.00246283
0.00248161
0.00249199
0.00249552
0.00249369
0.00248784
0.00247909
0.0024684
0.0024565
0.00244399
0.00243134
0.00241893
0.00240703
0.00239573
0.0023849
0.00237419
0.00236296
0.00235134
0.00233836
0.00233193
0.00162534
0.00115505
0.00108606
0.00117284
0.00130883
0.00145282
0.0015895
0.00171371
0.00182454
0.00192261
0.00200928
0.00208572
0.00215357
0.00221418
0.00226869
0.00231811
0.00236327
0.00240482
0.00244331
0.00247917
0.00251271
0.00254421
0.00257389
0.00260197
0.00262859
0.00265386
0.00267773
0.00270008
0.00272085
0.00274032
0.00275932
0.00277913
0.00280105
0.00282447
0.00284995
0.00161709
0.00116016
0.00109787
0.00117584
0.00129384
0.00141691
0.00153183
0.00163472
0.00172456
0.00180222
0.00186869
0.00192482
0.0019712
0.00200841
0.00203706
0.0020579
0.00207178
0.00207971
0.00208272
0.00208183
0.00207794
0.00207188
0.00206432
0.00205583
0.00204685
0.00203773
0.00202868
0.0020198
0.00201099
0.00200211
0.00199314
0.00198436
0.00197755
0.00197293
0.00198047
0.00141208
0.000935316
0.000860904
0.000901011
0.000968313
0.00103801
0.00110307
0.00116145
0.00121295
0.00125821
0.00129807
0.00133337
0.00136485
0.00139317
0.00141887
0.00144246
0.00146431
0.00148476
0.00150405
0.00152239
0.00153994
0.00155684
0.00157322
0.00158923
0.00160495
0.00162033
0.00163516
0.00164922
0.00166252
0.00167563
0.00168971
0.00170586
0.00172403
0.00174184
0.00175494
0.00166925
0.00115112
0.000898031
0.000757487
0.000671903
0.000617154
0.000582826
0.000565332
0.000565265
0.000586022
0.000632464
0.000709383
0.000820607
0.000969024
0.00115612
0.0013805
0.00163701
0.00191732
0.0022116
0.00251021
0.00280499
0.0030898
0.00336063
0.00361524
0.00385282
0.00407354
0.00427823
0.00446808
0.00464439
0.00480845
0.00496151
0.00510482
0.00524013
0.00536884
0.00549555
0.00167382
0.00116299
0.000981673
0.000998136
0.0011426
0.00134961
0.0015813
0.0018202
0.00205578
0.00228128
0.00249295
0.00268923
0.00286995
0.00303574
0.00318768
0.00332696
0.00345487
0.00357264
0.0036814
0.00378217
0.00387589
0.00396338
0.00404546
0.00412291
0.00419637
0.0042662
0.00433231
0.00439444
0.00445268
0.00450833
0.00456402
0.00462253
0.00468441
0.00474464
0.00479687
0.000952107
0.000733326
0.000622305
0.000580882
0.000562599
0.00055322
0.00054831
0.000545891
0.000544924
0.000544805
0.00054519
0.000545857
0.000546646
0.000547429
0.000548108
0.000548607
0.000548877
0.000548895
0.000548658
0.000548179
0.000547485
0.000546606
0.000545578
0.000544434
0.000543207
0.000541923
0.000540604
0.000539267
0.000537925
0.000536592
0.000535285
0.000534062
0.000532904
0.000532113
0.000530668
0.00167069
0.00114996
0.000914495
0.000826202
0.000847685
0.000964315
0.00115179
0.00138294
0.00163834
0.00190402
0.00216959
0.00242796
0.00267491
0.00290828
0.00312728
0.00333206
0.0035232
0.00370152
0.00386789
0.0040232
0.00416829
0.00430397
0.00443106
0.0045503
0.00466241
0.00476792
0.00486716
0.0049603
0.00504767
0.00513015
0.00520955
0.00528811
0.0053675
0.00544617
0.00552247
0.00166892
0.00114613
0.000892142
0.000751205
0.000664888
0.000607859
0.000567932
0.000538715
0.000516647
0.000499686
0.000486697
0.000477154
0.000471007
0.000468632
0.000470819
0.000478771
0.000494087
0.00051873
0.000555024
0.00060571
0.00067403
0.000763663
0.000878363
0.00102137
0.00119481
0.0013993
0.00163372
0.00189533
0.00218004
0.00248291
0.00279871
0.00312248
0.00344995
0.00377754
0.00410032
0.00163323
0.00115404
0.00107278
0.00115305
0.00128924
0.00143888
0.00158449
0.00171906
0.00184039
0.00194862
0.00204483
0.00213043
0.00220684
0.00227534
0.0023371
0.00239314
0.00244434
0.00249144
0.00253508
0.00257578
0.00261399
0.00265008
0.00268442
0.00271735
0.00274914
0.00277981
0.00280914
0.00283677
0.00286275
0.00288797
0.00291436
0.00294386
0.00297663
0.00300888
0.00303414
0.00167216
0.00115502
0.000935645
0.000881923
0.000952654
0.00111407
0.00132901
0.00157225
0.00182767
0.00208378
0.00233258
0.00256924
0.00279156
0.00299891
0.00319145
0.00336988
0.00353512
0.00368814
0.00382986
0.00396113
0.00408273
0.0041954
0.00429983
0.00439673
0.00448677
0.00457056
0.00464856
0.00472108
0.00478842
0.0048512
0.00491066
0.00496864
0.00502728
0.00508675
0.00514886
0.000899348
0.00064097
0.000578386
0.000559797
0.000555861
0.000558361
0.000563504
0.000569644
0.000575883
0.000581801
0.00058717
0.000591813
0.000595599
0.00059843
0.000600262
0.000601102
0.000601006
0.000600071
0.000598419
0.00059618
0.000593487
0.000590461
0.000587207
0.000583819
0.000580374
0.00057693
0.000573526
0.000570171
0.000566857
0.000563564
0.000560324
0.000557227
0.000554661
0.000552526
0.000552841
0.000945481
0.000734834
0.00062375
0.000579206
0.000559405
0.000549397
0.000544013
0.000541222
0.000539978
0.000539685
0.000540011
0.000540757
0.000541806
0.000543083
0.000544539
0.000546138
0.000547852
0.000549659
0.000551539
0.000553476
0.000555457
0.00055747
0.000559506
0.000561557
0.000563611
0.000565655
0.000567678
0.000569672
0.000571647
0.000573631
0.000575651
0.000577706
0.000579734
0.000581521
0.000583418
0.00167144
0.00115179
0.0009182
0.000833424
0.000861216
0.000986376
0.0011825
0.00142176
0.00168501
0.00195832
0.00223119
0.00249643
0.00274973
0.00298885
0.0032129
0.00342185
0.00361614
0.00379658
0.00396415
0.00411984
0.00426464
0.00439948
0.00452529
0.00464299
0.00475344
0.00485731
0.00495495
0.00504641
0.0051318
0.00521194
0.00528888
0.00536533
0.00544327
0.0055206
0.00559464
0.00166997
0.00115494
0.00090376
0.000769465
0.000700449
0.000682452
0.000717166
0.000809229
0.000956629
0.00115047
0.00137928
0.00163042
0.00189093
0.00214918
0.00239602
0.00262499
0.00283211
0.00301547
0.0031748
0.00331107
0.00342605
0.00352199
0.00360136
0.00366662
0.00372015
0.00376407
0.00380027
0.00383023
0.00385509
0.00387565
0.0038927
0.0039074
0.00392215
0.00393952
0.00396567
0.00166905
0.00114841
0.00089479
0.000754078
0.000668296
0.000612909
0.000576988
0.000556184
0.000550062
0.000560859
0.000592468
0.000649181
0.000734624
0.000851521
0.00100154
0.00118427
0.00139621
0.00163116
0.00188134
0.00213992
0.00240164
0.00266262
0.00292049
0.00317393
0.00342218
0.00366472
0.00390121
0.00413131
0.00435477
0.00457135
0.00478105
0.00498418
0.00518157
0.00537399
0.00556261
0.00155619
0.00106838
0.000985295
0.00104748
0.00115319
0.00126533
0.00137125
0.001467
0.00155199
0.00162692
0.00169291
0.00175109
0.00180259
0.00184849
0.00188981
0.00192734
0.00196174
0.00199356
0.00202324
0.00205113
0.00207747
0.0021025
0.00212639
0.00214933
0.00217141
0.00219264
0.0022129
0.002232
0.00224993
0.00226712
0.00228461
0.00230357
0.00232465
0.00234634
0.00236669
0.0016086
0.00114873
0.00108972
0.00117006
0.00128746
0.00140674
0.00151693
0.00161493
0.00170143
0.00177747
0.00184454
0.00190399
0.00195694
0.00200437
0.00204716
0.00208602
0.00212153
0.00215414
0.00218419
0.00221197
0.00223769
0.00226154
0.00228368
0.00230427
0.00232345
0.00234137
0.00235809
0.00237363
0.00238796
0.00240116
0.00241358
0.00242588
0.00243947
0.00245389
0.00247626
0.00166918
0.00114768
0.000894539
0.000756321
0.000677727
0.000639023
0.000636579
0.000674727
0.000759308
0.000892356
0.00107106
0.00128973
0.00154016
0.00181209
0.00209516
0.00238071
0.00266243
0.00293619
0.00319953
0.00345107
0.0036902
0.00391676
0.00413095
0.00433322
0.00452424
0.00470477
0.00487554
0.0050371
0.00518996
0.00533484
0.00547307
0.00560666
0.00573774
0.00586662
0.00599323
0.00144197
0.00098959
0.000935079
0.000986341
0.00106003
0.00113388
0.0012019
0.00126273
0.0013165
0.0013639
0.00140568
0.00144257
0.00147533
0.00150469
0.0015312
0.00155532
0.00157737
0.00159763
0.00161631
0.00163354
0.00164944
0.00166414
0.00167773
0.00169035
0.00170214
0.00171321
0.00172357
0.00173312
0.00174176
0.00174953
0.00175696
0.00176481
0.00177428
0.00178414
0.00179939
0.00166888
0.00114506
0.000890863
0.000749855
0.000663544
0.000606532
0.000566592
0.000537288
0.000514987
0.000497532
0.000483602
0.000472393
0.000463452
0.000456601
0.000451911
0.000449698
0.000450542
0.000455305
0.000465131
0.000481434
0.000505884
0.000540416
0.000587304
0.000649254
0.000729395
0.000831071
0.000957464
0.00111117
0.00129379
0.00150572
0.00174595
0.00201221
0.00230107
0.0026083
0.00292631
0.00127096
0.000836525
0.00077956
0.000808645
0.000852892
0.000897917
0.00094007
0.000978117
0.00101185
0.00104166
0.00106807
0.00109158
0.00111263
0.00113161
0.0011488
0.00116445
0.00117871
0.0011917
0.0012035
0.00121417
0.00122379
0.00123243
0.00124017
0.00124709
0.0012533
0.00125888
0.00126392
0.00126847
0.00127253
0.00127611
0.00127929
0.00128226
0.00128579
0.00128958
0.00129873
0.00107438
0.0007007
0.00066334
0.000687691
0.000721096
0.000754485
0.000785171
0.000812442
0.000836158
0.000856467
0.000873321
0.000886636
0.000896312
0.000902375
0.000905029
0.000904626
0.00090159
0.000896403
0.000889567
0.000881523
0.000872651
0.000863262
0.000853602
0.000843872
0.000834241
0.000824852
0.000815816
0.000807165
0.000798817
0.000790508
0.000781906
0.000772677
0.000763342
0.000754067
0.000750163
0.00123243
0.000840664
0.000775892
0.000781335
0.000804279
0.000831779
0.000859386
0.00088516
0.000908536
0.000929542
0.000948418
0.000965463
0.000980984
0.000995259
0.00100852
0.00102096
0.00103274
0.00104396
0.00105474
0.00106514
0.0010752
0.00108498
0.00109453
0.00110392
0.0011132
0.00112232
0.00113115
0.00113947
0.00114723
0.00115471
0.00116263
0.00117173
0.00118219
0.00119252
0.00120103
0.000750194
0.000508166
0.000456834
0.000443934
0.000442878
0.000446466
0.000451804
0.00045755
0.000463114
0.000468218
0.000472608
0.000476072
0.000478447
0.000479642
0.000479662
0.000478585
0.000476543
0.000473699
0.000470224
0.000466281
0.000462015
0.000457549
0.000452981
0.000448395
0.000443863
0.000439442
0.000435176
0.00043107
0.000427079
0.000423095
0.000418998
0.000414717
0.000410499
0.000406666
0.000404687
0.00167608
0.00118579
0.00104785
0.00111128
0.00128167
0.00149614
0.00172297
0.001945
0.00215263
0.00234111
0.00250843
0.00265395
0.00277725
0.00287907
0.00296049
0.00302317
0.00306922
0.00310105
0.00312115
0.0031319
0.00313543
0.00313358
0.00312789
0.0031196
0.00310971
0.00309899
0.00308796
0.00307683
0.00306553
0.00305392
0.00304206
0.00303072
0.00302235
0.00301925
0.00302854
0.00167118
0.0011552
0.000922963
0.0008404
0.000872341
0.00100203
0.00120135
0.00144202
0.00170364
0.00197141
0.00223443
0.00248532
0.00271919
0.00293361
0.00312738
0.00330022
0.00345256
0.00358544
0.00370039
0.00379923
0.00388395
0.00395654
0.0040189
0.00407279
0.00411978
0.00416124
0.00419838
0.00423214
0.00426327
0.00429229
0.00431954
0.00434529
0.00437034
0.00439445
0.00442412
0.00166925
0.00115131
0.000898112
0.000757597
0.000672211
0.000617987
0.000584791
0.000569411
0.000572812
0.000598505
0.000650934
0.000734057
0.000850987
0.00100428
0.0011952
0.00142238
0.00168037
0.00196088
0.00225428
0.00255129
0.00284406
0.00312675
0.00339553
0.0036483
0.00388432
0.00410379
0.00430754
0.00449677
0.00467281
0.00483698
0.00499056
0.00513472
0.00527091
0.00539967
0.00552491
0.00161289
0.00114166
0.00107142
0.00114966
0.00127428
0.00140707
0.0015337
0.00164887
0.00175139
0.00184193
0.00192185
0.00199259
0.00205554
0.00211191
0.00216273
0.00220887
0.00225107
0.00228994
0.00232601
0.00235971
0.00239139
0.00242136
0.00244992
0.00247738
0.00250397
0.00252972
0.00255441
0.00257763
0.00259927
0.00262004
0.0026416
0.00266581
0.0026932
0.00272044
0.00274373
0.00158132
0.0011294
0.00107716
0.00115096
0.00125537
0.00136131
0.00145999
0.00154875
0.00162729
0.00169636
0.00175696
0.0018105
0.00185813
0.00190083
0.00193941
0.00197454
0.00200676
0.00203651
0.00206415
0.00208995
0.00211413
0.00213688
0.0021584
0.00217889
0.00219854
0.00221742
0.00223541
0.00225217
0.00226752
0.00228177
0.00229604
0.00231187
0.00233032
0.00234949
0.00236882
0.00167279
0.00117257
0.00102275
0.00107706
0.00124182
0.00145116
0.00167495
0.00189869
0.00211394
0.00231599
0.00250275
0.00267367
0.00282907
0.00296971
0.00309649
0.00321037
0.00331227
0.00340307
0.00348363
0.00355482
0.00361755
0.00367273
0.00372126
0.00376406
0.00380202
0.00383595
0.00386653
0.0038942
0.00391926
0.00394201
0.00396311
0.00398364
0.00400534
0.00402797
0.00405657
0.00165985
0.00119263
0.00112068
0.00121337
0.00136172
0.00152275
0.00167892
0.00182281
0.00195282
0.00206917
0.00217303
0.00226577
0.00234875
0.00242324
0.00249038
0.00255113
0.00260627
0.00265645
0.00270218
0.0027439
0.00278199
0.00281678
0.00284858
0.00287768
0.00290439
0.00292899
0.00295168
0.00297257
0.00299172
0.00300924
0.00302556
0.00304146
0.00305856
0.00307684
0.00310353
0.00166883
0.00114338
0.000889002
0.00074796
0.000661673
0.000604702
0.000564799
0.000535515
0.000513203
0.000495679
0.000481574
0.000470001
0.000460375
0.000452311
0.000445574
0.000440048
0.000435726
0.000432712
0.00043123
0.000431638
0.000434447
0.000440334
0.000450152
0.00046495
0.000485988
0.000514792
0.000553221
0.000603512
0.000668208
0.000749927
0.000850996
0.000973086
0.00111686
0.00128176
0.00146268
0.00116932
0.000779999
0.000740647
0.000766984
0.000803921
0.000842404
0.000878964
0.000911767
0.000940105
0.000963811
0.000982969
0.000997487
0.00100728
0.00101246
0.00101337
0.00101055
0.00100463
0.000996267
0.000986048
0.000974554
0.000962252
0.000949492
0.000936543
0.000923639
0.000910984
0.000898778
0.00088716
0.00087612
0.000865404
0.000854431
0.000842494
0.000829125
0.000815288
0.000802798
0.000798147
0.00111292
0.000739126
0.000696196
0.000715496
0.000746689
0.000780141
0.000811682
0.000839836
0.000864278
0.000884765
0.000901276
0.000913713
0.00092199
0.000926181
0.000926567
0.000923593
0.000917818
0.000909828
0.000900167
0.000889356
0.000877825
0.000865913
0.000853893
0.000841989
0.000830354
0.000819032
0.000807935
0.000796858
0.000785646
0.000774482
0.000764271
0.000756632
0.000753672
0.000754936
0.000760252
0.00167325
0.00116276
0.000970189
0.000963853
0.00108376
0.00127508
0.00150098
0.00174128
0.00198249
0.00221561
0.00243546
0.00263963
0.00282749
0.00299935
0.00315593
0.00329801
0.00342636
0.00354176
0.00364501
0.00373696
0.00381853
0.00389068
0.00395445
0.00401087
0.004061
0.00410579
0.00414613
0.00418267
0.00421592
0.00424625
0.00427422
0.00430072
0.00432775
0.00435635
0.00439396
0.00110616
0.000722461
0.000665243
0.000672277
0.000692922
0.000716562
0.000739686
0.000760643
0.000779498
0.000796444
0.000811732
0.000825599
0.000838258
0.000849903
0.000860706
0.000870806
0.000880302
0.000889259
0.000897716
0.000905697
0.000913218
0.000920288
0.000926922
0.000933138
0.000938961
0.000944418
0.000949525
0.000954273
0.000958651
0.000962663
0.000966416
0.000970079
0.000974275
0.000978499
0.000986722
0.00166894
0.00114618
0.000892252
0.000751385
0.000665264
0.000608906
0.000570692
0.000545199
0.000530414
0.000526572
0.000535551
0.000560318
0.000604268
0.000670694
0.000762714
0.000883307
0.00103469
0.00121717
0.00142844
0.00166377
0.00191687
0.00218113
0.00245054
0.00272029
0.00298691
0.00324818
0.00350277
0.00374998
0.00398949
0.00422138
0.00444622
0.00466511
0.0048794
0.0050897
0.00529436
0.00167518
0.00117071
0.00100341
0.00103652
0.00119026
0.00139854
0.00162616
0.00185613
0.00207888
0.00228921
0.00248474
0.00266486
0.00282997
0.00298093
0.00311883
0.00324473
0.00335963
0.00346443
0.00355995
0.00364692
0.00372601
0.00379789
0.0038632
0.00392257
0.00397668
0.00402614
0.00407147
0.00411305
0.00415118
0.00418623
0.0042189
0.00425039
0.00428273
0.00431649
0.00435781
0.00166572
0.00117776
0.00107375
0.00115764
0.00131779
0.00150347
0.00169184
0.00187139
0.00203704
0.0021874
0.00232289
0.00244464
0.00255412
0.00265278
0.00274199
0.00282299
0.00289689
0.00296468
0.00302722
0.00308524
0.00313936
0.00319012
0.00323807
0.0032837
0.00332743
0.00336939
0.00340936
0.00344694
0.00348211
0.00351588
0.00355056
0.00358859
0.00363049
0.00367182
0.00370641
0.00166915
0.00114913
0.000895845
0.000755753
0.000671855
0.00062123
0.000595583
0.00059445
0.000622014
0.000684117
0.000785085
0.000926254
0.00110639
0.00132163
0.00156502
0.00182746
0.00209965
0.00237361
0.00264346
0.00290537
0.00315722
0.00339805
0.0036277
0.00384648
0.00405496
0.00425381
0.00444368
0.00462514
0.00479866
0.00496468
0.00512382
0.00527703
0.00542569
0.00557056
0.00571321
0.00164494
0.00116437
0.00107204
0.00113859
0.00126349
0.00140655
0.00154958
0.00168393
0.00180595
0.00191493
0.00201136
0.00209625
0.00217072
0.00223569
0.00229192
0.00234003
0.00238063
0.00241438
0.00244196
0.00246411
0.00248159
0.00249514
0.00250547
0.00251326
0.00251909
0.0025235
0.00252686
0.00252941
0.00253123
0.00253227
0.00253266
0.00253287
0.00253474
0.00253906
0.00255457
0.000910619
0.000615938
0.000557075
0.00054538
0.00054789
0.000555751
0.000565367
0.00057517
0.000584602
0.000593478
0.000601763
0.000609472
0.000616664
0.000623423
0.000629835
0.000635981
0.00064192
0.000647695
0.000653337
0.000658861
0.000664274
0.000669575
0.000674764
0.00067984
0.0006848
0.000689623
0.000694273
0.000698701
0.000702888
0.000706893
0.000710894
0.000715122
0.000719836
0.000724727
0.000730069
0.00166897
0.00114731
0.000893537
0.000752658
0.000666328
0.000609305
0.000569482
0.00054058
0.000519228
0.000503699
0.000493337
0.000488317
0.000489545
0.000498594
0.000517624
0.000549247
0.000596434
0.000662549
0.000751426
0.00086711
0.00101316
0.00119175
0.00140306
0.00164507
0.0019138
0.00220396
0.00250957
0.00282461
0.00314372
0.00346245
0.00377735
0.00408609
0.0043873
0.00468017
0.00496332
0.00166904
0.00114705
0.000893239
0.00075306
0.000669324
0.000619113
0.000594273
0.000594532
0.00062413
0.000688529
0.000791155
0.000932478
0.0011111
0.00132368
0.00156415
0.00182434
0.00209579
0.00237133
0.00264573
0.0029155
0.00317837
0.00343285
0.00367799
0.00391319
0.00413824
0.00435321
0.0045583
0.00475378
0.00493998
0.00511757
0.00528772
0.0054521
0.00561242
0.00576914
0.00592116
0.00166959
0.00114796
0.000898047
0.000771448
0.000719971
0.000732844
0.000810539
0.000949025
0.00113749
0.00136425
0.00161809
0.00188774
0.00216315
0.00243675
0.00270353
0.00296048
0.00320594
0.00343908
0.00365961
0.00386764
0.00406352
0.00424778
0.00442107
0.00458408
0.00473754
0.00488208
0.00501824
0.00514633
0.00526683
0.00538057
0.00548901
0.00559415
0.0056979
0.00580012
0.00590021
0.00160678
0.0011441
0.00108416
0.001167
0.00128918
0.00141462
0.00153163
0.00163686
0.0017302
0.00181243
0.00188498
0.00194908
0.0020059
0.00205663
0.00210236
0.00214392
0.00218198
0.00221708
0.00224966
0.00228004
0.00230849
0.0023352
0.00236037
0.00238413
0.00240663
0.00242795
0.00244808
0.00246691
0.00248438
0.00250067
0.00251643
0.00253267
0.00255072
0.00257014
0.00259361
0.000887694
0.000603342
0.00054417
0.000530265
0.00053044
0.000536538
0.000544839
0.000553697
0.000562292
0.000570267
0.000577493
0.000583892
0.000589399
0.000593964
0.000597561
0.000600189
0.000601882
0.000602709
0.000602765
0.000602161
0.000601013
0.000599435
0.000597534
0.000595405
0.000593131
0.00059078
0.000588394
0.000585991
0.000583562
0.000581096
0.00057864
0.000576308
0.000574554
0.00057329
0.000574672
0.00167676
0.00118728
0.00105341
0.00112567
0.0013039
0.00152156
0.00174804
0.0019678
0.00217224
0.0023568
0.00251952
0.00266
0.00277794
0.00287387
0.00294895
0.003005
0.00304436
0.00306964
0.00308345
0.00308826
0.00308626
0.00307927
0.00306881
0.0030561
0.00304212
0.00302756
0.00301291
0.00299831
0.00298362
0.00296865
0.00295351
0.0029392
0.00292855
0.00292414
0.00293297
0.00165953
0.00120229
0.00113902
0.0012313
0.00137366
0.00152723
0.0016757
0.0018115
0.00193197
0.0020378
0.00212989
0.0022091
0.00227613
0.00233164
0.00237633
0.00241104
0.00243675
0.00245461
0.00246586
0.00247172
0.00247332
0.00247171
0.00246776
0.00246222
0.0024557
0.00244867
0.00244146
0.00243421
0.00242686
0.00241926
0.00241143
0.00240377
0.00239829
0.00239589
0.00240627
0.00162297
0.00114928
0.00106651
0.00113048
0.00124395
0.00137041
0.00149447
0.00160891
0.00171118
0.00180133
0.00188019
0.00194862
0.00200739
0.00205713
0.00209841
0.00213179
0.00215794
0.00217764
0.00219175
0.00220116
0.00220672
0.00220926
0.00220949
0.00220805
0.00220549
0.00220222
0.00219856
0.00219463
0.00219041
0.00218578
0.00218083
0.00217604
0.00217327
0.00217354
0.0021841
0.00164851
0.00116703
0.00107936
0.00116375
0.00131139
0.00147723
0.00164161
0.00179566
0.00193597
0.00206209
0.00217488
0.00227569
0.00236594
0.00244703
0.0025202
0.0025866
0.0026472
0.00270286
0.0027543
0.00280215
0.00284691
0.00288905
0.002929
0.00296718
0.00300392
0.00303929
0.00307306
0.00310486
0.00313466
0.00316341
0.00319321
0.00322628
0.00326299
0.00329934
0.00332872
0.0016727
0.00115987
0.000949323
0.00091335
0.00101035
0.00119816
0.00143338
0.00168889
0.00194852
0.00220166
0.00244162
0.0026646
0.00286854
0.00305246
0.00321601
0.00335957
0.00348394
0.00359045
0.00368073
0.00375664
0.00382011
0.00387304
0.00391724
0.00395435
0.00398584
0.00401296
0.0040367
0.00405779
0.00407666
0.00409356
0.00410889
0.00412354
0.00413991
0.0041599
0.00419172
0.001674
0.0011928
0.00108087
0.00117098
0.00135188
0.00156243
0.0017768
0.00198179
0.00216995
0.00233705
0.00248029
0.00259821
0.00269094
0.00275976
0.00280685
0.00283511
0.00284775
0.00284795
0.00283866
0.0028224
0.00280125
0.00277687
0.00275057
0.00272338
0.00269605
0.00266902
0.0026423
0.00261549
0.00258815
0.00256053
0.0025346
0.00251458
0.00250639
0.0025122
0.00252921
0.00167027
0.00115537
0.000908128
0.00078603
0.00074413
0.000773635
0.000872459
0.0010309
0.00123437
0.00146854
0.00171874
0.00197072
0.00221285
0.00243782
0.00264186
0.00282401
0.00298462
0.00312458
0.00324506
0.00334754
0.00343368
0.0035053
0.00356429
0.00361255
0.00365186
0.00368393
0.00371028
0.00373227
0.00375098
0.0037671
0.00378091
0.00379223
0.0038011
0.00380742
0.00381628
0.00166944
0.00117781
0.00106215
0.00114316
0.00130988
0.00150617
0.00170792
0.00190298
0.0020853
0.00225252
0.00240436
0.00254162
0.00266553
0.00277751
0.00287895
0.00297118
0.00305541
0.00313272
0.00320406
0.00327023
0.00333191
0.00338972
0.00344426
0.00349606
0.00354555
0.00359285
0.00363779
0.00368003
0.00371972
0.00375809
0.00379757
0.00384052
0.00388706
0.00393226
0.00396835
0.00157789
0.00110885
0.00103241
0.00109124
0.00118999
0.00129634
0.00139864
0.00149212
0.00157512
0.00164841
0.00171296
0.00176979
0.0018199
0.00186413
0.00190317
0.00193753
0.00196762
0.0019938
0.00201637
0.00203568
0.00205207
0.00206588
0.00207746
0.00208717
0.00209534
0.00210227
0.00210823
0.00211338
0.00211779
0.00212144
0.00212446
0.00212712
0.0021308
0.00213548
0.00214996
0.000890749
0.000576731
0.000528818
0.000525782
0.000535101
0.000548875
0.000563025
0.000576248
0.000588127
0.00059846
0.00060704
0.000613639
0.000618109
0.000620415
0.000620644
0.000618992
0.00061573
0.000611165
0.000605605
0.000599331
0.000592586
0.000585571
0.000578452
0.00057136
0.000564392
0.000557596
0.000550958
0.000544408
0.000537873
0.000531388
0.000525273
0.000520132
0.000516977
0.000515568
0.000517541
0.00167057
0.00115537
0.000911083
0.000796813
0.000771312
0.000827377
0.000958326
0.00114716
0.0013748
0.00162498
0.00188316
0.002137
0.00237741
0.00259861
0.00279755
0.00297321
0.00312595
0.00325702
0.00336821
0.00346157
0.0035393
0.00360358
0.00365646
0.00369989
0.00373563
0.00376522
0.00378997
0.00381088
0.00382863
0.00384362
0.00385632
0.00386758
0.00387963
0.00389485
0.00392011
0.00167012
0.00114816
0.000904318
0.000794816
0.000778173
0.000845502
0.000986958
0.0011839
0.00141861
0.00167698
0.00194673
0.00221789
0.00248343
0.002739
0.00298217
0.00321187
0.00342793
0.00363063
0.00382058
0.00399854
0.00416537
0.00432195
0.00446917
0.00460792
0.00473898
0.00486296
0.00498017
0.00509077
0.00519512
0.00529435
0.00539062
0.00548644
0.00558302
0.00567753
0.00576507
0.00167416
0.00116757
0.00097128
0.000957106
0.00107269
0.00126582
0.00149708
0.00174411
0.00199181
0.0022292
0.00244912
0.00264723
0.00282107
0.00296985
0.00309399
0.00319495
0.00327492
0.00333655
0.00338263
0.0034159
0.00343887
0.00345376
0.00346248
0.00346662
0.0034675
0.00346619
0.00346345
0.00345976
0.00345528
0.00344997
0.003444
0.00343815
0.00343482
0.00343644
0.00345004
0.000756539
0.000509268
0.000457798
0.000446807
0.000448182
0.000453734
0.000460293
0.00046675
0.000472739
0.000478164
0.000483049
0.000487358
0.00049102
0.000493971
0.000496168
0.000497602
0.000498295
0.000498299
0.000497691
0.000496562
0.00049501
0.000493128
0.000491005
0.000488716
0.000486331
0.000483906
0.000481488
0.000479111
0.000476792
0.000474521
0.000472278
0.00047001
0.000467819
0.000465472
0.000464343
0.00167106
0.00117146
0.00103282
0.00109938
0.00127025
0.00148032
0.00169937
0.00191288
0.00211368
0.00229877
0.00246747
0.00262034
0.0027586
0.00288372
0.00299722
0.00310057
0.00319505
0.00328185
0.00336195
0.0034362
0.00350529
0.00356982
0.00363032
0.00368726
0.00374104
0.00379188
0.00383978
0.00388465
0.00392658
0.00396628
0.00400534
0.00404569
0.00408853
0.00413199
0.00417323
0.00112289
0.000798592
0.000744298
0.000742775
0.000753664
0.000768768
0.000784384
0.000799196
0.000812623
0.000824562
0.000834966
0.000843766
0.000850856
0.000856161
0.000859679
0.000861479
0.000861688
0.000860491
0.000858098
0.000854735
0.00085062
0.000845953
0.000840906
0.000835631
0.000830251
0.000824873
0.000819585
0.000814442
0.000809466
0.000804608
0.000799794
0.000794856
0.000790029
0.000784734
0.00078276
0.00167063
0.00115292
0.000914929
0.000818531
0.0008254
0.000923541
0.00109444
0.0013144
0.00156437
0.00182931
0.00209718
0.00235933
0.00261004
0.00284579
0.00306439
0.00326461
0.00344591
0.00360845
0.003753
0.00388073
0.0039932
0.00409213
0.00417929
0.00425642
0.00432512
0.00438685
0.00444286
0.00449412
0.00454136
0.00458511
0.00462591
0.00466463
0.00470326
0.00474336
0.00479171
0.00103099
0.000708492
0.000644888
0.000633685
0.000638136
0.000648527
0.00066105
0.000673877
0.000686121
0.000697545
0.000708139
0.000717943
0.000727065
0.000735627
0.00074374
0.000751491
0.000758952
0.000766174
0.000773188
0.000780012
0.000786654
0.000793122
0.000799432
0.000805611
0.000811679
0.000817619
0.000823351
0.000828756
0.000833776
0.000838538
0.000843429
0.00084888
0.000855206
0.00086139
0.000868105
0.000837932
0.000586744
0.000524634
0.000507036
0.000503929
0.000506264
0.000510675
0.000515788
0.000521022
0.000526196
0.000531211
0.000536028
0.000540651
0.000545102
0.000549413
0.00055361
0.000557713
0.000561728
0.000565658
0.000569497
0.000573235
0.000576863
0.000580371
0.000583754
0.000587009
0.00059013
0.000593105
0.000595913
0.000598543
0.00060101
0.000603391
0.000605804
0.000608482
0.000611232
0.000614973
0.00153243
0.00107259
0.00101738
0.00108799
0.00119043
0.00129376
0.00138886
0.0014738
0.00154885
0.00161495
0.00167313
0.00172445
0.00176993
0.00181044
0.0018467
0.00187927
0.0019086
0.00193505
0.00195889
0.00198038
0.00199971
0.0020171
0.00203274
0.00204686
0.00205969
0.00207144
0.00208222
0.00209203
0.00210082
0.00210864
0.00211593
0.00212342
0.0021324
0.00214184
0.00215776
0.00164669
0.00118106
0.0011111
0.00119829
0.0013395
0.00149424
0.00164542
0.00178589
0.00191321
0.00202723
0.00212862
0.00221866
0.00229892
0.00237077
0.00243532
0.00249351
0.00254613
0.0025938
0.00263706
0.00267636
0.00271208
0.00274459
0.00277422
0.00280134
0.00282632
0.00284946
0.00287092
0.00289061
0.00290844
0.00292454
0.00293976
0.00295547
0.00297339
0.00299257
0.00301607
0.000884416
0.000681918
0.000578545
0.000538375
0.000520244
0.000510879
0.000505965
0.000503553
0.000502596
0.00050249
0.000502903
0.000503638
0.000504565
0.000505588
0.000506628
0.000507619
0.00050851
0.00050926
0.000509847
0.00051026
0.0005105
0.000510576
0.000510504
0.000510304
0.000509998
0.000509604
0.000509142
0.000508627
0.000508069
0.000507485
0.000506893
0.000506339
0.00050583
0.000505552
0.000504963
0.00166954
0.00114885
0.000898359
0.000768566
0.000709929
0.000710179
0.000770201
0.000889274
0.00106002
0.00127269
0.00151747
0.00178365
0.00206048
0.0023388
0.00261184
0.00287516
0.00312607
0.00336306
0.00358541
0.00379289
0.00398564
0.00416422
0.00432944
0.0044823
0.0046239
0.00475538
0.00487781
0.00499213
0.00509915
0.00519965
0.00529469
0.00538571
0.00547479
0.0055633
0.00565419
0.000963669
0.000754468
0.000643596
0.000601085
0.00058209
0.000572134
0.000566764
0.000563958
0.000562611
0.000562107
0.00056206
0.000562198
0.000562317
0.000562262
0.000561932
0.00056127
0.000560256
0.000558904
0.000557246
0.000555329
0.000553205
0.000550924
0.000548535
0.00054608
0.000543597
0.000541117
0.000538663
0.000536251
0.000533887
0.000531569
0.000529285
0.000527068
0.000524867
0.000523126
0.000520644
0.000950595
0.000738697
0.000625819
0.000583701
0.000565251
0.0005557
0.000550643
0.000548049
0.000546852
0.000546468
0.000546531
0.00054677
0.000546986
0.000547028
0.000546793
0.000546221
0.000545296
0.000544029
0.000542456
0.000540625
0.000538588
0.000536398
0.000534103
0.000531747
0.000529365
0.000526983
0.000524622
0.000522293
0.000520005
0.000517774
0.00051562
0.000513618
0.000511732
0.000510343
0.000508149
0.000956851
0.000654767
0.000590355
0.000576346
0.000578005
0.00058555
0.000595122
0.000605059
0.000614711
0.000623856
0.000632426
0.000640399
0.000647825
0.000654792
0.000661378
0.000667637
0.00067361
0.000679322
0.000684785
0.000690001
0.000694967
0.000699683
0.000704156
0.000708401
0.000712442
0.000716289
0.000719926
0.000723305
0.00072639
0.000729216
0.000731966
0.00073489
0.000738315
0.000741784
0.000746226
0.00167142
0.00117732
0.00105163
0.00113063
0.00130727
0.00151766
0.0017337
0.00194231
0.00213728
0.00231612
0.00247849
0.00262515
0.00275746
0.00287697
0.00298528
0.00308384
0.0031738
0.00325637
0.00333251
0.00340301
0.00346849
0.00352952
0.00358658
0.0036401
0.00369044
0.00373786
0.00378241
0.00382402
0.00386276
0.00389916
0.00393455
0.00397072
0.00400921
0.00404892
0.00408896
0.00114266
0.000764228
0.000712628
0.000721198
0.000741118
0.000763896
0.000786488
0.000807558
0.00082646
0.000843072
0.000857422
0.000869512
0.000879332
0.000886883
0.000892221
0.000895465
0.000896797
0.000896454
0.000894706
0.000891824
0.000888071
0.000883681
0.000878856
0.000873771
0.000868568
0.000863355
0.000858203
0.000853132
0.000848112
0.000843092
0.000838108
0.000833281
0.000829432
0.000826142
0.000828819
0.00108313
0.000708862
0.000648588
0.000647312
0.00065982
0.000676772
0.000694587
0.00071168
0.000727335
0.0007413
0.00075356
0.000764114
0.000772947
0.00078005
0.000785448
0.000789203
0.000791425
0.00079227
0.000791929
0.000790602
0.000788487
0.000785772
0.000782623
0.000779186
0.000775585
0.000771916
0.000768242
0.000764582
0.000760917
0.000757211
0.000753511
0.000749952
0.000747248
0.000745137
0.000747878
0.00166887
0.00114486
0.000890485
0.0007494
0.000663066
0.000606046
0.000566101
0.000536792
0.000514489
0.000497045
0.00048316
0.000472079
0.000463448
0.000457262
0.00045388
0.000454051
0.000458944
0.000470129
0.0004895
0.000519134
0.000561178
0.000617862
0.000691593
0.000784914
0.00090015
0.00103889
0.00120159
0.00138743
0.00159448
0.00181993
0.00206057
0.00231318
0.00257489
0.00284312
0.0031135
0.00107797
0.000706116
0.000655111
0.00066359
0.000685412
0.000709991
0.000733956
0.000756172
0.000776364
0.000794601
0.000811037
0.000825842
0.000839252
0.000851513
0.000862827
0.000873342
0.000883172
0.000892397
0.000901069
0.000909218
0.000916867
0.000924033
0.000930743
0.000937039
0.000942971
0.000948576
0.000953848
0.000958725
0.00096315
0.000967154
0.000970997
0.000975052
0.000979975
0.000984893
0.000992931
0.0016696
0.0011537
0.000901244
0.000762453
0.000681854
0.000638896
0.000628442
0.000653238
0.000718754
0.000828649
0.000983173
0.00118018
0.00141485
0.00167854
0.00195934
0.00224437
0.00252213
0.00278396
0.00302441
0.00324089
0.00343304
0.00360191
0.00374948
0.0038781
0.00399028
0.00408845
0.0041749
0.00425168
0.00432057
0.00438301
0.00444009
0.00449244
0.00454079
0.00458485
0.00462937
0.00093382
0.000586718
0.000539109
0.000544147
0.000561312
0.000581233
0.000600635
0.000618633
0.000635008
0.00064981
0.00066315
0.00067518
0.000686085
0.000696054
0.00070524
0.000713758
0.000721693
0.000729101
0.000736019
0.000742469
0.000748467
0.000754029
0.000759179
0.000763952
0.000768394
0.000772542
0.000776408
0.00077996
0.000783165
0.000786035
0.000788752
0.000791564
0.000795049
0.000798426
0.000805115
0.00154007
0.00106745
0.000997316
0.00105904
0.00115464
0.00125301
0.00134474
0.00142711
0.00149992
0.00156397
0.00162038
0.00167023
0.00171449
0.00175398
0.00178939
0.00182125
0.00184997
0.00187585
0.00189915
0.00192008
0.00193883
0.00195561
0.00197061
0.00198402
0.00199605
0.0020069
0.00201674
0.00202566
0.0020337
0.00204089
0.00204737
0.00205347
0.00206034
0.00206785
0.00208292
0.000912109
0.000699755
0.00059708
0.000558208
0.000540927
0.000532073
0.00052732
0.000524889
0.00052385
0.000523685
0.000524102
0.000524917
0.000526013
0.000527316
0.000528775
0.000530347
0.000531995
0.000533688
0.000535396
0.000537095
0.000538765
0.00054039
0.000541959
0.000543467
0.000544909
0.000546282
0.00054758
0.000548799
0.000549941
0.000551019
0.00055206
0.000553102
0.000554131
0.000555133
0.000555878
0.00153847
0.00106808
0.000994352
0.00104369
0.00112534
0.00121216
0.0012948
0.00136968
0.0014357
0.00149324
0.00154308
0.00158589
0.00162217
0.00165235
0.00167682
0.00169596
0.00171024
0.00172023
0.00172651
0.00172972
0.00173045
0.00172925
0.00172662
0.00172299
0.00171872
0.00171409
0.0017093
0.00170441
0.00169936
0.00169403
0.00168849
0.00168311
0.00167959
0.00167829
0.00168759
0.00159928
0.00115368
0.00110308
0.00117531
0.00127881
0.00138486
0.00148423
0.00157395
0.0016535
0.00172357
0.00178523
0.00183974
0.00188825
0.00193175
0.00197107
0.00200687
0.00203974
0.00207012
0.0020984
0.00212485
0.00214972
0.0021732
0.00219551
0.00221687
0.00223747
0.00225736
0.00227633
0.00229402
0.00231025
0.00232547
0.00234104
0.00235862
0.00237908
0.0023999
0.00241937
0.00167176
0.00115353
0.000933288
0.000879324
0.000951973
0.00111767
0.00133735
0.00158452
0.00184291
0.00210087
0.00235051
0.00258727
0.00280912
0.00301555
0.00320688
0.00338405
0.00354814
0.00370024
0.00384139
0.00397256
0.00409458
0.00420826
0.00431431
0.00441345
0.00450631
0.00459339
0.00467498
0.00475125
0.00482245
0.00488936
0.00495359
0.00501724
0.00508214
0.00514724
0.00521191
0.00167251
0.001164
0.000959731
0.000932976
0.00103694
0.00122381
0.00145285
0.00169952
0.00194668
0.00218125
0.00239365
0.00257732
0.00273028
0.00285299
0.0029474
0.00301653
0.00306386
0.00309302
0.00310744
0.0031102
0.00310394
0.00309086
0.0030728
0.00305126
0.00302756
0.00300282
0.00297796
0.00295342
0.0029289
0.00290311
0.00287418
0.00284082
0.00280473
0.0027723
0.00275692
0.00167295
0.00116556
0.000965143
0.000946106
0.00105924
0.00125233
0.00148365
0.00172967
0.0019744
0.00220571
0.0024148
0.00259551
0.00274576
0.00286604
0.0029583
0.00302551
0.00307116
0.00309881
0.00311187
0.0031134
0.00310606
0.00309205
0.00307327
0.00305127
0.00302723
0.00300197
0.00297581
0.00294861
0.00292018
0.00289114
0.00286396
0.00284351
0.0028359
0.0028432
0.00285901
0.00163961
0.00116234
0.00108293
0.00117044
0.00131595
0.0014751
0.00162956
0.00177205
0.00190043
0.00201481
0.0021163
0.00220626
0.00228624
0.00235769
0.00242187
0.00248001
0.00253311
0.00258191
0.00262707
0.00266909
0.00270838
0.00274528
0.00278008
0.00281304
0.00284436
0.00287413
0.00290231
0.00292872
0.00295333
0.00297653
0.00299941
0.00302345
0.00304991
0.00307775
0.00310617
0.0016718
0.00115879
0.000929793
0.000853952
0.000897236
0.00103943
0.00124779
0.00149278
0.00175382
0.00201495
0.00226414
0.00249334
0.00269783
0.00287553
0.00302633
0.00315153
0.00325333
0.00333445
0.00339774
0.00344603
0.00348194
0.00350784
0.00352579
0.00353759
0.00354477
0.00354857
0.00354996
0.00354957
0.0035477
0.00354444
0.0035401
0.00353566
0.00353374
0.0035371
0.00355257
0.00164521
0.00116393
0.00107557
0.0011537
0.00129253
0.00144793
0.00160101
0.00174381
0.00187349
0.00198978
0.00209353
0.00218604
0.00226871
0.00234287
0.00240972
0.00247038
0.00252578
0.0025767
0.00262383
0.00266775
0.00270891
0.00274775
0.00278467
0.00282
0.00285399
0.00288663
0.00291766
0.00294681
0.0029743
0.00300129
0.00302982
0.00306166
0.00309636
0.00312929
0.00315351
0.000911061
0.000614665
0.000554496
0.000541814
0.000542796
0.00054938
0.000558081
0.000567291
0.000576264
0.000584733
0.000592639
0.000599986
0.000606826
0.000613214
0.000619198
0.000624807
0.000630055
0.000634943
0.000639465
0.000643618
0.000647404
0.000650829
0.000653909
0.000656667
0.000659134
0.000661342
0.000663319
0.00066508
0.00066663
0.000667972
0.000669152
0.000670251
0.000671616
0.000673079
0.000676654
0.00166922
0.00114784
0.000894983
0.000757745
0.000681511
0.000647418
0.000652273
0.000699182
0.000790669
0.000925509
0.00110036
0.00131096
0.00155101
0.00181207
0.00208515
0.00236225
0.00263715
0.00290547
0.00316432
0.00341197
0.00364743
0.00387036
0.00408085
0.00427929
0.00446625
0.00464244
0.00480859
0.00496538
0.00511346
0.00525362
0.00538705
0.00551541
0.00564068
0.00576387
0.00588623
0.00167201
0.00118437
0.00106797
0.00114143
0.00129686
0.00148285
0.00167683
0.00186635
0.0020447
0.00220882
0.00235774
0.00249151
0.00261069
0.00271603
0.00280835
0.00288853
0.00295746
0.00301607
0.00306536
0.00310639
0.00314026
0.00316805
0.00319078
0.00320943
0.00322485
0.00323781
0.00324895
0.00325873
0.00326745
0.00327526
0.00328236
0.00328901
0.00329629
0.00330369
0.00331863
0.00167283
0.0011623
0.000969661
0.0009648
0.00108907
0.00128512
0.00151388
0.00175566
0.00199826
0.00223335
0.00245581
0.00266295
0.00285364
0.0030277
0.0031855
0.00332767
0.00345496
0.00356825
0.00366847
0.00375671
0.00383409
0.00390183
0.00396114
0.00401322
0.00405923
0.00410024
0.00413713
0.0041706
0.0042011
0.00422902
0.004255
0.00427994
0.00430553
0.0043317
0.00436412
0.00166891
0.00114596
0.000891945
0.000751011
0.000664697
0.000607669
0.000567734
0.000538486
0.000516349
0.000499255
0.000486034
0.000476111
0.000469374
0.000466118
0.000467046
0.000473262
0.000486279
0.000507988
0.000540655
0.000586968
0.000650132
0.000733875
0.000842163
0.000978616
0.00114582
0.00134477
0.00157467
0.00183287
0.00211528
0.00241683
0.00273208
0.00305593
0.00338395
0.00371253
0.00403638
0.000667524
0.000493462
0.000417688
0.000391764
0.000379964
0.000373689
0.000370325
0.000368586
0.00036777
0.000367468
0.000367382
0.000367301
0.000367071
0.000366588
0.000365796
0.000364684
0.000363269
0.00036159
0.000359695
0.000357635
0.000355459
0.000353211
0.000350928
0.000348638
0.000346368
0.000344137
0.000341955
0.000339821
0.000337719
0.000335634
0.000333558
0.000331555
0.000329643
0.000328334
0.000326566
0.000667533
0.000493363
0.000417647
0.000391826
0.000380097
0.000373867
0.000370528
0.000368798
0.000367981
0.000367675
0.000367585
0.000367498
0.000367264
0.000366778
0.000365984
0.00036487
0.000363453
0.000361773
0.000359877
0.000357816
0.000355639
0.000353392
0.000351111
0.000348824
0.000346551
0.000344307
0.000342095
0.000339921
0.0003378
0.000335772
0.000333891
0.000332239
0.000330726
0.00032955
0.000327218
0.000992555
0.000619134
0.00056725
0.000579549
0.000607185
0.000637686
0.000666694
0.000692934
0.00071634
0.000737097
0.000755587
0.000772141
0.000787022
0.000800457
0.000812629
0.000823675
0.000833696
0.00084277
0.000850957
0.00085831
0.000864881
0.000870727
0.000875913
0.000880514
0.000884616
0.0008883
0.00089162
0.000894586
0.000897188
0.000899435
0.00090147
0.000903521
0.000906126
0.000908855
0.000914212
0.000684591
0.000511246
0.000434258
0.000407619
0.00039561
0.000389292
0.000385922
0.000384183
0.00038336
0.000383039
0.000382937
0.000382846
0.000382612
0.000382126
0.00038133
0.000380209
0.000378778
0.000377074
0.000375149
0.000373051
0.000370831
0.000368533
0.000366197
0.000363854
0.000361525
0.000359225
0.000356958
0.000354728
0.000352547
0.000350456
0.00034851
0.000346802
0.00034526
0.000344102
0.00034184
0.000680769
0.000509557
0.000432706
0.000405662
0.000393342
0.000386816
0.00038333
0.000381547
0.000380728
0.000380428
0.000380357
0.000380296
0.000380086
0.000379619
0.000378839
0.000377729
0.000376308
0.000374616
0.000372699
0.000370613
0.000368404
0.000366118
0.000363791
0.000361455
0.000359139
0.000356862
0.000354635
0.000352458
0.000350316
0.000348194
0.000346076
0.000344022
0.000342043
0.000340659
0.000338812
0.00128862
0.000841526
0.000774656
0.000801086
0.000847881
0.000896936
0.000943191
0.000984983
0.00102205
0.00105477
0.00108372
0.00110948
0.00113254
0.0011534
0.00117248
0.00119011
0.00120657
0.0012221
0.00123686
0.00125101
0.00126465
0.00127787
0.00129077
0.00130345
0.00131594
0.0013282
0.00134004
0.00135129
0.00136199
0.00137262
0.00138412
0.0013973
0.00141203
0.0014263
0.00143651
0.00129095
0.000837147
0.00076892
0.000797183
0.000845229
0.000894431
0.000940273
0.000981537
0.00101815
0.00105052
0.00107919
0.0011047
0.00112753
0.00114816
0.00116701
0.00118442
0.00120067
0.00121599
0.00123057
0.00124455
0.00125802
0.00127107
0.0012838
0.00129626
0.00130848
0.00132041
0.00133189
0.0013428
0.0013532
0.00136349
0.00137447
0.00138679
0.00140038
0.00141357
0.0014237
0.00167677
0.00119154
0.00108051
0.0011675
0.00133981
0.00154001
0.00174435
0.00194112
0.00212482
0.00229322
0.00244637
0.00258512
0.00271067
0.00282437
0.00292753
0.00302133
0.0031068
0.00318482
0.00325615
0.00332142
0.0033812
0.00343596
0.00348616
0.00353226
0.00357468
0.00361382
0.00364997
0.00368331
0.00371395
0.00374216
0.00376861
0.00379446
0.00382163
0.00385032
0.00388603
0.00150322
0.00102121
0.000942518
0.00099263
0.00107632
0.00116348
0.00124513
0.00131867
0.00138379
0.00144114
0.00149169
0.00153641
0.00157621
0.00161185
0.00164408
0.00167352
0.00170068
0.00172594
0.00174966
0.00177209
0.00179344
0.0018139
0.00183364
0.00185283
0.00187153
0.00188971
0.00190713
0.0019236
0.0019392
0.00195465
0.00197124
0.00199008
0.00201094
0.00203098
0.00204542
0.000909856
0.00070222
0.000598037
0.000557652
0.000539609
0.000530331
0.00052529
0.000522666
0.0005215
0.000521232
0.000521551
0.000522276
0.000523292
0.00052453
0.00052594
0.000527483
0.000529125
0.000530839
0.000532599
0.000534383
0.000536173
0.000537955
0.000539718
0.000541454
0.000543157
0.000544817
0.000546422
0.000547963
0.00054944
0.00055087
0.000552286
0.000553718
0.000555148
0.000556464
0.000557713
0.000751575
0.000498284
0.000446504
0.000431899
0.000429636
0.000433033
0.000438827
0.000445438
0.000452039
0.000458274
0.000464033
0.000469254
0.000473891
0.000477913
0.000481296
0.000484023
0.000486098
0.000487547
0.000488418
0.000488772
0.000488681
0.00048822
0.000487462
0.00048648
0.000485337
0.000484086
0.000482763
0.000481383
0.000479943
0.000478441
0.000476923
0.000475498
0.000474528
0.000473977
0.000475371
0.00149786
0.00101676
0.000941229
0.000993756
0.00107829
0.00116524
0.00124625
0.00131908
0.00138355
0.00144035
0.00149041
0.0015347
0.00157412
0.00160944
0.00164141
0.00167061
0.00169754
0.0017226
0.00174613
0.0017684
0.00178959
0.0018099
0.0018295
0.00184853
0.00186707
0.00188506
0.00190228
0.00191854
0.00193395
0.0019492
0.00196555
0.00198406
0.00200453
0.00202419
0.00203835
0.00166917
0.00114676
0.000893634
0.000756494
0.000680795
0.000648092
0.000656087
0.000709196
0.000811041
0.000960423
0.00115283
0.00138199
0.00163933
0.00191467
0.00219818
0.00248193
0.00276036
0.00303002
0.00328899
0.00353637
0.00377194
0.00399587
0.00420861
0.00441078
0.00460304
0.00478602
0.00496015
0.00512568
0.0052829
0.00543269
0.00557682
0.00571763
0.00585673
0.00599268
0.00612119
0.00126332
0.00083087
0.000777546
0.000816491
0.000870301
0.000921715
0.000967124
0.00100638
0.00104026
0.00106968
0.00109528
0.00111748
0.00113657
0.00115269
0.00116601
0.00117667
0.00118483
0.00119072
0.0011946
0.00119674
0.00119742
0.00119695
0.00119557
0.00119353
0.00119103
0.00118824
0.00118531
0.00118234
0.0011794
0.00117646
0.00117352
0.00117047
0.00116769
0.00116434
0.00116551
0.00167742
0.00117423
0.00101175
0.00105364
0.00121792
0.00143688
0.00167575
0.00191792
0.00215325
0.00237584
0.00258266
0.002773
0.00294733
0.00310665
0.00325222
0.00338532
0.00350729
0.00361937
0.00372268
0.00381823
0.00390692
0.00398956
0.00406691
0.00413974
0.00420868
0.0042741
0.00433594
0.0043939
0.00444795
0.00449915
0.00454989
0.00460298
0.00465949
0.00471519
0.00476576
0.00166042
0.0011848
0.00109858
0.00118527
0.00133529
0.00150419
0.00167273
0.00183194
0.00197822
0.00211056
0.00222927
0.00233512
0.00242906
0.00251205
0.00258497
0.00264865
0.00270385
0.00275131
0.00279177
0.00282599
0.00285473
0.00287875
0.00289879
0.00291554
0.00292964
0.0029417
0.00295218
0.00296142
0.00296962
0.00297688
0.00298342
0.0029896
0.0029966
0.00300389
0.00301873
0.0016701
0.00115534
0.000904154
0.000768258
0.000695273
0.000669173
0.000689986
0.000762873
0.000889163
0.00106389
0.00127927
0.00152579
0.00179038
0.0020581
0.00231501
0.00255044
0.00275787
0.00293459
0.0030808
0.0031986
0.00329114
0.00336195
0.00341457
0.00345235
0.00347824
0.00349482
0.00350414
0.00350776
0.00350674
0.00350195
0.00349454
0.00348655
0.00348145
0.00348287
0.0034941
0.0016701
0.00115533
0.000904246
0.000768658
0.000696342
0.000671419
0.00069379
0.000767922
0.000894166
0.00106711
0.00127926
0.0015215
0.00178137
0.00204442
0.0022973
0.00252978
0.00273554
0.00291185
0.00305875
0.00317811
0.00327278
0.00334604
0.00340123
0.00344147
0.00346963
0.00348829
0.00349967
0.00350565
0.00350757
0.00350615
0.00350138
0.00349281
0.00348048
0.00346576
0.0034546
0.00149801
0.00103118
0.000964767
0.00101937
0.00110278
0.00118857
0.00126874
0.00134083
0.00140481
0.00146131
0.00151103
0.00155463
0.00159271
0.00162577
0.00165422
0.00167843
0.00169875
0.00171552
0.00172912
0.00173993
0.00174832
0.00175468
0.00175939
0.00176276
0.00176512
0.00176674
0.00176784
0.00176858
0.00176903
0.00176918
0.00176909
0.00176881
0.00176909
0.0017691
0.0017755
0.00166982
0.00115457
0.000902607
0.000765193
0.000688237
0.000653302
0.000657668
0.000705266
0.000799613
0.000939929
0.00112238
0.0013414
0.0015886
0.00185255
0.00212068
0.0023814
0.00262581
0.0028482
0.00304569
0.0032177
0.00336524
0.0034903
0.0035954
0.00368325
0.00375651
0.00381769
0.00386905
0.00391262
0.00395011
0.00398278
0.00401143
0.00403631
0.0040577
0.00407547
0.00409388
0.00166904
0.00114887
0.00089514
0.00075425
0.000667918
0.000611042
0.000571725
0.000544043
0.000525207
0.00051439
0.00051221
0.000520481
0.000541977
0.000580103
0.000638588
0.000721535
0.000833113
0.000977148
0.00115602
0.00136963
0.00161511
0.0018872
0.0021792
0.00248397
0.00279482
0.00310603
0.00341319
0.0037131
0.00400364
0.00428352
0.00455218
0.00480964
0.00505654
0.00529342
0.00552112
0.00167066
0.00115074
0.000911889
0.000814494
0.00082099
0.00092044
0.00109366
0.00131482
0.00156399
0.00182691
0.00209269
0.00235362
0.00260489
0.00284378
0.0030688
0.00327932
0.00347536
0.00365722
0.00382536
0.00398035
0.00412285
0.00425362
0.00437351
0.00448344
0.00458439
0.00467733
0.00476309
0.00484239
0.00491583
0.00498408
0.00504818
0.00510969
0.00517079
0.00523258
0.0052987
0.00167109
0.00115436
0.000921695
0.00083727
0.000863794
0.000983443
0.00116945
0.00139636
0.00164694
0.00190808
0.00216919
0.00242235
0.00266172
0.00288394
0.00308709
0.0032702
0.00343305
0.00357646
0.00370172
0.00381052
0.00390471
0.00398621
0.00405692
0.00411859
0.00417284
0.00422106
0.00426443
0.00430386
0.00433996
0.00437315
0.00440391
0.00443315
0.004463
0.00449535
0.00453693
0.00166904
0.0011485
0.000894755
0.000753975
0.000668107
0.000612547
0.000576289
0.000554889
0.000547794
0.000557133
0.000586747
0.000640991
0.000723657
0.000837698
0.000985055
0.00116537
0.00137532
0.00160871
0.00185803
0.00211622
0.0023779
0.00263926
0.002898
0.00315289
0.00340321
0.00364846
0.00388823
0.00412209
0.00434962
0.0045705
0.00478464
0.00499238
0.00519457
0.00539165
0.00558411
0.000836881
0.000639199
0.000542271
0.000505672
0.000489481
0.000481042
0.000476359
0.000473853
0.000472648
0.000472271
0.000472445
0.00047301
0.000473861
0.000474927
0.000476157
0.000477512
0.000478957
0.000480461
0.000481998
0.000483542
0.000485074
0.000486576
0.000488037
0.000489444
0.000490793
0.000492076
0.000493292
0.000494438
0.000495517
0.000496538
0.000497514
0.00049847
0.000499397
0.000500322
0.000501055
0.00167027
0.00121306
0.00114818
0.00125546
0.0014217
0.00160347
0.00178166
0.00194705
0.0020959
0.00222632
0.00233764
0.00242967
0.00250279
0.00255799
0.00259683
0.00262131
0.00263368
0.00263622
0.00263114
0.00262036
0.00260555
0.00258801
0.00256878
0.00254866
0.00252831
0.00250826
0.00248892
0.00247053
0.00245298
0.00243566
0.00241757
0.00239759
0.00237611
0.0023544
0.00234296
0.00167169
0.00120701
0.00113113
0.0012345
0.00140296
0.00158954
0.0017737
0.00194466
0.00209877
0.0022346
0.00235137
0.00244884
0.00252716
0.00258705
0.00262986
0.00265749
0.00267222
0.00267642
0.00267241
0.00266226
0.00264773
0.00263026
0.00261099
0.00259082
0.00257042
0.00255026
0.00253054
0.00251117
0.00249182
0.00247223
0.00245282
0.00243522
0.00242307
0.00241897
0.00242921
0.00117117
0.000769317
0.000712816
0.000730453
0.000763613
0.000799254
0.000833379
0.000864329
0.000891957
0.000916599
0.000938591
0.000958255
0.000975944
0.000992017
0.00100678
0.00102044
0.00103318
0.00104513
0.00105639
0.00106701
0.00107704
0.00108652
0.00109549
0.001104
0.00111212
0.00111989
0.00112725
0.00113411
0.00114035
0.00114607
0.00115168
0.00115774
0.00116498
0.0011724
0.00118216
0.00161529
0.00117097
0.00112494
0.00121422
0.00133875
0.00146654
0.0015857
0.00169244
0.00178598
0.00186623
0.00193317
0.00198681
0.00202744
0.00205577
0.00207297
0.00208052
0.00208008
0.0020733
0.00206173
0.00204673
0.0020294
0.00201062
0.00199106
0.00197124
0.00195161
0.00193254
0.00191432
0.00189707
0.00188054
0.00186399
0.00184632
0.00182647
0.00180522
0.00178432
0.00177505
0.00161428
0.00116556
0.00111409
0.00120015
0.00132476
0.00145386
0.00157399
0.00168109
0.00177465
0.00185492
0.00192196
0.00197588
0.00201697
0.00204587
0.00206362
0.00207162
0.00207148
0.00206488
0.00205339
0.00203838
0.00202102
0.00200221
0.00198267
0.00196297
0.00194351
0.00192456
0.00190614
0.00188801
0.00186983
0.00185141
0.00183344
0.00181782
0.00180826
0.00180639
0.00181758
0.000981082
0.000645796
0.000584574
0.000578143
0.000585952
0.000598665
0.00061286
0.000626881
0.00064001
0.000652061
0.000663108
0.000673261
0.000682645
0.00069139
0.000699616
0.000707431
0.000714922
0.000722159
0.000729197
0.000736078
0.00074283
0.000749481
0.000756065
0.000762619
0.000769159
0.000775651
0.000781999
0.000788085
0.000793899
0.000799654
0.000805805
0.00081277
0.000820541
0.000828114
0.000834041
0.00084067
0.000640891
0.000543629
0.000507051
0.000490735
0.0004822
0.000477503
0.000474998
0.000473811
0.000473451
0.000473645
0.000474231
0.000475102
0.000476186
0.000477429
0.000478789
0.000480228
0.000481712
0.000483212
0.0004847
0.000486157
0.000487565
0.000488911
0.000490189
0.000491392
0.000492518
0.000493568
0.000494543
0.000495446
0.000496287
0.000497078
0.000497847
0.000498588
0.000499355
0.000499895
0.00112147
0.000731672
0.000679003
0.000691228
0.000716858
0.000746543
0.000776261
0.000804095
0.000829056
0.000851076
0.000870454
0.000887369
0.000901952
0.000914297
0.000924488
0.000932603
0.000938757
0.000943109
0.000945856
0.000947217
0.00094742
0.000946688
0.00094523
0.000943239
0.000940883
0.000938298
0.000935573
0.000932739
0.00092977
0.00092663
0.000923395
0.000920319
0.000918316
0.000917516
0.000921544
0.00151498
0.00103155
0.000954083
0.00101251
0.00110835
0.00120816
0.00130132
0.00138481
0.00145847
0.00152314
0.00157993
0.00162979
0.0016739
0.00171326
0.00174875
0.00178104
0.00181072
0.00183823
0.00186395
0.00188816
0.00191108
0.00193288
0.00195369
0.00197367
0.00199288
0.00201135
0.00202897
0.00204558
0.00206111
0.00207587
0.00209065
0.00210654
0.00212439
0.00214326
0.00216238
0.00166894
0.00114672
0.000892741
0.000751794
0.0006655
0.000608654
0.000569276
0.000541326
0.000521821
0.00050961
0.000504827
0.000508636
0.000523018
0.000550538
0.000594075
0.000656704
0.000741704
0.000852341
0.000991092
0.00115867
0.0013535
0.00157187
0.00180869
0.0020585
0.00231628
0.00257805
0.00284097
0.00310329
0.00336397
0.00362243
0.00387838
0.00413181
0.0043829
0.00463168
0.0048766
0.00087504
0.000673426
0.000571712
0.000531539
0.000513755
0.000504804
0.000500016
0.000497561
0.000496496
0.000496289
0.000496638
0.000497367
0.000498368
0.000499571
0.000500932
0.000502418
0.000504006
0.000505676
0.000507409
0.000509191
0.000511009
0.000512852
0.000514711
0.000516577
0.000518441
0.00052029
0.000522113
0.000523904
0.000525667
0.000527426
0.000529202
0.000531002
0.000532788
0.000534384
0.000536147
0.000848258
0.000647139
0.000549634
0.000511684
0.000494779
0.000486235
0.000481664
0.000479331
0.000478327
0.000478137
0.000478474
0.000479174
0.000480138
0.0004813
0.000482619
0.000484063
0.000485607
0.000487232
0.000488921
0.000490661
0.000492439
0.000494245
0.000496074
0.000497917
0.000499766
0.000501611
0.000503437
0.00050524
0.000507028
0.000508827
0.000510665
0.000512547
0.000514418
0.000516064
0.000517858
0.00166991
0.00114813
0.000899961
0.000777743
0.00073635
0.000768356
0.000874043
0.00104378
0.00126074
0.00151015
0.00177993
0.00205952
0.00234021
0.00261561
0.00288141
0.00313509
0.00337525
0.00360168
0.00381459
0.00401448
0.00420204
0.00437802
0.00454327
0.00469869
0.00484515
0.00498339
0.00511384
0.0052367
0.00535218
0.00546116
0.00556564
0.00566824
0.00577093
0.00587188
0.00596848
0.00166974
0.00115414
0.000902044
0.000764196
0.000686169
0.000649106
0.000650083
0.000693494
0.000783901
0.000921341
0.00110198
0.00131971
0.00156575
0.00182859
0.00209596
0.002357
0.00260351
0.00283016
0.00303418
0.00321482
0.00337273
0.00350949
0.0036272
0.00372821
0.00381487
0.00388946
0.00395402
0.0040103
0.0040597
0.00410325
0.00414189
0.00417672
0.00420987
0.00424361
0.00428411
0.000828248
0.000630061
0.000534354
0.000497343
0.000481036
0.000472841
0.000468468
0.000466243
0.000465299
0.000465149
0.000465519
0.000466246
0.000467223
0.000468386
0.000469693
0.000471115
0.000472631
0.00047422
0.000475866
0.000477555
0.000479274
0.000481011
0.000482758
0.000484505
0.000486243
0.000487962
0.000489651
0.000491302
0.00049292
0.000494521
0.000496124
0.000497743
0.000499355
0.00050082
0.000502423
0.000670824
0.000461275
0.000408313
0.000391572
0.000387406
0.000388342
0.000391172
0.000394612
0.000398139
0.000401464
0.000404363
0.000406635
0.000408134
0.000408776
0.000408546
0.00040749
0.000405698
0.00040329
0.000400397
0.000397144
0.000393645
0.000389996
0.000386279
0.000382562
0.000378893
0.000375301
0.000371786
0.000368324
0.000364893
0.000361514
0.000358318
0.000355558
0.000353604
0.000352457
0.000352338
0.000889572
0.000602744
0.000548164
0.000538073
0.000540491
0.000547831
0.000556848
0.000565971
0.000574496
0.000582115
0.00058856
0.000593579
0.000596977
0.000598663
0.000598674
0.000597146
0.000594283
0.000590326
0.000585518
0.000580088
0.000574235
0.000568125
0.000561891
0.000555648
0.00054949
0.000543499
0.000537733
0.000532196
0.000526819
0.000521433
0.000515846
0.000509935
0.000504077
0.000498704
0.000496308
0.00095245
0.000751678
0.000642738
0.000600098
0.000581115
0.000571306
0.000566023
0.000563217
0.00056184
0.000561313
0.000561274
0.000561484
0.000561754
0.000561939
0.000561935
0.000561672
0.000561116
0.00056026
0.00055912
0.000557728
0.000556123
0.000554349
0.000552449
0.000550462
0.000548425
0.000546367
0.000544314
0.000542285
0.000540289
0.000538332
0.000536407
0.00053454
0.000532677
0.000531178
0.000528977
0.000842827
0.000512202
0.000461906
0.000460788
0.000472335
0.000487617
0.000502987
0.000517398
0.000530579
0.000542528
0.000553339
0.000563139
0.000572055
0.000580217
0.000587727
0.000594664
0.00060108
0.000607015
0.00061249
0.000617524
0.000622131
0.00062633
0.000630146
0.000633615
0.000636781
0.000639684
0.000642346
0.000644757
0.000646901
0.000648785
0.000650535
0.000652326
0.000654596
0.000656829
0.000661405
0.000875459
0.000678364
0.000574021
0.000534578
0.000517028
0.000507906
0.000503012
0.000500471
0.000499292
0.000498916
0.000499005
0.000499322
0.000499689
0.000499968
0.000500059
0.000499897
0.00049945
0.000498715
0.000497711
0.000496469
0.000495031
0.000493438
0.000491731
0.000489948
0.000488121
0.000486275
0.000484432
0.000482603
0.000480799
0.000479034
0.000477322
0.00047572
0.00047419
0.000473077
0.000471195
0.00166285
0.00118701
0.00110424
0.00119561
0.00134998
0.00152278
0.00169477
0.00185677
0.00200499
0.00213858
0.00225804
0.00236446
0.0024596
0.00254501
0.00262197
0.00269149
0.0027545
0.00281175
0.00286387
0.00291142
0.00295485
0.00299459
0.00303105
0.00306465
0.0030958
0.00312483
0.00315186
0.00317675
0.00319937
0.00321998
0.00323966
0.00326009
0.00328308
0.00330737
0.00333486
0.0014963
0.00103201
0.000971845
0.00103409
0.00112585
0.0012191
0.0013056
0.0013832
0.00145192
0.00151249
0.00156587
0.00161292
0.00165441
0.00169101
0.00172326
0.0017516
0.0017764
0.00179798
0.00181663
0.00183265
0.00184632
0.00185792
0.00186774
0.00187606
0.00188316
0.00188928
0.00189464
0.00189935
0.00190345
0.00190696
0.00191005
0.00191299
0.00191671
0.00192057
0.00193023
0.000961268
0.00064608
0.000579144
0.000565666
0.000568347
0.000577136
0.000588104
0.000599393
0.000610202
0.000620256
0.000629582
0.000638247
0.000646336
0.000653945
0.000661167
0.000668084
0.000674759
0.000681247
0.000687588
0.000693812
0.000699938
0.000705988
0.000711986
0.000717964
0.000723935
0.000729868
0.000735675
0.000741247
0.000746565
0.000751812
0.000757391
0.000763685
0.000770706
0.000777588
0.000782961
0.00164289
0.00116957
0.00108993
0.00116981
0.00130476
0.00145311
0.00159737
0.00173068
0.00185103
0.00195854
0.00205423
0.00213941
0.00221537
0.0022833
0.00234425
0.00239907
0.00244844
0.0024929
0.00253291
0.00256888
0.00260117
0.00263012
0.00265607
0.00267936
0.00270034
0.00271931
0.00273656
0.00275227
0.00276652
0.00277941
0.00279122
0.00280248
0.00281468
0.00282787
0.00284966
0.00167157
0.0011541
0.000928386
0.000860978
0.000913716
0.00105944
0.00126304
0.00149873
0.00175072
0.00200726
0.00225947
0.0025014
0.00273015
0.00294422
0.00314302
0.00332654
0.00349499
0.00364876
0.00378841
0.00391462
0.00402827
0.00413035
0.00422195
0.00430425
0.00437841
0.00444558
0.00450674
0.00456273
0.00461417
0.00466162
0.00470582
0.00474793
0.00479005
0.00483333
0.00488448
0.00167635
0.00118259
0.00105042
0.00112243
0.00129804
0.00151361
0.0017395
0.00196081
0.00216968
0.00236264
0.00253877
0.00269861
0.00284342
0.00297466
0.00309378
0.00320211
0.0033009
0.00339123
0.00347408
0.00355029
0.0036206
0.00368568
0.00374616
0.00380267
0.00385577
0.0039058
0.00395279
0.00399646
0.00403671
0.00407424
0.00411095
0.00414932
0.00419086
0.00423282
0.00427248
0.00167406
0.00116778
0.000972659
0.000963208
0.00108561
0.00128315
0.00151441
0.00175761
0.00199838
0.00222606
0.00243436
0.00261934
0.00277879
0.00291211
0.0030201
0.00310466
0.00316841
0.00321433
0.00324547
0.00326467
0.00327448
0.00327709
0.00327437
0.00326784
0.00325876
0.00324808
0.00323648
0.00322427
0.00321144
0.00319791
0.00318394
0.0031708
0.00316163
0.00315956
0.00317087
0.000993867
0.000676304
0.000615954
0.000608543
0.000615012
0.000625964
0.000637906
0.000649347
0.000660028
0.000669905
0.000678948
0.000687134
0.000694432
0.000700803
0.000706213
0.000710649
0.000714118
0.00071666
0.000718338
0.000719242
0.000719474
0.000719144
0.000718361
0.000717227
0.000715838
0.000714276
0.000712614
0.0007109
0.000709167
0.000707411
0.000705641
0.00070383
0.000702193
0.000700365
0.000700499
0.000927806
0.000724335
0.000616137
0.000574271
0.000555791
0.000546182
0.000540876
0.000537988
0.00053655
0.000536034
0.000536123
0.000536605
0.000537331
0.000538181
0.000539057
0.000539883
0.000540599
0.000541161
0.000541547
0.000541745
0.000541761
0.000541608
0.000541304
0.000540872
0.000540338
0.000539723
0.00053905
0.000538337
0.000537597
0.000536844
0.000536085
0.000535347
0.000534601
0.00053405
0.000533032
0.00167136
0.00115801
0.000922144
0.000827781
0.000838048
0.000939693
0.00111191
0.00133029
0.00157521
0.00182961
0.00207815
0.00230892
0.00251468
0.00269246
0.00284202
0.00296466
0.00306257
0.00313835
0.00319479
0.0032347
0.00326078
0.00327551
0.00328113
0.0032796
0.00327267
0.00326191
0.00324865
0.00323386
0.00321795
0.00320054
0.00318063
0.00315711
0.00313046
0.00310397
0.00308711
0.00167138
0.00115792
0.000920742
0.000823607
0.000829889
0.000928317
0.00109955
0.00131801
0.00156262
0.00181577
0.00206278
0.00229268
0.00249864
0.00267759
0.00282898
0.0029538
0.00305388
0.00313158
0.00318956
0.00323058
0.00325736
0.00327245
0.00327822
0.00327675
0.00326982
0.0032589
0.00324499
0.00322867
0.00321017
0.00318993
0.0031693
0.00315124
0.00314038
0.00314038
0.00315186
0.00166893
0.00114628
0.000892282
0.000751349
0.000665037
0.000608074
0.000568367
0.000539692
0.000518782
0.000504075
0.000495173
0.000492606
0.000497718
0.000512547
0.000539623
0.000581745
0.000641865
0.000723104
0.00082856
0.000960651
0.00112028
0.00130636
0.00151595
0.0017449
0.00198865
0.00224298
0.00250438
0.0027702
0.0030385
0.00330789
0.00357738
0.00384636
0.00411447
0.00438121
0.0046439
0.00167234
0.00117783
0.00102947
0.00108129
0.00124183
0.00144905
0.00167287
0.00189591
0.00210661
0.00229742
0.00246285
0.00260033
0.00270981
0.00279262
0.0028512
0.00288872
0.00290873
0.0029147
0.00290983
0.00289686
0.00287803
0.00285514
0.00282958
0.00280249
0.00277482
0.00274743
0.00272092
0.00269555
0.0026708
0.00264516
0.00261652
0.00258332
0.00254719
0.0025145
0.00249955
0.00167361
0.00118239
0.00104372
0.0011104
0.00128412
0.00149875
0.00172453
0.00194587
0.0021529
0.00233933
0.00250083
0.00263478
0.00274123
0.00282146
0.00287785
0.0029135
0.00293189
0.00293644
0.00293032
0.00291624
0.00289643
0.00287268
0.00284649
0.00281904
0.0027912
0.00276341
0.00273566
0.00270752
0.00267853
0.00264918
0.00262204
0.0026023
0.0025966
0.00260692
0.00262709
0.0016645
0.00120938
0.00115229
0.00127107
0.00144738
0.00163303
0.00180961
0.00197015
0.00211227
0.00223663
0.00234442
0.00243652
0.00251363
0.00257653
0.00262613
0.00266357
0.00269021
0.00270753
0.00271712
0.0027205
0.0027191
0.00271415
0.00270669
0.00269758
0.0026875
0.00267699
0.00266648
0.0026563
0.0026466
0.00263732
0.0026282
0.00261868
0.0026089
0.00259791
0.00259325
0.00103749
0.000651796
0.00060156
0.000618652
0.000650764
0.000685104
0.000717519
0.000746787
0.000772854
0.000796017
0.000816635
0.000835037
0.000851513
0.000866297
0.000879582
0.000891517
0.000902215
0.000911765
0.000920244
0.000927725
0.000934282
0.000939996
0.000944955
0.000949255
0.000952999
0.000956287
0.000959194
0.00096175
0.000963959
0.000965822
0.000967463
0.000969068
0.0009712
0.000973363
0.000978701
0.00167323
0.00116563
0.000996681
0.00102651
0.00117378
0.00137563
0.00159992
0.0018301
0.00205556
0.00226986
0.00246975
0.00265413
0.00282317
0.00297773
0.00311898
0.00324823
0.0033668
0.00347591
0.00357668
0.0036701
0.00375706
0.00383834
0.00391469
0.00398683
0.00405531
0.0041204
0.00418204
0.00424001
0.00429454
0.00434696
0.00439982
0.00445565
0.00451472
0.00457208
0.00461996
0.00167215
0.00115912
0.000934083
0.000865747
0.000918019
0.00106522
0.00127253
0.00151262
0.0017679
0.00202485
0.00227285
0.00250445
0.00271494
0.0029018
0.00306421
0.00320271
0.00331883
0.0034147
0.00349281
0.00355569
0.00360581
0.00364544
0.00367661
0.00370107
0.00372036
0.00373575
0.00374825
0.00375857
0.00376709
0.00377399
0.00377953
0.00378447
0.00379107
0.00380161
0.00382358
0.00108371
0.000707181
0.000658728
0.000673428
0.000700147
0.000729459
0.00075828
0.000784789
0.000808452
0.000829522
0.000848295
0.000865012
0.000879921
0.000893242
0.000905142
0.000915734
0.0009251
0.0009333
0.000940396
0.000946457
0.000951566
0.000955816
0.000959308
0.00096215
0.000964454
0.000966322
0.000967838
0.000969045
0.000969953
0.000970543
0.000970875
0.00097108
0.000971932
0.000973105
0.000979729
0.000806999
0.000611751
0.000517352
0.000481864
0.000465895
0.000457499
0.000452876
0.000450402
0.000449222
0.000448852
0.000449019
0.000449563
0.000450378
0.000451393
0.000452555
0.00045382
0.000455148
0.000456504
0.000457857
0.000459182
0.000460457
0.000461667
0.000462803
0.000463859
0.000464832
0.000465724
0.000466537
0.000467276
0.000467945
0.000468556
0.00046912
0.000469665
0.000470186
0.000470756
0.000471119
0.00125986
0.000824752
0.000765087
0.000795875
0.000844928
0.00089521
0.00094215
0.000984242
0.00102123
0.00105383
0.0010826
0.00110812
0.00113094
0.00115155
0.00117036
0.00118768
0.00120375
0.00121878
0.00123291
0.00124624
0.00125885
0.0012708
0.00128217
0.00129304
0.00130349
0.00131356
0.00132316
0.00133212
0.00134034
0.00134793
0.00135547
0.00136374
0.00137348
0.00138357
0.00139519
0.0016733
0.00116382
0.000969916
0.000963971
0.00108844
0.00128527
0.00151511
0.001758
0.00200094
0.00223498
0.00245462
0.00265688
0.00284015
0.00300421
0.00314923
0.0032758
0.00338486
0.00347768
0.0035558
0.00362095
0.00367492
0.0037195
0.00375633
0.00378694
0.00381266
0.00383464
0.00385383
0.00387098
0.00388664
0.00390111
0.00391462
0.00392732
0.00394008
0.00395243
0.00397185
0.00166355
0.00120478
0.00114403
0.00126267
0.00144168
0.00163215
0.00181467
0.00198134
0.00212979
0.00226041
0.00237433
0.00247258
0.00255597
0.00262528
0.00268138
0.00272531
0.00275829
0.00278169
0.00279698
0.00280565
0.0028091
0.00280857
0.00280513
0.00279969
0.00279297
0.00278555
0.00277791
0.00277039
0.00276321
0.00275633
0.0027496
0.00274254
0.00273542
0.00272709
0.00272558
0.00143359
0.000964949
0.000899235
0.000946816
0.00101937
0.0010928
0.00116072
0.00122122
0.0012743
0.00132076
0.00136159
0.00139772
0.00142993
0.00145893
0.00148528
0.00150945
0.00153182
0.00155271
0.00157238
0.00159104
0.00160883
0.0016259
0.00164239
0.00165846
0.00167422
0.00168965
0.00170457
0.00171866
0.00173183
0.00174449
0.00175776
0.00177287
0.00179023
0.00180765
0.0018225
0.00155285
0.00109701
0.00104916
0.00113832
0.00125794
0.00137463
0.00147919
0.0015699
0.00164737
0.00171355
0.0017702
0.00181833
0.00185854
0.00189128
0.00191703
0.00193632
0.00194979
0.00195817
0.00196224
0.0019628
0.00196061
0.00195635
0.00195061
0.00194387
0.00193655
0.00192897
0.0019214
0.00191402
0.00190695
0.00190014
0.00189343
0.00188645
0.00187952
0.00187148
0.00186976
0.00125721
0.000806634
0.00074296
0.000772776
0.000821096
0.00087067
0.000917145
0.000959043
0.000996125
0.00102881
0.00105771
0.00108343
0.00110649
0.00112735
0.0011464
0.001164
0.00118041
0.00119586
0.00121053
0.00122456
0.00123807
0.00125115
0.00126391
0.00127644
0.00128881
0.00130099
0.0013128
0.00132402
0.00133462
0.00134503
0.00135618
0.00136898
0.00138348
0.00139788
0.00140886
0.00166939
0.00114771
0.000895762
0.000762052
0.000694395
0.000677786
0.000712801
0.000802831
0.00094577
0.0011344
0.00136041
0.0016147
0.00188721
0.00216833
0.00245018
0.002727
0.00299499
0.00325182
0.00349633
0.0037281
0.00394719
0.00415394
0.0043489
0.00453274
0.00470625
0.00487016
0.00502505
0.00517127
0.00530917
0.0054395
0.00556387
0.00568462
0.00580387
0.00592105
0.0060348
0.00167028
0.00115334
0.000908332
0.000793155
0.000766299
0.000820923
0.000951621
0.0011422
0.00137398
0.00163137
0.00190041
0.002169
0.00242759
0.00266964
0.00289183
0.00309262
0.00327183
0.00343027
0.00356946
0.00369127
0.00379768
0.00389065
0.00397205
0.00404361
0.00410693
0.00416341
0.00421428
0.00426051
0.00430278
0.00434158
0.00437742
0.00441116
0.00444483
0.0044804
0.00452437
0.00167597
0.00118075
0.00102327
0.00106549
0.00122411
0.00143499
0.00166519
0.00189694
0.00211811
0.00232067
0.00249948
0.00265148
0.00277562
0.0028726
0.00294445
0.00299407
0.00302484
0.0030402
0.0030434
0.00303729
0.00302429
0.00300637
0.00298514
0.00296189
0.0029376
0.00291296
0.00288823
0.00286328
0.00283778
0.00281181
0.00278671
0.00276578
0.0027542
0.00275507
0.00276884
0.00167379
0.00116815
0.0009735
0.00096315
0.00108308
0.00127906
0.00151093
0.001756
0.00199873
0.00222754
0.00243402
0.00261287
0.00276224
0.00288245
0.00297533
0.00304376
0.00309114
0.00312099
0.00313663
0.00314108
0.00313688
0.00312617
0.0031107
0.00309191
0.00307098
0.003049
0.00302682
0.00300498
0.00298342
0.00296134
0.0029373
0.00290991
0.00287977
0.00285047
0.00283289
0.00166963
0.00114727
0.000897951
0.00077328
0.000726269
0.0007473
0.000836512
0.000987495
0.00118728
0.00142321
0.0016836
0.00195728
0.0022347
0.00250877
0.00277476
0.00302976
0.00327225
0.00350164
0.00371796
0.00392163
0.0041133
0.00429377
0.00446389
0.00462456
0.00477666
0.00492086
0.00505754
0.0051869
0.00530927
0.00542571
0.00553838
0.00564987
0.00576157
0.0058709
0.00597248
0.00167774
0.00117548
0.00101382
0.00105242
0.00120902
0.00142033
0.00165402
0.00189316
0.00212699
0.00234899
0.00255582
0.00274648
0.00292127
0.00308113
0.00322718
0.00336071
0.00348303
0.00359531
0.00369865
0.00379402
0.00388229
0.00396427
0.00404071
0.00411237
0.00417988
0.00424365
0.00430367
0.00435966
0.00441158
0.00446037
0.00450833
0.00455822
0.00461138
0.0046642
0.00471222
0.000889893
0.000602728
0.000543038
0.000531975
0.000534802
0.000542197
0.000550724
0.000559116
0.000567009
0.000574341
0.000581056
0.000587149
0.000592579
0.000597294
0.000601253
0.000604434
0.000606837
0.00060849
0.000609447
0.000609781
0.000609579
0.000608931
0.000607927
0.000606653
0.000605185
0.000603591
0.000601931
0.000600244
0.000598556
0.000596866
0.000595176
0.000593455
0.000591871
0.000590125
0.000590023
0.000920943
0.000713951
0.000607199
0.00056455
0.000545562
0.000535977
0.000530842
0.000528204
0.000527051
0.00052681
0.000527161
0.000527914
0.000528958
0.000530221
0.000531656
0.000533229
0.000534912
0.000536685
0.000538529
0.000540428
0.00054237
0.000544343
0.000546339
0.00054835
0.000550366
0.000552375
0.000554363
0.000556324
0.000558266
0.000560218
0.000562209
0.000564243
0.000566259
0.00056804
0.000569941
0.00167161
0.00115775
0.000928137
0.000849738
0.000886032
0.00101695
0.00121368
0.00144964
0.00170521
0.00196487
0.00221688
0.00245307
0.00266853
0.00286054
0.00302802
0.00317181
0.00329347
0.00339516
0.00347926
0.0035482
0.00360429
0.00364969
0.00368633
0.00371593
0.00373999
0.00375979
0.00377645
0.00379087
0.00380378
0.00381555
0.00382632
0.00383584
0.00384431
0.0038511
0.00386247
0.00088146
0.000588936
0.000529409
0.000516854
0.000518755
0.000526285
0.000535807
0.000545648
0.00055507
0.00056391
0.00057214
0.000579782
0.000586901
0.000593587
0.000599921
0.000605966
0.000611772
0.000617371
0.000622785
0.000628023
0.000633086
0.000637977
0.000642705
0.000647286
0.000651737
0.000656054
0.000660193
0.000664082
0.000667677
0.000671044
0.000674424
0.000678113
0.000682379
0.00068665
0.000691727
0.00167387
0.00116894
0.00100194
0.00103366
0.00118282
0.00138619
0.00161189
0.00184395
0.00207191
0.00228906
0.00249186
0.0026791
0.00285079
0.00300752
0.00315016
0.00327966
0.00339695
0.00350292
0.00359844
0.00368435
0.0037615
0.00383072
0.00389284
0.00394873
0.00399923
0.00404512
0.00408702
0.00412527
0.00416008
0.00419182
0.00422145
0.00425054
0.00428115
0.00431305
0.00434895
0.00100777
0.000678548
0.000615031
0.000604384
0.000608156
0.000617531
0.000628983
0.000640781
0.00065206
0.000662559
0.000672263
0.000681179
0.000689406
0.000697021
0.000704084
0.000710632
0.000716685
0.000722245
0.000727313
0.000731892
0.000735992
0.000739633
0.000742843
0.000745659
0.000748126
0.000750289
0.00075219
0.000753848
0.000755274
0.000756467
0.000757477
0.000758392
0.000759631
0.00076101
0.000765198
0.00123805
0.000814695
0.000756288
0.000782876
0.000826878
0.000872449
0.000915318
0.000953942
0.000988001
0.00101793
0.00104442
0.00106802
0.00108921
0.00110845
0.00112608
0.00114241
0.00115768
0.00117209
0.0011858
0.00119894
0.0012116
0.00122386
0.00123581
0.00124755
0.00125915
0.00127057
0.00128167
0.00129221
0.00130213
0.00131176
0.00132192
0.0013335
0.00134672
0.00135996
0.00137074
0.000833265
0.000635277
0.000541037
0.000507741
0.000493086
0.00048555
0.000481587
0.00047957
0.00047865
0.000478316
0.000478247
0.000478202
0.000477999
0.000477508
0.000476653
0.000475408
0.000473785
0.000471826
0.000469586
0.000467127
0.000464509
0.000461789
0.000459012
0.00045622
0.000453441
0.000450694
0.000447986
0.000445321
0.00044271
0.000440189
0.00043782
0.000435715
0.000433822
0.000432447
0.000429935
0.000818238
0.000630107
0.000537409
0.000503413
0.00048812
0.000480089
0.000475794
0.000473601
0.000472614
0.000472259
0.000472188
0.000472152
0.000471962
0.000471485
0.000470647
0.000469425
0.000467834
0.000465915
0.000463724
0.000461319
0.000458759
0.000456097
0.000453378
0.000450639
0.000447915
0.00044523
0.000442601
0.000440032
0.000437511
0.000435019
0.000432537
0.000430114
0.000427751
0.000426012
0.000423721
0.00167167
0.00115884
0.000929582
0.000850972
0.000887407
0.00101783
0.00121139
0.00144114
0.00168813
0.00193665
0.0021735
0.00238877
0.00257681
0.00273594
0.00286657
0.00297047
0.00305021
0.00310878
0.00314928
0.00317469
0.00318779
0.00319102
0.00318653
0.0031762
0.00316165
0.00314433
0.00312542
0.00310569
0.00308521
0.00306313
0.00303803
0.00300874
0.00297645
0.00294635
0.00292999
0.00167199
0.00115995
0.000933498
0.000861085
0.000906563
0.00104531
0.00124412
0.00147624
0.00172325
0.00196979
0.00220337
0.00241484
0.00259887
0.00275407
0.00288101
0.00298153
0.00305822
0.00311406
0.0031521
0.0031753
0.00318642
0.00318793
0.00318201
0.00317055
0.00315507
0.0031368
0.00311644
0.00309423
0.00307023
0.00304497
0.00302042
0.00300057
0.00299093
0.00299451
0.00300807
0.00160013
0.00112915
0.00105461
0.0011224
0.00123305
0.00135043
0.00146089
0.00155953
0.00164551
0.00171945
0.00178193
0.00183345
0.00187441
0.00190535
0.001927
0.00194033
0.00194647
0.00194668
0.0019422
0.0019342
0.00192366
0.00191144
0.0018982
0.00188448
0.00187069
0.00185712
0.00184391
0.00183104
0.00181834
0.0018056
0.00179293
0.00178097
0.00177187
0.00176636
0.00177225
0.000756821
0.000568924
0.000483857
0.00045181
0.000437627
0.00043046
0.000426622
0.000424658
0.000423822
0.000423692
0.000424025
0.000424681
0.000425567
0.000426624
0.000427815
0.000429112
0.000430493
0.000431938
0.000433431
0.000434957
0.000436502
0.000438055
0.000439605
0.000441144
0.000442663
0.000444152
0.000445603
0.00044701
0.000448374
0.000449705
0.000451022
0.000452345
0.00045366
0.000454896
0.000456189
0.00167457
0.00117639
0.00103435
0.00109715
0.00126712
0.00147961
0.0017046
0.00192698
0.00213838
0.00233472
0.00251457
0.00267823
0.0028268
0.00296158
0.00308376
0.00319465
0.00329537
0.00338688
0.00347005
0.00354568
0.00361447
0.00367711
0.00373423
0.00378648
0.00383451
0.00387888
0.00391992
0.00395767
0.00399214
0.00402364
0.00405338
0.0040833
0.00411549
0.00414915
0.00418557
0.00159253
0.00112835
0.00105924
0.00113061
0.00124198
0.00135802
0.00146621
0.00156251
0.00164636
0.00171827
0.00177884
0.00182854
0.0018678
0.00189719
0.00191752
0.00192979
0.00193516
0.00193483
0.00193
0.00192178
0.00191111
0.0018988
0.00188549
0.00187166
0.00185772
0.00184398
0.0018307
0.00181804
0.00180599
0.00179431
0.00178255
0.00177006
0.00175711
0.00174303
0.00173607
0.00166904
0.00114868
0.000895044
0.000754192
0.000667876
0.000611
0.000571655
0.000543891
0.000524879
0.000513728
0.000510984
0.000518385
0.000538638
0.000575079
0.00063133
0.000711189
0.000818672
0.000957629
0.00113091
0.00133883
0.00157894
0.00184635
0.00213455
0.00243645
0.00274529
0.00305527
0.00336181
0.0036616
0.00395238
0.0042328
0.00450218
0.00476045
0.00500818
0.00524601
0.00547515
0.000883797
0.000683564
0.000582626
0.00054314
0.000525241
0.000515819
0.000510664
0.00050798
0.000506789
0.000506491
0.00050676
0.000507412
0.000508329
0.000509432
0.000510658
0.000511952
0.000513269
0.000514564
0.000515803
0.000516958
0.000518011
0.00051895
0.000519773
0.00052048
0.000521079
0.000521578
0.000521987
0.000522317
0.000522576
0.000522778
0.000522936
0.000523084
0.000523233
0.000523474
0.000523606
0.00121675
0.000809482
0.000767783
0.000801197
0.000845312
0.000888819
0.000928676
0.000963759
0.000994028
0.00101974
0.0010409
0.00105739
0.00106916
0.00107633
0.00107921
0.00107832
0.00107426
0.00106766
0.00105913
0.00104922
0.00103838
0.00102698
0.0010153
0.00100358
0.000992029
0.000980812
0.000970067
0.000959817
0.000949912
0.00093994
0.000929379
0.000917776
0.000905861
0.000894388
0.000890157
0.00120214
0.000785018
0.000736236
0.000761671
0.000801092
0.000841994
0.000879477
0.000912386
0.000940882
0.00096517
0.000985199
0.00100083
0.00101201
0.00101881
0.00102153
0.00102061
0.00101662
0.00101015
0.00100181
0.000992128
0.000981546
0.000970436
0.000959096
0.000947763
0.000936616
0.000925754
0.000915169
0.000904734
0.000894277
0.000883762
0.00087362
0.000864851
0.000859417
0.000857412
0.000862853
0.00167234
0.00117784
0.00104349
0.00110767
0.00126837
0.00146691
0.00167755
0.00188658
0.00208607
0.0022719
0.00244241
0.00259731
0.00273698
0.00286216
0.00297374
0.00307261
0.00315967
0.00323582
0.00330197
0.0033591
0.00340818
0.00345024
0.00348627
0.00351722
0.00354402
0.00356747
0.00358828
0.00360692
0.00362373
0.00363892
0.0036529
0.00366631
0.00368056
0.00369538
0.0037172
0.00160258
0.00114579
0.00108829
0.00117587
0.00130667
0.00144507
0.0015769
0.00169626
0.00180097
0.00189003
0.00196314
0.00202061
0.0020629
0.00209097
0.0021063
0.00211072
0.0021063
0.00209502
0.00207871
0.0020589
0.00203685
0.00201348
0.00198957
0.00196575
0.00194242
0.00191973
0.00189745
0.00187505
0.00185208
0.00182893
0.00180787
0.00179325
0.0017906
0.00180047
0.00181855
0.00158702
0.00112637
0.00106486
0.00114503
0.00126702
0.00139594
0.00151818
0.00162834
0.00172464
0.00180611
0.00187269
0.00192471
0.00196265
0.00198742
0.00200042
0.00200339
0.00199822
0.00198676
0.00197071
0.00195147
0.00193018
0.00190766
0.00188455
0.00186141
0.00183871
0.00181688
0.00179626
0.00177686
0.00175815
0.00173882
0.00171711
0.00169172
0.00166415
0.00163905
0.00162905
0.00132417
0.000893457
0.000846863
0.00088704
0.000940866
0.000994739
0.00104474
0.00108923
0.00112739
0.00115967
0.00118596
0.00120619
0.00122033
0.00122857
0.00123142
0.00122955
0.0012238
0.00121498
0.00120388
0.00119117
0.00117742
0.00116306
0.00114844
0.00113383
0.00111948
0.0011056
0.00109237
0.00107979
0.00106763
0.00105529
0.00104199
0.00102714
0.00101165
0.000997143
0.000991326
0.001448
0.000971932
0.000902805
0.000948268
0.0010202
0.00109501
0.00116423
0.00122538
0.00127822
0.00132284
0.00135935
0.00138768
0.00140796
0.00142057
0.00142621
0.00142578
0.00142036
0.00141105
0.00139885
0.00138464
0.00136915
0.00135295
0.00133649
0.00132013
0.00130413
0.00128859
0.00127342
0.00125834
0.00124304
0.00122761
0.00121305
0.00120155
0.00119646
0.00119821
0.00120884
0.00166964
0.00115022
0.000900086
0.000770702
0.000713376
0.000716942
0.000783326
0.000911409
0.00109132
0.00131096
0.00155912
0.00182482
0.0020978
0.00236958
0.00263384
0.00288612
0.00312359
0.00334468
0.00354888
0.00373642
0.00390813
0.00406513
0.00420877
0.00434048
0.00446166
0.00457363
0.0046776
0.00477459
0.00486543
0.00495082
0.00503158
0.00510871
0.00518384
0.00525736
0.00533385
0.00108731
0.000736892
0.000691774
0.000701294
0.000721104
0.000743355
0.000764609
0.000783864
0.000800767
0.000815554
0.000828363
0.000839227
0.000848095
0.00085492
0.000859715
0.000862561
0.000863603
0.000863043
0.000861117
0.000858076
0.000854163
0.000849604
0.000844596
0.000839308
0.00083388
0.000828431
0.00082306
0.000817831
0.000812776
0.000807846
0.000802968
0.000797964
0.000793043
0.000787619
0.000785073
0.00167229
0.00115798
0.000950166
0.000919219
0.00101805
0.0012007
0.0014267
0.00167327
0.00192647
0.00217631
0.00241612
0.00264209
0.00285242
0.00304654
0.00322456
0.00338699
0.00353452
0.00366793
0.00378809
0.00389593
0.00399248
0.00407879
0.00415596
0.0042251
0.0042873
0.00434362
0.00439491
0.00444178
0.00448467
0.00452404
0.0045608
0.00459636
0.00463276
0.00466994
0.00471237
0.00167111
0.00115588
0.000921956
0.000834533
0.000858838
0.00098031
0.0011723
0.00140637
0.00166246
0.00192549
0.00218377
0.00242912
0.00265621
0.00286186
0.00304459
0.00320445
0.00334248
0.00346037
0.00356019
0.00364418
0.00371456
0.00377344
0.00382277
0.0038643
0.00389957
0.00392993
0.00395654
0.00398034
0.0040021
0.00402227
0.00404108
0.00405849
0.00407489
0.00408985
0.0041096
0.00166885
0.00114404
0.000889627
0.000748556
0.000662251
0.000605264
0.00056535
0.000536066
0.000513774
0.000496308
0.000482331
0.00047101
0.000461845
0.000454586
0.000449191
0.000445824
0.000444862
0.000446917
0.000452856
0.000463816
0.000481198
0.000506681
0.000542243
0.000590205
0.000653216
0.000734054
0.000835226
0.000958495
0.00110451
0.00127266
0.00146119
0.00166761
0.00188898
0.0021222
0.00236131
0.00142643
0.000963626
0.000900903
0.000946669
0.00101393
0.00108065
0.00114126
0.00119438
0.00124086
0.00128159
0.00131751
0.00134942
0.00137794
0.00140365
0.00142702
0.00144843
0.00146819
0.0014865
0.00150354
0.00151943
0.00153425
0.00154807
0.00156098
0.00157303
0.00158429
0.00159484
0.00160472
0.00161391
0.00162238
0.00163016
0.00163746
0.00164463
0.00165274
0.00166119
0.00167677
0.00167454
0.00117676
0.00102987
0.00108232
0.00123722
0.00143442
0.00164759
0.00186196
0.00206806
0.00226076
0.00243758
0.00259762
0.00274081
0.00286759
0.00297865
0.00307482
0.00315706
0.00322649
0.00328439
0.00333214
0.00337115
0.00340283
0.00342849
0.00344935
0.00346647
0.00348078
0.00349303
0.00350381
0.0035135
0.0035223
0.00353039
0.00353793
0.00354591
0.00355379
0.00356935
0.0010485
0.000668294
0.000630742
0.000654297
0.000688037
0.000723297
0.000756582
0.000786352
0.000812045
0.000833467
0.000850611
0.000863432
0.000871896
0.000876125
0.000876446
0.000873356
0.000867453
0.000859341
0.000849604
0.000838753
0.000827194
0.00081523
0.000803116
0.000791078
0.000779327
0.000768052
0.000757378
0.000747255
0.000737355
0.000727017
0.000715494
0.000702445
0.000689137
0.000677923
0.000675446
0.00105842
0.000676032
0.000639067
0.000663992
0.000699001
0.000735286
0.000769395
0.000799861
0.000826162
0.000848052
0.000865568
0.000878673
0.000887335
0.00089168
0.000892041
0.000888923
0.000882932
0.000874682
0.000864762
0.000853693
0.000841907
0.000829729
0.000817458
0.000805328
0.000793492
0.000781978
0.000770661
0.0007593
0.000747745
0.000736303
0.00072613
0.00071917
0.000717659
0.000720703
0.000726526
0.00167699
0.00118913
0.00105881
0.0011317
0.00130546
0.00151788
0.00174058
0.00195775
0.00216022
0.00234307
0.00250417
0.00264259
0.00275855
0.00285285
0.00292683
0.00298238
0.00302184
0.00304766
0.00306234
0.00306824
0.00306745
0.00306174
0.00305256
0.00304107
0.00302819
0.00301467
0.0030011
0.00298791
0.00297532
0.00296315
0.00295093
0.00293783
0.00292379
0.00290844
0.00289934
0.0016671
0.00121819
0.00116682
0.00126612
0.00141264
0.00156878
0.00171937
0.00185816
0.00198317
0.00209458
0.0021935
0.00228144
0.00235987
0.00243021
0.00249362
0.00255112
0.00260359
0.00265176
0.00269624
0.00273753
0.00277606
0.00281219
0.0028463
0.00287876
0.00290986
0.0029397
0.00296805
0.00299448
0.00301885
0.00304188
0.00306543
0.00309161
0.00312124
0.00315079
0.00317696
0.00167085
0.00115094
0.000913792
0.000820598
0.000834158
0.000941997
0.00112209
0.00134758
0.0015988
0.00186173
0.00212588
0.00238404
0.00263179
0.00286679
0.003088
0.00329516
0.00348848
0.00366845
0.00383562
0.00399064
0.00413414
0.00426684
0.00438948
0.00450283
0.00460771
0.00470492
0.00479513
0.00487888
0.00495665
0.00502909
0.00509737
0.00516319
0.00522878
0.00529485
0.00536425
0.000473467
0.000307607
0.000267367
0.000254825
0.000251798
0.000252364
0.000254286
0.000256695
0.000259261
0.000261833
0.000264341
0.000266753
0.000269057
0.000271247
0.00027332
0.000275273
0.0002771
0.000278796
0.000280356
0.000281776
0.000283055
0.000284198
0.000285211
0.000286105
0.000286894
0.000287593
0.00028821
0.000288747
0.000289206
0.000289594
0.000289943
0.000290303
0.00029076
0.000291249
0.000292047
0.00166229
0.00118247
0.00108706
0.00117522
0.00133584
0.00152094
0.00170958
0.00189102
0.00206009
0.00221455
0.00235444
0.00248038
0.00259326
0.00269415
0.00278405
0.00286387
0.00293445
0.00299656
0.00305094
0.00309832
0.00313944
0.00317504
0.00320584
0.00323258
0.00325594
0.00327656
0.00329495
0.00331145
0.00332625
0.00333952
0.00335171
0.00336359
0.00337661
0.00339045
0.00341036
0.00141612
0.000961168
0.000899573
0.000940504
0.00100168
0.00106384
0.00112203
0.00117459
0.00122105
0.00126193
0.00129799
0.00132989
0.00135826
0.00138361
0.00140634
0.00142677
0.00144512
0.00146154
0.00147617
0.00148914
0.00150057
0.00151059
0.00151935
0.001527
0.00153369
0.00153959
0.00154482
0.00154945
0.00155351
0.001557
0.00156002
0.00156275
0.00156614
0.00157001
0.00158057
0.000856256
0.0006567
0.000557444
0.000519052
0.000501594
0.000492537
0.000487755
0.000485383
0.000484417
0.000484284
0.000484664
0.000485368
0.000486272
0.000487287
0.000488338
0.000489364
0.000490313
0.000491147
0.000491838
0.000492373
0.00049275
0.000492973
0.000493056
0.000493015
0.000492867
0.000492632
0.000492325
0.000491961
0.000491551
0.000491109
0.000490652
0.000490224
0.000489826
0.000489641
0.000489116
0.000883476
0.000684244
0.000580272
0.000541064
0.000523623
0.000514589
0.000509782
0.00050732
0.000506222
0.000505929
0.00050611
0.000506538
0.000507046
0.000507501
0.000507801
0.000507879
0.000507696
0.00050724
0.000506522
0.000505568
0.000504413
0.000503093
0.000501649
0.000500116
0.000498525
0.000496903
0.000495271
0.000493643
0.00049203
0.000490445
0.000488901
0.000487451
0.00048606
0.000485063
0.00048329
0.000904513
0.00061883
0.000550583
0.000531575
0.000529188
0.000533536
0.000540558
0.000548406
0.000556269
0.000563824
0.00057096
0.000577663
0.000583976
0.000589963
0.000595684
0.000601203
0.000606567
0.000611818
0.000616983
0.000622084
0.000627135
0.000632148
0.00063714
0.000642125
0.000647098
0.000652022
0.000656829
0.000661462
0.000665955
0.000670495
0.000675392
0.000680863
0.000686751
0.000692259
0.000696213
0.00167178
0.00115332
0.000934513
0.000883348
0.000958371
0.00112433
0.00134319
0.00158962
0.00184751
0.00210503
0.00235411
0.00259007
0.00281083
0.00301588
0.00320567
0.00338113
0.0035434
0.00369367
0.00383309
0.00396272
0.00408356
0.00419652
0.00430244
0.00440214
0.00449628
0.00458529
0.00466929
0.00474829
0.00482262
0.00489357
0.00496347
0.00503474
0.00510803
0.00517945
0.00524265
0.000900618
0.000693057
0.000589145
0.000548802
0.000530973
0.00052197
0.000517156
0.000514708
0.000513659
0.000513461
0.000513817
0.000514557
0.00051558
0.000516818
0.000518224
0.000519764
0.00052141
0.000523139
0.000524933
0.000526775
0.000528652
0.000530555
0.000532476
0.000534409
0.000536347
0.000538279
0.000540189
0.000542068
0.000543918
0.000545766
0.000547648
0.000549582
0.000551524
0.000553265
0.000555106
0.00106524
0.000686402
0.000626475
0.000629056
0.000646282
0.000667562
0.000689187
0.000709488
0.000727803
0.000744286
0.00075916
0.000772649
0.000784981
0.000796365
0.000806982
0.000816982
0.000826483
0.000835582
0.000844357
0.000852861
0.000861136
0.000869217
0.000877151
0.000884989
0.000892765
0.000900446
0.000907915
0.000915011
0.000921685
0.000928168
0.000935021
0.000942827
0.000951708
0.00096052
0.000967468
0.0014148
0.000961363
0.000904293
0.000954668
0.00102494
0.00109341
0.00115525
0.00120976
0.00125755
0.00129945
0.00133614
0.00136817
0.00139593
0.00141976
0.0014399
0.00145659
0.0014701
0.0014807
0.00148869
0.00149442
0.00149824
0.00150047
0.00150145
0.00150146
0.00150076
0.00149959
0.00149811
0.00149647
0.00149473
0.00149289
0.00149096
0.00148888
0.00148721
0.00148501
0.00148824
0.000882988
0.000601742
0.000536481
0.000519243
0.000517577
0.000522037
0.000528901
0.000536499
0.000544101
0.00055142
0.000558328
0.000564816
0.000570918
0.000576693
0.00058221
0.000587528
0.000592694
0.000597747
0.000602716
0.000607621
0.000612475
0.00061729
0.000622078
0.000626849
0.000631596
0.000636281
0.000640843
0.000645235
0.000649493
0.000653785
0.000658386
0.000663483
0.000668943
0.000674061
0.000677901
0.00150493
0.00102259
0.000946822
0.00100228
0.00109259
0.00118665
0.00127485
0.00135424
0.00142442
0.00148613
0.00154045
0.0015885
0.00163128
0.00166963
0.00170431
0.00173594
0.00176505
0.00179209
0.0018174
0.00184128
0.00186396
0.00188564
0.00190652
0.0019268
0.00194662
0.00196595
0.00198455
0.00200214
0.00201867
0.00203478
0.00205194
0.00207161
0.00209394
0.00211618
0.00213318
0.00167029
0.00114937
0.00090624
0.000798243
0.00078485
0.000858172
0.00100809
0.00121424
0.00145686
0.00172081
0.00199375
0.00226604
0.00253116
0.00278532
0.00302649
0.00325397
0.00346775
0.00366818
0.00385578
0.00403115
0.00419496
0.00434787
0.00449062
0.00462394
0.00474858
0.00486521
0.0049744
0.00507653
0.00517203
0.00526166
0.00534677
0.00542928
0.00551124
0.0055927
0.00567473
0.00166659
0.001206
0.00114482
0.00125224
0.00141359
0.00158427
0.00174769
0.00189768
0.00203288
0.00215327
0.00226057
0.0023563
0.00244189
0.00251871
0.002588
0.00265083
0.00270808
0.00276049
0.00280865
0.00285302
0.00289399
0.00293189
0.002967
0.0029996
0.00302996
0.00305827
0.00308466
0.00310914
0.00313171
0.00315255
0.00317227
0.00319196
0.0032133
0.00323612
0.0032657
0.000888919
0.000683302
0.000584058
0.000545722
0.000528445
0.000519532
0.000514695
0.000512189
0.00051109
0.000510859
0.000511197
0.000511925
0.000512937
0.000514163
0.000515558
0.000517082
0.000518706
0.000520402
0.000522147
0.000523921
0.000525705
0.000527488
0.000529257
0.000531008
0.000532732
0.000534419
0.000536057
0.000537635
0.000539152
0.000540627
0.000542094
0.000543585
0.00054508
0.000546456
0.000547816
0.001158
0.000744788
0.00068906
0.000709081
0.000745125
0.000783321
0.000819454
0.000852234
0.000881527
0.000907596
0.000930805
0.000951467
0.000969877
0.000986291
0.00100091
0.00101389
0.00102536
0.00103542
0.00104419
0.00105175
0.00105822
0.00106371
0.00106834
0.00107224
0.00107552
0.00107831
0.00108072
0.00108278
0.00108452
0.00108593
0.00108712
0.00108823
0.00108983
0.00109139
0.0010968
0.00166901
0.0011753
0.00105271
0.00112053
0.0012739
0.001461
0.00165759
0.00185025
0.00203184
0.0021993
0.00235188
0.0024901
0.00261505
0.00272806
0.0028305
0.00292369
0.00300882
0.00308698
0.00315907
0.00322594
0.00328827
0.00334669
0.00340179
0.00345409
0.00350398
0.00355156
0.00359663
0.00363894
0.00367876
0.00371747
0.00375752
0.00380108
0.0038478
0.00389231
0.00392671
0.00125144
0.000812551
0.000754879
0.000787021
0.000836031
0.000885761
0.00093226
0.000974145
0.00101118
0.0010438
0.00107263
0.00109829
0.00112129
0.00114212
0.00116115
0.00117873
0.00119512
0.00121056
0.00122522
0.00123924
0.00125274
0.0012658
0.00127854
0.00129106
0.00130342
0.00131559
0.00132739
0.00133859
0.00134915
0.00135949
0.00137057
0.00138335
0.00139791
0.00141237
0.00142322
0.00086954
0.000670374
0.000567969
0.000529766
0.00051288
0.000504159
0.000499542
0.000497211
0.000496215
0.000496005
0.000496262
0.000496778
0.0004974
0.000498008
0.000498507
0.000498828
0.000498929
0.00049879
0.000498412
0.000497811
0.000497015
0.000496054
0.000494962
0.000493771
0.00049251
0.000491205
0.000489876
0.000488537
0.0004872
0.000485878
0.000484584
0.000483371
0.000482214
0.000481408
0.000479934
0.00166928
0.0011492
0.000896717
0.000759289
0.000682374
0.000646994
0.000649982
0.000695098
0.000786151
0.000922857
0.00110174
0.00131771
0.00156339
0.00182924
0.00210519
0.00238243
0.00265427
0.00291612
0.00316518
0.00339984
0.00361963
0.00382486
0.00401631
0.00419503
0.00436219
0.00451896
0.00466646
0.00480565
0.00493734
0.00506224
0.00518114
0.00529513
0.00540594
0.00551503
0.00562602
0.00167408
0.00117179
0.00101768
0.00106907
0.00123652
0.00145277
0.00168456
0.0019155
0.00213633
0.00234233
0.00253171
0.00270454
0.00286177
0.00300475
0.00313474
0.00325303
0.00336078
0.00345905
0.00354876
0.00363079
0.00370587
0.00377473
0.00383799
0.00389635
0.00395044
0.00400078
0.00404761
0.00409089
0.00413059
0.00416713
0.00420198
0.00423728
0.00427506
0.00431404
0.00435398
0.00167395
0.00116738
0.000968552
0.000953066
0.00107271
0.00127611
0.00151917
0.00177576
0.00202901
0.00226803
0.0024865
0.00268019
0.00284767
0.00298892
0.00310486
0.00319736
0.00326898
0.00332262
0.00336121
0.00338753
0.00340408
0.00341299
0.00341608
0.00341485
0.00341057
0.00340426
0.00339679
0.00338885
0.00338084
0.00337277
0.00336424
0.00335449
0.00334332
0.00333074
0.00332354
0.00136648
0.000925648
0.00086716
0.000901981
0.000954467
0.00100833
0.00105925
0.0011055
0.00114631
0.0011822
0.0012139
0.00124195
0.00126687
0.00128907
0.00130891
0.00132661
0.00134235
0.00135627
0.00136849
0.00137912
0.0013883
0.00139616
0.00140285
0.00140854
0.00141337
0.00141751
0.00142108
0.00142415
0.00142675
0.00142885
0.00143054
0.00143199
0.00143417
0.0014368
0.0014465
0.00167311
0.00116027
0.000960486
0.000943133
0.00105342
0.00123841
0.00145935
0.00169607
0.00193582
0.00216985
0.00239281
0.00260188
0.00279606
0.00297536
0.00314027
0.00329148
0.00342973
0.00355576
0.0036703
0.00377411
0.00386793
0.00395255
0.00402881
0.00409758
0.00415975
0.00421617
0.00426759
0.0043146
0.00435764
0.00439715
0.00443388
0.00446901
0.00450468
0.00454184
0.00458676
0.00166919
0.00114693
0.000893839
0.000756197
0.000679133
0.000643731
0.000647298
0.000694352
0.000789186
0.000930929
0.00111469
0.00133423
0.00158196
0.00184894
0.00212629
0.00240649
0.00268388
0.00295459
0.00321618
0.00346726
0.00370718
0.00393581
0.00415337
0.0043603
0.00455716
0.0047445
0.00492269
0.00509194
0.00525249
0.00540513
0.00555153
0.00569402
0.00583441
0.00597162
0.00610266
0.0016689
0.0011455
0.000891487
0.000750562
0.000664263
0.000607293
0.000567522
0.00053866
0.000517327
0.000501777
0.00049132
0.000486065
0.000486798
0.000494905
0.00051227
0.000541151
0.000584086
0.000643917
0.000723799
0.000826916
0.000955802
0.00111157
0.00129347
0.00149892
0.00172399
0.00196415
0.00221492
0.0024724
0.00273347
0.00299583
0.00325805
0.00351945
0.00377988
0.00403922
0.00429481
0.000819046
0.000625336
0.000532361
0.000497181
0.000481513
0.000473351
0.000468867
0.0004665
0.000465395
0.000465085
0.000465308
0.000465908
0.000466782
0.000467862
0.000469098
0.000470449
0.000471881
0.000473362
0.000474865
0.000476365
0.000477842
0.00047928
0.000480666
0.000481991
0.000483249
0.000484438
0.000485554
0.000486599
0.000487574
0.000488489
0.000489355
0.000490201
0.000491021
0.000491859
0.000492506
0.00106578
0.000750614
0.00069547
0.000689337
0.000695602
0.000706933
0.000719611
0.000732032
0.000743574
0.000753972
0.000763054
0.000770671
0.000776676
0.000780975
0.00078356
0.000784503
0.000783939
0.000782058
0.000779075
0.000775211
0.00077068
0.00076567
0.000760347
0.000754849
0.000749292
0.000743773
0.000738372
0.000733135
0.000728071
0.00072312
0.000718193
0.00071314
0.000708169
0.000702916
0.000700366
0.00165519
0.00118043
0.00109481
0.00117331
0.00131065
0.00146497
0.00161803
0.00176149
0.00189198
0.00200896
0.00211309
0.00220558
0.00228772
0.0023607
0.0024255
0.00248294
0.00253364
0.00257817
0.00261705
0.00265077
0.00267987
0.00270487
0.00272629
0.00274466
0.0027605
0.00277427
0.00278638
0.00279709
0.00280655
0.00281481
0.00282206
0.00282873
0.00283643
0.00284556
0.00286501
0.0015396
0.00105551
0.000977315
0.0010362
0.00113243
0.00123249
0.00132621
0.00141075
0.00148576
0.00155194
0.0016103
0.0016619
0.00170775
0.00174877
0.00178581
0.00181955
0.00185056
0.00187933
0.00190625
0.00193162
0.00195569
0.00197868
0.00200077
0.00202213
0.00204284
0.00206287
0.00208199
0.00210001
0.00211704
0.00213379
0.00215157
0.00217154
0.00219363
0.00221504
0.00223157
0.000773023
0.000507472
0.000448034
0.000432421
0.000431259
0.000435569
0.000441824
0.00044861
0.000455357
0.000461838
0.000467962
0.000473689
0.000479014
0.000483941
0.000488475
0.000492617
0.000496365
0.000499722
0.000502691
0.000505281
0.000507511
0.000509405
0.000510992
0.000512311
0.000513401
0.000514301
0.000515046
0.000515653
0.000516132
0.000516489
0.000516766
0.00051702
0.000517442
0.000517858
0.000519363
0.000938392
0.000655938
0.000591533
0.00057312
0.00057069
0.000574892
0.000581802
0.000589587
0.000597417
0.000604958
0.000612103
0.000618847
0.000625234
0.000631323
0.000637174
0.000642834
0.000648342
0.000653727
0.000659009
0.000664197
0.000669295
0.000674311
0.000679257
0.000684156
0.000689016
0.000693811
0.000698465
0.000702881
0.000707033
0.000711059
0.000715288
0.000720047
0.000725412
0.000730597
0.000735157
0.00118868
0.000764492
0.000715159
0.000743595
0.00078516
0.000827216
0.000865171
0.000898682
0.000927781
0.00095274
0.000973585
0.000990219
0.00100259
0.00101076
0.00101498
0.00101563
0.00101322
0.00100831
0.00100145
0.000993175
0.000983916
0.000974047
0.000963868
0.000953619
0.000943482
0.000933577
0.00092394
0.000914499
0.000905127
0.000895739
0.000886548
0.000878157
0.000872115
0.000868487
0.000872068
0.00167394
0.00117295
0.00102176
0.00107596
0.00124543
0.00146312
0.00169567
0.00192662
0.00214688
0.00235195
0.00254025
0.00271191
0.00286797
0.00300982
0.00313882
0.00325627
0.00336339
0.00346127
0.00355089
0.00363312
0.00370875
0.00377847
0.00384293
0.00390281
0.00395871
0.00401108
0.00406005
0.00410548
0.00414725
0.00418594
0.00422323
0.00426154
0.00430273
0.00434482
0.00438659
0.0016692
0.00115012
0.000896769
0.000756843
0.000673453
0.000623989
0.000600547
0.00060288
0.000634778
0.000700811
0.000803845
0.00094479
0.00112311
0.00133583
0.00157645
0.00183577
0.00210421
0.00237374
0.00263878
0.00289608
0.00314402
0.00338188
0.00360937
0.00382642
0.00403312
0.00422969
0.00441644
0.00459379
0.0047622
0.00492215
0.00507431
0.00521959
0.00535935
0.00549429
0.00562708
0.00166919
0.00114688
0.000893956
0.000757152
0.000682205
0.00065096
0.00066134
0.000717704
0.000823286
0.000976394
0.00117196
0.001403
0.00166038
0.00193387
0.00221417
0.00249409
0.00276868
0.00303485
0.00329079
0.0035356
0.00376899
0.00399101
0.00420197
0.00440232
0.00459259
0.00477329
0.00494485
0.00510757
0.00526183
0.00540852
0.00554929
0.0056863
0.00582123
0.00595315
0.0060795
0.000814367
0.000620591
0.000527649
0.000492445
0.000476637
0.000468375
0.000463861
0.000461479
0.000460373
0.000460067
0.000460295
0.000460897
0.000461769
0.000462842
0.000464064
0.00046539
0.000466785
0.000468214
0.000469647
0.000471058
0.000472427
0.000473737
0.000474978
0.000476143
0.000477229
0.000478235
0.000479163
0.000480016
0.000480797
0.000481517
0.000482186
0.000482834
0.000483457
0.000484121
0.000484599
0.00166634
0.00119147
0.00109942
0.0011951
0.00136379
0.00155572
0.00174936
0.00193297
0.00210008
0.00224683
0.00237064
0.00247097
0.0025482
0.00260365
0.00263954
0.00265864
0.002664
0.00265859
0.00264511
0.00262582
0.00260256
0.00257672
0.00254939
0.00252143
0.0024936
0.00246657
0.00244084
0.00241648
0.00239283
0.00236826
0.00234056
0.00230827
0.00227333
0.0022424
0.00223031
0.00166668
0.00119127
0.00109785
0.0011922
0.00136027
0.00155258
0.00174748
0.00193283
0.00210188
0.00225059
0.00237635
0.00247842
0.00255715
0.00261385
0.00265074
0.00267062
0.00267655
0.00267154
0.00265829
0.00263911
0.00261587
0.00259005
0.0025628
0.00253507
0.00250751
0.0024804
0.00245357
0.00242648
0.00239865
0.00237064
0.00234518
0.00232751
0.00232411
0.00233604
0.00235611
0.00167396
0.00116748
0.000967887
0.000948734
0.00105903
0.00124703
0.00147272
0.00171387
0.00195455
0.00218326
0.00239205
0.00257567
0.00273137
0.0028587
0.00295898
0.0030347
0.003089
0.00312521
0.00314655
0.003156
0.00315616
0.00314925
0.00313715
0.00312143
0.00310333
0.00308379
0.00306337
0.00304217
0.00302006
0.00299708
0.00297431
0.0029545
0.00294241
0.00294173
0.00295456
0.00166913
0.00115001
0.000896566
0.000755796
0.000669668
0.000613434
0.00057572
0.000551449
0.000539148
0.00053984
0.000556443
0.000593123
0.000654432
0.000744656
0.000867658
0.00102654
0.00122251
0.00145363
0.00171473
0.0019983
0.00229585
0.00259921
0.00290146
0.00319732
0.00348315
0.00375676
0.00401703
0.00426369
0.00449695
0.00471734
0.00492561
0.00512267
0.00530995
0.00548861
0.00566185
0.001669
0.00114716
0.000893324
0.000752614
0.000667073
0.000612292
0.000577577
0.000558898
0.000556087
0.000571404
0.00060832
0.00067039
0.000760704
0.000881994
0.0010363
0.00122371
0.00144133
0.0016835
0.00194299
0.0022124
0.00248527
0.00275658
0.00302277
0.00328159
0.00353179
0.00377281
0.0040046
0.00422737
0.00444151
0.00464758
0.00484645
0.00503935
0.00522778
0.00541271
0.00559386
0.00167219
0.0011618
0.000948261
0.00090504
0.000992918
0.00117139
0.00139775
0.00164522
0.00189649
0.00213802
0.00235937
0.00255305
0.00271635
0.00284916
0.00295311
0.00303095
0.003086
0.00312182
0.00314181
0.0031491
0.00314642
0.00313607
0.00312
0.00309984
0.00307703
0.00305282
0.00302822
0.00300371
0.00297896
0.0029526
0.0029227
0.00288802
0.00285054
0.00281736
0.00280249
0.00167228
0.0011621
0.00094937
0.000908029
0.000998535
0.00117906
0.0014063
0.00165376
0.00190447
0.00214516
0.00236561
0.00255848
0.002721
0.0028531
0.00295643
0.0030337
0.00308827
0.00312364
0.00314321
0.0031501
0.00314705
0.00313641
0.00312019
0.00310008
0.00307736
0.00305295
0.00302719
0.00300001
0.0029713
0.00294184
0.00291443
0.00289433
0.00288789
0.00289683
0.00291291
0.00086795
0.000665584
0.000564584
0.000525046
0.000507606
0.000498844
0.000494165
0.000491773
0.000490746
0.00049056
0.000490923
0.000491661
0.000492668
0.000493872
0.000495229
0.00049671
0.00049829
0.000499949
0.000501669
0.000503436
0.000505238
0.000507061
0.000508898
0.00051074
0.000512575
0.000514394
0.000516185
0.00051794
0.000519663
0.000521374
0.000523094
0.000524837
0.000526574
0.000528142
0.000529881
0.000872591
0.000667037
0.000574202
0.000538796
0.000522757
0.000514509
0.000510091
0.000507856
0.000506923
0.000506794
0.000507193
0.000507959
0.000508995
0.000510236
0.00051164
0.000513171
0.000514801
0.000516507
0.000518269
0.00052007
0.000521894
0.000523733
0.000525577
0.000527422
0.000529261
0.000531081
0.000532866
0.000534603
0.000536294
0.000537964
0.000539656
0.0005414
0.000543157
0.000544755
0.000546355
0.00166882
0.00114311
0.000888587
0.000747475
0.000661176
0.00060421
0.000564313
0.000535036
0.000512726
0.000495193
0.000481061
0.000469425
0.000459674
0.000451378
0.000444235
0.000438026
0.000432593
0.000427831
0.000423675
0.000420103
0.000417138
0.000414854
0.000413386
0.000412945
0.000413832
0.000416456
0.00042136
0.000429234
0.000440946
0.000457569
0.000480423
0.000511144
0.000551731
0.000604565
0.000670616
0.00141954
0.000961666
0.000895815
0.000936771
0.00100129
0.00106856
0.00113196
0.00118899
0.00123937
0.00128364
0.0013225
0.0013566
0.00138657
0.00141293
0.00143608
0.0014563
0.00147384
0.00148888
0.00150163
0.0015123
0.0015211
0.00152826
0.00153403
0.00153864
0.00154231
0.00154525
0.00154763
0.00154953
0.00155096
0.00155188
0.00155237
0.00155262
0.00155386
0.00155589
0.001567
0.00166985
0.00114928
0.000901633
0.000780415
0.000740775
0.000774621
0.000880564
0.00104807
0.00126123
0.00150647
0.0017722
0.00204791
0.00232479
0.00259607
0.0028571
0.00310483
0.00333761
0.00355486
0.00375651
0.00394286
0.00411456
0.00427245
0.00441755
0.004551
0.00467401
0.00478779
0.00489342
0.00499171
0.00508335
0.00516906
0.00525003
0.00532797
0.00540505
0.00548162
0.00556025
0.00116226
0.000759215
0.000698236
0.000708153
0.000733829
0.000764402
0.000795086
0.000823994
0.000850133
0.000873324
0.000893763
0.00091167
0.000927232
0.000940595
0.000951869
0.000961138
0.000968509
0.000974119
0.000978138
0.000980758
0.000982185
0.000982624
0.000982277
0.000981328
0.000979945
0.000978266
0.000976389
0.00097435
0.000972133
0.000969707
0.00096715
0.000964701
0.000963292
0.000962917
0.000968063
0.00167014
0.00115089
0.000906096
0.000792753
0.000768935
0.000826649
0.00095837
0.00114681
0.00137429
0.00162695
0.00189291
0.00216223
0.00242761
0.00268388
0.00292761
0.00315688
0.00337027
0.00356704
0.00374704
0.00391061
0.00405862
0.00419228
0.00431298
0.00442219
0.00452139
0.00461196
0.00469517
0.00477205
0.00484343
0.00490997
0.00497244
0.00503191
0.0050904
0.0051493
0.00521483
0.00167669
0.00119527
0.00108016
0.00116404
0.00133994
0.0015488
0.00176414
0.00197176
0.00216436
0.00233839
0.00249241
0.00262596
0.00273919
0.00283277
0.00290778
0.00296576
0.00300859
0.00303842
0.00305745
0.0030678
0.00307143
0.00307003
0.003065
0.00305748
0.00304841
0.00303852
0.0030284
0.00301849
0.00300904
0.003
0.00299105
0.00298153
0.00297143
0.00295999
0.00295443
0.00117321
0.00076904
0.000717673
0.000739095
0.000775092
0.000813161
0.000849408
0.000882501
0.000912208
0.000938732
0.000962373
0.000983414
0.00100209
0.00101864
0.00103324
0.00104602
0.00105713
0.00106667
0.00107477
0.00108155
0.00108715
0.00109172
0.00109538
0.0010983
0.00110062
0.00110246
0.00110394
0.00110513
0.00110604
0.00110669
0.00110714
0.0011075
0.00110831
0.00110904
0.00111341
0.00149706
0.00104224
0.00098357
0.001041
0.00112675
0.00121494
0.00129754
0.00137219
0.00143859
0.00149729
0.00154906
0.00159452
0.0016345
0.00166958
0.00170023
0.00172685
0.0017498
0.00176941
0.00178599
0.00179986
0.00181136
0.00182079
0.00182848
0.00183473
0.00183984
0.00184406
0.00184762
0.00185064
0.00185318
0.00185525
0.00185695
0.00185848
0.00186071
0.00186294
0.00187129
0.000918761
0.000626005
0.000567335
0.00055527
0.000556604
0.000563242
0.000571823
0.000580817
0.000589644
0.000598061
0.000605942
0.000613209
0.000619821
0.000625748
0.000630965
0.000635458
0.000639227
0.000642288
0.000644674
0.000646436
0.000647639
0.000648355
0.000648661
0.000648632
0.000648343
0.000647861
0.000647244
0.00064653
0.000645743
0.000644884
0.000643977
0.000643035
0.000642289
0.000641425
0.000642352
0.00138581
0.000936527
0.000880514
0.000924107
0.000986337
0.00104777
0.00110385
0.00115359
0.00119737
0.00123586
0.00126984
0.00129994
0.00132682
0.00135105
0.0013731
0.00139341
0.00141228
0.00142998
0.00144669
0.00146256
0.00147768
0.00149212
0.00150594
0.00151918
0.0015319
0.00154408
0.0015557
0.00156664
0.00157684
0.00158642
0.00159579
0.00160559
0.00161669
0.00162859
0.00164337
0.00157031
0.00112618
0.00107266
0.00113546
0.00122695
0.00132072
0.00140852
0.00148769
0.00155783
0.00161957
0.00167395
0.00172205
0.00176489
0.00180337
0.00183822
0.00187003
0.00189931
0.00192648
0.00195186
0.0019757
0.00199823
0.0020196
0.00204003
0.00205971
0.00207881
0.00209733
0.00211504
0.00213158
0.0021468
0.00216121
0.00217619
0.00219332
0.00221322
0.00223319
0.00225072
0.000872801
0.000677881
0.000576373
0.000537693
0.000520422
0.000511489
0.000506741
0.000504316
0.000503238
0.000502951
0.000503122
0.000503522
0.000503979
0.000504356
0.000504555
0.000504509
0.000504183
0.000503573
0.000502694
0.000501576
0.000500257
0.000498778
0.00049718
0.0004955
0.000493769
0.000492015
0.000490258
0.000488512
0.000486786
0.000485093
0.000483445
0.000481896
0.000480414
0.000479335
0.000477527
0.000759709
0.000574636
0.000487902
0.000454393
0.000439435
0.00043186
0.000427803
0.000425731
0.000424839
0.000424669
0.000424968
0.000425591
0.00042645
0.000427488
0.000428666
0.000429955
0.000431335
0.000432787
0.000434296
0.00043585
0.000437438
0.000439052
0.000440685
0.000442331
0.000443984
0.000445632
0.000447265
0.000448877
0.000450475
0.000452083
0.000453727
0.000455412
0.000457088
0.000458562
0.00046018
0.000862863
0.000665491
0.000564886
0.000526228
0.000509305
0.000500583
0.000495741
0.000493136
0.00049188
0.000491487
0.000491666
0.000492246
0.000493118
0.000494211
0.000495474
0.00049687
0.000498365
0.000499932
0.000501545
0.000503181
0.000504822
0.00050645
0.000508052
0.000509616
0.000511134
0.000512598
0.000514002
0.000515341
0.000516617
0.000517839
0.000519021
0.000520188
0.000521333
0.000522439
0.000523464
0.000840326
0.000644983
0.000548236
0.000510901
0.000494271
0.00048573
0.000481094
0.000478687
0.000477617
0.000477372
0.000477668
0.000478338
0.000479276
0.000480417
0.000481715
0.000483132
0.000484639
0.000486207
0.000487813
0.000489436
0.000491059
0.000492668
0.000494253
0.000495807
0.000497324
0.000498796
0.000500214
0.00050157
0.000502864
0.00050411
0.000505337
0.000506575
0.00050781
0.000508956
0.000510053
0.00166513
0.00118487
0.00109557
0.00118982
0.00135259
0.00153537
0.00171784
0.00189023
0.00204837
0.00219119
0.00231917
0.00243354
0.00253594
0.00262795
0.0027109
0.00278595
0.00285408
0.00291614
0.00297281
0.0030247
0.00307232
0.00311613
0.00315659
0.00319413
0.00322917
0.00326201
0.00329273
0.00332111
0.00334701
0.00337077
0.00339369
0.00341769
0.00344452
0.00347252
0.00350265
0.00167192
0.00118646
0.00107787
0.00115932
0.00132015
0.00150808
0.00170027
0.00188496
0.00205684
0.00221405
0.00235654
0.00248517
0.00260113
0.00270573
0.00280021
0.00288564
0.00296294
0.00303288
0.00309612
0.00315325
0.00320482
0.00325131
0.00329322
0.00333106
0.0033653
0.00339643
0.00342482
0.00345075
0.00347439
0.00349592
0.00351582
0.00353494
0.00355508
0.00357664
0.00360677
0.000818241
0.00062712
0.000533372
0.000497594
0.000481806
0.000473617
0.000469074
0.000466653
0.0004655
0.000465156
0.000465348
0.000465919
0.000466766
0.000467821
0.000469036
0.000470374
0.000471802
0.000473293
0.000474821
0.000476363
0.000477901
0.000479418
0.000480901
0.00048234
0.000483727
0.000485056
0.000486323
0.000487525
0.000488662
0.000489744
0.000490783
0.000491805
0.000492803
0.00049379
0.00049464
0.00167261
0.00115696
0.000953854
0.000933293
0.00104315
0.00123175
0.00145873
0.0017027
0.00195047
0.00219275
0.00242374
0.00264039
0.00284159
0.00302739
0.00319855
0.00335615
0.00350142
0.00363557
0.00375977
0.00387509
0.0039825
0.00408288
0.00417706
0.00426582
0.00434981
0.00442939
0.0045046
0.00457535
0.00464197
0.00470582
0.00476939
0.00483516
0.00490348
0.0049697
0.0050267
0.00132073
0.00089226
0.000840935
0.000878563
0.000932871
0.000986998
0.00103673
0.00108103
0.0011201
0.00115449
0.00118489
0.00121187
0.00123598
0.00125773
0.00127758
0.00129589
0.00131298
0.00132907
0.00134433
0.0013589
0.00137285
0.00138624
0.00139914
0.00141158
0.00142359
0.00143517
0.00144625
0.00145671
0.00146648
0.00147571
0.00148486
0.0014946
0.0015057
0.00151756
0.00153125
0.00166991
0.00115322
0.000904419
0.000777509
0.000725446
0.000738395
0.000817421
0.000958408
0.00114946
0.00137702
0.00162758
0.00188785
0.00214637
0.00239486
0.00262814
0.00284353
0.00303991
0.00321721
0.00337595
0.00351707
0.00364187
0.00375183
0.00384858
0.00393377
0.00400902
0.00407588
0.00413579
0.00419003
0.00423966
0.00428552
0.00432816
0.00436786
0.00440521
0.00443999
0.00447736
0.00156347
0.00109979
0.00104368
0.00112581
0.00124001
0.00135174
0.00145221
0.00154027
0.00161693
0.00168362
0.00174158
0.00179174
0.00183482
0.00187135
0.00190178
0.00192656
0.00194617
0.00196111
0.00197198
0.00197936
0.00198385
0.00198604
0.00198644
0.00198551
0.00198365
0.00198119
0.0019784
0.00197549
0.00197256
0.00196962
0.00196662
0.0019634
0.00196056
0.00195686
0.00196049
0.00160982
0.00113514
0.00106399
0.0011415
0.00126402
0.00139351
0.00151654
0.00162849
0.00172836
0.00181674
0.00189471
0.00196359
0.00202474
0.0020794
0.00212857
0.00217307
0.00221359
0.00225068
0.00228477
0.00231623
0.00234534
0.00237236
0.00239754
0.00242114
0.0024434
0.0024645
0.00248438
0.0025028
0.00251957
0.00253494
0.00254996
0.00256613
0.00258496
0.00260457
0.00262828
0.000868376
0.000669371
0.000568397
0.000528279
0.000510458
0.00050146
0.000496628
0.000494136
0.000493041
0.000492807
0.000493132
0.000493836
0.000494814
0.000495995
0.000497335
0.000498804
0.000500375
0.000502028
0.000503747
0.000505515
0.000507321
0.000509154
0.000511005
0.000512865
0.000514725
0.000516574
0.000518398
0.000520193
0.000521965
0.000523736
0.000525531
0.000527355
0.000529161
0.000530768
0.000532528
0.000771371
0.00058366
0.000495728
0.000461846
0.00044678
0.000439174
0.000435117
0.000433061
0.000432189
0.000432042
0.000432365
0.000433013
0.000433899
0.000434964
0.000436171
0.000437489
0.000438898
0.000440378
0.000441916
0.000443497
0.000445112
0.000446752
0.000448411
0.000450084
0.000451763
0.000453438
0.000455097
0.000456733
0.000458355
0.000459985
0.000461652
0.000463362
0.000465069
0.000466575
0.000468228
0.00167015
0.00115293
0.000906998
0.00078892
0.00075635
0.000802771
0.000924918
0.00110789
0.0013327
0.00158312
0.00184566
0.00210915
0.00236509
0.00260759
0.00283287
0.00303888
0.00322487
0.00339113
0.00353863
0.00366883
0.00378342
0.00388419
0.00397292
0.00405133
0.00412102
0.00418342
0.00423986
0.00429145
0.0043391
0.0043835
0.00442512
0.00446427
0.0045017
0.00453726
0.00457681
0.000853602
0.000536892
0.000501711
0.000511077
0.000529529
0.000550617
0.000571316
0.000590184
0.000606636
0.000620441
0.000631535
0.000639787
0.000645107
0.000647534
0.000647265
0.000644623
0.000640015
0.000633865
0.000626568
0.000618478
0.000609882
0.000601009
0.000592037
0.000583131
0.000574435
0.000566086
0.000558168
0.000550642
0.000543278
0.000535629
0.000527209
0.000517818
0.000508389
0.000500465
0.000498721
0.00087559
0.00055182
0.00051783
0.000530066
0.000551161
0.000574445
0.000596847
0.000617065
0.000634654
0.000649328
0.000661107
0.000669869
0.000675533
0.000678142
0.000677902
0.000675152
0.000670317
0.000663852
0.000656166
0.000647638
0.000638581
0.000629251
0.000619862
0.000610586
0.000601535
0.000592732
0.000584086
0.000575434
0.000566679
0.000558054
0.00055039
0.000545039
0.000543549
0.000545107
0.000548633
0.00167003
0.00115426
0.00090546
0.000778752
0.000726627
0.000738398
0.000814344
0.000950978
0.00113815
0.0013634
0.00161299
0.00187228
0.00212839
0.00237228
0.00259878
0.00280574
0.00299268
0.00315986
0.00330794
0.00343788
0.00355098
0.0036488
0.00373303
0.00380547
0.00386788
0.00392194
0.00396919
0.00401101
0.00404858
0.00408272
0.00411394
0.00414236
0.00416833
0.00419155
0.00421706
0.00166932
0.00114678
0.000894736
0.000761034
0.000693573
0.000677364
0.000712957
0.00080355
0.000946748
0.00113536
0.00136127
0.00161553
0.00188814
0.00216936
0.0024511
0.00272752
0.00299483
0.00325094
0.00349487
0.00372637
0.00394565
0.00415317
0.00434958
0.00453568
0.00471225
0.00487997
0.00503926
0.0051903
0.00533341
0.0054696
0.00560092
0.0057299
0.00585802
0.00598302
0.00609955
0.00162769
0.00117135
0.00111388
0.00120668
0.00134597
0.00149487
0.00163805
0.00176875
0.00188419
0.00198276
0.00206411
0.00212835
0.00217596
0.002208
0.00222608
0.00223225
0.00222876
0.00221777
0.00220127
0.00218092
0.00215807
0.00213375
0.00210878
0.00208385
0.0020594
0.00203559
0.00201216
0.00198856
0.00196432
0.00193991
0.00191778
0.0019027
0.00190053
0.0019119
0.00193121
0.00162233
0.00116653
0.00110933
0.00119925
0.00133416
0.00147786
0.00161546
0.00174059
0.0018508
0.00194463
0.00202184
0.00208261
0.00212744
0.00215733
0.00217386
0.002179
0.00217489
0.00216363
0.00214714
0.002127
0.00210449
0.00208055
0.00205589
0.00203114
0.00200681
0.00198343
0.00196136
0.0019406
0.00192051
0.00189957
0.0018758
0.00184786
0.00181763
0.00179091
0.00178147
0.00166882
0.001143
0.000888437
0.000747311
0.000661011
0.000604047
0.000564154
0.000534879
0.000512571
0.000495042
0.000480913
0.000469282
0.000459537
0.000451253
0.000444127
0.000437943
0.000432547
0.000427835
0.000423742
0.000420244
0.000417354
0.000415127
0.000413667
0.000413135
0.000413762
0.00041586
0.000419845
0.000426255
0.000435776
0.000449277
0.000467841
0.000492823
0.000525874
0.00056893
0.000622757
0.00166896
0.00114726
0.000893476
0.000752595
0.00066626
0.000609222
0.000569362
0.000540383
0.000518884
0.000503094
0.000492304
0.000486615
0.000486853
0.000494521
0.000511751
0.000541218
0.000586036
0.00064975
0.000736369
0.000850142
0.000994859
0.0011729
0.00138458
0.00162786
0.00189853
0.00219102
0.00249915
0.00281688
0.00313881
0.00346044
0.0037783
0.00409002
0.00439424
0.00469005
0.00497577
0.00072946
0.00054902
0.000467318
0.000436244
0.000421868
0.000414287
0.000410229
0.0004082
0.000407352
0.000407213
0.000407521
0.000408121
0.000408912
0.000409822
0.000410792
0.000411773
0.00041272
0.000413599
0.000414383
0.000415055
0.000415608
0.000416041
0.00041636
0.000416572
0.000416692
0.000416731
0.000416701
0.000416615
0.000416481
0.000416312
0.000416119
0.00041594
0.000415766
0.000415755
0.000415369
0.000807786
0.000536993
0.000474299
0.000457019
0.00045494
0.000458882
0.00046516
0.000472122
0.000479055
0.000485691
0.000491949
0.000497831
0.000503377
0.00050864
0.000513673
0.000518528
0.000523248
0.000527869
0.000532414
0.000536903
0.000541347
0.00054576
0.000550156
0.000554552
0.000558948
0.000563315
0.000567591
0.000571714
0.000575703
0.000579714
0.000584034
0.000588882
0.000594148
0.000599153
0.000602837
0.00144128
0.000979784
0.000922614
0.000984812
0.00107476
0.0011651
0.00124802
0.00132179
0.00138676
0.00144385
0.0014941
0.00153843
0.00157768
0.00161245
0.00164331
0.00167068
0.00169492
0.0017163
0.0017351
0.00175155
0.00176587
0.00177829
0.00178906
0.00179841
0.00180657
0.00181378
0.0018202
0.00182591
0.00183094
0.00183529
0.00183919
0.00184303
0.00184775
0.00185284
0.00186247
0.00165411
0.0011959
0.00113067
0.0012227
0.00136735
0.00152527
0.00167919
0.00182137
0.00194841
0.00205861
0.00215126
0.00222608
0.00228342
0.00232431
0.0023504
0.0023637
0.00236646
0.0023609
0.00234907
0.00233274
0.00231334
0.002292
0.00226959
0.00224677
0.0022241
0.00220205
0.00218101
0.00216112
0.0021421
0.002123
0.00210241
0.00207898
0.00205344
0.0020285
0.002016
0.00166546
0.001208
0.00114452
0.00124691
0.00140559
0.00157799
0.00174572
0.00190033
0.00203837
0.00215853
0.00226002
0.00234264
0.0024067
0.00245312
0.00248348
0.00249984
0.00250458
0.0025001
0.00248864
0.00247213
0.00245219
0.00243008
0.0024068
0.00238312
0.00235963
0.00233665
0.00231424
0.00229207
0.00226968
0.00224693
0.00222489
0.00220636
0.00219618
0.00219699
0.0022118
0.00166923
0.00114718
0.000894368
0.000758233
0.000685199
0.000658359
0.000677268
0.000747202
0.000870175
0.00104175
0.00125446
0.00149969
0.00176743
0.00204738
0.00233069
0.00261084
0.00288347
0.00314594
0.00339678
0.00363541
0.00386182
0.00407632
0.0042794
0.00447165
0.00465368
0.00482608
0.00498933
0.00514375
0.00528975
0.00542825
0.00556082
0.00568955
0.00581621
0.00594024
0.0060598
0.00166897
0.00114731
0.000893462
0.000752562
0.000666279
0.000609487
0.000570301
0.000542847
0.000524434
0.000514396
0.000513603
0.000524198
0.000549281
0.000592445
0.000657337
0.000747462
0.000866019
0.00101503
0.00119422
0.00140055
0.00162888
0.00187321
0.00212782
0.00238829
0.00265177
0.00291643
0.00318102
0.00344459
0.00370626
0.00396517
0.00422059
0.00447212
0.00471978
0.00496338
0.00520173
0.00166913
0.00114891
0.000895717
0.000755532
0.000671191
0.000619377
0.000591079
0.000584753
0.000603343
0.00065188
0.000734855
0.000854642
0.00101167
0.00120421
0.00142748
0.0016741
0.00193552
0.00220373
0.00247217
0.00273614
0.00299261
0.00323984
0.00347709
0.00370424
0.00392155
0.00412943
0.00432838
0.00451886
0.00470128
0.00487604
0.00504364
0.00520485
0.00536102
0.00551333
0.00566437
0.00089711
0.000691488
0.000588455
0.000548855
0.000531539
0.000522764
0.000517996
0.000515487
0.000514344
0.000514071
0.00051437
0.000515068
0.000516053
0.000517253
0.00051862
0.00052012
0.000521721
0.0005234
0.000525133
0.0005269
0.000528682
0.000530466
0.000532236
0.000533981
0.000535692
0.000537358
0.000538971
0.000540524
0.000542016
0.00054346
0.000544872
0.00054628
0.00054768
0.000549011
0.000550393
0.00167177
0.00115618
0.000935222
0.000878029
0.000945414
0.00110521
0.00132031
0.00156504
0.00182293
0.00208169
0.00233261
0.00257031
0.00279178
0.00299563
0.0031814
0.00334917
0.0034994
0.00363283
0.0037505
0.00385367
0.0039438
0.00402242
0.00409108
0.00415129
0.00420445
0.00425184
0.00429456
0.00433348
0.00436924
0.00440231
0.00443324
0.00446275
0.00449226
0.00452183
0.00455732
0.00166739
0.00117427
0.00105476
0.00112134
0.0012694
0.00144958
0.00163828
0.00182244
0.00199539
0.00215441
0.00229894
0.00242959
0.00254747
0.00265392
0.00275029
0.0028379
0.0029179
0.00299135
0.00305912
0.00312203
0.00318071
0.00323576
0.00328769
0.003337
0.003384
0.00342878
0.00347113
0.00351088
0.00354834
0.00358486
0.00362267
0.00366366
0.00370732
0.00374858
0.0037806
0.00166976
0.00114851
0.000899971
0.000776415
0.000731405
0.00075528
0.000846905
0.000997977
0.00119453
0.00142402
0.00167552
0.00193906
0.00220603
0.00247019
0.00272738
0.00297485
0.00321094
0.00343473
0.00364583
0.00384422
0.00403004
0.00420371
0.00436583
0.00451709
0.00465826
0.00479012
0.0049134
0.00502871
0.00513662
0.00523791
0.00533383
0.00542614
0.00551696
0.00560702
0.00569792
0.00154701
0.00107348
0.00100102
0.00105294
0.00113557
0.00122166
0.00130219
0.00137452
0.001438
0.001493
0.00154029
0.00158051
0.0016141
0.00164145
0.00166296
0.00167904
0.00169025
0.0016972
0.00170055
0.00170097
0.00169909
0.00169549
0.00169064
0.00168497
0.00167883
0.00167248
0.0016661
0.00165974
0.00165333
0.00164675
0.00164002
0.00163347
0.00162872
0.00162591
0.00163408
0.000795258
0.000606546
0.000515472
0.000480548
0.000464974
0.00045698
0.000452656
0.000450426
0.000449448
0.000449244
0.000449549
0.000450206
0.000451115
0.000452212
0.000453454
0.000454804
0.000456233
0.000457715
0.000459225
0.000460744
0.000462255
0.000463744
0.000465203
0.000466625
0.000468004
0.000469334
0.000470609
0.000471821
0.000472971
0.000474074
0.000475156
0.000476244
0.00047732
0.000478331
0.000479208
0.00095327
0.000742909
0.000633093
0.000590755
0.000571941
0.000562136
0.000556742
0.000553835
0.00055243
0.000551977
0.000552148
0.000552726
0.000553557
0.000554524
0.000555529
0.000556494
0.00055736
0.000558082
0.000558633
0.000559
0.000559186
0.000559199
0.000559059
0.000558785
0.0005584
0.000557929
0.000557391
0.000556806
0.000556186
0.000555546
0.000554893
0.000554258
0.000553614
0.000553156
0.000552244
0.00084432
0.000551402
0.000487577
0.000472505
0.000473284
0.000479949
0.000488575
0.000497526
0.000506172
0.000514304
0.000521873
0.000528891
0.000535412
0.000541522
0.000547312
0.000552853
0.000558207
0.000563419
0.000568522
0.000573539
0.000578481
0.000583358
0.000588175
0.000592939
0.000597643
0.000602263
0.00060675
0.000611055
0.000615177
0.000619213
0.000623378
0.00062789
0.000632849
0.000637818
0.000642534
0.00157022
0.00110477
0.00104575
0.00112302
0.00123525
0.00134927
0.0014552
0.00155034
0.00163444
0.00170841
0.00177339
0.0018307
0.00188156
0.00192706
0.00196808
0.00200533
0.00203939
0.00207075
0.00209976
0.00212674
0.00215191
0.00217548
0.00219765
0.00221863
0.00223864
0.00225777
0.00227593
0.00229285
0.00230828
0.00232249
0.00233652
0.00235189
0.00236994
0.0023888
0.00241059
0.00100384
0.000676084
0.000615337
0.000607097
0.000613681
0.000625773
0.000639625
0.000653455
0.000666466
0.000678484
0.000689551
0.000699743
0.000709175
0.000717982
0.000726285
0.000734173
0.000741723
0.000748987
0.000755998
0.000762776
0.000769329
0.000775665
0.0007818
0.000787761
0.000793572
0.000799225
0.000804658
0.000809761
0.000814473
0.000818893
0.000823365
0.000828311
0.00083407
0.00083987
0.00084602
0.00167099
0.00115033
0.000918931
0.000840044
0.000876081
0.0010074
0.00120541
0.00144377
0.00170412
0.00197234
0.00223786
0.00249391
0.0027368
0.00296494
0.00317798
0.0033763
0.00356067
0.00373204
0.00389144
0.00403992
0.00417846
0.00430804
0.00442962
0.00454413
0.00465241
0.004755
0.00485207
0.00494353
0.00502962
0.00511161
0.00519212
0.00527401
0.00535818
0.00544031
0.00551307
0.00167073
0.00114959
0.000913478
0.000824152
0.000844397
0.000959693
0.00114543
0.00137475
0.00162912
0.00189513
0.00216229
0.00242316
0.00267309
0.00290963
0.0031318
0.00333956
0.00353338
0.00371407
0.00388255
0.00403978
0.00418673
0.00432435
0.00445358
0.00457532
0.00469036
0.00479928
0.00490229
0.00499944
0.00509104
0.00517832
0.0052637
0.00534986
0.00543778
0.00552376
0.00560138
0.00153759
0.00105663
0.000975043
0.00102311
0.00110727
0.0011983
0.00128596
0.00136624
0.00143748
0.00149988
0.00155425
0.00160138
0.00164193
0.00167642
0.0017053
0.00172892
0.00174769
0.0017621
0.00177267
0.00177995
0.0017845
0.00178685
0.00178749
0.00178686
0.00178534
0.00178324
0.00178078
0.00177805
0.00177501
0.00177158
0.00176783
0.00176417
0.00176221
0.0017626
0.00177187
0.000745573
0.000562576
0.000479098
0.000449948
0.000436901
0.000430087
0.000426463
0.000424594
0.000423718
0.00042338
0.000423275
0.000423185
0.000422943
0.000422432
0.000421586
0.000420387
0.000418852
0.000417018
0.00041494
0.000412672
0.000410268
0.000407778
0.000405243
0.000402698
0.000400169
0.00039767
0.000395206
0.000392782
0.000390408
0.000388124
0.00038599
0.000384112
0.00038243
0.000381194
0.000378856
0.00075603
0.000574114
0.000489098
0.000458669
0.000444868
0.000437587
0.000433707
0.00043173
0.000430834
0.000430515
0.000430448
0.000430396
0.000430181
0.000429683
0.000428837
0.000427626
0.000426068
0.000424205
0.000422092
0.000419787
0.000417343
0.00041481
0.00041223
0.000409637
0.000407063
0.00040453
0.000402054
0.000399634
0.000397257
0.000394903
0.000392552
0.000390257
0.000388027
0.000386421
0.000384328
0.000663194
0.000433165
0.000387791
0.000376859
0.000376771
0.000381084
0.000386921
0.00039298
0.000398648
0.000403598
0.000407659
0.00041066
0.000412469
0.000413027
0.000412369
0.000410605
0.0004079
0.00040444
0.000400408
0.000395977
0.000391294
0.000386482
0.000381643
0.000376858
0.000372177
0.000367614
0.000363133
0.000358676
0.000354227
0.000349915
0.000346105
0.000343336
0.000342128
0.000342001
0.0003421
0.000652151
0.000427325
0.00038148
0.0003695
0.000368344
0.00037173
0.000376851
0.000382375
0.000387614
0.000392244
0.000396071
0.000398909
0.00040062
0.000401146
0.000400518
0.000398844
0.00039628
0.000393
0.000389181
0.000384984
0.000380545
0.000375974
0.000371357
0.000366775
0.000362295
0.000357978
0.000353856
0.000349905
0.000346026
0.000342043
0.000337788
0.000333248
0.000328859
0.000325355
0.000324323
0.00167096
0.00115524
0.000916625
0.000817611
0.000821761
0.000919592
0.00109263
0.00131457
0.00156471
0.00182765
0.00209034
0.00234316
0.0025797
0.00279587
0.00298965
0.00316057
0.00330929
0.00343729
0.0035465
0.00363911
0.00371732
0.00378328
0.00383896
0.00388617
0.00392651
0.00396136
0.00399188
0.00401895
0.00404314
0.00406479
0.00408431
0.00410249
0.00412147
0.00414342
0.00417557
0.00166954
0.00115222
0.000900096
0.000763758
0.000689714
0.000660865
0.000676129
0.000739985
0.000854424
0.00101613
0.00121905
0.00145534
0.00171478
0.00198588
0.00225818
0.0025236
0.00277676
0.00301449
0.00323522
0.00343847
0.00362454
0.0037942
0.00394857
0.00408897
0.00421681
0.00433352
0.00444051
0.0045391
0.00463047
0.00471561
0.00479535
0.00487037
0.0049417
0.00500931
0.00507847
0.00157415
0.00111194
0.0010528
0.00112547
0.00123015
0.00133508
0.0014313
0.00151677
0.00159202
0.00165796
0.00171604
0.00176741
0.00181309
0.00185399
0.00189095
0.00192462
0.00195554
0.00198414
0.00201073
0.00203556
0.00205883
0.00208068
0.00210123
0.0021206
0.0021389
0.0021562
0.00217252
0.00218777
0.0022019
0.00221502
0.00222758
0.00224035
0.00225461
0.00226992
0.00229082
0.00166894
0.00114593
0.000891971
0.000751109
0.000665108
0.000609151
0.00057191
0.000548452
0.000537538
0.00054049
0.000560493
0.000601739
0.000668409
0.000764037
0.000891445
0.00105228
0.00124586
0.00146842
0.00171373
0.00197455
0.00224403
0.00251658
0.00278809
0.00305573
0.00331763
0.00357261
0.00381989
0.00405897
0.00428956
0.00451176
0.00472624
0.00493429
0.0051373
0.00533543
0.00552623
0.000802154
0.000613098
0.000521032
0.000487196
0.000472571
0.000465042
0.000460915
0.000458679
0.000457586
0.000457185
0.000457217
0.000457517
0.000457959
0.000458438
0.000458869
0.000459186
0.000459344
0.000459317
0.000459095
0.000458685
0.000458103
0.000457372
0.000456518
0.000455567
0.000454547
0.000453479
0.000452385
0.000451281
0.000450179
0.000449088
0.000448009
0.000446964
0.000445921
0.000445092
0.000443842
0.000857945
0.000665668
0.000565866
0.00052761
0.000510801
0.000502083
0.000497268
0.000494634
0.000493307
0.000492808
0.000492853
0.00049325
0.00049386
0.000494572
0.000495294
0.000495955
0.0004965
0.000496891
0.000497109
0.000497146
0.000497011
0.000496718
0.000496287
0.000495741
0.000495104
0.000494398
0.000493644
0.000492859
0.000492056
0.000491247
0.000490437
0.00048965
0.000488858
0.000488259
0.000487241
0.000813731
0.000552963
0.000493164
0.000474778
0.000470833
0.00047354
0.000479106
0.000485761
0.000492554
0.000499058
0.000505104
0.000510627
0.000515594
0.000519976
0.000523751
0.000526898
0.000529412
0.00053131
0.000532626
0.000533414
0.000533735
0.00053366
0.000533259
0.000532603
0.000531756
0.000530773
0.000529694
0.000528534
0.000527293
0.000525968
0.000524607
0.000523321
0.000522492
0.000522088
0.000523868
0.00166922
0.00114855
0.000895804
0.000757565
0.000678535
0.000638529
0.000632823
0.000663975
0.000736045
0.00085043
0.00100567
0.00119881
0.00142474
0.00167577
0.00194289
0.00221733
0.00249174
0.00276062
0.00302015
0.00326791
0.00350252
0.00372359
0.00393136
0.00412653
0.00430999
0.00448279
0.00464594
0.00480033
0.00494675
0.00508592
0.00521873
0.00534638
0.00547066
0.00559295
0.0057156
0.00167118
0.0011506
0.000913831
0.000822456
0.000840982
0.000957698
0.00114781
0.00138155
0.00163935
0.00190846
0.00217911
0.00244424
0.00269928
0.00294154
0.00316973
0.00338361
0.00358342
0.00376982
0.00394366
0.00410584
0.00425729
0.00439893
0.00453167
0.00465645
0.00477412
0.00488531
0.00499029
0.00508902
0.00518163
0.00526911
0.00535377
0.00543848
0.00552487
0.00560987
0.0056894
0.00164091
0.00116014
0.0010737
0.00115152
0.0012875
0.00143812
0.00158549
0.00172236
0.00184632
0.00195725
0.00205609
0.00214411
0.00222268
0.00229312
0.0023566
0.0024142
0.00246683
0.00251524
0.00256011
0.00260195
0.00264121
0.00267828
0.00271354
0.00274732
0.00277982
0.00281101
0.00284066
0.00286849
0.00289472
0.0029205
0.0029478
0.00297834
0.00301167
0.00304333
0.00306647
0.00159842
0.00113138
0.00106295
0.00113724
0.00125278
0.00137322
0.00148637
0.00158865
0.00167963
0.00175996
0.00183055
0.00189227
0.00194592
0.00199215
0.00203151
0.00206455
0.00209179
0.00211378
0.00213113
0.00214444
0.00215435
0.00216145
0.0021663
0.00216941
0.00217124
0.00217215
0.00217248
0.00217244
0.00217216
0.00217164
0.00217092
0.00216996
0.00216952
0.00216862
0.00217494
0.000850843
0.000653262
0.000555329
0.000516739
0.000499537
0.000490849
0.000486198
0.000483817
0.000482787
0.000482584
0.000482918
0.000483619
0.000484586
0.000485754
0.000487079
0.00048853
0.000490082
0.000491715
0.000493414
0.000495163
0.000496952
0.000498769
0.000500607
0.00050246
0.000504319
0.000506173
0.000508008
0.000509819
0.000511611
0.000513412
0.000515251
0.000517136
0.000519015
0.000520681
0.000522481
0.00143381
0.000975894
0.000917561
0.000965015
0.00103215
0.00109774
0.0011569
0.00120882
0.0012543
0.00129414
0.0013293
0.00136053
0.00138846
0.00141365
0.0014366
0.0014577
0.00147727
0.00149555
0.0015127
0.00152885
0.0015441
0.0015585
0.00157212
0.00158501
0.00159722
0.0016088
0.00161974
0.00162999
0.0016395
0.0016483
0.00165669
0.00166515
0.00167474
0.00168484
0.00170093
0.000856784
0.000661686
0.000561245
0.000521173
0.00050334
0.000494305
0.000489431
0.000486896
0.000485758
0.000485483
0.000485768
0.000486436
0.000487377
0.000488524
0.000489832
0.00049127
0.000492812
0.000494436
0.000496127
0.00049787
0.00049965
0.000501459
0.000503287
0.000505127
0.000506969
0.000508802
0.000510613
0.000512396
0.00051416
0.000515927
0.000517721
0.000519547
0.000521355
0.00052296
0.000524698
0.00166899
0.00114756
0.000893751
0.000752881
0.000666702
0.00061022
0.000571769
0.000545817
0.000530181
0.000524863
0.000531498
0.000552891
0.000592451
0.000653625
0.000739686
0.000853698
0.000997925
0.00117267
0.00137547
0.00160149
0.00184464
0.00209878
0.00235874
0.00262069
0.00288213
0.00314148
0.00339787
0.00365082
0.00389988
0.00414459
0.00438459
0.0046198
0.00485055
0.00507711
0.00529915
0.00161781
0.00116071
0.00111315
0.00121609
0.00136065
0.00150844
0.00164682
0.00177217
0.00188416
0.00198362
0.00207173
0.00214981
0.00221907
0.00228068
0.00233557
0.00238453
0.00242818
0.00246706
0.00250162
0.00253228
0.00255942
0.00258342
0.00260464
0.00262346
0.00264028
0.00265543
0.00266917
0.00268158
0.00269268
0.00270255
0.00271168
0.00272088
0.00273164
0.00274306
0.00276167
0.00155701
0.00109758
0.00103514
0.00110595
0.00121426
0.00132826
0.00143594
0.0015325
0.00161658
0.00168755
0.00174537
0.00179037
0.00182295
0.0018439
0.00185443
0.00185607
0.00185048
0.00183932
0.00182408
0.00180593
0.00178598
0.00176498
0.0017435
0.00172202
0.00170094
0.00168064
0.0016614
0.00164327
0.00162581
0.00160795
0.00158823
0.00156548
0.0015409
0.00151802
0.00150807
0.00166017
0.00119771
0.00112537
0.0012187
0.00136976
0.00153709
0.00170238
0.00185643
0.00199479
0.00211481
0.00221562
0.00229691
0.00235903
0.00240314
0.00243106
0.00244505
0.00244761
0.00244121
0.00242808
0.00241015
0.00238896
0.00236572
0.00234135
0.00231656
0.00229194
0.00226801
0.00224517
0.00222358
0.00220287
0.002182
0.00215936
0.00213354
0.00210533
0.00207821
0.00206393
0.00167298
0.00120209
0.00111321
0.00121325
0.00138836
0.00158609
0.00178349
0.00196911
0.00213723
0.00228507
0.00241059
0.00251338
0.00259369
0.00265265
0.00269222
0.00271496
0.00272375
0.00272147
0.00271076
0.00269393
0.00267286
0.00264905
0.00262368
0.00259763
0.00257161
0.00254604
0.00252093
0.00249593
0.00247056
0.00244486
0.00242033
0.00240052
0.00239091
0.00239415
0.00241006
0.00166909
0.0011466
0.000893106
0.000754174
0.000673797
0.00063102
0.00062039
0.000644279
0.000707692
0.000813678
0.000961823
0.00114956
0.0013722
0.00162218
0.00189021
0.00216729
0.00244616
0.00272164
0.00299035
0.00325027
0.0035003
0.00373998
0.00396924
0.00418827
0.00439737
0.00459697
0.00478739
0.00496883
0.00514159
0.00530645
0.00546498
0.0056193
0.00577102
0.00591915
0.00606023
0.000876302
0.000573742
0.000511734
0.000499404
0.000501521
0.000509013
0.000518429
0.000528161
0.000537517
0.00054627
0.000554397
0.000561944
0.000568978
0.000575582
0.000581838
0.000587819
0.000593587
0.000599189
0.000604664
0.00061004
0.000615335
0.000620571
0.000625769
0.000630955
0.000636137
0.000641285
0.000646322
0.000651166
0.000655822
0.000660468
0.000665454
0.000671085
0.00067729
0.000683294
0.000687822
0.00167
0.00114788
0.000901401
0.000784221
0.000752439
0.000797383
0.000914234
0.00108958
0.00130793
0.00155659
0.00182388
0.0020991
0.00237369
0.00264169
0.0028994
0.00314473
0.00337675
0.0035953
0.00380069
0.00399353
0.00417457
0.00434464
0.00450464
0.00465551
0.00479813
0.00493319
0.00506102
0.00518172
0.00529551
0.0054035
0.00550797
0.00561168
0.00571603
0.00581802
0.00591229
0.00166911
0.0011482
0.000894803
0.000754914
0.000671665
0.000622494
0.000599658
0.000603317
0.000637994
0.000709075
0.00081964
0.000969865
0.00115787
0.00137931
0.00162702
0.00189222
0.00216627
0.00244196
0.0027138
0.00297799
0.00323179
0.00347406
0.00370442
0.00392304
0.00413047
0.00432745
0.0045148
0.00469328
0.00486357
0.00502634
0.00518244
0.00533303
0.00547974
0.00562377
0.00576673
0.000815202
0.000618723
0.000527418
0.00049256
0.000477006
0.000469096
0.000464867
0.000462728
0.000461827
0.000461679
0.000462022
0.000462709
0.000463648
0.000464781
0.000466067
0.000467473
0.000468973
0.000470548
0.000472177
0.000473847
0.000475546
0.000477265
0.000478996
0.000480735
0.000482475
0.000484205
0.000485911
0.000487583
0.000489225
0.000490861
0.000492524
0.000494234
0.000495946
0.000497483
0.000499044
0.000859009
0.00066399
0.000564726
0.000527273
0.000510607
0.000502021
0.000497488
0.000495203
0.000494228
0.000494023
0.000494271
0.000494761
0.000495335
0.00049587
0.000496268
0.000496463
0.000496416
0.000496112
0.000495559
0.000494777
0.000493798
0.000492657
0.00049139
0.00049003
0.000488608
0.000487151
0.000485677
0.000484202
0.000482735
0.00048129
0.00047988
0.000478554
0.000477286
0.000476386
0.000474775
0.00107553
0.000691035
0.000634637
0.00063959
0.000657676
0.000679255
0.000700474
0.000719962
0.000737312
0.00075246
0.000765308
0.000775705
0.000783552
0.00078884
0.000791667
0.000792232
0.000790816
0.000787746
0.000783364
0.000777996
0.000771931
0.000765414
0.000758647
0.000751796
0.000744986
0.000738304
0.000731786
0.00072541
0.000719114
0.000712852
0.000706739
0.000701068
0.000696782
0.000693607
0.000695794
0.00099818
0.000692571
0.000634231
0.000625136
0.000629302
0.000638482
0.000649289
0.000660026
0.000670047
0.000679082
0.000686902
0.000693314
0.000698158
0.000701351
0.000702908
0.000702924
0.000701558
0.00069901
0.0006955
0.000691245
0.000686444
0.000681271
0.000675871
0.000670367
0.000664858
0.00065943
0.000654149
0.000649049
0.000644122
0.000639286
0.000634436
0.000629432
0.000624497
0.000619434
0.000617009
0.00116262
0.000752269
0.000698873
0.000722554
0.000761825
0.000802465
0.000840481
0.000874582
0.00090478
0.000931443
0.000955074
0.000976115
0.000994967
0.00101203
0.00102766
0.00104214
0.00105572
0.00106857
0.00108083
0.00109259
0.00110392
0.00111485
0.00112545
0.00113572
0.00114571
0.00115538
0.00116465
0.00117342
0.00118165
0.00118947
0.00119733
0.00120582
0.0012155
0.00122578
0.00123658
0.00166364
0.00119621
0.0011233
0.00122152
0.00138079
0.00155558
0.00172671
0.0018859
0.00203022
0.00215944
0.00227455
0.00237706
0.00246859
0.0025507
0.00262468
0.00269167
0.00275264
0.00280839
0.00285961
0.00290685
0.0029506
0.00299128
0.00302929
0.00306504
0.0030989
0.00313106
0.00316142
0.00318963
0.00321548
0.0032395
0.00326332
0.00328909
0.00331816
0.00334803
0.0033765
0.00154449
0.00106154
0.00098106
0.00103831
0.00113511
0.00123726
0.00133358
0.00142059
0.00149774
0.00156573
0.00162565
0.00167865
0.00172579
0.00176798
0.00180605
0.00184073
0.0018726
0.00190217
0.0019298
0.00195583
0.00198051
0.00200406
0.00202671
0.00204865
0.00207002
0.00209076
0.00211062
0.00212933
0.00214699
0.0021644
0.00218312
0.00220454
0.00222847
0.00225159
0.00226831
0.00167318
0.00116246
0.000966
0.000956244
0.00107719
0.00127137
0.00149882
0.00173986
0.0019819
0.0022161
0.00243688
0.00264121
0.00282763
0.00299582
0.00314597
0.00327862
0.00339456
0.00349485
0.00358079
0.00365386
0.00371566
0.00376781
0.00381188
0.0038493
0.00388139
0.00390931
0.00393402
0.00395627
0.00397659
0.00399533
0.00401281
0.00402936
0.00404612
0.00406279
0.0040868
0.000609904
0.000447235
0.000381731
0.000358544
0.000348111
0.000342659
0.000339712
0.000338204
0.000337572
0.000337499
0.000337797
0.000338349
0.00033908
0.000339939
0.000340889
0.000341897
0.000342935
0.000343978
0.000345007
0.000346004
0.000346954
0.00034785
0.000348685
0.000349458
0.00035017
0.000350824
0.00035142
0.00035196
0.000352447
0.000352892
0.000353308
0.000353722
0.000354124
0.000354548
0.000354779
0.000871374
0.000562203
0.000513974
0.000509053
0.000516365
0.000528168
0.000540639
0.000552365
0.000562974
0.000572305
0.000580161
0.00058632
0.000590622
0.000593008
0.000593528
0.000592333
0.000589647
0.000585734
0.000580865
0.000575295
0.000569249
0.000562914
0.000556448
0.000549976
0.000543594
0.000537356
0.000531268
0.000525277
0.000519321
0.000513404
0.000507742
0.000502789
0.000499424
0.000497511
0.000499021
0.00168111
0.00120583
0.00111643
0.00122178
0.00140429
0.00160934
0.00181483
0.00201034
0.00219106
0.00235549
0.00250391
0.00263748
0.00275771
0.00286617
0.00296431
0.00305342
0.00313468
0.00320914
0.00327768
0.00334109
0.00340001
0.00345504
0.00350673
0.00355565
0.00360225
0.00364671
0.00368885
0.00372823
0.00376478
0.00379944
0.0038345
0.00387249
0.00391425
0.00395547
0.00399211
0.00166881
0.00121209
0.00115271
0.00125372
0.00140805
0.0015745
0.00173605
0.00188553
0.00202056
0.00214115
0.00224838
0.00234377
0.00242891
0.00250525
0.00257404
0.00263638
0.00269318
0.00274524
0.00279319
0.00283758
0.00287884
0.00291739
0.0029536
0.00298788
0.00302058
0.00305181
0.00308139
0.00310889
0.00313413
0.00315777
0.00318166
0.00320806
0.00323804
0.00326839
0.00329591
0.000696067
0.000514552
0.000436851
0.000409219
0.000396827
0.000390326
0.000386779
0.000384928
0.00038411
0.000383952
0.000384233
0.000384816
0.000385614
0.000386569
0.000387636
0.000388779
0.000389966
0.00039117
0.000392368
0.000393538
0.000394665
0.000395738
0.00039675
0.000397699
0.000398583
0.000399403
0.00040016
0.000400855
0.000401489
0.000402077
0.000402633
0.000403186
0.000403719
0.000404268
0.000404525
0.00157521
0.00111466
0.00105058
0.00112042
0.0012271
0.00133911
0.00144509
0.00154032
0.00162325
0.00169391
0.00175201
0.00179764
0.00183107
0.00185304
0.00186471
0.00186757
0.00186321
0.00185326
0.00183917
0.00182218
0.00180329
0.00178328
0.00176275
0.00174215
0.0017219
0.00170234
0.00168376
0.00166622
0.00164938
0.0016323
0.00161365
0.0015923
0.00156923
0.0015472
0.00153743
0.00162433
0.0011678
0.001109
0.00119023
0.00131311
0.00144376
0.00156815
0.00168037
0.0017783
0.00186206
0.00193162
0.00198678
0.00202786
0.00205565
0.00207145
0.00207689
0.00207384
0.00206416
0.00204956
0.00203152
0.00201122
0.00198961
0.00196742
0.00194525
0.00192349
0.00190233
0.00188166
0.0018611
0.00184018
0.00181897
0.00179891
0.00178318
0.00177661
0.00178071
0.00179622
0.00167029
0.00114951
0.000905752
0.000795612
0.000777708
0.000844282
0.000987238
0.00118848
0.00142938
0.00169488
0.00197197
0.00225047
0.00252309
0.00278519
0.00303416
0.0032688
0.0034887
0.00369416
0.00388581
0.00406441
0.00423081
0.00438586
0.00453044
0.00466544
0.00479176
0.00491017
0.00502125
0.00512525
0.00522243
0.0053135
0.00540015
0.00548483
0.00556976
0.00565405
0.00573657
0.00167335
0.00118566
0.00106616
0.00113719
0.00129215
0.00147997
0.00167742
0.0018704
0.00205091
0.00221586
0.00236419
0.00249601
0.00261182
0.00271222
0.00279787
0.00286957
0.00292836
0.00297553
0.00301249
0.00304073
0.00306173
0.00307687
0.00308742
0.00309449
0.00309904
0.00310184
0.00310346
0.00310423
0.00310426
0.00310349
0.00310211
0.00310083
0.003102
0.00310726
0.00312542
0.00165558
0.00120945
0.00115981
0.00125035
0.00138217
0.0015208
0.00165299
0.00177375
0.00188174
0.00197747
0.00206217
0.00213727
0.00220417
0.00226413
0.00231823
0.00236734
0.00241224
0.00245357
0.00249187
0.00252758
0.00256105
0.00259259
0.00262254
0.0026512
0.00267885
0.00270553
0.00273097
0.00275475
0.00277671
0.00279757
0.00281915
0.00284348
0.00287126
0.0028989
0.00292301
0.000830944
0.000640833
0.000544331
0.000507905
0.000492029
0.000483827
0.000479304
0.000476828
0.000475579
0.0004751
0.000475126
0.000475473
0.000476009
0.000476627
0.000477238
0.000477773
0.00047818
0.000478425
0.000478492
0.000478379
0.000478095
0.000477657
0.000477088
0.000476412
0.000475652
0.000474831
0.000473971
0.000473086
0.00047219
0.000471295
0.000470402
0.000469538
0.000468671
0.000468001
0.000466949
0.00166882
0.00114303
0.000888615
0.000747572
0.000661293
0.000604333
0.00056444
0.000535164
0.000512855
0.000495326
0.000481199
0.000469575
0.000459844
0.000451585
0.000444504
0.000438394
0.000433119
0.000428595
0.000424792
0.000421727
0.000419471
0.000418153
0.000417974
0.000419216
0.000422259
0.0004276
0.000435878
0.000447904
0.000464701
0.000487571
0.000518156
0.000558515
0.000611124
0.000678774
0.000762175
0.000835463
0.000583934
0.00052044
0.000501788
0.000498096
0.000500229
0.00050464
0.000509767
0.000515023
0.000520208
0.000525238
0.00053008
0.000534734
0.000539215
0.000543549
0.000547756
0.000551849
0.00055583
0.000559693
0.00056343
0.00056703
0.000570482
0.000573779
0.000576916
0.000579896
0.00058272
0.000585383
0.000587876
0.00059019
0.000592334
0.000594366
0.000596382
0.00059863
0.000600926
0.000604469
0.000971286
0.000674674
0.000618959
0.000611243
0.000616094
0.000625496
0.000636332
0.00064699
0.00065688
0.000665791
0.000673474
0.000679707
0.000684311
0.000687193
0.000688371
0.000687955
0.00068612
0.000683083
0.000679082
0.000674346
0.000669082
0.000663468
0.00065765
0.000651752
0.000645876
0.000640106
0.000634509
0.000629115
0.0006239
0.000618761
0.000613569
0.000608177
0.000602824
0.000597493
0.000594656
0.000838049
0.000643403
0.000547889
0.000511735
0.000495471
0.000486949
0.00048227
0.000479766
0.000478582
0.000478238
0.000478443
0.000479009
0.000479804
0.000480726
0.000481692
0.000482636
0.000483505
0.000484259
0.000484875
0.000485337
0.000485646
0.000485806
0.000485832
0.000485739
0.000485547
0.000485273
0.000484937
0.000484552
0.000484132
0.000483688
0.000483228
0.000482781
0.00048232
0.000482026
0.000481255
0.00132913
0.000892686
0.000836504
0.000870277
0.000920432
0.000970097
0.00101541
0.00105556
0.00109095
0.00112225
0.00114998
0.00117461
0.0011967
0.00121669
0.00123498
0.0012519
0.00126771
0.00128259
0.0012967
0.00131012
0.00132292
0.00133515
0.00134685
0.00135805
0.00136878
0.00137905
0.00138883
0.00139803
0.00140661
0.00141462
0.00142241
0.00143046
0.0014396
0.00144934
0.00146275
0.00140797
0.000967839
0.000925995
0.000987295
0.00106557
0.00114131
0.00120969
0.00126921
0.00132035
0.00136367
0.00139949
0.00142782
0.00144876
0.00146261
0.00146996
0.00147162
0.00146853
0.00146163
0.00145185
0.00143999
0.00142672
0.00141258
0.00139798
0.00138327
0.00136872
0.00135459
0.00134106
0.0013282
0.00131585
0.00130348
0.00129035
0.00127574
0.00126034
0.00124503
0.00123861
0.00141997
0.000971456
0.00091963
0.000972323
0.001046
0.00111977
0.00118626
0.00124398
0.00129373
0.00133608
0.00137117
0.00139902
0.00141972
0.00143353
0.00144097
0.00144277
0.00143982
0.00143307
0.00142342
0.00141169
0.00139855
0.00138455
0.00137016
0.0013557
0.00134144
0.00132756
0.00131406
0.0013008
0.00128752
0.0012741
0.00126096
0.00124928
0.00124166
0.0012388
0.00124624
0.000790092
0.000605216
0.000516287
0.000483986
0.000469383
0.000461697
0.000457598
0.00045551
0.000454564
0.000454226
0.000454156
0.00045411
0.000453904
0.000453411
0.00045256
0.000451331
0.000449741
0.000447833
0.000445662
0.000443287
0.000440765
0.000438145
0.000435473
0.000432785
0.000430113
0.000427483
0.000424909
0.000422395
0.000419927
0.000417485
0.000415048
0.000412667
0.000410343
0.000408643
0.000406424
0.000726659
0.000550098
0.000468619
0.000439948
0.000427174
0.000420538
0.000417016
0.000415198
0.00041435
0.000414021
0.000413923
0.000413846
0.000413629
0.000413158
0.000412367
0.000411236
0.000409778
0.000408029
0.000406038
0.000403859
0.000401546
0.000399146
0.000396701
0.000394244
0.0003918
0.000389385
0.000387004
0.000384661
0.000382366
0.000380154
0.000378082
0.00037625
0.000374606
0.000373407
0.000371166
0.00136196
0.000936261
0.000895351
0.000948156
0.00101451
0.00107802
0.00113523
0.00118471
0.00122725
0.00126352
0.00129376
0.00131801
0.00133633
0.00134893
0.00135622
0.00135879
0.00135731
0.00135254
0.0013452
0.00133594
0.00132535
0.00131389
0.00130194
0.0012898
0.00127771
0.00126587
0.00125446
0.00124355
0.00123309
0.00122281
0.0012123
0.00120105
0.00118951
0.0011773
0.00117197
0.00142909
0.000962293
0.00090008
0.000946019
0.00101352
0.00108108
0.00114259
0.0011968
0.00124374
0.00128391
0.00131752
0.00134466
0.00136539
0.00137995
0.00138875
0.00139239
0.00139161
0.00138721
0.00137999
0.0013707
0.00135996
0.0013483
0.00133615
0.00132383
0.00131162
0.00129967
0.00128805
0.0012767
0.00126543
0.00125412
0.00124294
0.00123257
0.00122498
0.00122046
0.00122584
0.00167313
0.00115649
0.000942345
0.000901667
0.000994725
0.0011823
0.0014203
0.00168074
0.00194783
0.00221117
0.002464
0.00270263
0.00292553
0.00313239
0.00332379
0.00350055
0.00366385
0.00381487
0.00395478
0.00408465
0.00420551
0.00431828
0.00442388
0.00452322
0.00461707
0.00470594
0.00478992
0.00486884
0.00494277
0.00501283
0.00508154
0.00515184
0.00522492
0.00529669
0.00536197
0.00166996
0.00115482
0.000903463
0.000766798
0.000691778
0.000661317
0.000674302
0.000735464
0.000846969
0.00100524
0.00120401
0.0014358
0.00169045
0.00195491
0.00221595
0.00246246
0.00268669
0.0028844
0.00305426
0.00319706
0.00331491
0.0034106
0.00348715
0.00354757
0.00359468
0.00363107
0.00365902
0.00368048
0.00369701
0.00370962
0.00371869
0.00372411
0.00372597
0.00372477
0.00372559
0.00166992
0.00115487
0.000903351
0.000766487
0.00069118
0.000660558
0.000674334
0.000738923
0.000858271
0.00102916
0.00124386
0.00149224
0.0017612
0.00203576
0.00230193
0.00254892
0.00276995
0.00296199
0.00312477
0.00325993
0.00337015
0.00345861
0.00352857
0.00358317
0.00362525
0.00365734
0.00368152
0.00369944
0.00371229
0.00372093
0.00372628
0.00372986
0.00373446
0.00374325
0.00376134
0.000829597
0.000550052
0.000496069
0.000488021
0.000492733
0.00050128
0.000510407
0.000519035
0.00052683
0.00053381
0.000540062
0.000545597
0.000550358
0.000554283
0.000557331
0.00055949
0.000560784
0.000561267
0.000561023
0.000560156
0.000558773
0.000556986
0.000554895
0.000552591
0.000550154
0.000547651
0.000545141
0.000542661
0.000540235
0.000537855
0.000535504
0.000533122
0.000530838
0.00052836
0.000527333
0.00162285
0.00114125
0.00105588
0.00112829
0.00125494
0.00139393
0.00152872
0.00165307
0.00176509
0.00186493
0.00195359
0.00203234
0.00210249
0.00216528
0.00222186
0.00227319
0.00232012
0.00236334
0.00240345
0.00244092
0.00247614
0.00250947
0.00254123
0.00257169
0.00260102
0.00262918
0.00265594
0.00268107
0.0027048
0.00272814
0.0027529
0.00278055
0.00281067
0.00283925
0.00285989
0.00104235
0.000705921
0.00064556
0.000640557
0.000649199
0.000662101
0.000675935
0.00068932
0.000701859
0.000713453
0.000724058
0.000733649
0.000742218
0.000749751
0.000756241
0.000761691
0.000766123
0.00076958
0.000772127
0.000773852
0.000774856
0.000775247
0.000775134
0.000774623
0.00077381
0.000772785
0.000771623
0.000770374
0.000769071
0.000767711
0.000766313
0.000764858
0.000763644
0.000762151
0.00076359
0.00167943
0.00119642
0.00108949
0.00118082
0.00136003
0.0015694
0.0017836
0.00199
0.00218246
0.00235868
0.00251844
0.00266267
0.0027928
0.00291039
0.00301686
0.00311356
0.0032017
0.00328235
0.00335643
0.00342471
0.0034879
0.0035466
0.00360141
0.00365291
0.00370161
0.00374776
0.00379124
0.00383168
0.00386897
0.00390396
0.00393881
0.00397611
0.00401703
0.00405793
0.00409482
0.000812513
0.000617004
0.000523859
0.000489373
0.000474016
0.000466036
0.000461681
0.000459396
0.000458362
0.00045812
0.00045841
0.000459064
0.000459976
0.00046108
0.000462327
0.000463675
0.000465091
0.000466542
0.000468004
0.000469452
0.000470869
0.000472239
0.000473555
0.00047481
0.000476002
0.000477128
0.000478186
0.000479173
0.000480092
0.000480957
0.000481789
0.000482619
0.000483427
0.000484219
0.000484721
0.00140832
0.000946078
0.000881596
0.000917552
0.000972413
0.00102822
0.00108017
0.00112658
0.00116707
0.00120201
0.00123186
0.001257
0.00127764
0.001294
0.00130631
0.00131487
0.00132006
0.00132231
0.00132211
0.00131993
0.00131623
0.00131141
0.00130581
0.00129971
0.00129337
0.00128696
0.00128061
0.00127434
0.0012681
0.00126178
0.00125543
0.00124922
0.00124447
0.00124084
0.00124655
0.00155163
0.00107141
0.000997535
0.00106211
0.00116563
0.00127444
0.00137736
0.00147058
0.00155335
0.00162634
0.00169071
0.00174771
0.00179844
0.0018439
0.00188493
0.00192228
0.00195656
0.00198827
0.00201786
0.00204566
0.00207196
0.00209699
0.00212102
0.00214427
0.00216693
0.00218898
0.0022102
0.00223022
0.00224899
0.0022672
0.00228644
0.00230839
0.00233336
0.00235829
0.00237809
0.00166525
0.00119887
0.00112929
0.00122668
0.001382
0.00155188
0.00171785
0.00187177
0.00201092
0.00213531
0.00224607
0.00234474
0.0024329
0.00251202
0.00258338
0.00264808
0.0027071
0.00276125
0.00281124
0.00285767
0.00290103
0.00294174
0.00298024
0.00301695
0.00305221
0.00308612
0.00311842
0.00314866
0.00317672
0.00320346
0.00323096
0.00326153
0.00329585
0.00332989
0.00335924
0.00157696
0.00111921
0.0010625
0.00113923
0.00125142
0.00136789
0.00147716
0.00157484
0.00165925
0.00173084
0.00178962
0.00183563
0.00186923
0.00189115
0.00190255
0.00190487
0.00189978
0.00188893
0.00187385
0.00185583
0.00183592
0.00181495
0.00179355
0.00177225
0.00175141
0.00173115
0.00171133
0.00169152
0.00167131
0.00165091
0.00163198
0.00161788
0.00161323
0.00161882
0.00163341
0.000803157
0.000614093
0.000521206
0.000485638
0.000469572
0.000461251
0.000456879
0.00045474
0.000453902
0.000453821
0.000454196
0.000454851
0.000455665
0.000456548
0.000457429
0.000458248
0.000458957
0.000459523
0.000459928
0.000460166
0.000460241
0.000460165
0.000459956
0.000459633
0.000459218
0.000458728
0.000458183
0.000457594
0.000456973
0.000456334
0.000455692
0.000455093
0.000454543
0.000454215
0.000453648
0.000905182
0.000596193
0.000534746
0.000523759
0.000526844
0.00053515
0.000545334
0.000555788
0.000565798
0.000575135
0.000583793
0.000591826
0.000599308
0.00060633
0.000612979
0.000619333
0.000625456
0.000631399
0.000637204
0.000642898
0.000648505
0.000654043
0.000659539
0.00066502
0.000670497
0.000675939
0.000681262
0.000686376
0.000691276
0.000696149
0.000701375
0.000707288
0.000713838
0.000720205
0.000724995
0.00167022
0.00114822
0.000905669
0.000799497
0.000789602
0.000867502
0.00102136
0.00122992
0.00147406
0.00173917
0.00201308
0.00228628
0.00255223
0.00280698
0.00304848
0.00327592
0.00348925
0.00368892
0.00387564
0.00405027
0.00421373
0.00436697
0.00451096
0.00464666
0.00477495
0.00489647
0.00501149
0.00512005
0.00522245
0.00531994
0.00541499
0.00551043
0.00560737
0.00570205
0.00578754
0.00167291
0.00117159
0.00102704
0.00108412
0.00124478
0.00144669
0.00166131
0.00187411
0.00207701
0.00226595
0.00243944
0.00259749
0.00274095
0.00287108
0.00298921
0.00309684
0.00319529
0.00328575
0.00336924
0.00344664
0.00351872
0.00358616
0.00364955
0.00370945
0.00376625
0.0038201
0.00387091
0.00391854
0.00396333
0.00400654
0.00405035
0.00409675
0.00414566
0.00419265
0.00423144
0.00166895
0.00114646
0.000892538
0.000751625
0.000665464
0.000609089
0.000570921
0.000545621
0.00053135
0.000528644
0.000539814
0.000568337
0.000618068
0.000692593
0.000795109
0.00092841
0.00109411
0.00129142
0.00151658
0.00176339
0.00202459
0.00229319
0.00256349
0.00283143
0.00309445
0.00335115
0.00360079
0.00384308
0.00407791
0.0043054
0.00452609
0.00474093
0.00495115
0.00515747
0.00535894
0.0016722
0.00115567
0.000940276
0.00089577
0.000981789
0.00116182
0.00139477
0.00165248
0.00191757
0.00217869
0.00242898
0.00266494
0.00288516
0.0030894
0.00327806
0.00345185
0.00361164
0.00375844
0.00389324
0.00401701
0.00413068
0.00423512
0.0043312
0.00441973
0.00450162
0.0045776
0.00464819
0.00471357
0.0047739
0.00482975
0.00488263
0.00493483
0.00498859
0.00504311
0.00509782
0.00101752
0.00068975
0.000622177
0.00060989
0.000613962
0.000624193
0.000636597
0.000649278
0.000661429
0.000672776
0.000683263
0.000692955
0.000701953
0.000710372
0.000718328
0.000725925
0.000733248
0.000740361
0.000747314
0.000754144
0.000760875
0.000767532
0.000774139
0.00078072
0.00078727
0.000793738
0.00080003
0.00080607
0.000811909
0.000817814
0.000824224
0.000831445
0.000839278
0.000846568
0.000851727
0.00101621
0.000686505
0.00062011
0.000608853
0.00061352
0.000624123
0.000636763
0.000649611
0.000661901
0.00067337
0.00068396
0.000693736
0.000702809
0.000711292
0.000719305
0.000726952
0.000734317
0.000741466
0.000748451
0.000755308
0.000762063
0.000768739
0.000775362
0.00078195
0.0007885
0.000794958
0.000801233
0.000807251
0.000813065
0.000818938
0.000825301
0.000832451
0.000840189
0.000847414
0.000852403
0.00166901
0.00118694
0.00109
0.00118504
0.00135726
0.00155224
0.00174707
0.0019314
0.002101
0.00225467
0.00239289
0.00251684
0.00262797
0.00272783
0.00281803
0.00289991
0.00297459
0.00304307
0.00310615
0.0031645
0.00321863
0.00326901
0.00331602
0.00336002
0.00340134
0.00344017
0.00347657
0.00351048
0.00354189
0.0035712
0.00359953
0.00362851
0.00365981
0.0036929
0.00372787
0.0016716
0.00115191
0.000924456
0.000855197
0.000907669
0.00105808
0.00127159
0.00151924
0.00178296
0.00205021
0.00231213
0.00256322
0.00280056
0.00302292
0.00323019
0.00342284
0.00360171
0.0037678
0.00392216
0.00406584
0.00419982
0.00432507
0.00444252
0.0045531
0.00465765
0.00475669
0.00485037
0.00493856
0.00502142
0.00510016
0.00517739
0.00525602
0.00533713
0.00541645
0.00548751
0.00167224
0.00115564
0.000939016
0.000892002
0.000975555
0.00115524
0.0013897
0.00164956
0.00191695
0.00218044
0.00243317
0.00267158
0.00289424
0.00310091
0.003292
0.00346827
0.00363064
0.00378017
0.00391792
0.00404491
0.00416212
0.00427043
0.00437072
0.0044638
0.00455052
0.00463155
0.00470725
0.0047777
0.00484298
0.00490372
0.00496165
0.00501923
0.00507861
0.00513842
0.00519744
0.00166936
0.00114696
0.000895212
0.000762736
0.00069814
0.000687211
0.000730573
0.000830222
0.000982292
0.00117899
0.00141168
0.00167048
0.00194476
0.00222485
0.00250324
0.00277481
0.00303649
0.00328658
0.00352435
0.00374971
0.00396295
0.00416462
0.0043554
0.00453603
0.00470726
0.00486974
0.00502386
0.00516988
0.00530816
0.00543972
0.00556652
0.00569097
0.00581458
0.00593543
0.00604926
0.000739194
0.000557944
0.000474339
0.000445209
0.000432362
0.000425735
0.000422248
0.000420462
0.000419639
0.000419339
0.000419284
0.000419262
0.000419112
0.00041872
0.000418016
0.000416974
0.000415605
0.000413941
0.000412029
0.000409923
0.000407676
0.000405334
0.000402941
0.000400532
0.000398131
0.000395757
0.000393416
0.000391113
0.000388857
0.000386677
0.00038462
0.000382782
0.000381115
0.000379911
0.000377711
0.000843764
0.000651886
0.000556196
0.00052091
0.000505106
0.000496826
0.000492394
0.000490121
0.000489098
0.000488738
0.000488676
0.000488661
0.000488496
0.000488048
0.000487237
0.000486038
0.000484465
0.000482557
0.000480368
0.000477958
0.000475386
0.000472705
0.000469962
0.000467196
0.000464441
0.000461723
0.00045906
0.000456459
0.000453909
0.000451392
0.000448886
0.000446433
0.000444023
0.000442215
0.000439842
0.000953009
0.000740792
0.000629798
0.000586381
0.000566867
0.000556657
0.000551063
0.000548116
0.000546767
0.000546388
0.000546632
0.000547303
0.000548271
0.000549452
0.000550779
0.000552197
0.000553656
0.000555112
0.000556525
0.000557866
0.000559112
0.000560249
0.00056127
0.000562174
0.000562965
0.000563651
0.000564241
0.000564743
0.000565167
0.000565524
0.00056583
0.000566119
0.000566405
0.000566765
0.000567069
0.00167328
0.00116971
0.00101825
0.00106722
0.00122114
0.00141886
0.00163264
0.00184759
0.00205461
0.0022488
0.00242809
0.00259215
0.0027416
0.00287753
0.00300124
0.00311412
0.00321745
0.00331242
0.00340006
0.00348132
0.00355699
0.00362778
0.00369438
0.00375738
0.00381723
0.00387411
0.00392786
0.00397831
0.0040258
0.00407181
0.00411886
0.00416917
0.00422239
0.004273
0.00431353
0.00166902
0.00114656
0.00089273
0.000752405
0.00066815
0.000616581
0.000588736
0.000583172
0.000602924
0.000652997
0.000737655
0.000858951
0.00101707
0.00121038
0.00143464
0.00168322
0.00194841
0.00222293
0.00250076
0.00277731
0.00304924
0.00331421
0.00357066
0.00381768
0.0040548
0.00428193
0.00449925
0.00470695
0.00490528
0.00509487
0.00527694
0.00545327
0.00562547
0.0057934
0.00595502
0.000833623
0.000594893
0.000530398
0.000508996
0.000502905
0.000503417
0.000506718
0.000511111
0.000515755
0.000520251
0.000524352
0.000527859
0.000530629
0.000532561
0.00053361
0.000533788
0.000533151
0.000531794
0.000529831
0.000527384
0.000524571
0.000521498
0.000518259
0.000514934
0.000511586
0.000508262
0.000504991
0.000501777
0.000498606
0.000495471
0.000492411
0.000489535
0.000487169
0.000485285
0.00048525
0.000715762
0.000540989
0.000462568
0.000432828
0.000419269
0.000412195
0.00040832
0.000406292
0.000405384
0.000405171
0.000405414
0.000405971
0.000406759
0.000407721
0.000408821
0.000410027
0.000411316
0.000412665
0.000414057
0.000415475
0.000416907
0.00041834
0.00041977
0.000421188
0.00042259
0.000423966
0.000425304
0.000426598
0.000427849
0.000429076
0.000430306
0.000431557
0.000432796
0.000433916
0.000435022
0.00166082
0.00118081
0.00109118
0.00117606
0.00132774
0.00150096
0.00167471
0.00183867
0.00198863
0.00212377
0.00224478
0.00235303
0.00245004
0.00253726
0.00261601
0.00268745
0.0027526
0.00281235
0.00286748
0.00291865
0.0029664
0.00301122
0.00305359
0.00309397
0.00313273
0.00316999
0.00320548
0.00323878
0.00326978
0.00329946
0.00333004
0.00336392
0.00340168
0.00343899
0.00347064
0.00071139
0.000533433
0.000455006
0.000426231
0.000413219
0.000406374
0.000402645
0.000400706
0.000399851
0.000399681
0.00039996
0.000400539
0.000401311
0.000402199
0.000403139
0.000404079
0.000404977
0.000405802
0.00040653
0.000407146
0.000407644
0.000408025
0.000408296
0.000408467
0.000408551
0.000408561
0.000408511
0.000408411
0.00040827
0.000408099
0.000407908
0.000407723
0.000407526
0.000407446
0.000407025
0.000950906
0.000641125
0.000576618
0.000561176
0.000561754
0.000569429
0.000579972
0.000591254
0.000602241
0.000612516
0.000621936
0.000630471
0.000638141
0.000644977
0.000650996
0.000656204
0.000660612
0.000664239
0.000667124
0.00066932
0.000670895
0.000671924
0.000672492
0.000672681
0.000672573
0.000672238
0.000671731
0.000671076
0.000670274
0.000669315
0.000668256
0.000667221
0.00066677
0.00066669
0.000670449
0.00160989
0.00114124
0.00106601
0.00113429
0.00124941
0.001375
0.00149657
0.0016082
0.0017087
0.00179824
0.00187756
0.00194751
0.00200896
0.00206267
0.00210933
0.00214952
0.00218381
0.00221273
0.00223684
0.00225669
0.00227285
0.00228587
0.00229628
0.00230458
0.00231123
0.00231663
0.00232113
0.00232494
0.00232819
0.0023309
0.00233318
0.0023352
0.00233791
0.00234064
0.00235047
0.00167113
0.00117906
0.00105101
0.0011146
0.00126573
0.00145124
0.00164774
0.00184168
0.0020251
0.00219415
0.00234739
0.0024853
0.00260871
0.00271855
0.00281568
0.00290088
0.00297492
0.00303862
0.00309284
0.00313856
0.00317678
0.00320853
0.0032348
0.00325658
0.00327474
0.00329009
0.00330326
0.00331469
0.00332463
0.00333318
0.0033406
0.00334754
0.00335597
0.00336714
0.00338904
0.00136223
0.000908877
0.000858367
0.000917388
0.000994163
0.00106629
0.00112938
0.0011834
0.00122944
0.00126897
0.00130305
0.00133233
0.00135721
0.00137794
0.00139477
0.00140793
0.0014177
0.00142443
0.00142848
0.00143029
0.00143026
0.00142878
0.00142621
0.00142286
0.001419
0.00141484
0.00141058
0.00140633
0.00140218
0.0013981
0.00139406
0.00138986
0.00138593
0.0013812
0.00138187
0.00102793
0.000673021
0.000627608
0.00063927
0.000662213
0.000687478
0.000711958
0.000734555
0.000755086
0.000773611
0.000790243
0.000805079
0.000818255
0.000829877
0.000840031
0.000848795
0.000856242
0.000862455
0.000867526
0.00087156
0.000874674
0.000876991
0.000878634
0.000879726
0.000880383
0.000880715
0.000880811
0.000880724
0.000880486
0.000880087
0.000879575
0.000878982
0.000878777
0.000878309
0.000881736
0.000726743
0.000503192
0.000444634
0.00042544
0.000420004
0.000420262
0.000422979
0.000426678
0.000430712
0.000434797
0.000438804
0.00044268
0.00044641
0.000449997
0.000453448
0.000456765
0.000459944
0.000462973
0.000465838
0.000468527
0.000471031
0.000473345
0.000475469
0.00047741
0.000479179
0.000480791
0.000482256
0.00048358
0.000484765
0.000485814
0.000486763
0.000487666
0.000488729
0.000489843
0.000492093
0.00121099
0.000772603
0.000709034
0.000733365
0.000775992
0.000820482
0.000862406
0.000900263
0.000933802
0.000963386
0.000989573
0.0010129
0.00103385
0.00105283
0.00107019
0.00108625
0.00110127
0.00111544
0.00112892
0.00114186
0.00115433
0.00116643
0.00117824
0.00118987
0.00120137
0.00121268
0.00122366
0.00123408
0.00124395
0.00125368
0.00126414
0.0012762
0.00128986
0.00130339
0.00131343
0.000694927
0.000525
0.000444554
0.000414075
0.000400246
0.000392959
0.000388946
0.000386806
0.000385791
0.000385478
0.000385626
0.000386095
0.000386794
0.000387661
0.000388648
0.000389717
0.000390833
0.000391965
0.000393084
0.00039417
0.000395204
0.000396174
0.000397072
0.000397896
0.000398644
0.000399319
0.000399926
0.000400468
0.00040095
0.000401383
0.000401777
0.000402156
0.000402516
0.000402935
0.000403188
0.00154635
0.00107828
0.00101125
0.00107536
0.00117516
0.00127887
0.00137626
0.00146415
0.00154216
0.00161103
0.00167177
0.00172537
0.0017729
0.00181537
0.00185357
0.00188815
0.00191962
0.00194838
0.00197476
0.00199901
0.00202133
0.00204191
0.00206093
0.00207859
0.00209509
0.0021106
0.00212512
0.00213851
0.00215062
0.00216158
0.00217211
0.00218332
0.00219657
0.00221057
0.00222901
0.00108091
0.000690392
0.000632305
0.000644693
0.000672934
0.000704071
0.000734156
0.000761689
0.000786304
0.000808187
0.000827677
0.000845142
0.000860922
0.000875311
0.000888569
0.000900927
0.000912568
0.000923638
0.000934252
0.0009445
0.000954446
0.000964153
0.000973684
0.000983103
0.00099244
0.00100165
0.00101059
0.0010191
0.00102722
0.00103528
0.001044
0.00105403
0.00106527
0.00107623
0.00108403
0.000772044
0.000531609
0.000471499
0.000451624
0.00044637
0.000447806
0.000452244
0.000457781
0.000463595
0.000469297
0.000474716
0.000479771
0.000484434
0.000488693
0.000492536
0.000495944
0.000498904
0.000501411
0.000503469
0.000505098
0.00050633
0.000507205
0.000507768
0.00050807
0.000508161
0.000508084
0.000507876
0.000507554
0.000507121
0.000506578
0.000505962
0.000505363
0.000505091
0.000505121
0.000506955
0.000862999
0.000662526
0.000562315
0.000523416
0.000506247
0.000497589
0.00049296
0.000490602
0.000489587
0.000489391
0.000489726
0.000490431
0.000491407
0.000492589
0.000493932
0.000495402
0.000496974
0.000498626
0.000500339
0.0005021
0.000503896
0.000505718
0.000507558
0.000509411
0.00051127
0.000513123
0.000514957
0.000516763
0.000518544
0.000520328
0.000522146
0.000524016
0.00052589
0.000527562
0.000529356
0.00167278
0.00117878
0.00104534
0.00110609
0.00125983
0.00145157
0.00165599
0.00185852
0.00205073
0.00222859
0.00239082
0.00253766
0.00267
0.00278899
0.00289576
0.0029913
0.00307646
0.00315199
0.00321863
0.00327714
0.00332827
0.00337281
0.00341154
0.00344527
0.00347478
0.00350079
0.00352393
0.00354466
0.00356328
0.00358
0.00359516
0.00360943
0.0036246
0.00364144
0.00366795
0.00104339
0.000679802
0.000641512
0.000661622
0.000690707
0.000720275
0.000747756
0.000772143
0.000793378
0.000811594
0.000826675
0.000838478
0.000846902
0.000851968
0.000853875
0.00085296
0.000849642
0.000844378
0.000837625
0.000829788
0.000821217
0.000812197
0.000802951
0.000793664
0.000784492
0.000775573
0.00076701
0.000758823
0.000750907
0.000742969
0.000734642
0.000725607
0.000716423
0.000707539
0.000704054
0.00104994
0.000684561
0.000636412
0.00064775
0.000672087
0.000699246
0.000724937
0.000747936
0.000768061
0.000785397
0.000799892
0.000811363
0.000819684
0.00082485
0.000827005
0.000826426
0.000823491
0.000818627
0.000812265
0.000804805
0.000796593
0.00078792
0.000779022
0.00077009
0.00076127
0.000752653
0.000744254
0.000736002
0.000727793
0.000719591
0.000711638
0.000704523
0.000699571
0.000696758
0.000699453
0.000816003
0.000543233
0.000485467
0.000471678
0.000471957
0.000477693
0.000485338
0.000493324
0.000501099
0.000508463
0.000515369
0.000521825
0.000527868
0.000533565
0.000538987
0.000544198
0.000549248
0.000554174
0.000559001
0.000563741
0.0005684
0.00057298
0.00057748
0.000581902
0.000586238
0.000590469
0.000594557
0.000598459
0.000602161
0.000605727
0.000609329
0.000613171
0.000617438
0.000621838
0.000626223
0.00141684
0.000932363
0.00085108
0.000885439
0.000947879
0.00101497
0.00107932
0.00113805
0.0011902
0.00123589
0.00127574
0.00131036
0.00134032
0.00136605
0.0013879
0.00140611
0.00142096
0.00143274
0.00144177
0.00144841
0.001453
0.00145591
0.00145748
0.001458
0.00145777
0.00145702
0.00145591
0.00145452
0.00145282
0.00145074
0.00144837
0.001446
0.00144499
0.00144555
0.00145438
0.000952164
0.000642491
0.000579066
0.000564905
0.000565257
0.000571599
0.000580422
0.000589942
0.000599238
0.00060799
0.000616161
0.000623734
0.000630748
0.000637247
0.000643269
0.000648833
0.000653943
0.000658593
0.00066278
0.000666506
0.000669783
0.000672631
0.000675082
0.000677175
0.000678954
0.000680466
0.00068175
0.000682828
0.000683709
0.000684393
0.000684926
0.000685385
0.000686164
0.000687071
0.000690587
0.0016709
0.00115384
0.00091862
0.000829818
0.000851885
0.000970854
0.00116143
0.00139525
0.00165202
0.00191729
0.00218047
0.0024344
0.00267445
0.00289784
0.00310292
0.00328885
0.00345547
0.00360329
0.00373338
0.00384721
0.00394651
0.00403312
0.00410886
0.00417543
0.0042344
0.00428719
0.00433498
0.00437877
0.0044193
0.00445711
0.00449267
0.00452647
0.00455963
0.00459206
0.00463023
0.000830219
0.000632479
0.000538165
0.000502316
0.000486538
0.000478559
0.00047426
0.00047203
0.000471047
0.000470853
0.000471177
0.000471862
0.000472806
0.000473944
0.000475231
0.000476638
0.000478139
0.00047971
0.000481334
0.000482991
0.000484666
0.000486347
0.00048802
0.000489675
0.000491305
0.000492898
0.000494445
0.00049594
0.000497382
0.000498782
0.000500158
0.000501535
0.000502911
0.000504218
0.000505592
0.000698394
0.000525406
0.000447517
0.000417821
0.000404078
0.000396781
0.000392829
0.000390823
0.000389957
0.000389776
0.000390032
0.000390576
0.000391315
0.000392181
0.000393121
0.000394089
0.000395042
0.000395949
0.000396781
0.00039752
0.000398157
0.000398686
0.000399112
0.000399438
0.000399676
0.000399836
0.000399927
0.000399961
0.000399945
0.000399891
0.00039981
0.000399735
0.000399661
0.000399718
0.000399503
0.000734047
0.000555197
0.000471818
0.000439898
0.000425192
0.000417503
0.000413424
0.000411388
0.000410546
0.000410418
0.000410738
0.000411345
0.000412135
0.000413032
0.000413976
0.000414913
0.000415799
0.000416601
0.000417293
0.00041786
0.000418299
0.00041861
0.000418803
0.000418888
0.000418881
0.000418795
0.000418645
0.000418441
0.000418194
0.000417915
0.000417618
0.000417339
0.00041707
0.000416985
0.000416509
0.00166897
0.0011462
0.000892357
0.000751713
0.000666452
0.000612455
0.000579539
0.00056454
0.000568607
0.00059564
0.000650553
0.000737446
0.000858793
0.00101554
0.00120656
0.0014277
0.00167227
0.00193257
0.00220154
0.00247359
0.00274464
0.0030118
0.00327308
0.00352713
0.00377312
0.00401057
0.00423927
0.00445909
0.00467004
0.00487249
0.00506744
0.00525647
0.00544107
0.0056211
0.00579401
0.00148669
0.00102961
0.000977658
0.00103818
0.00111976
0.00120045
0.00127405
0.00133904
0.00139517
0.00144281
0.00148202
0.00151282
0.00153531
0.00154988
0.00155723
0.0015583
0.00155417
0.00154593
0.0015346
0.00152107
0.00150607
0.00149019
0.00147387
0.00145747
0.00144131
0.00142565
0.00141071
0.00139653
0.00138288
0.00136911
0.00135429
0.00133764
0.00132004
0.00130305
0.00129659
0.0014804
0.0010205
0.000962913
0.00101899
0.00110027
0.00118281
0.00125782
0.00132375
0.00138064
0.00142891
0.00146869
0.00149998
0.00152293
0.00153789
0.00154554
0.0015468
0.00154273
0.00153446
0.00152302
0.00150935
0.00149422
0.00147822
0.00146185
0.00144549
0.00142942
0.0014138
0.0013986
0.00138359
0.00136846
0.00135313
0.0013383
0.00132572
0.00131862
0.00131786
0.001328
0.000750491
0.00057376
0.000485284
0.000452569
0.000437838
0.000429982
0.000425673
0.000423375
0.000422225
0.000421743
0.000421625
0.000421654
0.00042167
0.00042155
0.000421215
0.000420622
0.000419757
0.000418631
0.000417272
0.000415716
0.000414004
0.000412176
0.000410269
0.000408317
0.000406347
0.000404383
0.000402442
0.000400535
0.000398665
0.00039683
0.000395023
0.000393275
0.000391548
0.000390228
0.000388263
0.000664568
0.000499394
0.00042008
0.000391825
0.000379289
0.000372686
0.000369151
0.000367302
0.000366412
0.000366087
0.000366069
0.000366174
0.000366259
0.000366219
0.000365983
0.00036551
0.00036479
0.000363833
0.000362665
0.000361321
0.000359839
0.000358254
0.000356603
0.000354913
0.00035321
0.00035151
0.000349827
0.000348169
0.000346542
0.00034496
0.00034344
0.000342038
0.000340713
0.000339754
0.000338091
0.00166907
0.00114816
0.000894537
0.000754196
0.000669744
0.000617816
0.000589519
0.000583667
0.000603874
0.000655999
0.000745038
0.000873187
0.00104021
0.00124358
0.00147778
0.00173469
0.00200542
0.00228187
0.00255762
0.00282805
0.00308982
0.00334125
0.00358165
0.00381098
0.00402963
0.00423831
0.00443782
0.00462888
0.00481208
0.00498797
0.00515739
0.00532157
0.00548211
0.00563971
0.0057949
0.00167372
0.00116781
0.000992204
0.00101152
0.00115202
0.00135244
0.00157854
0.00181219
0.00204164
0.0022597
0.00246265
0.00264909
0.00281894
0.00297276
0.00311129
0.00323534
0.00334567
0.0034431
0.00352853
0.00360296
0.00366746
0.00372314
0.00377117
0.00381268
0.00384876
0.00388041
0.00390848
0.00393361
0.00395624
0.00397663
0.00399521
0.00401273
0.00403119
0.00405177
0.00408265
0.0015187
0.00104499
0.00097566
0.00103427
0.00112552
0.00121975
0.00130794
0.00138715
0.00145703
0.00151835
0.00157228
0.00161993
0.00166233
0.00170035
0.00173474
0.00176612
0.00179501
0.00182181
0.0018469
0.00187056
0.001893
0.00191443
0.00193505
0.00195506
0.00197463
0.00199373
0.00201216
0.00202956
0.00204582
0.00206151
0.00207801
0.00209683
0.00211838
0.00213996
0.00215801
0.000715587
0.000536026
0.00045447
0.00042341
0.000409654
0.0004027
0.000398974
0.000397073
0.000396264
0.000396139
0.000396458
0.000397084
0.000397926
0.000398928
0.000400056
0.000401283
0.00040259
0.000403959
0.000405376
0.000406828
0.000408303
0.000409792
0.000411286
0.000412776
0.000414256
0.000415715
0.000417144
0.000418539
0.000419901
0.000421243
0.000422583
0.000423933
0.000425273
0.000426507
0.000427816
0.000765826
0.000580813
0.000493547
0.00046185
0.000448062
0.00044094
0.000437049
0.000434946
0.000433931
0.000433565
0.000433594
0.000433862
0.000434245
0.000434642
0.000434972
0.000435172
0.000435203
0.000435042
0.000434686
0.000434144
0.000433437
0.000432587
0.000431624
0.000430573
0.000429461
0.00042831
0.00042714
0.000425967
0.000424802
0.000423652
0.000422519
0.000421422
0.000420323
0.000419451
0.000418102
0.00132926
0.00088328
0.000827162
0.00086228
0.000915323
0.000969243
0.00101953
0.00106487
0.00110522
0.001141
0.00117264
0.00120052
0.00122505
0.00124654
0.00126526
0.00128141
0.00129521
0.00130683
0.00131648
0.00132436
0.00133068
0.00133566
0.00133951
0.00134244
0.00134463
0.00134628
0.00134752
0.00134844
0.0013491
0.00134945
0.00134958
0.00134957
0.00135011
0.00135041
0.00135644
0.000794745
0.000614798
0.000521932
0.000486757
0.000471054
0.000462909
0.000458562
0.000456322
0.000455294
0.000454978
0.000455067
0.00045534
0.000455635
0.000455826
0.000455821
0.000455565
0.000455035
0.000454232
0.000453178
0.000451908
0.000450459
0.000448873
0.00044719
0.000445443
0.000443663
0.000441873
0.00044009
0.000438325
0.000436588
0.00043489
0.000433244
0.000431704
0.000430239
0.00042917
0.000427419
0.000852568
0.00066801
0.000570276
0.000532266
0.000515217
0.000506343
0.000501548
0.000499001
0.000497747
0.000497256
0.000497199
0.00049735
0.000497537
0.000497628
0.000497529
0.000497182
0.00049656
0.000495662
0.000494506
0.000493125
0.000491556
0.000489842
0.00048802
0.000486128
0.000484196
0.000482253
0.000480321
0.000478414
0.000476541
0.000474706
0.0004729
0.000471149
0.000469403
0.000468012
0.000465969
0.00167273
0.00116098
0.000976269
0.000983616
0.00111374
0.00130689
0.0015286
0.00176151
0.00199407
0.00221838
0.00242978
0.00262612
0.00280697
0.00297287
0.00312483
0.0032642
0.0033923
0.00351039
0.00361961
0.00372094
0.00381526
0.00390333
0.00398587
0.00406352
0.00413682
0.00420605
0.00427126
0.0043324
0.00438976
0.00444444
0.00449853
0.00455424
0.00461227
0.00466923
0.00472023
0.000689629
0.000514434
0.000438589
0.00041246
0.00040081
0.000394771
0.000391629
0.000390028
0.000389302
0.00038907
0.000389077
0.000389128
0.000389075
0.000388809
0.000388266
0.000387416
0.000386264
0.000384837
0.000383176
0.00038133
0.000379346
0.000377268
0.000375135
0.000372981
0.000370829
0.000368699
0.000366598
0.000364532
0.000362507
0.000360544
0.000358679
0.000356991
0.000355445
0.000354335
0.00035237
0.000806893
0.000618985
0.000529419
0.000496645
0.000481876
0.000474102
0.000469932
0.000467778
0.000466787
0.000466442
0.000466407
0.000466439
0.000466357
0.000466031
0.000465382
0.00046438
0.000463031
0.000461367
0.000459434
0.000457286
0.000454977
0.000452556
0.000450067
0.000447549
0.000445032
0.000442544
0.000440103
0.000437714
0.000435373
0.000433067
0.000430776
0.000428537
0.000426331
0.000424657
0.000422409
0.00167002
0.00115394
0.000904508
0.000775922
0.000720062
0.000726275
0.000796104
0.000927196
0.00110883
0.00132759
0.00157041
0.0018245
0.00207851
0.00232395
0.00255513
0.00276869
0.00296294
0.00313739
0.00329237
0.00342884
0.0035482
0.00365206
0.00374219
0.0038204
0.00388843
0.00394792
0.00400034
0.00404692
0.00408857
0.00412597
0.00415971
0.00419072
0.00422105
0.0042529
0.00429302
0.00164287
0.00116536
0.00107159
0.00113524
0.00125929
0.00140375
0.00154957
0.00168727
0.00181301
0.00192588
0.00202632
0.00211532
0.00219402
0.00226346
0.00232451
0.00237786
0.00242412
0.00246386
0.00249765
0.00252609
0.00254981
0.00256944
0.00258561
0.00259891
0.00260991
0.00261913
0.00262696
0.00263368
0.00263939
0.00264411
0.00264797
0.00265143
0.00265624
0.00266291
0.00268105
0.000752989
0.000565483
0.000483582
0.000453738
0.000440348
0.000433353
0.000429564
0.000427625
0.000426804
0.000426689
0.000427037
0.000427694
0.000428553
0.000429537
0.000430583
0.00043164
0.000432667
0.000433631
0.000434506
0.000435275
0.000435929
0.000436467
0.000436893
0.000437215
0.000437446
0.000437596
0.000437679
0.000437706
0.000437684
0.000437625
0.000437539
0.000437453
0.000437363
0.000437363
0.000437167
0.000765433
0.0005786
0.000491549
0.00045894
0.000444162
0.000436472
0.000432426
0.000430453
0.000429692
0.000429634
0.000429994
0.000430607
0.000431355
0.000432151
0.000432924
0.000433617
0.000434184
0.000434598
0.000434845
0.000434923
0.000434841
0.000434613
0.000434258
0.000433799
0.000433257
0.00043265
0.000431996
0.000431307
0.000430594
0.000429871
0.000429152
0.00042848
0.00042786
0.000427471
0.000426802
0.000703802
0.000527759
0.000446317
0.000416485
0.000403086
0.000396146
0.000392499
0.000390695
0.00038997
0.000389879
0.000390167
0.000390675
0.000391288
0.000391917
0.000392488
0.000392946
0.000393252
0.000393387
0.000393343
0.000393128
0.000392756
0.00039225
0.00039163
0.000390923
0.000390148
0.000389327
0.000388474
0.000387602
0.00038672
0.000385841
0.000384978
0.000384175
0.000383413
0.000382928
0.0003819
0.00152811
0.00105599
0.000987687
0.00105087
0.00114941
0.00125223
0.00134921
0.00143686
0.0015145
0.00158281
0.00164298
0.00169623
0.00174361
0.00178606
0.00182438
0.00185928
0.00189134
0.00192104
0.00194877
0.00197485
0.00199955
0.0020231
0.00204571
0.00206764
0.00208903
0.00210988
0.00212995
0.00214888
0.00216659
0.00218375
0.00220193
0.00222276
0.00224652
0.00227017
0.00228901
0.00166884
0.00114343
0.000889266
0.000748345
0.000662093
0.000605134
0.000565235
0.000535953
0.000513642
0.000496116
0.000482007
0.000470423
0.000460772
0.000452659
0.000445831
0.000440143
0.000435542
0.000432069
0.000429857
0.000429147
0.000430299
0.000433817
0.000440373
0.000450842
0.000466343
0.000488307
0.00051856
0.000559428
0.000613815
0.000685191
0.000777417
0.000894431
0.00103968
0.00121559
0.00141936
0.000741843
0.000563878
0.000480457
0.000448306
0.000433539
0.000425703
0.000421427
0.00041923
0.000418272
0.000418052
0.0004183
0.000418863
0.000419642
0.000420567
0.000421583
0.000422643
0.000423704
0.000424731
0.000425695
0.000426573
0.000427353
0.000428027
0.000428596
0.000429063
0.000429437
0.000429727
0.000429943
0.000430094
0.00043019
0.000430241
0.000430259
0.000430276
0.000430289
0.000430418
0.000430311
0.00077722
0.000525329
0.000467196
0.000449629
0.000445532
0.000447343
0.000451808
0.000457279
0.000462899
0.000468396
0.000473659
0.000478623
0.000483276
0.000487621
0.00049166
0.000495387
0.000498788
0.000501851
0.000504567
0.000506935
0.000508965
0.000510676
0.000512093
0.000513249
0.00051418
0.000514922
0.000515505
0.000515946
0.00051625
0.000516421
0.000516493
0.000516533
0.00051681
0.000517271
0.0005193
0.000917781
0.000598581
0.000532631
0.000519958
0.000523396
0.000532597
0.000543597
0.000554717
0.000565317
0.000575203
0.000584339
0.000592759
0.000600548
0.000607811
0.000614655
0.000621177
0.000627451
0.000633537
0.00063948
0.000645309
0.000651044
0.000656699
0.000662287
0.000667818
0.000673286
0.000678662
0.000683885
0.0006889
0.000693713
0.000698457
0.0007034
0.000708795
0.000714696
0.000720542
0.000725769
0.000816018
0.000538588
0.00048105
0.00046695
0.000466754
0.00047203
0.000479322
0.00048716
0.00049492
0.000502351
0.000509345
0.000515851
0.000521853
0.000527351
0.000532347
0.000536841
0.000540835
0.000544334
0.00054735
0.000549905
0.000552027
0.000553754
0.000555131
0.000556204
0.000557027
0.000557646
0.000558106
0.000558429
0.000558631
0.000558716
0.000558723
0.000558699
0.00055887
0.000558983
0.000560625
0.000779507
0.000586914
0.000499806
0.000467281
0.000452612
0.000445027
0.000440904
0.000438763
0.000437806
0.000437581
0.000437838
0.000438434
0.000439281
0.000440318
0.000441507
0.000442814
0.000444214
0.000445684
0.000447207
0.000448766
0.000450351
0.00045195
0.000453558
0.000455169
0.000456776
0.000458369
0.000459935
0.000461463
0.000462957
0.000464441
0.000465945
0.00046749
0.000469031
0.000470415
0.000471781
0.00168119
0.00120074
0.00109924
0.00119751
0.00138123
0.00159193
0.00180567
0.00201097
0.0022022
0.00237724
0.00253596
0.00267928
0.00280863
0.00292552
0.00303142
0.00312766
0.00321544
0.00329583
0.00336975
0.00343801
0.00350129
0.00356022
0.00361539
0.0036674
0.00371675
0.00376365
0.00380794
0.0038492
0.00388732
0.00392327
0.0039594
0.00399839
0.00404122
0.0040837
0.00412093
0.00166935
0.0011939
0.00110198
0.00120479
0.00138713
0.00159296
0.00179772
0.00199002
0.00216533
0.00232259
0.00246208
0.00258457
0.00269084
0.00278171
0.00285803
0.00292081
0.00297118
0.00301049
0.00304017
0.00306175
0.0030767
0.0030864
0.00309205
0.00309472
0.00309527
0.00309444
0.00309281
0.00309082
0.00308876
0.0030867
0.00308461
0.00308223
0.00308
0.00307689
0.00308035
0.00078094
0.000599054
0.000509549
0.000476142
0.000461366
0.000453735
0.000449624
0.000447416
0.000446336
0.00044593
0.000445929
0.000446155
0.000446468
0.000446755
0.000446927
0.000446925
0.000446713
0.000446275
0.000445617
0.000444758
0.000443724
0.000442547
0.000441259
0.000439891
0.00043847
0.000437022
0.000435567
0.000434121
0.000432693
0.00043129
0.00042991
0.000428576
0.000427234
0.000426189
0.00042442
0.00167412
0.00120689
0.00112546
0.00122539
0.00139419
0.00158316
0.00177047
0.00194408
0.00210018
0.00223827
0.00235873
0.00246219
0.00254927
0.00262068
0.00267736
0.00272051
0.00275162
0.00277238
0.00278457
0.0027899
0.00278994
0.00278606
0.00277942
0.00277097
0.00276144
0.00275144
0.00274134
0.00273131
0.00272128
0.00271106
0.00270066
0.00269058
0.00268294
0.00267922
0.00268813
0.00156061
0.00109008
0.0010173
0.00107824
0.00117573
0.00127784
0.00137329
0.00145807
0.00153157
0.00159453
0.00164772
0.0016917
0.00172694
0.00175388
0.00177312
0.00178538
0.00179158
0.00179269
0.00178973
0.00178366
0.00177531
0.00176541
0.00175453
0.00174316
0.00173164
0.00172025
0.00170913
0.00169831
0.00168767
0.00167702
0.0016664
0.00165619
0.0016481
0.00164245
0.00164724
0.00166914
0.00115022
0.000896707
0.000755925
0.000669861
0.000613836
0.000576614
0.000553337
0.000542819
0.00054637
0.000567043
0.000608816
0.00067575
0.000771597
0.00089984
0.00106326
0.00126263
0.00149576
0.00175744
0.00204037
0.00233644
0.00263789
0.00293805
0.00323181
0.00351558
0.00378718
0.00404553
0.00429033
0.00452182
0.00474055
0.00494731
0.00514308
0.00532922
0.0055065
0.00567738
0.0016781
0.00119681
0.00108557
0.00117244
0.00134698
0.00155234
0.00176407
0.00196788
0.00215608
0.00232627
0.00247777
0.00261065
0.00272519
0.00282194
0.00290172
0.00296567
0.00301529
0.00305235
0.00307874
0.00309637
0.003107
0.00311224
0.00311347
0.00311183
0.00310829
0.0031036
0.00309827
0.0030926
0.0030866
0.00308015
0.00307334
0.00306675
0.00306267
0.0030628
0.0030763
0.000948996
0.000673918
0.000600074
0.000576482
0.000570819
0.000572484
0.000577216
0.000583089
0.000589245
0.000595332
0.000601209
0.000606835
0.000612234
0.000617441
0.000622492
0.000627419
0.000632247
0.000636995
0.000641676
0.000646296
0.000650857
0.000655363
0.000659825
0.00066426
0.000668675
0.000673045
0.000677303
0.000681363
0.000685205
0.000688953
0.000692891
0.000697303
0.000702222
0.000706993
0.000711054
0.000940939
0.00064106
0.000575479
0.000557578
0.000555928
0.000561873
0.000571074
0.000581264
0.000591295
0.00060075
0.000609464
0.000617381
0.000624487
0.000630775
0.000636238
0.000640862
0.00064465
0.000647626
0.000649834
0.000651339
0.000652222
0.00065257
0.000652474
0.000652025
0.000651307
0.000650393
0.000649336
0.000648157
0.000646855
0.000645424
0.000643921
0.00064249
0.000641641
0.000641338
0.000643913
0.00154905
0.00108643
0.00102196
0.00108673
0.00118308
0.00128078
0.00137019
0.00144886
0.00151679
0.00157481
0.00162373
0.00166413
0.00169641
0.00172098
0.0017384
0.00174939
0.00175477
0.00175543
0.00175231
0.00174626
0.00173806
0.00172836
0.00171771
0.00170653
0.00169517
0.00168391
0.00167295
0.00166246
0.00165247
0.00164283
0.00163323
0.00162316
0.00161288
0.00160136
0.00159634
0.00166602
0.00119886
0.00112134
0.00121611
0.00137383
0.00154879
0.00172028
0.00187842
0.00201955
0.00214307
0.00224931
0.00233874
0.00241184
0.00246937
0.00251241
0.00254236
0.00256094
0.00257005
0.00257157
0.00256726
0.00255867
0.00254709
0.00253359
0.00251899
0.00250395
0.00248893
0.00247421
0.00245982
0.00244556
0.00243117
0.00241672
0.00240299
0.00239259
0.00238718
0.00239499
0.000995244
0.000773922
0.000659576
0.000615167
0.000595832
0.000586017
0.000580658
0.000577825
0.00057652
0.000576193
0.000576508
0.000577269
0.000578353
0.000579681
0.000581196
0.000582858
0.000584634
0.000586492
0.000588407
0.000590353
0.000592311
0.000594261
0.000596188
0.000598079
0.000599923
0.00060171
0.000603433
0.000605083
0.000606662
0.00060818
0.000609656
0.00061112
0.000612573
0.000613968
0.000615358
0.00167238
0.00118993
0.00108459
0.00116968
0.0013336
0.00152441
0.00171972
0.00190779
0.00208272
0.00224213
0.00238544
0.00251294
0.00262526
0.00272313
0.00280735
0.00287881
0.00293849
0.00298747
0.00302695
0.00305822
0.00308255
0.00310117
0.00311524
0.00312577
0.00313363
0.00313959
0.00314425
0.00314807
0.00315136
0.00315422
0.00315674
0.00315889
0.00316148
0.00316366
0.00317353
0.0015167
0.00106336
0.00100077
0.00105006
0.00112554
0.00120326
0.001276
0.00134141
0.00139925
0.00145013
0.00149496
0.00153466
0.00157009
0.00160197
0.00163094
0.00165748
0.00168201
0.00170487
0.00172633
0.0017466
0.00176585
0.00178421
0.00180187
0.00181898
0.00183568
0.00185196
0.00186759
0.0018822
0.00189566
0.00190849
0.00192199
0.0019376
0.00195578
0.00197398
0.00198907
0.00166881
0.00114258
0.000888032
0.000746919
0.000660624
0.000603666
0.000563776
0.000534503
0.000512197
0.000494667
0.000480535
0.000468898
0.000459143
0.00045084
0.00044368
0.000437439
0.000431947
0.000427079
0.000422737
0.000418853
0.000415374
0.00041227
0.000409526
0.000407149
0.000405163
0.000403622
0.000402607
0.000402237
0.000402675
0.000404145
0.000406938
0.000411433
0.00041811
0.000427567
0.000440042
0.00167099
0.00115188
0.000917814
0.000831226
0.000854313
0.000969995
0.00115247
0.00137633
0.00162433
0.00188358
0.00214388
0.00239797
0.00264144
0.00287185
0.00308794
0.00328923
0.00347571
0.00364765
0.00380549
0.00394981
0.00408136
0.00420099
0.00430968
0.00440851
0.00449854
0.00458086
0.00465642
0.004726
0.00479025
0.00484979
0.00490555
0.00495888
0.00501197
0.00506594
0.00512618
0.000757028
0.000566301
0.000479765
0.000450197
0.000437131
0.000430338
0.000426758
0.000424902
0.000424027
0.0004237
0.000423639
0.000423627
0.000423503
0.000423148
0.000422489
0.000421498
0.000420179
0.000418563
0.000416696
0.000414631
0.000412419
0.000410109
0.000407743
0.000405356
0.000402975
0.000400618
0.000398294
0.000396008
0.000393769
0.000391605
0.000389557
0.000387716
0.000386029
0.000384808
0.000382563
0.000849944
0.000656353
0.000560672
0.000525419
0.000509622
0.000501341
0.000496903
0.000494615
0.000493575
0.000493211
0.00049316
0.000493167
0.000493038
0.000492635
0.000491881
0.000490744
0.000489236
0.000487394
0.000485269
0.00048292
0.000480404
0.000477776
0.000475081
0.000472358
0.000469643
0.000466961
0.000464331
0.000461759
0.000459238
0.000456751
0.000454278
0.000451861
0.000449489
0.000447703
0.000445352
0.00160901
0.00116324
0.00112667
0.00123679
0.00138168
0.00152428
0.00165348
0.00176635
0.00186415
0.00194868
0.00202162
0.0020841
0.00213693
0.00218069
0.00221598
0.00224344
0.0022638
0.0022779
0.00228666
0.002291
0.00229183
0.00228995
0.0022861
0.00228087
0.00227477
0.0022682
0.00226149
0.00225488
0.00224852
0.00224237
0.00223631
0.00222998
0.00222372
0.00221645
0.00221557
0.00167133
0.00117738
0.00104584
0.00110819
0.00126118
0.00145012
0.00165071
0.00184906
0.00203685
0.00220999
0.00236702
0.00250805
0.00263383
0.00274517
0.00284288
0.00292774
0.00300057
0.00306233
0.00311405
0.00315686
0.00319194
0.00322045
0.00324352
0.0032622
0.00327744
0.00329006
0.0033007
0.00330981
0.00331758
0.00332409
0.00332958
0.00333473
0.00334171
0.00335181
0.00337414
0.00158407
0.00110066
0.00101055
0.00106332
0.00116339
0.00127582
0.00138636
0.00148875
0.0015807
0.00166194
0.00173317
0.00179535
0.00184937
0.00189598
0.00193577
0.00196923
0.00199684
0.00201914
0.00203671
0.00205017
0.00206014
0.00206724
0.00207204
0.00207506
0.00207677
0.00207756
0.00207771
0.00207737
0.00207654
0.00207516
0.00207332
0.00207148
0.00207135
0.00207361
0.0020857
0.000913877
0.000607885
0.000542879
0.000528123
0.00052927
0.00053662
0.000546216
0.000556246
0.000565952
0.000575073
0.000583554
0.000591424
0.000598768
0.000605668
0.000612212
0.000618477
0.00062453
0.000630422
0.000636193
0.000641868
0.000647469
0.000653014
0.000658525
0.000664023
0.000669508
0.000674941
0.000680243
0.000685345
0.000690276
0.000695245
0.000700619
0.000706667
0.000713241
0.000719459
0.0007239
0.000819485
0.000548745
0.000486515
0.000469612
0.000468018
0.000472553
0.000479448
0.000486996
0.000494467
0.00050159
0.000508284
0.000514564
0.000520475
0.000526071
0.000531413
0.00053656
0.00054156
0.000546451
0.00055126
0.000556006
0.000560704
0.000565367
0.000570012
0.000574656
0.000579298
0.000583906
0.000588411
0.000592751
0.000596949
0.000601181
0.000605758
0.000610908
0.000616501
0.000621789
0.000625589
0.00166884
0.00114373
0.000889433
0.000748432
0.000662154
0.000605182
0.000565277
0.000535996
0.000513695
0.0004962
0.000482156
0.000470698
0.000461275
0.000453556
0.000447376
0.000442717
0.000439702
0.000438598
0.000439827
0.000443975
0.000451806
0.000464265
0.000482503
0.000507912
0.0005422
0.000587451
0.000646108
0.000720814
0.000814114
0.00092813
0.00106429
0.00122317
0.0014045
0.00160717
0.00182609
0.00165997
0.00118268
0.00109751
0.00119322
0.00135645
0.00153823
0.00171799
0.0018865
0.00204015
0.00217832
0.00230177
0.0024119
0.00251037
0.00259876
0.00267841
0.00275051
0.00281604
0.00287584
0.00293062
0.00298098
0.00302741
0.00307037
0.00311027
0.00314756
0.00318263
0.00321573
0.00324683
0.00327568
0.00330208
0.00332647
0.00335029
0.00337558
0.00340391
0.00343319
0.00346337
0.000807824
0.000612512
0.000524622
0.000491515
0.00047647
0.000468629
0.000464344
0.000462114
0.000461128
0.000460915
0.000461207
0.000461848
0.000462745
0.000463838
0.000465086
0.000466454
0.000467915
0.000469446
0.000471028
0.000472642
0.000474274
0.000475914
0.000477553
0.000479184
0.000480802
0.000482395
0.000483949
0.000485456
0.000486915
0.000488351
0.000489797
0.000491275
0.00049275
0.000494076
0.000495426
0.00167285
0.00118177
0.00104208
0.00110017
0.00126008
0.00146314
0.00168137
0.00189793
0.0021017
0.00228562
0.00244473
0.0025767
0.00268161
0.0027608
0.00281664
0.0028522
0.00287087
0.00287604
0.00287079
0.00285779
0.00283921
0.00281676
0.00279183
0.00276551
0.00273868
0.00271212
0.0026864
0.0026618
0.00263794
0.00261358
0.00258685
0.00255625
0.0025229
0.00249177
0.00247558
0.000923837
0.000614978
0.000548783
0.000534403
0.000535684
0.000542792
0.000551977
0.000561585
0.000570929
0.000579759
0.000587999
0.000595665
0.00060281
0.000609519
0.000615882
0.000621975
0.000627861
0.000633591
0.000639204
0.000644726
0.000650175
0.000655566
0.000660914
0.000666229
0.000671506
0.000676707
0.000681766
0.000686629
0.000691326
0.000696032
0.000701042
0.000706581
0.000712558
0.000718262
0.000722682
0.00166897
0.0011463
0.000892393
0.000751693
0.000666232
0.000611694
0.000577605
0.000560374
0.000560591
0.000581585
0.00062793
0.000703812
0.000812174
0.00095487
0.00113234
0.00134247
0.00158007
0.00183784
0.00210801
0.00238371
0.00265963
0.00293211
0.00319873
0.00345802
0.0037091
0.00395147
0.00418485
0.00440903
0.00462401
0.00483015
0.00502848
0.00522064
0.00540824
0.0055913
0.00576712
0.000943863
0.000618874
0.000552029
0.000539646
0.000543265
0.000552593
0.000563757
0.000575079
0.000585898
0.000596008
0.000605366
0.000614008
0.000622009
0.000629474
0.000636515
0.000643226
0.000649685
0.000655952
0.000662072
0.000668077
0.00067399
0.000679825
0.0006856
0.000691325
0.000696995
0.000702574
0.000707998
0.00071321
0.000718229
0.000723219
0.000728476
0.000734248
0.000740508
0.00074659
0.000751636
0.000841293
0.00064189
0.000552257
0.000518191
0.0005027
0.00049468
0.000490349
0.000488134
0.00048719
0.000487034
0.000487394
0.00048811
0.000489089
0.000490267
0.000491604
0.000493064
0.00049462
0.000496249
0.000497931
0.000499648
0.000501387
0.000503135
0.000504886
0.000506633
0.000508371
0.000510087
0.000511766
0.000513396
0.000514976
0.00051653
0.000518097
0.000519711
0.000521342
0.000522833
0.000524353
0.00166787
0.0012027
0.0011265
0.00122361
0.00138384
0.00156048
0.00173279
0.00189148
0.00203321
0.00215715
0.00226348
0.00235261
0.00242517
0.00248207
0.00252455
0.00255411
0.0025725
0.00258158
0.00258321
0.00257908
0.00257072
0.00255937
0.00254605
0.00253157
0.00251655
0.00250151
0.00248685
0.00247285
0.00245957
0.00244677
0.00243392
0.00242017
0.00240565
0.0023897
0.00238136
0.000763669
0.000580778
0.000494521
0.000461691
0.000447012
0.000439471
0.000435403
0.000433311
0.0004324
0.000432225
0.000432539
0.000433189
0.000434078
0.000435144
0.000436346
0.000437648
0.00043902
0.000440435
0.000441872
0.00044331
0.000444732
0.000446125
0.00044748
0.000448793
0.000450058
0.000451271
0.000452425
0.000453517
0.000454546
0.000455527
0.000456482
0.000457441
0.000458387
0.000459293
0.000460025
0.00166931
0.00115123
0.000898245
0.000759107
0.000677688
0.000632538
0.000617251
0.000633004
0.000684001
0.000773608
0.000902695
0.00107028
0.00127327
0.00150533
0.00175738
0.00201971
0.00228401
0.00254423
0.00279654
0.00303863
0.00326907
0.00348709
0.00369237
0.00388489
0.00406496
0.00423314
0.00439016
0.0045369
0.00467421
0.0048029
0.00492379
0.00503783
0.00514665
0.00525169
0.00535769
0.000892565
0.000687661
0.000583434
0.0005432
0.000525069
0.000515582
0.000510381
0.000507626
0.000506342
0.000505966
0.000506179
0.000506799
0.000507705
0.000508819
0.000510079
0.000511435
0.000512841
0.000514255
0.000515643
0.000516975
0.000518229
0.000519391
0.000520453
0.000521411
0.000522268
0.000523028
0.000523698
0.000524285
0.000524797
0.000525246
0.000525644
0.000526024
0.000526393
0.000526831
0.000527141
0.000876112
0.000622867
0.000556099
0.000535181
0.000529733
0.000530798
0.000534599
0.00053952
0.000544714
0.000549753
0.000554422
0.000558575
0.000562098
0.000564902
0.000566938
0.000568189
0.000568679
0.000568469
0.000567642
0.000566296
0.000564531
0.000562445
0.000560127
0.000557656
0.000555099
0.00055251
0.000549924
0.000547355
0.000544797
0.000542241
0.000539715
0.000537301
0.000535316
0.000533731
0.000534027
0.00167611
0.00118771
0.00107385
0.00115769
0.00132888
0.0015316
0.00174124
0.00194471
0.00213526
0.00231021
0.00246916
0.00261296
0.00274291
0.00286045
0.00296701
0.00306389
0.00315231
0.00323337
0.00330803
0.00337712
0.00344136
0.00350138
0.0035578
0.00361124
0.00366216
0.00371078
0.0037569
0.00380009
0.00384031
0.00387866
0.00391757
0.00395967
0.00400564
0.00405074
0.00408984
0.00133744
0.000892875
0.000849113
0.000909342
0.000984296
0.00105387
0.00111437
0.00116597
0.00120937
0.00124645
0.00127831
0.00130556
0.00132854
0.00134746
0.00136251
0.00137393
0.001382
0.00138707
0.00138954
0.00138983
0.00138837
0.00138556
0.00138175
0.00137725
0.00137231
0.00136714
0.00136193
0.00135679
0.00135181
0.00134695
0.00134215
0.00133718
0.00133239
0.00132683
0.00132588
0.00124299
0.000816504
0.000771784
0.000815451
0.000871611
0.000924583
0.000970981
0.00101051
0.00104365
0.00107195
0.00109624
0.00111693
0.00113423
0.00114824
0.0011591
0.00116697
0.00117209
0.00117476
0.00117531
0.0011741
0.0011715
0.00116783
0.00116338
0.00115841
0.00115313
0.00114772
0.00114232
0.00113703
0.00113192
0.00112693
0.00112202
0.00111695
0.00111201
0.00110631
0.00110486
0.00166319
0.00118087
0.00107971
0.00115498
0.00130087
0.00147162
0.00164571
0.00181223
0.00196616
0.0021059
0.00223163
0.00234434
0.00244526
0.00253566
0.00261671
0.00268934
0.00275436
0.00281241
0.00286407
0.00290991
0.00295045
0.00298623
0.00301775
0.00304557
0.00307021
0.00309217
0.00311188
0.00312965
0.00314566
0.00316003
0.00317308
0.00318539
0.00319859
0.00321318
0.0032365
0.000707397
0.000530021
0.000451592
0.000422942
0.000410088
0.000403369
0.000399714
0.000397814
0.000396979
0.00039682
0.000397114
0.000397717
0.000398541
0.000399525
0.000400628
0.000401812
0.000403047
0.000404305
0.000405564
0.000406802
0.000408003
0.000409156
0.000410252
0.00041129
0.000412266
0.00041318
0.000414031
0.000414819
0.000415546
0.000416224
0.000416872
0.000417517
0.000418143
0.000418771
0.000419129
0.00166989
0.00118278
0.00106866
0.00113973
0.00128876
0.00146739
0.00165378
0.00183542
0.00200551
0.00216118
0.0023018
0.00242799
0.0025408
0.00264134
0.00273062
0.00280949
0.00287872
0.00293901
0.00299111
0.00303579
0.00307385
0.0031061
0.00313336
0.00315644
0.00317609
0.003193
0.00320773
0.0032207
0.00323211
0.00324208
0.00325086
0.00325905
0.00326854
0.00328016
0.00330303
0.00159344
0.00113093
0.00106901
0.00113841
0.00124253
0.00134993
0.00145041
0.00154077
0.00162064
0.00169087
0.00175267
0.00180732
0.00185595
0.00189955
0.00193897
0.00197488
0.00200787
0.0020384
0.00206688
0.00209362
0.00211888
0.00214286
0.00216581
0.00218797
0.00220952
0.00223046
0.00225055
0.0022694
0.00228685
0.00230351
0.00232091
0.00234077
0.00236367
0.00238659
0.00240617
0.00166887
0.00114471
0.000890541
0.000749577
0.000663289
0.000606294
0.000566368
0.000537074
0.000514775
0.000497307
0.000483334
0.000472024
0.000462875
0.000455634
0.000450246
0.000446853
0.000445788
0.000447598
0.000453063
0.00046322
0.000479396
0.000503258
0.000536904
0.000582976
0.000644747
0.000726066
0.000831054
0.000963596
0.00112672
0.00132204
0.00154941
0.00180692
0.002091
0.00239695
0.00271588
0.00167711
0.00119902
0.00109297
0.00118214
0.00135526
0.00155864
0.00176812
0.00196944
0.00215477
0.0023199
0.00246323
0.00258416
0.0026829
0.00276046
0.00281847
0.00285908
0.00288478
0.00289818
0.00290179
0.00289793
0.00288855
0.00287526
0.00285938
0.0028419
0.00282365
0.00280528
0.00278731
0.00277009
0.00275368
0.00273764
0.00272117
0.00270317
0.0026837
0.0026633
0.00265109
0.00167675
0.00119811
0.00109395
0.00118802
0.00136601
0.00157076
0.00177811
0.00197526
0.00215547
0.00231622
0.00245627
0.00257522
0.00267302
0.0027503
0.00280834
0.00284909
0.00287489
0.00288832
0.00289188
0.0028879
0.00287835
0.00286491
0.0028489
0.00283139
0.0028132
0.00279492
0.00277687
0.00275907
0.00274126
0.00272316
0.00270505
0.00268827
0.00267622
0.00267171
0.00268163
0.00142999
0.000949839
0.000875365
0.000919197
0.000990674
0.00106405
0.00113225
0.00119337
0.00124728
0.00129469
0.00133639
0.00137319
0.00140589
0.00143521
0.00146174
0.00148594
0.00150818
0.00152875
0.00154786
0.00156568
0.00158234
0.00159796
0.00161263
0.00162649
0.00163968
0.00165226
0.00166418
0.00167526
0.00168532
0.00169449
0.00170348
0.00171329
0.00172503
0.00173735
0.00175322
0.00166938
0.00115204
0.000899299
0.000759392
0.00067569
0.000625617
0.000601175
0.000602028
0.000632094
0.000696522
0.000799076
0.000941508
0.00112402
0.00134429
0.00159624
0.00187048
0.00215622
0.00244329
0.00272345
0.00299087
0.00324189
0.0034747
0.00368883
0.00388476
0.00406358
0.00422674
0.00437588
0.00451266
0.00463866
0.0047553
0.0048638
0.00496515
0.00506052
0.0051501
0.00523841
0.00167289
0.00120063
0.001108
0.00120117
0.00136827
0.00156098
0.0017574
0.0019449
0.00211674
0.00226881
0.00239938
0.00250773
0.00259407
0.00265948
0.00270582
0.00273545
0.00275106
0.00275536
0.0027509
0.00273993
0.0027243
0.00270554
0.00268479
0.00266296
0.00264079
0.0026189
0.00259778
0.00257766
0.0025584
0.0025392
0.00251883
0.00249601
0.00247122
0.00244678
0.00243353
0.000565896
0.000404427
0.00034167
0.000320249
0.000310624
0.000305562
0.000302782
0.000301321
0.000300669
0.000300539
0.000300754
0.000301206
0.000301826
0.000302563
0.000303377
0.000304238
0.000305117
0.00030599
0.000306838
0.000307645
0.000308398
0.000309091
0.000309721
0.000310288
0.000310794
0.000311243
0.000311639
0.000311986
0.000312288
0.000312556
0.000312799
0.000313041
0.00031327
0.000313533
0.000313629
0.00167099
0.00115684
0.000917035
0.000813405
0.000808013
0.000891798
0.00105025
0.00126051
0.00150215
0.00175796
0.00201307
0.00225587
0.0024784
0.00267647
0.00284875
0.0029959
0.00311963
0.00322214
0.00330577
0.00337287
0.00342571
0.00346644
0.00349706
0.00351941
0.00353516
0.0035458
0.00355266
0.00355686
0.00355918
0.00355993
0.00355895
0.00355564
0.00354996
0.0035424
0.00353947
0.00164097
0.00117798
0.00110459
0.00118887
0.00133071
0.00148982
0.00164679
0.00179198
0.00192101
0.00203251
0.00212549
0.00219969
0.0022556
0.0022944
0.00231786
0.00232814
0.00232763
0.00231874
0.00230364
0.00228417
0.00226182
0.00223774
0.00221283
0.00218782
0.00216321
0.00213921
0.00211566
0.00209206
0.00206793
0.00204358
0.00202108
0.00200468
0.00200005
0.00200845
0.00202669
0.00165656
0.00118799
0.00110606
0.0011972
0.00135296
0.00152798
0.00170164
0.00186364
0.00200912
0.00213556
0.00224124
0.00232608
0.00239068
0.0024363
0.00246493
0.00247898
0.00248113
0.00247397
0.00245988
0.00244083
0.00241839
0.00239382
0.00236811
0.00234201
0.00231613
0.00229103
0.00226716
0.00224463
0.002223
0.00220097
0.00217668
0.00214856
0.00211768
0.00208852
0.00207401
0.00166935
0.00115106
0.000898161
0.000759802
0.000680648
0.000640711
0.000635662
0.000668605
0.000744127
0.000863418
0.00102418
0.00122231
0.00145151
0.00170286
0.0019663
0.00223229
0.00249427
0.00274792
0.00299073
0.00322147
0.00343962
0.00364513
0.00383822
0.00401929
0.00418891
0.00434781
0.00449678
0.00463665
0.00476824
0.00489228
0.00500956
0.00512092
0.00522766
0.00533014
0.00543289
0.00167521
0.00117371
0.000995932
0.00101589
0.00116855
0.00138932
0.00163643
0.00188756
0.00212876
0.00235021
0.00254736
0.00271815
0.00286184
0.00297897
0.00307114
0.00314075
0.00319075
0.00322424
0.00324431
0.00325374
0.00325499
0.00325008
0.00324069
0.00322819
0.00321369
0.0031981
0.00318219
0.00316648
0.00315119
0.00313602
0.00312019
0.00310264
0.00308331
0.00306306
0.00305033
0.00167558
0.00117578
0.001006
0.00103469
0.00118616
0.00139462
0.00162458
0.00185794
0.00208244
0.00228965
0.00247532
0.00263678
0.00277269
0.00288308
0.0029692
0.00303329
0.00307819
0.00310699
0.00312273
0.00312819
0.00312583
0.00311768
0.00310544
0.00309048
0.00307389
0.00305647
0.00303872
0.00302076
0.00300241
0.00298353
0.00296457
0.00294729
0.00293542
0.00293235
0.00294347
0.000846871
0.000570604
0.000510349
0.000494884
0.000494107
0.000499318
0.000506796
0.000514866
0.000522776
0.000530317
0.000537432
0.000544105
0.000550365
0.000556278
0.000561908
0.000567298
0.000572482
0.000577484
0.000582314
0.000586974
0.000591461
0.000595774
0.000599918
0.000603907
0.000607755
0.000611461
0.000614995
0.000618301
0.000621341
0.00062417
0.000626981
0.000630026
0.000633536
0.000637096
0.000640968
0.000659974
0.000495199
0.000419756
0.000392476
0.00038042
0.000374139
0.000370716
0.000368859
0.000367947
0.000367599
0.000367593
0.000367788
0.000368073
0.000368357
0.000368567
0.000368651
0.000368575
0.000368324
0.000367898
0.000367308
0.000366574
0.00036572
0.000364771
0.00036375
0.000362682
0.000361586
0.000360478
0.000359373
0.000358278
0.000357201
0.00035614
0.000355116
0.000354087
0.000353294
0.000351931
0.00167034
0.00115527
0.000905601
0.0007738
0.000711705
0.000709859
0.000774685
0.000910399
0.00110742
0.00134775
0.00161336
0.00188743
0.00215452
0.00240265
0.00262397
0.00281446
0.00297308
0.00310101
0.00320079
0.00327568
0.00332924
0.00336497
0.00338617
0.00339579
0.00339637
0.00338999
0.00337815
0.0033618
0.00334167
0.0033189
0.00329596
0.00327716
0.00326776
0.00327026
0.00327928
0.00167033
0.00115526
0.000905572
0.000773709
0.000711431
0.000709179
0.000773383
0.000908481
0.00110515
0.00134543
0.00161124
0.00188565
0.00215309
0.00240152
0.00262308
0.00281372
0.00297244
0.00310044
0.0032003
0.00327531
0.00332902
0.00336491
0.00338621
0.00339584
0.00339641
0.00339022
0.00337924
0.00336488
0.00334776
0.00332753
0.00330317
0.00327396
0.00324133
0.00321065
0.0031926
0.00167066
0.00117221
0.00103634
0.00110043
0.00126247
0.00146307
0.0016753
0.00188489
0.00208396
0.00226881
0.00243828
0.00259257
0.00273265
0.00285975
0.00297524
0.00308044
0.00317661
0.0032649
0.00334633
0.00342179
0.00349204
0.00355777
0.00361965
0.00367828
0.00373417
0.00378752
0.00383815
0.00388575
0.00393042
0.0039734
0.00401725
0.00406452
0.00411553
0.00416526
0.004206
0.000733403
0.000539244
0.000459959
0.000432286
0.00041992
0.000413488
0.000410009
0.000408231
0.00040749
0.000407415
0.00040778
0.000408442
0.000409315
0.000410337
0.00041146
0.000412646
0.00041386
0.000415074
0.000416261
0.000417401
0.000418478
0.000419481
0.000420407
0.000421252
0.000422021
0.000422717
0.000423343
0.000423902
0.0004244
0.000424848
0.000425263
0.000425672
0.000426074
0.000426496
0.000426777
0.00167478
0.00117113
0.000999162
0.00102527
0.00117301
0.00137727
0.00160439
0.00183745
0.00206493
0.00227968
0.00247751
0.00265676
0.00281684
0.00295764
0.00307948
0.0031831
0.00326968
0.00334078
0.0033982
0.00344384
0.00347962
0.00350734
0.00352864
0.00354496
0.00355754
0.00356741
0.00357534
0.00358182
0.00358708
0.00359116
0.00359433
0.00359743
0.00360299
0.00361306
0.00363618
0.000985576
0.00067301
0.000610784
0.000600027
0.000604058
0.000613309
0.000624133
0.000634993
0.000645368
0.000655098
0.000664157
0.000672564
0.000680398
0.000687751
0.00069472
0.000701388
0.000707821
0.000714063
0.000720146
0.000726084
0.000731884
0.000737543
0.000743061
0.000748435
0.000753663
0.000758729
0.000763597
0.000768223
0.000772582
0.000776723
0.000780817
0.000785097
0.000789888
0.000794866
0.000800829
0.00063569
0.000470862
0.000397763
0.000371089
0.000358975
0.000352629
0.000349268
0.000347598
0.000346922
0.000346825
0.000347077
0.000347537
0.000348105
0.000348704
0.000349272
0.000349759
0.000350129
0.000350361
0.000350445
0.000350384
0.000350187
0.000349869
0.00034945
0.000348947
0.00034838
0.000347765
0.000347117
0.000346445
0.00034576
0.000345072
0.000344394
0.000343766
0.000343175
0.000342809
0.000342046
0.00132036
0.000855746
0.00078507
0.000818916
0.000875731
0.000934012
0.000988112
0.00103654
0.00107929
0.00111694
0.00115012
0.00117949
0.00120559
0.00122908
0.00125043
0.00127007
0.00128833
0.00130547
0.00132172
0.00133724
0.00135213
0.00136649
0.00138041
0.00139396
0.00140717
0.00142
0.00143234
0.00144405
0.00145512
0.00146585
0.00147693
0.0014891
0.00150272
0.00151664
0.00152934
0.00101941
0.000710162
0.000642741
0.000629274
0.000631582
0.00063933
0.000648781
0.00065843
0.000667753
0.000676605
0.000684912
0.000692686
0.000699977
0.000706861
0.000713418
0.000719718
0.000725812
0.000731733
0.000737503
0.000743129
0.000748611
0.000753943
0.000759121
0.000764141
0.000769
0.000773686
0.000778173
0.000782425
0.00078642
0.000790192
0.00079388
0.000797686
0.000801919
0.000806338
0.000811801
0.000859873
0.000563526
0.00050054
0.000486495
0.000487445
0.00049407
0.000502746
0.000511824
0.000520607
0.000528859
0.000536542
0.000543692
0.000550369
0.000556654
0.000562619
0.000568332
0.000573852
0.000579224
0.000584482
0.000589652
0.000594752
0.000599799
0.000604816
0.000609823
0.000614829
0.0006198
0.000624664
0.000629344
0.000633848
0.000638357
0.000643212
0.000648695
0.000654723
0.000660525
0.000664835
0.000819033
0.000565547
0.000504335
0.000486543
0.000483652
0.000486807
0.000492346
0.000498628
0.00050499
0.000511187
0.000517115
0.000522727
0.000528031
0.000533073
0.000537898
0.000542536
0.00054701
0.000551333
0.000555509
0.000559535
0.000563405
0.000567115
0.000570667
0.00057407
0.000577338
0.000580473
0.000583453
0.000586233
0.000588786
0.000591149
0.000593476
0.000595971
0.000598855
0.000601758
0.000605256
0.0016732
0.0011674
0.0010064
0.00104801
0.00120659
0.0014168
0.00164506
0.00187462
0.00209596
0.00230401
0.00249661
0.0026733
0.00283464
0.00298169
0.00311577
0.0032382
0.0033503
0.0034533
0.00354831
0.00363631
0.00371815
0.00379462
0.00386645
0.00393436
0.00399893
0.00406044
0.00411875
0.00417353
0.0042249
0.00427413
0.00432387
0.00437689
0.00443366
0.00448902
0.00453553
0.00165596
0.00118344
0.0010997
0.00117995
0.00132009
0.00147799
0.00163491
0.00178234
0.00191702
0.00203817
0.00214613
0.00224162
0.00232552
0.00239863
0.00246173
0.00251557
0.0025609
0.00259851
0.00262923
0.00265392
0.00267346
0.00268871
0.00270048
0.00270949
0.00271639
0.00272175
0.00272603
0.00272957
0.00273257
0.00273509
0.00273721
0.00273903
0.00274142
0.00274365
0.00275338
0.00167062
0.00115561
0.000911351
0.000797099
0.000773163
0.000834295
0.000974044
0.00117216
0.00140641
0.00165895
0.00191457
0.00216135
0.00239112
0.00259908
0.00278301
0.00294245
0.00307811
0.00319148
0.00328455
0.00335957
0.00341891
0.00346493
0.00349987
0.00352582
0.00354461
0.00355787
0.00356687
0.00357253
0.00357543
0.00357592
0.0035746
0.0035728
0.00357347
0.00357967
0.00359733
0.00145978
0.00098971
0.000922163
0.000976677
0.00106176
0.00114878
0.00122924
0.00130094
0.001364
0.00141925
0.00146776
0.00151052
0.00154839
0.00158222
0.00161274
0.00164057
0.00166621
0.00169005
0.00171239
0.00173347
0.00175344
0.00177246
0.00179063
0.00180805
0.00182479
0.00184087
0.00185619
0.00187061
0.00188406
0.00189676
0.00190937
0.00192285
0.00193814
0.00195451
0.0019723
0.000824835
0.000627704
0.00053234
0.000495579
0.000479332
0.000471152
0.000466791
0.000464578
0.000463637
0.000463473
0.000463811
0.0004645
0.000465444
0.000466581
0.000467869
0.000469278
0.000470782
0.000472363
0.000474004
0.000475691
0.000477413
0.000479161
0.000480929
0.00048271
0.000484498
0.000486282
0.000488049
0.000489791
0.000491514
0.000493244
0.000495011
0.000496827
0.000498644
0.000500257
0.000502027
0.00167382
0.00116864
0.000996451
0.00102077
0.00116456
0.00136507
0.00158906
0.00181957
0.0020457
0.00226064
0.00246071
0.00264425
0.00281077
0.00296052
0.0030941
0.00321227
0.00331592
0.00340605
0.00348376
0.00355029
0.00360693
0.00365502
0.00369586
0.00373068
0.00376062
0.00378669
0.00380974
0.00383044
0.00384921
0.00386634
0.0038822
0.00389728
0.00391287
0.00392877
0.00395171
0.000520721
0.000370278
0.000313019
0.000293366
0.000284522
0.000279887
0.000277356
0.000276031
0.000275447
0.000275338
0.000275543
0.000275965
0.000276538
0.000277213
0.000277954
0.00027873
0.000279513
0.000280283
0.00028102
0.00028171
0.000282344
0.000282916
0.000283424
0.000283871
0.00028426
0.000284595
0.000284882
0.000285124
0.000285326
0.000285498
0.000285649
0.000285799
0.000285936
0.000286124
0.000286128
0.00167228
0.00115647
0.000943762
0.000903163
0.000990292
0.00116457
0.00138719
0.00163459
0.00189165
0.00214726
0.00239392
0.00262737
0.00284562
0.00304797
0.00323454
0.00340586
0.00356262
0.00370564
0.00383578
0.00395397
0.00406115
0.00415829
0.00424635
0.00432632
0.00439921
0.00446593
0.00452722
0.00458355
0.00463524
0.00468283
0.0047275
0.00477106
0.00481572
0.00486123
0.00490988
0.00167252
0.00117735
0.00105139
0.00112336
0.00128614
0.00148358
0.0016905
0.00189307
0.00208399
0.00226016
0.00242086
0.00256662
0.00269864
0.00281823
0.00292675
0.00302552
0.00311573
0.00319848
0.00327475
0.00334538
0.00341111
0.00347257
0.00353042
0.00358525
0.00363756
0.00368754
0.00373498
0.00377948
0.00382105
0.00386087
0.00390148
0.00394551
0.00399344
0.00404025
0.00407983
0.00167063
0.00115583
0.000909515
0.000788098
0.000748277
0.000782718
0.000889714
0.00105743
0.00126842
0.00150705
0.00175875
0.00200952
0.00224759
0.00246455
0.00265534
0.00281768
0.00295143
0.00305805
0.00313999
0.00320025
0.003242
0.00326839
0.00328232
0.00328641
0.00328291
0.00327363
0.00325987
0.00324236
0.00322162
0.00319862
0.00317567
0.003157
0.00314798
0.00315139
0.00316252
0.00167058
0.00115567
0.000909169
0.00078719
0.00074618
0.000778815
0.000883951
0.00105041
0.00126094
0.00149986
0.00175239
0.00200419
0.00224323
0.00246097
0.0026523
0.00281498
0.00294895
0.00305575
0.0031379
0.00319846
0.0032406
0.00326742
0.00328177
0.00328621
0.00328304
0.00327429
0.0032617
0.00324647
0.00322904
0.00320893
0.00318499
0.00315636
0.00312443
0.00309463
0.0030779
0.000877277
0.000590374
0.00052705
0.000511634
0.000511898
0.0005182
0.000526723
0.000535722
0.000544426
0.000552596
0.000560228
0.000567356
0.000574042
0.000580363
0.000586389
0.000592184
0.000597799
0.000603274
0.000608641
0.00061392
0.000619127
0.000624276
0.000629387
0.000634485
0.000639579
0.000644643
0.000649602
0.000654365
0.000658915
0.000663399
0.000668151
0.000673483
0.000679427
0.000685198
0.00069014
0.000767573
0.000520205
0.000460842
0.000443241
0.000440143
0.00044291
0.000448029
0.0004539
0.000459808
0.000465507
0.000470938
0.000476092
0.000480994
0.000485686
0.000490209
0.000494598
0.000498884
0.000503089
0.000507231
0.00051132
0.000515362
0.000519366
0.000523344
0.000527313
0.000531278
0.000535218
0.000539071
0.000542765
0.000546287
0.000549753
0.000553421
0.000557533
0.000562097
0.000566528
0.000569989
0.000694978
0.000467917
0.00041356
0.000397378
0.000394614
0.000397169
0.000401748
0.000406972
0.000412264
0.000417387
0.000422267
0.000426894
0.000431273
0.000435443
0.000439449
0.000443332
0.000447123
0.000450845
0.000454513
0.000458134
0.000461712
0.000465246
0.000468736
0.000472179
0.000475571
0.000478893
0.000482111
0.000485192
0.000488128
0.000490979
0.000493886
0.000497006
0.000500446
0.000503946
0.000507373
0.000673838
0.000501489
0.000425939
0.000397442
0.000384771
0.000378351
0.000374908
0.000373153
0.00037241
0.000372299
0.000372601
0.00037319
0.000373982
0.000374926
0.000375987
0.000377142
0.000378373
0.000379661
0.000380993
0.000382355
0.000383738
0.00038513
0.000386524
0.000387911
0.000389284
0.000390635
0.000391955
0.000393239
0.000394488
0.000395713
0.000396931
0.000398156
0.000399373
0.000400507
0.000401706
0.000817906
0.000628001
0.000533341
0.000498115
0.000482863
0.000475006
0.000470681
0.000468326
0.000467153
0.000466709
0.000466733
0.000467053
0.000467538
0.000468084
0.000468604
0.00046903
0.000469312
0.00046942
0.000469342
0.00046908
0.000468645
0.000468059
0.000467345
0.000466529
0.000465636
0.000464689
0.000463708
0.000462711
0.000461709
0.000460713
0.000459725
0.000458768
0.00045781
0.000457056
0.000455907
0.00167462
0.0011731
0.00101186
0.00105
0.00120208
0.00140505
0.00162812
0.00185469
0.00207378
0.00227912
0.0024675
0.00263789
0.00279016
0.00292461
0.00304168
0.00314214
0.00322701
0.00329763
0.00335553
0.00340234
0.00343973
0.00346932
0.0034926
0.00351093
0.00352547
0.00353722
0.00354692
0.00355507
0.00356189
0.00356745
0.00357203
0.00357646
0.00358324
0.00359423
0.00361821
0.000661331
0.00048934
0.000416862
0.000392131
0.000380991
0.000375141
0.000372069
0.000370487
0.000369755
0.000369513
0.000369514
0.000369576
0.000369556
0.000369352
0.000368897
0.000368164
0.000367152
0.000365883
0.000364395
0.000362729
0.00036093
0.00035904
0.000357093
0.000355123
0.000353151
0.000351196
0.000349268
0.000347371
0.000345511
0.000343705
0.000341982
0.000340415
0.000338971
0.000337945
0.000336136
0.000721292
0.00054558
0.000465938
0.000437278
0.00042428
0.000417383
0.000413662
0.000411733
0.000410833
0.000410518
0.00041049
0.000410537
0.000410497
0.000410255
0.00040974
0.000408922
0.000407803
0.000406408
0.000404775
0.00040295
0.000400979
0.000398906
0.00039677
0.000394604
0.000392436
0.00039029
0.000388181
0.000386117
0.000384093
0.000382102
0.000380128
0.000378203
0.000376305
0.000374871
0.000372859
0.00166967
0.00115292
0.000901451
0.000766702
0.000696438
0.000675168
0.000703052
0.000784024
0.000917151
0.00109565
0.00131036
0.00155059
0.00180448
0.00206154
0.00231347
0.0025548
0.00278215
0.00299357
0.00318813
0.00336562
0.00352641
0.00367128
0.00380137
0.00391802
0.00402268
0.00411686
0.00420198
0.00427933
0.00434997
0.00441473
0.00447438
0.0045299
0.00458323
0.00463631
0.00469554
0.000661723
0.000485558
0.000413669
0.000388317
0.000376995
0.000371138
0.000367984
0.000366378
0.000365714
0.000365649
0.000365977
0.000366572
0.000367351
0.00036825
0.00036922
0.00037022
0.000371217
0.000372182
0.000373091
0.000373929
0.000374684
0.000375351
0.000375929
0.000376422
0.000376837
0.000377182
0.000377464
0.000377691
0.000377868
0.000378006
0.000378117
0.000378224
0.000378325
0.00037849
0.000378471
0.00138541
0.000924602
0.000861123
0.000902589
0.000965319
0.0010285
0.00108631
0.00113749
0.00118241
0.00122185
0.00125662
0.00128747
0.00131501
0.00133977
0.00136221
0.00138266
0.00140138
0.00141857
0.00143435
0.00144885
0.00146215
0.00147433
0.00148548
0.00149569
0.00150505
0.00151367
0.00152161
0.00152891
0.00153557
0.0015416
0.00154713
0.00155242
0.00155846
0.00156477
0.00157795
0.000590568
0.000413944
0.000368731
0.000354649
0.000350995
0.000351401
0.000353539
0.00035633
0.000359268
0.0003621
0.000364623
0.000366678
0.000368138
0.000368928
0.000369028
0.000368467
0.000367305
0.00036563
0.000363541
0.000361134
0.000358497
0.00035571
0.000352836
0.00034993
0.000347039
0.000344202
0.000341447
0.000338782
0.000336192
0.000333626
0.000331031
0.000328368
0.000325769
0.00032335
0.000321997
0.000556046
0.000371143
0.000326319
0.00031204
0.000308179
0.000308445
0.000310328
0.000312816
0.000315447
0.000317992
0.000320275
0.000322148
0.000323497
0.000324254
0.000324394
0.000323937
0.00032294
0.00032148
0.000319646
0.000317527
0.000315205
0.000312753
0.000310232
0.000307692
0.000305171
0.000302695
0.000300272
0.000297893
0.000295545
0.000293233
0.000291019
0.000289033
0.000287505
0.000286457
0.000286233
0.00166905
0.0011477
0.000894056
0.00075365
0.000668948
0.00061625
0.000585989
0.000575755
0.000587332
0.000624661
0.000691832
0.000791795
0.000926376
0.0010962
0.00129955
0.00153153
0.0017848
0.00205125
0.00232347
0.00259553
0.00286304
0.0031231
0.00337399
0.00361483
0.0038454
0.0040659
0.00427683
0.00447877
0.00467232
0.00485812
0.00503708
0.00521041
0.00537963
0.00554578
0.00570949
0.000726591
0.000542048
0.000463164
0.000434743
0.000422063
0.000415492
0.000411953
0.000410155
0.000409412
0.000409337
0.000409698
0.000410355
0.000411208
0.000412187
0.000413234
0.000414303
0.000415356
0.000416361
0.000417293
0.000418134
0.000418874
0.000419509
0.000420041
0.000420476
0.000420822
0.000421091
0.000421293
0.000421436
0.000421529
0.000421581
0.000421604
0.000421623
0.000421639
0.00042173
0.000421654
0.0016696
0.00114838
0.000898272
0.000770516
0.000717048
0.000727981
0.00080618
0.000949924
0.00114806
0.00138689
0.00165342
0.00193485
0.00222027
0.00250166
0.00277396
0.0030341
0.00328036
0.0035123
0.00372994
0.00393363
0.00412392
0.00430146
0.00446702
0.00462147
0.00476574
0.00490074
0.00502724
0.00514579
0.0052568
0.005361
0.00545986
0.00555557
0.00565043
0.00574436
0.00583755
0.000774624
0.000517402
0.000461537
0.000445316
0.000442478
0.00044574
0.000451675
0.000458477
0.000465328
0.000471905
0.000478093
0.000483833
0.000489117
0.000493947
0.000498325
0.00050224
0.000505685
0.000508653
0.000511151
0.000513197
0.00051482
0.000516059
0.000516961
0.000517576
0.000517954
0.000518144
0.000518182
0.000518087
0.000517865
0.000517513
0.000517074
0.000516635
0.000516525
0.000516713
0.000518727
0.000865776
0.000664171
0.000566247
0.000528276
0.000511421
0.000502904
0.000498372
0.000496089
0.000495134
0.000494989
0.000495367
0.000496111
0.000497122
0.000498338
0.000499714
0.000501219
0.000502824
0.000504507
0.000506251
0.00050804
0.00050986
0.000511703
0.000513562
0.000515431
0.000517304
0.000519168
0.00052101
0.000522818
0.000524595
0.000526365
0.000528166
0.000530021
0.000531888
0.000533576
0.000535308
0.000712105
0.000535027
0.000456067
0.000426229
0.000412803
0.000405914
0.000402203
0.000400307
0.000399491
0.000399334
0.00039961
0.00040019
0.000400994
0.000401969
0.000403079
0.000404296
0.000405595
0.000406958
0.000408369
0.000409813
0.000411281
0.000412764
0.000414256
0.000415753
0.000417248
0.000418732
0.000420192
0.000421621
0.00042302
0.000424412
0.000425825
0.000427277
0.000428725
0.000430033
0.000431289
0.00101342
0.000678048
0.000638382
0.0006503
0.000671258
0.00069379
0.000715508
0.000735216
0.000752651
0.000767811
0.000780549
0.000790691
0.000798094
0.000802726
0.000804702
0.000804257
0.0008017
0.00079739
0.000791704
0.000784988
0.000777548
0.00076964
0.000761471
0.000753212
0.000745008
0.000736982
0.000729229
0.000721784
0.000714598
0.000707477
0.000700183
0.000692442
0.000684718
0.000676828
0.000673961
0.000764526
0.000501434
0.000452869
0.000444226
0.000447309
0.000454583
0.000462932
0.00047116
0.000478802
0.000485664
0.000491573
0.000496357
0.000499892
0.000502117
0.000503049
0.00050277
0.000501419
0.000499166
0.000496193
0.000492678
0.000488781
0.000484638
0.000480363
0.000476049
0.000471769
0.000467569
0.000463468
0.00045945
0.000455482
0.000451553
0.00044775
0.000444273
0.000441645
0.000439726
0.000440425
0.00163014
0.00116988
0.00111136
0.001201
0.00133717
0.00148144
0.00161929
0.00174571
0.0018595
0.00196096
0.00205102
0.00213096
0.00220206
0.00226554
0.00232236
0.00237335
0.00241917
0.00246039
0.00249746
0.00253077
0.00256069
0.00258755
0.00261169
0.00263345
0.00265322
0.0026713
0.00268788
0.00270296
0.00271649
0.00272858
0.00273989
0.00275152
0.00276512
0.00277968
0.00280062
0.00167339
0.00116588
0.000999285
0.00103201
0.00117947
0.001378
0.00159687
0.00182059
0.00203921
0.00224665
0.00243983
0.00261768
0.00278042
0.00292894
0.00306445
0.00318834
0.00330191
0.00340641
0.00350291
0.00359236
0.00367562
0.00375347
0.0038266
0.00389563
0.00396105
0.00402306
0.00408157
0.00413644
0.00418806
0.00423785
0.00428825
0.00434147
0.00439736
0.00445082
0.00449514
0.00166954
0.00115305
0.000900622
0.000761167
0.000678696
0.000631623
0.000613425
0.000625609
0.000673491
0.000761937
0.000892612
0.00106454
0.00127492
0.00151746
0.00178244
0.00205833
0.00233404
0.00260047
0.00285117
0.00308229
0.00329213
0.0034806
0.00364867
0.00379797
0.0039305
0.00404832
0.00415348
0.00424784
0.00433298
0.00441019
0.00448059
0.00454537
0.00460649
0.00466582
0.00472952
0.0016653
0.00119279
0.00111474
0.00121623
0.00138254
0.00156657
0.00174924
0.0019219
0.00208096
0.00222534
0.00235524
0.0024718
0.00257634
0.00267018
0.00275446
0.0028302
0.00289829
0.00295945
0.00301433
0.00306353
0.00310758
0.003147
0.00318232
0.00321406
0.00324275
0.00326888
0.00329275
0.00331446
0.00333401
0.0033516
0.00336807
0.00338475
0.00340344
0.00342344
0.00344806
0.00166921
0.00114806
0.000895025
0.000757005
0.000679074
0.000642211
0.000644
0.000690128
0.000786664
0.000933766
0.00112608
0.00135606
0.00161462
0.00189139
0.00217652
0.00246197
0.00274195
0.00301254
0.00327145
0.00351746
0.00374998
0.00396897
0.00417479
0.00436804
0.0045496
0.00472051
0.0048817
0.0050339
0.00517776
0.00531401
0.00544392
0.00556936
0.00569245
0.00581365
0.00593361
0.00158501
0.00111485
0.0010451
0.00111495
0.00122392
0.00133703
0.0014426
0.00153703
0.00162051
0.00169404
0.00175893
0.00181641
0.00186756
0.00191334
0.00195453
0.00199181
0.00202567
0.00205651
0.00208465
0.00211034
0.0021338
0.00215523
0.0021748
0.00219269
0.0022091
0.0022242
0.00223812
0.00225094
0.00226266
0.00227334
0.00228322
0.0022928
0.00230336
0.00231459
0.0023341
0.000670427
0.00050198
0.000427693
0.000401174
0.000389086
0.000382627
0.000379115
0.000377289
0.000376423
0.000376109
0.000376077
0.000376128
0.000376116
0.000375935
0.000375518
0.000374833
0.000373881
0.000372679
0.000371261
0.000369665
0.000367933
0.000366104
0.000364213
0.00036229
0.000360362
0.000358449
0.000356567
0.000354723
0.000352914
0.000351137
0.000349379
0.000347673
0.000345994
0.00034473
0.000342899
0.000716989
0.000535114
0.000457482
0.000430538
0.000418421
0.00041209
0.000408776
0.000407102
0.000406362
0.000406159
0.000406225
0.000406358
0.000406407
0.00040626
0.000405846
0.00040513
0.000404111
0.000402813
0.000401272
0.000399536
0.00039765
0.000395659
0.000393603
0.000391517
0.000389426
0.00038735
0.000385301
0.000383285
0.000381308
0.000379386
0.000377546
0.000375861
0.000374302
0.000373178
0.00037129
0.000559125
0.000410716
0.000347727
0.000325878
0.000316024
0.000310816
0.000308038
0.000306598
0.000305923
0.000305693
0.0003057
0.000305788
0.000305839
0.000305765
0.000305508
0.000305039
0.00030435
0.000303457
0.000302382
0.00030116
0.000299823
0.000298403
0.000296931
0.000295431
0.000293924
0.000292424
0.000290942
0.000289483
0.000288053
0.000286663
0.00028533
0.000284105
0.000282954
0.000282128
0.000280669
0.000586168
0.000436618
0.000369876
0.000345895
0.000334932
0.000329033
0.000325792
0.00032407
0.000323217
0.000322869
0.000322789
0.000322809
0.000322801
0.000322671
0.000322358
0.00032183
0.000321083
0.000320128
0.000318989
0.000317697
0.000316285
0.000314787
0.000313232
0.000311645
0.000310049
0.000308462
0.000306897
0.000305361
0.000303855
0.000302377
0.000300919
0.00029951
0.000298118
0.000297071
0.000295499
0.00129941
0.000874139
0.000819523
0.00084751
0.000891686
0.000937175
0.000980036
0.00101889
0.00105335
0.00108382
0.00111084
0.0011349
0.0011565
0.0011761
0.00119407
0.0012107
0.00122624
0.00124088
0.00125476
0.00126797
0.0012806
0.0012927
0.00130435
0.00131564
0.00132665
0.00133736
0.00134766
0.00135731
0.00136618
0.00137448
0.00138299
0.00139261
0.00140402
0.00141553
0.00142807
0.001617
0.00116311
0.0011171
0.0012243
0.00137225
0.00152091
0.00165746
0.0017785
0.00188439
0.00197663
0.00205672
0.00212582
0.00218481
0.00223438
0.00227516
0.00230782
0.00233308
0.00235177
0.00236478
0.00237303
0.00237743
0.00237881
0.00237792
0.0023754
0.00237178
0.00236749
0.00236291
0.00235828
0.00235378
0.00234938
0.00234501
0.00234038
0.00233598
0.00233052
0.00233257
0.0016689
0.00114521
0.000891272
0.000750373
0.000664097
0.000607247
0.000567825
0.000539776
0.000520116
0.000507726
0.000502839
0.000506816
0.000521956
0.000551215
0.000597831
0.000665075
0.000756223
0.000874364
0.00102158
0.00119794
0.00140099
0.00162618
0.00186781
0.00212004
0.0023778
0.00263709
0.00289506
0.00314976
0.00339988
0.00364467
0.00388395
0.00411811
0.00434786
0.00457339
0.00479213
0.00128464
0.00085136
0.00079353
0.000823135
0.000870692
0.000919623
0.000965387
0.00100657
0.00104313
0.00107552
0.00110424
0.00112974
0.00115251
0.00117306
0.00119177
0.00120893
0.00122477
0.00123949
0.00125319
0.00126598
0.00127792
0.00128907
0.00129949
0.00130928
0.00131851
0.00132726
0.00133551
0.00134313
0.00135003
0.00135627
0.0013623
0.00136878
0.00137663
0.00138485
0.00139628
0.000802583
0.000543468
0.000493788
0.000482349
0.00048243
0.000487573
0.0004947
0.000502201
0.000509207
0.000515406
0.000520546
0.000524404
0.0005268
0.000527661
0.000527031
0.000525045
0.000521903
0.000517826
0.000513042
0.000507753
0.000502137
0.000496337
0.000490462
0.000484613
0.000478873
0.00047332
0.000468004
0.000462912
0.000457944
0.000452897
0.000447552
0.00044182
0.000436139
0.000431257
0.000429256
0.00072592
0.000495423
0.000445884
0.000432329
0.000430886
0.000434502
0.000439893
0.000445648
0.000451147
0.000456009
0.000460031
0.000463024
0.000464838
0.000465402
0.000464739
0.00046295
0.000460191
0.000456645
0.000452494
0.000447917
0.000443065
0.000438067
0.000433027
0.000428031
0.000423135
0.000418355
0.000413666
0.000409009
0.000404357
0.000399809
0.000395693
0.000392533
0.000390902
0.0003905
0.000390803
0.00167148
0.00119978
0.00111529
0.00120864
0.00136636
0.00154331
0.00172
0.00188587
0.00203659
0.00217137
0.00229047
0.00239457
0.00248437
0.00256058
0.00262393
0.00267525
0.00271561
0.00274623
0.00276849
0.00278374
0.00279333
0.00279848
0.00280028
0.00279965
0.00279737
0.00279408
0.00279019
0.00278594
0.00278133
0.00277621
0.00277065
0.00276523
0.00276217
0.002763
0.00277688
0.00167435
0.00116242
0.000966552
0.000956507
0.00107829
0.00127874
0.0015172
0.00177117
0.00202646
0.00227382
0.00250791
0.00272632
0.00292847
0.00311477
0.00328605
0.00344338
0.00358791
0.00372081
0.00384319
0.00395608
0.00406043
0.00415711
0.00424695
0.00433077
0.00440931
0.0044831
0.00455232
0.00461681
0.00467658
0.00473243
0.00478644
0.00484136
0.00489896
0.00495665
0.00501122
0.00133783
0.000887839
0.000829323
0.000870072
0.000930446
0.000991359
0.00104798
0.0010988
0.00114358
0.00118288
0.00121752
0.00124824
0.0012757
0.00130047
0.00132302
0.00134377
0.00136305
0.00138113
0.00139823
0.00141452
0.00143013
0.00144519
0.00145982
0.00147415
0.00148827
0.00150215
0.00151559
0.00152831
0.00154026
0.00155191
0.00156432
0.00157863
0.00159502
0.00161134
0.00162404
0.00087199
0.000572989
0.000518256
0.00051289
0.000520342
0.000531298
0.000542492
0.000552905
0.000562253
0.000570583
0.000578032
0.000584639
0.000590367
0.000595167
0.000599001
0.00060186
0.000603768
0.000604781
0.000604986
0.000604491
0.000603412
0.000601868
0.000599969
0.000597815
0.000595494
0.000593083
0.000590644
0.000588221
0.000585842
0.000583499
0.000581181
0.00057883
0.0005766
0.000574148
0.00057338
0.000895739
0.000589372
0.000532692
0.000526854
0.000534276
0.000545407
0.000556879
0.000567588
0.000577267
0.000585995
0.000593819
0.000600795
0.000606901
0.000612096
0.000616348
0.000619647
0.000622011
0.000623492
0.000624166
0.000624132
0.000623501
0.000622384
0.000620889
0.000619116
0.000617151
0.000615073
0.000612945
0.000610813
0.000608705
0.000606614
0.000604538
0.000602426
0.000600462
0.000598262
0.000598051
0.0016696
0.00115128
0.000900621
0.000769832
0.000708654
0.000703819
0.000755679
0.000864611
0.00102547
0.0012303
0.00147011
0.00173401
0.00200999
0.00228706
0.00255665
0.00281286
0.00305211
0.00327274
0.00347452
0.00365794
0.00382449
0.00397583
0.00411363
0.00423951
0.00435496
0.00446136
0.00455993
0.00465169
0.0047375
0.004818
0.00489383
0.00496585
0.00503578
0.00510507
0.00517912
0.0012481
0.000805911
0.000750205
0.000783994
0.000835911
0.000888339
0.000936325
0.000978978
0.00101657
0.00104968
0.00107887
0.00110473
0.00112774
0.00114837
0.00116698
0.00118385
0.00119919
0.00121316
0.00122587
0.00123743
0.00124791
0.0012574
0.00126598
0.00127377
0.00128086
0.00128738
0.00129337
0.00129882
0.00130368
0.00130798
0.00131197
0.00131605
0.00132115
0.00132635
0.00133673
0.00166952
0.0011529
0.000900458
0.00076195
0.00068206
0.000640631
0.000633135
0.000662851
0.000735156
0.000852744
0.00101435
0.001216
0.00145116
0.00171058
0.00198361
0.00225994
0.00253091
0.00278998
0.00303276
0.00325673
0.00346093
0.00364556
0.00381161
0.00396056
0.00409417
0.00421428
0.00432271
0.00442119
0.00451127
0.00459424
0.00467114
0.00474267
0.00480976
0.00487228
0.00493548
0.0016697
0.00114754
0.000897766
0.000770955
0.000719603
0.000734266
0.00081695
0.000963529
0.00116096
0.00139544
0.00165519
0.00192947
0.00220891
0.00248632
0.00275664
0.00301671
0.00326468
0.00349979
0.0037219
0.00393129
0.00412848
0.00431415
0.0044891
0.00465417
0.00481024
0.00495801
0.00509786
0.00522993
0.00535446
0.0054724
0.00558585
0.00569751
0.00580915
0.0059185
0.00602187
0.000759199
0.000510271
0.000453485
0.000436934
0.00043391
0.000436475
0.000441322
0.000446963
0.000452774
0.000458499
0.000463989
0.000469157
0.00047396
0.00047837
0.000482362
0.000485919
0.00048903
0.000491693
0.000493915
0.000495719
0.000497133
0.000498197
0.000498953
0.00049945
0.000499735
0.000499853
0.000499845
0.000499734
0.000499534
0.000499252
0.000498916
0.000498562
0.000498354
0.000498142
0.0004989
0.00167311
0.00115983
0.000959932
0.00094274
0.00105544
0.00124741
0.00147918
0.00172839
0.00198067
0.00222633
0.00245965
0.00267795
0.00288038
0.00306707
0.0032386
0.00339582
0.00353964
0.00367102
0.00379088
0.00390017
0.00399975
0.0040905
0.00417325
0.00424887
0.00431823
0.00438211
0.00444104
0.00449529
0.00454506
0.00459084
0.00463397
0.00467652
0.00472068
0.00476598
0.0048125
0.00137288
0.000927871
0.000875775
0.000920088
0.000983754
0.00104695
0.00110474
0.00115631
0.00120188
0.00124208
0.00127752
0.00130884
0.00133669
0.00136167
0.00138424
0.00140477
0.00142353
0.00144073
0.00145654
0.00147107
0.00148442
0.00149667
0.00150792
0.00151829
0.00152789
0.00153684
0.00154518
0.00155284
0.00155974
0.00156592
0.00157173
0.00157778
0.00158519
0.00159274
0.00160696
0.00167006
0.00115017
0.000905012
0.000790397
0.000764459
0.000819733
0.000949661
0.0011369
0.00136325
0.00161516
0.00188125
0.00215165
0.00241866
0.00267677
0.00292237
0.00315322
0.00336809
0.00356651
0.00374854
0.0039147
0.00406587
0.00420315
0.00432785
0.00444134
0.00454499
0.00464014
0.00472794
0.00480932
0.00488501
0.00495568
0.00502232
0.00508626
0.00514943
0.00521215
0.00527837
0.0016749
0.00117957
0.0010438
0.0011074
0.00126929
0.00147029
0.00168393
0.0018961
0.00209868
0.00228746
0.00246093
0.00261909
0.00276276
0.00289331
0.00301211
0.00312046
0.00321959
0.00331055
0.00339425
0.00347144
0.00354278
0.00360882
0.00367006
0.00372698
0.00378001
0.00382948
0.0038756
0.00391842
0.00395802
0.00399483
0.00402997
0.00406511
0.00410216
0.00414091
0.00418269
0.000761763
0.000522356
0.000467831
0.000451954
0.00044895
0.000451371
0.00045601
0.000461447
0.000467086
0.000472654
0.000477999
0.000483023
0.000487677
0.000491926
0.00049574
0.000499098
0.000501988
0.000504409
0.000506374
0.000507907
0.000509045
0.00050983
0.00051031
0.000510537
0.000510561
0.000510428
0.00051018
0.000509843
0.000509432
0.000508951
0.000508423
0.000507875
0.000507477
0.000507042
0.000507758
0.000710917
0.000536167
0.00045666
0.000427131
0.000413729
0.000406674
0.000402807
0.00040076
0.000399818
0.000399578
0.000399798
0.000400324
0.000401045
0.000401879
0.000402759
0.00040363
0.000404448
0.000405181
0.000405806
0.000406309
0.000406688
0.000406945
0.00040709
0.000407134
0.000407092
0.000406979
0.000406808
0.000406592
0.000406341
0.000406065
0.000405772
0.000405488
0.00040519
0.000405031
0.00040445
0.00140618
0.00094555
0.000888242
0.0009443
0.00102627
0.00110818
0.00118282
0.00124888
0.00130685
0.00135769
0.00140236
0.00144175
0.00147662
0.00150764
0.00153534
0.00156012
0.00158232
0.00160219
0.00161994
0.00163576
0.00164983
0.0016623
0.00167335
0.00168317
0.00169196
0.00169988
0.00170707
0.00171355
0.0017193
0.00172434
0.00172895
0.0017336
0.00173932
0.00174535
0.00175699
0.0012442
0.000824446
0.000771849
0.000801526
0.000845599
0.00089019
0.000931609
0.00096879
0.00100185
0.00103118
0.00105712
0.00107999
0.00110003
0.00111744
0.00113239
0.00114503
0.00115551
0.00116399
0.00117067
0.00117573
0.00117941
0.00118191
0.00118345
0.00118423
0.00118444
0.00118422
0.00118373
0.00118305
0.00118222
0.00118123
0.00118012
0.00117888
0.00117804
0.0011769
0.00118022
0.00166902
0.00114658
0.000892865
0.000752513
0.000668045
0.000615944
0.000587008
0.000579426
0.000595748
0.000640525
0.000717801
0.000829712
0.000976839
0.00115836
0.00137113
0.00160935
0.00186565
0.00213262
0.00240401
0.00267505
0.00294243
0.00320386
0.00345788
0.00370354
0.00394034
0.00416804
0.00438654
0.00459581
0.00479594
0.0049874
0.00517135
0.0053496
0.00552391
0.00569427
0.00585853
0.00166904
0.00114714
0.000893523
0.000753236
0.000668895
0.000617108
0.000588865
0.000582679
0.000601597
0.000650814
0.000734961
0.00085644
0.00101565
0.00121094
0.00143761
0.00168816
0.00195391
0.0022272
0.00250191
0.00277358
0.00303913
0.00329653
0.00354452
0.0037825
0.00401032
0.00422815
0.00443637
0.00463537
0.00482555
0.00500751
0.0051824
0.00535197
0.00551808
0.00568117
0.00584035
0.00130445
0.000895141
0.000838446
0.000857603
0.000893594
0.000932546
0.000970142
0.00100465
0.00103559
0.00106313
0.00108765
0.0011096
0.00112943
0.00114752
0.0011642
0.00117972
0.0011943
0.0012081
0.00122126
0.00123388
0.001246
0.00125771
0.00126908
0.0012802
0.00129113
0.00130184
0.00131216
0.00132185
0.00133081
0.00133938
0.0013484
0.00135879
0.0013709
0.00138288
0.00139349
0.00166892
0.00114565
0.000891663
0.000750752
0.000664504
0.000607761
0.000568615
0.000541169
0.000522691
0.000512436
0.000511139
0.000520732
0.000544043
0.000584365
0.000645072
0.000729506
0.000840959
0.00098213
0.00115406
0.00135528
0.0015818
0.00182779
0.00208673
0.00235251
0.00262012
0.00288592
0.00314754
0.00340354
0.0036531
0.00389592
0.0041322
0.00436272
0.0045885
0.00480997
0.00502505
0.00167205
0.0011577
0.000936011
0.000877513
0.000946371
0.0011119
0.00133371
0.00158293
0.00184248
0.00210045
0.00234842
0.00258085
0.00279437
0.002987
0.00315775
0.00330691
0.00343542
0.00354478
0.00363693
0.00371399
0.0037781
0.00383136
0.00387566
0.00391274
0.00394411
0.00397106
0.0039946
0.00401547
0.00403411
0.00405076
0.00406578
0.00408008
0.00409603
0.00411585
0.00414711
0.00166892
0.00114575
0.000891662
0.000750706
0.00066448
0.000607872
0.000569088
0.00054243
0.000525491
0.00051802
0.000521431
0.000538464
0.000572702
0.000627921
0.000707633
0.000814997
0.000952511
0.00112108
0.00131915
0.00154261
0.00178571
0.00204221
0.00230634
0.00257344
0.00284
0.00310352
0.00336225
0.00361495
0.00386076
0.00409928
0.00433065
0.00455563
0.00477521
0.00498967
0.00519678
0.00166917
0.00115006
0.000896734
0.000756549
0.000672312
0.000620803
0.000593149
0.000587877
0.000607785
0.000657445
0.000740817
0.000860151
0.00101625
0.00120798
0.00143097
0.00167764
0.00193902
0.00220683
0.00247476
0.00273862
0.00299562
0.00324411
0.00348305
0.0037118
0.00392999
0.00413753
0.00433457
0.00452145
0.0046986
0.00486656
0.00502594
0.00517761
0.00532303
0.00546344
0.00560249
0.00166947
0.00115206
0.000899651
0.00076197
0.000684356
0.000647743
0.000648904
0.000691759
0.000780467
0.000914836
0.00109081
0.00130209
0.00153987
0.00179363
0.00205328
0.00231089
0.00256106
0.00280017
0.00302637
0.00323852
0.00343606
0.00361889
0.00378732
0.00394202
0.00408392
0.00421413
0.00433385
0.00444424
0.00454635
0.00464108
0.00472928
0.00481194
0.00489087
0.00496775
0.00504832
0.00167074
0.00115648
0.00091269
0.000799168
0.000775411
0.000834664
0.000970304
0.00116434
0.00139594
0.00164655
0.00189968
0.00214196
0.00236484
0.00256425
0.00273863
0.00288793
0.00301298
0.00311527
0.00319677
0.00325977
0.00330674
0.00334011
0.00336219
0.00337513
0.00338089
0.00338121
0.00337763
0.00337136
0.00336316
0.00335309
0.00334057
0.00332472
0.00330565
0.00328534
0.00327181
0.0016707
0.00115624
0.000911249
0.000794407
0.000763816
0.000812251
0.000934824
0.00111579
0.00133551
0.0015767
0.00182381
0.00206392
0.00228876
0.00249347
0.00267532
0.00283304
0.00296647
0.00307642
0.00316447
0.00323283
0.003284
0.0033206
0.00334517
0.00336007
0.00336741
0.00336897
0.00336611
0.00335977
0.00335047
0.0033387
0.00332549
0.00331308
0.00330541
0.00330624
0.0033187
0.0016537
0.00118941
0.00112246
0.00122186
0.00137672
0.00154219
0.00170076
0.00184607
0.00197648
0.00209224
0.00219425
0.00228348
0.00236089
0.00242724
0.00248329
0.0025298
0.00256756
0.00259746
0.00262047
0.00263758
0.00264981
0.00265808
0.00266328
0.00266614
0.00266733
0.00266738
0.00266675
0.00266575
0.00266459
0.00266331
0.0026619
0.00266022
0.00265895
0.00265695
0.00266275
0.0016707
0.00115605
0.000910928
0.000792785
0.000759336
0.000802983
0.000918965
0.00109209
0.00130421
0.00154002
0.00178547
0.00202771
0.00225646
0.00246471
0.00264835
0.00280553
0.00293609
0.00304124
0.00312313
0.00318448
0.00322817
0.00325707
0.00327385
0.00328092
0.00328048
0.0032745
0.00326466
0.00325218
0.00323766
0.00322081
0.00320062
0.0031761
0.00314796
0.00312027
0.00310283
0.00167076
0.00115621
0.00091114
0.00079307
0.000759653
0.000803136
0.000918768
0.00109146
0.00130293
0.00153763
0.00178168
0.00202275
0.00225092
0.00245919
0.00264338
0.00280138
0.00293281
0.00303869
0.00312107
0.00318258
0.00322615
0.00325471
0.00327105
0.00327767
0.00327678
0.00327019
0.00325924
0.0032447
0.00322705
0.00320699
0.0031863
0.00316849
0.00315863
0.00316038
0.00317241
0.00105926
0.000706622
0.000647282
0.000641408
0.000650408
0.000664512
0.000680063
0.000695375
0.000709713
0.000722878
0.000734911
0.000745936
0.000756111
0.000765591
0.000774515
0.000782991
0.00079111
0.00079894
0.00080653
0.000813907
0.000821092
0.000828102
0.000834967
0.000841727
0.000848406
0.000854972
0.000861316
0.000867287
0.000872837
0.000878168
0.00088379
0.000890223
0.00089769
0.000904873
0.000911952
0.00167061
0.00118318
0.00107218
0.00115701
0.00132497
0.00152162
0.0017248
0.00192301
0.00210998
0.00228283
0.00244069
0.00258389
0.00271329
0.00282998
0.00293501
0.00302939
0.00311402
0.00318972
0.00325723
0.00331729
0.00337059
0.00341783
0.00345971
0.00349694
0.00353023
0.00356022
0.00358738
0.00361197
0.00363414
0.00365414
0.00367274
0.0036912
0.00371131
0.00373272
0.00375869
0.00167023
0.00115539
0.000904632
0.000769543
0.000698638
0.000677087
0.00070623
0.000791615
0.00093331
0.00112436
0.00135494
0.00161277
0.0018825
0.0021482
0.00239647
0.00261831
0.00280909
0.00296775
0.00309566
0.00319567
0.00327128
0.00332622
0.0033641
0.00338822
0.00340148
0.0034063
0.00340459
0.00339766
0.00338643
0.00337182
0.00335546
0.00334037
0.00333095
0.00333094
0.00334045
0.00167021
0.00115534
0.000904554
0.000769433
0.000698481
0.000676891
0.000706022
0.000791373
0.000932912
0.00112375
0.00135415
0.00161172
0.00188097
0.00214587
0.00239313
0.00261392
0.00280384
0.00296198
0.00308981
0.00319015
0.00326647
0.00332238
0.00336135
0.00338656
0.00340086
0.00340677
0.00340646
0.00340164
0.00339339
0.00338198
0.00336693
0.00334755
0.00332427
0.00330006
0.00328278
0.00167558
0.00117092
0.00101042
0.00105406
0.0012148
0.00142599
0.00165559
0.00188784
0.00211306
0.00232569
0.00252309
0.00270457
0.00287056
0.00302207
0.00316038
0.00328682
0.00340265
0.00350909
0.00360725
0.0036981
0.00378252
0.0038613
0.0039352
0.00400495
0.00407117
0.00413414
0.00419374
0.00424963
0.00430188
0.00435173
0.00440182
0.00445492
0.00451162
0.00456681
0.00461471
0.00137757
0.000939742
0.000882885
0.000914023
0.000963461
0.00101463
0.00106291
0.0011067
0.00114562
0.00118001
0.00121042
0.00123748
0.00126176
0.00128376
0.00130391
0.00132252
0.00133989
0.00135623
0.0013717
0.00138643
0.00140051
0.00141402
0.00142705
0.00143972
0.00145211
0.00146419
0.00147581
0.00148667
0.00149667
0.00150612
0.00151598
0.00152732
0.00154071
0.00155404
0.00156721
0.00166889
0.0011449
0.000890852
0.000749918
0.000663618
0.000606657
0.000566911
0.000538112
0.000516923
0.000501672
0.000491799
0.000487623
0.000490241
0.000501451
0.000523607
0.000559405
0.000611718
0.000683612
0.000778303
0.000898676
0.00104636
0.00122098
0.00141995
0.00163911
0.00187349
0.00211827
0.00236923
0.00262299
0.00287692
0.0031291
0.00337832
0.00362406
0.00386629
0.00410482
0.00433672
0.000716467
0.000479527
0.000421462
0.000403853
0.000400559
0.00040292
0.000407446
0.000412671
0.000417996
0.000423179
0.000428114
0.000432794
0.000437224
0.000441443
0.000445498
0.000449428
0.000453267
0.000457038
0.000460755
0.000464429
0.000468063
0.000471656
0.000475211
0.000478726
0.000482195
0.000485599
0.000488902
0.000492068
0.000495094
0.000498047
0.000501075
0.000504339
0.000507917
0.000511536
0.00051493
0.00162766
0.0011637
0.00110082
0.00119206
0.00133134
0.00147956
0.00162203
0.00175319
0.00187157
0.00197729
0.00207134
0.00215479
0.00222869
0.00229404
0.0023517
0.00240239
0.00244675
0.00248535
0.00251872
0.00254741
0.00257193
0.00259282
0.00261059
0.00262573
0.00263874
0.00265005
0.00266001
0.00266885
0.00267668
0.00268354
0.00268972
0.00269567
0.00270261
0.00271007
0.00272379
0.00167064
0.00115113
0.000912989
0.000817165
0.000826513
0.000929806
0.00110684
0.00133168
0.00158524
0.00185377
0.00212618
0.0023941
0.00265195
0.00289632
0.0031254
0.00333836
0.00353499
0.0037156
0.00388073
0.00403119
0.00416792
0.004292
0.00440458
0.00450689
0.00460016
0.00468559
0.00476419
0.00483673
0.00490379
0.004966
0.00502449
0.00508086
0.00513728
0.00519385
0.00525447
0.00161732
0.00117855
0.00113864
0.00123491
0.00136384
0.00149293
0.00161079
0.00171527
0.00180645
0.00188479
0.0019506
0.0020041
0.00204561
0.00207575
0.00209551
0.00210613
0.00210903
0.00210568
0.00209749
0.00208573
0.00207146
0.00205557
0.00203871
0.00202144
0.00200418
0.00198729
0.00197104
0.0019556
0.00194089
0.00192643
0.00191149
0.00189515
0.00187781
0.00185972
0.00185092
0.00162177
0.00116907
0.00111613
0.00120478
0.0013326
0.00146473
0.00158783
0.00169733
0.00179322
0.00187597
0.00194586
0.00200313
0.00204808
0.00208129
0.00210363
0.00211632
0.00212079
0.00211857
0.00211116
0.0020999
0.00208596
0.00207028
0.00205361
0.00203653
0.0020195
0.00200282
0.00198661
0.00197077
0.00195503
0.00193913
0.00192333
0.00190873
0.00189824
0.00189337
0.00190154
0.00121301
0.000792186
0.000727652
0.000744872
0.000780199
0.000818392
0.000855023
0.000888484
0.000918396
0.00094497
0.000968596
0.000989705
0.0010087
0.00102595
0.00104179
0.0010565
0.0010703
0.00108339
0.0010959
0.00110794
0.00111959
0.00113094
0.00114206
0.00115301
0.00116382
0.00117443
0.00118468
0.00119443
0.00120373
0.00121304
0.00122316
0.00123474
0.00124758
0.00125983
0.00126852
0.000751311
0.000500946
0.000446219
0.000430546
0.000427835
0.00043085
0.00043637
0.000442691
0.00044904
0.000455153
0.000460929
0.000466316
0.000471309
0.000475918
0.000480151
0.000484004
0.000487469
0.000490539
0.000493211
0.000495494
0.000497403
0.000498967
0.000500218
0.000501196
0.000501943
0.0005025
0.000502899
0.000503157
0.000503279
0.000503265
0.000503154
0.000503021
0.000503194
0.000503561
0.000506044
0.00120539
0.000781318
0.000717376
0.000736146
0.000772097
0.000810157
0.000846315
0.000879235
0.000908669
0.000934861
0.000958124
0.000978903
0.000997607
0.00101459
0.00103019
0.00104468
0.00105828
0.00107116
0.00108348
0.00109534
0.00110681
0.00111799
0.00112892
0.00113968
0.00115027
0.00116063
0.00117063
0.00118013
0.00118921
0.00119828
0.00120807
0.00121917
0.00123139
0.00124308
0.00125136
0.00167214
0.00115986
0.000936249
0.000873117
0.000936396
0.00109988
0.00132438
0.00157819
0.00184051
0.00209699
0.00233825
0.00255779
0.00275299
0.0029227
0.00306695
0.00318704
0.00328513
0.00336381
0.00342579
0.00347374
0.0035101
0.00353705
0.00355652
0.00357014
0.00357932
0.00358526
0.00358897
0.00359128
0.00359278
0.00359371
0.00359397
0.00359306
0.00359095
0.00358722
0.0035883
0.00167025
0.00115155
0.000908022
0.000797645
0.00077961
0.000845567
0.000986018
0.00118258
0.00141773
0.00167737
0.0019489
0.00222163
0.00248755
0.00274128
0.00297944
0.00320009
0.00340232
0.003586
0.00375166
0.00390029
0.00403327
0.00415214
0.00425855
0.00435412
0.00444042
0.00451887
0.00459076
0.0046571
0.0047187
0.00477621
0.00483035
0.00488201
0.00493272
0.00498273
0.00503719
0.001669
0.00114733
0.000893617
0.000752845
0.000666975
0.000611405
0.000575135
0.000553776
0.000546925
0.000557032
0.000588482
0.00064631
0.000734881
0.000857406
0.00101578
0.00120961
0.0014352
0.00168541
0.0019517
0.0022259
0.00250135
0.00277334
0.00303886
0.00329625
0.0035447
0.00378416
0.00401513
0.00423811
0.00445355
0.00466191
0.00486394
0.00506076
0.00525377
0.00544355
0.00562969
0.000722982
0.000495976
0.000440496
0.000424259
0.000421162
0.000423064
0.000426913
0.00043147
0.000436215
0.000440913
0.00044545
0.000449771
0.000453876
0.000457791
0.00046154
0.00046514
0.0004686
0.000471923
0.000475105
0.000478138
0.000481016
0.000483733
0.00048629
0.000488695
0.000490961
0.000493097
0.000495099
0.000496946
0.000498625
0.000500151
0.000501618
0.000503151
0.000504953
0.000506734
0.000509401
0.00156538
0.00107859
0.000996208
0.00105951
0.00116635
0.00127953
0.00138657
0.00148359
0.00156991
0.00164618
0.00171347
0.00177295
0.00182572
0.00187286
0.00191531
0.00195389
0.00198925
0.00202195
0.00205245
0.0020811
0.00210819
0.00213394
0.00215858
0.00218228
0.00220516
0.00222719
0.00224821
0.00226802
0.00228669
0.00230482
0.00232366
0.00234443
0.00236738
0.00239018
0.00240958
0.00167113
0.00115186
0.000919611
0.000837307
0.000867317
0.000990713
0.00117945
0.00140809
0.00166014
0.00192323
0.0021874
0.0024455
0.0026929
0.00292673
0.00314589
0.00334993
0.00353883
0.00371304
0.0038732
0.0040201
0.00415465
0.00427779
0.00439047
0.00449372
0.00458857
0.00467601
0.00475684
0.00483159
0.00490067
0.00496471
0.00502502
0.00508359
0.00514268
0.00520217
0.00526337
0.00110068
0.000722619
0.000671592
0.000684739
0.000711164
0.000741167
0.000771066
0.000798539
0.000823304
0.000845384
0.000864981
0.000882322
0.000897649
0.000911172
0.000923041
0.000933362
0.000942219
0.000949693
0.000955877
0.000960878
0.000964819
0.000967831
0.000970052
0.000971621
0.000972672
0.000973323
0.000973669
0.000973752
0.00097357
0.000973095
0.000972386
0.000971601
0.000971607
0.000972162
0.000978634
0.000977586
0.000635363
0.000581056
0.000577706
0.000588241
0.000603847
0.000619963
0.000635157
0.000648775
0.000660492
0.0006701
0.000677365
0.00068214
0.000684412
0.000684305
0.000682063
0.000678016
0.000672526
0.000665948
0.000658604
0.00065077
0.00064267
0.000634485
0.000626364
0.000618408
0.000610655
0.000603069
0.000595547
0.000588012
0.000580564
0.000573684
0.000568219
0.000565355
0.000564667
0.000567016
0.00137161
0.000913357
0.0008443
0.000868647
0.000912667
0.000959314
0.00100366
0.00104371
0.00107926
0.00111071
0.00113861
0.0011635
0.0011859
0.00120625
0.00122494
0.00124226
0.00125847
0.00127375
0.00128829
0.00130218
0.00131553
0.00132841
0.00134092
0.00135318
0.00136525
0.0013771
0.00138856
0.00139933
0.00140932
0.00141891
0.00142906
0.00144083
0.00145453
0.00146825
0.00147939
0.000729302
0.00051043
0.000452313
0.0004338
0.000429144
0.000430162
0.000433279
0.00043711
0.000441032
0.00044468
0.000447804
0.000450186
0.000451672
0.000452178
0.000451701
0.000450301
0.000448093
0.000445218
0.000441824
0.000438051
0.000434027
0.000429858
0.000425631
0.00042142
0.000417276
0.000413222
0.000409249
0.000405323
0.000401419
0.000397586
0.00039402
0.000391067
0.000389158
0.000388226
0.000388151
0.000940247
0.000633276
0.00057899
0.000571639
0.0005767
0.000586576
0.000597927
0.000609172
0.000619528
0.000628628
0.000636236
0.000642096
0.000646006
0.00064789
0.000647814
0.000645959
0.00064258
0.000637966
0.000632405
0.00062616
0.00061946
0.000612485
0.000605389
0.0005983
0.000591325
0.000584555
0.000578055
0.000571824
0.000565774
0.000559697
0.000553353
0.000546593
0.000539862
0.000533721
0.000531073
0.001223
0.000792051
0.000735241
0.00075693
0.000794842
0.000835608
0.000873395
0.000907047
0.000936243
0.000961
0.000981257
0.000996842
0.0010077
0.00101396
0.00101596
0.00101419
0.00100929
0.0010019
0.00099265
0.000982092
0.00097069
0.000958817
0.000946772
0.000934798
0.000923067
0.000911656
0.000900515
0.000889468
0.000878325
0.000867132
0.000856551
0.000847946
0.000843543
0.000843302
0.000849834
0.00167092
0.00115641
0.000916203
0.000811589
0.000806301
0.000892758
0.00105533
0.00126807
0.00150921
0.00176215
0.00201252
0.00224832
0.00246118
0.00264704
0.00280431
0.00293327
0.00303555
0.00311364
0.00317048
0.00320918
0.00323274
0.00324395
0.0032453
0.00323901
0.00322706
0.00321121
0.00319289
0.003173
0.00315162
0.00312787
0.00310026
0.00306789
0.00303266
0.0030011
0.00298558
0.00167095
0.00115649
0.000916473
0.000812502
0.000808669
0.000897361
0.0010622
0.00127655
0.0015185
0.00177155
0.00202153
0.00225668
0.00246871
0.00265368
0.0028101
0.00293828
0.00303987
0.00311734
0.00317362
0.00321179
0.00323488
0.00324569
0.00324678
0.00324041
0.00322844
0.00321229
0.00319285
0.00317053
0.00314564
0.00311919
0.0030939
0.00307459
0.00306701
0.00307296
0.00308483
0.000702634
0.000499011
0.000445799
0.000429309
0.000425383
0.000426409
0.000429314
0.000432779
0.000436309
0.000439716
0.000442886
0.000445723
0.000448127
0.000450015
0.000451333
0.000452062
0.000452213
0.000451823
0.000450954
0.000449678
0.000448072
0.000446213
0.000444171
0.000442006
0.000439774
0.000437519
0.000435281
0.000433084
0.000430941
0.000428842
0.000426766
0.000424678
0.000422633
0.000420565
0.000419061
0.00167643
0.00118085
0.00103321
0.00108868
0.0012533
0.00146232
0.00168663
0.00191042
0.00212337
0.0023204
0.00249908
0.00265861
0.00279887
0.00292011
0.00302288
0.00310818
0.00317738
0.0032322
0.00327455
0.00330638
0.0033296
0.00334596
0.003357
0.00336407
0.00336828
0.00337054
0.00337152
0.00337161
0.00337094
0.00336948
0.00336739
0.00336543
0.00336599
0.003371
0.00338917
0.00128738
0.0008529
0.00079038
0.00081238
0.000851489
0.000893507
0.000933268
0.00096884
0.000999859
0.00102655
0.00104908
0.00106753
0.00108193
0.00109237
0.00109906
0.00110232
0.00110256
0.00110027
0.00109595
0.00109008
0.0010831
0.00107536
0.00106717
0.00105878
0.00105038
0.0010421
0.00103403
0.00102614
0.00101836
0.0010106
0.00100295
0.000995692
0.000990023
0.000985763
0.000988683
0.00128123
0.000868735
0.000818115
0.000847761
0.000890837
0.000934293
0.000974529
0.00101021
0.00104124
0.00106788
0.00109035
0.00110873
0.00112306
0.00113341
0.00114
0.00114316
0.0011433
0.00114089
0.00113643
0.00113039
0.00112319
0.0011152
0.00110671
0.00109798
0.00108921
0.00108054
0.00107212
0.00106403
0.00105626
0.00104869
0.00104111
0.00103319
0.00102525
0.00101664
0.00101275
0.00166888
0.00114483
0.000890739
0.000749802
0.000663508
0.000606517
0.000566638
0.000537494
0.000515553
0.000498829
0.000486273
0.000477495
0.000472637
0.000472339
0.00047772
0.000490358
0.000512225
0.000545632
0.0005932
0.00065788
0.000742847
0.000851085
0.000984728
0.00114446
0.00132926
0.00153654
0.00176256
0.00200307
0.00225381
0.00251096
0.00277156
0.00303373
0.0032964
0.00355886
0.00381827
0.00166945
0.00114956
0.000898029
0.000764178
0.000696307
0.000679674
0.000715012
0.000805676
0.000949047
0.00113727
0.00136147
0.00161209
0.0018789
0.00215228
0.00242442
0.00268954
0.00294362
0.00318403
0.00340932
0.00361904
0.00381343
0.00399317
0.00415947
0.00431357
0.00445673
0.00459019
0.00471509
0.00483235
0.00494274
0.00504696
0.00514588
0.0052407
0.00533318
0.0054239
0.00551609
0.000750579
0.000490608
0.000444627
0.000436544
0.000439615
0.000447019
0.000455645
0.000464131
0.000471857
0.000478522
0.000483944
0.000487965
0.000490448
0.000491344
0.000490713
0.000488703
0.000485523
0.000481405
0.000476583
0.000471268
0.000465643
0.000459858
0.000454035
0.000448272
0.000442634
0.000437139
0.00043175
0.000426392
0.000421029
0.00041579
0.00041109
0.000407585
0.000406001
0.000405867
0.000406653
0.000755201
0.000493975
0.000448224
0.000439633
0.000441899
0.000448732
0.000457131
0.000465598
0.000473383
0.00048015
0.000485703
0.000489843
0.000492417
0.000493379
0.000492791
0.00049081
0.00048765
0.000483545
0.000478731
0.000473423
0.000467801
0.000462005
0.000456147
0.000450326
0.000444629
0.000439133
0.000433885
0.000428867
0.000423965
0.000418956
0.000413609
0.000407841
0.000402151
0.00039733
0.000395718
0.00164867
0.00116512
0.00107588
0.00115758
0.0013014
0.00146254
0.00162181
0.00177077
0.00190635
0.00202808
0.00213675
0.00223361
0.00232005
0.0023975
0.00246726
0.00253049
0.0025882
0.00264124
0.00269033
0.00273603
0.00277883
0.00281914
0.00285731
0.00289365
0.0029284
0.00296157
0.00299303
0.00302257
0.00305033
0.00307712
0.00310458
0.00313431
0.00316662
0.00319854
0.0032257
0.001341
0.000874093
0.000803182
0.00083876
0.000897255
0.000956825
0.00101202
0.00106146
0.00110515
0.00114367
0.00117768
0.00120781
0.00123466
0.00125882
0.00128079
0.001301
0.00131978
0.00133741
0.00135411
0.00137005
0.00138536
0.00140013
0.00141447
0.00142845
0.0014421
0.00145539
0.00146816
0.00148027
0.00149176
0.001503
0.00151481
0.00152794
0.00154253
0.00155707
0.00156918
0.00167484
0.00118806
0.0010595
0.00112868
0.00129319
0.00149556
0.00170996
0.00192096
0.00211853
0.00229633
0.00245038
0.00257826
0.00268016
0.00275733
0.002812
0.00284708
0.0028658
0.00287139
0.00286685
0.00285476
0.00283723
0.0028159
0.00279216
0.00276708
0.00274152
0.0027162
0.0026917
0.00266832
0.00264577
0.002623
0.00259833
0.0025702
0.00253929
0.00250942
0.00249258
0.000919378
0.000647895
0.000591439
0.000578293
0.000578125
0.000583436
0.000590834
0.000598667
0.000606228
0.000613194
0.000619335
0.000624473
0.000628453
0.000631177
0.000632625
0.000632845
0.00063194
0.000630054
0.000627352
0.000624005
0.000620173
0.000616001
0.00061161
0.000607106
0.000602576
0.000598092
0.000593713
0.00058947
0.000585366
0.000581345
0.000577335
0.000573228
0.000569183
0.000565043
0.000562786
0.000977353
0.000677089
0.000609712
0.000594156
0.000594562
0.000601356
0.000610304
0.000619571
0.000628379
0.000636405
0.000643427
0.00064924
0.000653696
0.000656709
0.000658272
0.000658455
0.000657391
0.000655256
0.000652248
0.000648564
0.000644387
0.000639877
0.000635169
0.000630376
0.000625586
0.000620861
0.000616234
0.000611699
0.000607228
0.000602804
0.000598493
0.000594473
0.000591266
0.000588798
0.000589169
0.00166986
0.00115216
0.000903413
0.0007779
0.0007289
0.000747058
0.000833466
0.000983541
0.00118514
0.00142474
0.00168886
0.0019641
0.0022385
0.00250295
0.00275168
0.00298146
0.00319069
0.00337953
0.003549
0.00370056
0.00383591
0.00395684
0.00406511
0.00416239
0.00425021
0.00433
0.00440298
0.00447019
0.00453241
0.00459023
0.00464424
0.00469531
0.00474533
0.00479609
0.00485373
0.00167179
0.00115866
0.000928965
0.000850536
0.00088874
0.00102248
0.00121886
0.00144977
0.00169681
0.00194508
0.00218221
0.00240047
0.002595
0.00276351
0.00290575
0.00302291
0.00311707
0.00319077
0.00324674
0.00328769
0.00331619
0.0033346
0.003345
0.00334923
0.00334887
0.00334518
0.00333911
0.00333123
0.00332175
0.0033108
0.00329897
0.00328791
0.00328105
0.00328184
0.00329525
0.00167217
0.00116031
0.000936288
0.000870294
0.000926794
0.00107815
0.00128722
0.00152627
0.00177738
0.00202599
0.0022607
0.00247434
0.0026625
0.00282348
0.00295762
0.00306666
0.00315313
0.00321989
0.00326985
0.00330575
0.00333008
0.00334507
0.00335263
0.00335446
0.00335198
0.00334645
0.00333896
0.00333035
0.00332106
0.00331104
0.00329966
0.00328601
0.00327008
0.00325305
0.00324272
0.000656236
0.000446789
0.000393523
0.000374841
0.000368841
0.000368498
0.000370694
0.000373931
0.000377523
0.000381115
0.000384547
0.000387718
0.000390553
0.000392993
0.000394996
0.000396535
0.000397603
0.000398216
0.000398409
0.00039823
0.000397734
0.000396977
0.000396018
0.000394908
0.000393695
0.000392418
0.000391103
0.00038976
0.000388387
0.000386985
0.000385589
0.000384283
0.000383306
0.000382693
0.000383134
0.00167319
0.001159
0.000953191
0.000926035
0.0010275
0.00120748
0.0014257
0.00166167
0.00190315
0.00214123
0.00236992
0.00258586
0.00278765
0.00297503
0.00314837
0.00330834
0.00345579
0.00359152
0.00371634
0.00383098
0.00393617
0.0040326
0.00412098
0.00420201
0.00427644
0.00434495
0.00440813
0.0044664
0.00452012
0.00456978
0.00461636
0.00466139
0.0047071
0.00475416
0.00480703
0.00167701
0.00118291
0.00103308
0.00108471
0.00125021
0.00146582
0.00169849
0.00193021
0.00214968
0.00235129
0.00253246
0.00269205
0.00282964
0.00294551
0.00304055
0.0031162
0.00317442
0.0032175
0.00324787
0.00326788
0.00327971
0.00328527
0.0032862
0.00328383
0.00327927
0.00327338
0.00326675
0.00325973
0.00325233
0.00324445
0.00323618
0.00322822
0.00322293
0.00322252
0.00323469
0.00167117
0.00118334
0.00106771
0.00114156
0.00129679
0.00148199
0.00167438
0.00186138
0.00203594
0.00219516
0.00233824
0.00246562
0.00257815
0.00267668
0.00276198
0.00283484
0.00289612
0.00294685
0.00298814
0.00302121
0.00304726
0.00306747
0.00308298
0.00309478
0.00310377
0.00311071
0.00311616
0.00312049
0.00312382
0.00312616
0.00312773
0.00312922
0.00313285
0.00314001
0.00315952
0.00113673
0.000754381
0.000698471
0.000705958
0.000726478
0.000749141
0.000770959
0.000790975
0.000809051
0.000825378
0.000840148
0.000853552
0.000865804
0.000877106
0.000887645
0.000897576
0.000907014
0.000916044
0.000924721
0.000933077
0.00094113
0.000948885
0.000956348
0.000963527
0.000970429
0.000977049
0.000983362
0.000989321
0.00099489
0.0010001
0.00100516
0.00101033
0.00101621
0.0010223
0.00103128
0.00144231
0.000974586
0.000907253
0.000948333
0.00101315
0.00107964
0.00114093
0.00119505
0.00124191
0.001282
0.00131567
0.00134303
0.00136424
0.00137953
0.0013893
0.00139409
0.00139459
0.00139153
0.00138568
0.00137773
0.0013683
0.0013579
0.00134695
0.00133577
0.00132463
0.0013137
0.00130306
0.00129268
0.0012824
0.00127209
0.00126187
0.00125227
0.00124509
0.00124039
0.00124582
0.00140554
0.00096737
0.000916356
0.000963194
0.00102679
0.00108933
0.0011463
0.00119622
0.00123933
0.00127614
0.00130694
0.00133188
0.00135105
0.00136467
0.00137312
0.00137693
0.00137673
0.00137324
0.00136712
0.00135903
0.00134954
0.0013391
0.00132811
0.00131687
0.00130562
0.00129458
0.00128389
0.00127367
0.00126388
0.00125432
0.00124465
0.00123436
0.00122384
0.00121246
0.00120746
0.000611456
0.000398188
0.000352627
0.000341304
0.00034145
0.000345621
0.000351012
0.000356607
0.000362038
0.000367176
0.00037198
0.000376456
0.000380626
0.000384518
0.000388157
0.000391562
0.00039474
0.000397698
0.000400436
0.000402954
0.000405254
0.000407342
0.000409229
0.00041093
0.000412469
0.000413865
0.00041513
0.000416265
0.000417264
0.000418137
0.000418941
0.00041976
0.000420786
0.00042179
0.000423906
0.00166967
0.00115175
0.000901137
0.000770401
0.000709649
0.000706239
0.000760959
0.000873846
0.00103875
0.00124683
0.00148869
0.00175362
0.00203004
0.00230728
0.00257684
0.0028327
0.00307127
0.00329093
0.00349148
0.0036737
0.0038389
0.00398868
0.00412467
0.0042485
0.00436169
0.00446567
0.0045617
0.00465092
0.00473428
0.00481254
0.0048864
0.00495652
0.00502407
0.00508914
0.00515691
0.00166934
0.00114901
0.000896819
0.000760969
0.000688232
0.000661842
0.000681124
0.000750762
0.000872279
0.00104151
0.0012517
0.00149467
0.00176034
0.00203806
0.00231843
0.0025944
0.00286104
0.0031152
0.00335509
0.00357993
0.00378965
0.00398468
0.00416592
0.00433447
0.00449157
0.00463844
0.00477625
0.00490593
0.00502826
0.00514395
0.00525403
0.00535991
0.00546347
0.00556539
0.00566784
0.00167035
0.00114979
0.000907643
0.000801796
0.000792685
0.000872019
0.0010272
0.00123612
0.00147966
0.00174388
0.00201729
0.00229067
0.00255718
0.00281242
0.00305421
0.00328135
0.0034933
0.00369032
0.00387296
0.00404192
0.00419803
0.00434215
0.0044752
0.00459811
0.00471191
0.00481756
0.00491581
0.00500719
0.00509211
0.00517124
0.005246
0.00531852
0.00539109
0.00546362
0.00553645
0.00166887
0.00114456
0.000890402
0.000749439
0.000663143
0.000606152
0.000566264
0.000537089
0.000515078
0.000498216
0.000485408
0.000476201
0.000470656
0.000469314
0.000473186
0.000483745
0.000502871
0.000532765
0.000575894
0.000634996
0.000713048
0.000812984
0.000937078
0.0010863
0.00125997
0.0014558
0.00167033
0.00189946
0.00213905
0.00238538
0.00263548
0.00288734
0.00313972
0.0033917
0.00364001
0.00165406
0.00117427
0.00107748
0.00114526
0.00127751
0.00143282
0.00159092
0.00174109
0.00187812
0.00200093
0.00210978
0.00220547
0.0022889
0.00236088
0.00242213
0.00247333
0.00251524
0.00254878
0.00257494
0.00259476
0.00260927
0.00261949
0.00262631
0.00263057
0.00263295
0.00263406
0.0026343
0.00263392
0.00263293
0.00263127
0.00262907
0.00262694
0.00262697
0.00263047
0.00264558
0.00121598
0.000775771
0.000710581
0.000735312
0.000779811
0.000826333
0.000869874
0.000908959
0.000943516
0.000973973
0.00100079
0.00102459
0.00104582
0.00106497
0.00108245
0.0010986
0.00111368
0.00112792
0.00114146
0.00115445
0.00116695
0.00117904
0.00119077
0.00120219
0.00121334
0.00122417
0.00123459
0.00124447
0.00125378
0.00126273
0.00127186
0.00128183
0.00129313
0.00130494
0.00131667
0.000844176
0.000578846
0.000526291
0.00051401
0.00051385
0.000518951
0.000526135
0.000533791
0.000540978
0.000547377
0.00055271
0.000556744
0.000559285
0.00056025
0.000559678
0.000557704
0.00055453
0.000550385
0.000545496
0.000540072
0.000534301
0.000528331
0.000522279
0.000516246
0.00051032
0.000504579
0.000499074
0.000493797
0.000488654
0.00048345
0.00047797
0.000472118
0.000466306
0.000461245
0.000458968
0.000604143
0.000445916
0.000378065
0.000354598
0.000343858
0.00033814
0.000335077
0.000333499
0.000332763
0.00033249
0.000332416
0.000332349
0.000332149
0.000331722
0.000331017
0.000330021
0.000328753
0.000327246
0.000325543
0.000323691
0.000321734
0.00031971
0.000317653
0.000315589
0.000313543
0.000311532
0.000309566
0.000307642
0.00030575
0.000303873
0.000302003
0.000300194
0.00029846
0.000297266
0.000295649
0.000604495
0.000445792
0.000378071
0.000354885
0.000344337
0.000338745
0.000335749
0.000334196
0.000333457
0.000333171
0.00033308
0.000332997
0.000332783
0.000332346
0.000331634
0.000330634
0.000329362
0.000327852
0.000326148
0.000324294
0.000322335
0.000320311
0.000318255
0.000316192
0.000314144
0.000312121
0.000310127
0.000308166
0.000306252
0.000304418
0.000302716
0.000301222
0.000299864
0.000298829
0.000296772
0.000630095
0.000404056
0.000355259
0.000342781
0.00034227
0.000346186
0.000351543
0.000357205
0.000362756
0.000368046
0.000373023
0.000377674
0.000382007
0.000386032
0.00038976
0.000393195
0.000396342
0.0003992
0.000401771
0.00040406
0.000406075
0.000407832
0.00040935
0.000410655
0.000411777
0.000412743
0.000413577
0.000414289
0.000414884
0.000415368
0.000415782
0.000416191
0.000416749
0.000417331
0.000418567
0.00167535
0.00117891
0.0010191
0.00105845
0.00121624
0.00143011
0.00166601
0.00190399
0.00213091
0.00233801
0.00252057
0.00267647
0.00280496
0.00290706
0.00298471
0.00304062
0.00307793
0.00309988
0.00310957
0.00310976
0.00310281
0.00309058
0.0030747
0.00305643
0.00303679
0.00301663
0.00299665
0.00297727
0.0029585
0.00293971
0.00291973
0.00289729
0.00287265
0.00284802
0.0028332
0.00166046
0.00117272
0.00106776
0.00113989
0.00128463
0.00145572
0.00163092
0.00179888
0.00195445
0.00209596
0.00222351
0.00233805
0.00244088
0.00253339
0.00261697
0.00269282
0.00276201
0.00282554
0.00288422
0.00293874
0.00298968
0.00303754
0.00308278
0.0031258
0.00316688
0.00320603
0.00324307
0.00327779
0.00331051
0.00334244
0.00337567
0.00341192
0.00345077
0.00348759
0.00351587
0.0016705
0.00115563
0.00090935
0.000788613
0.000750345
0.00078772
0.000899119
0.00107185
0.00128665
0.0015259
0.00177423
0.00201871
0.00224992
0.00246265
0.00265407
0.00282278
0.0029685
0.00309178
0.00319392
0.00327671
0.0033423
0.00339298
0.00343102
0.0034586
0.00347774
0.00349027
0.00349783
0.00350177
0.00350306
0.0035021
0.00349869
0.00349225
0.00348279
0.00347141
0.00346483
0.00167046
0.00115539
0.000908518
0.000786165
0.000744605
0.000776662
0.000881641
0.00104834
0.00125818
0.00149402
0.00174099
0.00198637
0.00222094
0.00243861
0.00263548
0.0028093
0.00295919
0.00308548
0.0031894
0.00327295
0.00333852
0.00338866
0.00342589
0.0034526
0.00347094
0.00348275
0.00348953
0.00349233
0.00349183
0.00348853
0.00348328
0.00347783
0.00347553
0.00347987
0.0034954
0.00166886
0.00114447
0.000890219
0.000749211
0.000662906
0.000605906
0.000565992
0.000536749
0.000514589
0.000497432
0.000484087
0.000473959
0.000466916
0.000463247
0.000463657
0.000469278
0.000481644
0.000502643
0.00053444
0.00057946
0.000640422
0.000720297
0.000821954
0.000947522
0.00109776
0.00127177
0.0014671
0.0016802
0.00190705
0.0021437
0.00238676
0.00263367
0.00288265
0.00313231
0.00337854
0.000669081
0.000448687
0.000401677
0.000389599
0.0003884
0.000391324
0.00039576
0.000400603
0.000405323
0.000409676
0.00041345
0.00041646
0.000418568
0.000419693
0.000419834
0.000419053
0.000417456
0.000415174
0.00041235
0.000409119
0.000405603
0.000401908
0.000398117
0.000394302
0.000390524
0.000386831
0.000383261
0.00037982
0.000376479
0.000373158
0.000369767
0.00036625
0.000362798
0.000359613
0.000357913
0.00070799
0.000479409
0.000426799
0.000411984
0.000409669
0.00041228
0.000416592
0.000421333
0.00042599
0.000430308
0.00043407
0.000437079
0.000439185
0.000440305
0.000440425
0.000439598
0.000437924
0.000435538
0.000432586
0.000429209
0.000425536
0.000421679
0.000417729
0.000413763
0.00040984
0.000405994
0.000402235
0.000398544
0.000394893
0.000391288
0.000387836
0.00038476
0.000382464
0.00038097
0.000380889
0.00155434
0.00110011
0.00104614
0.00112487
0.00123834
0.00135551
0.00146523
0.00156326
0.00164819
0.00171993
0.00177852
0.00182415
0.00185727
0.00187866
0.00188949
0.0018912
0.00188553
0.00187415
0.00185856
0.00184007
0.00181974
0.00179838
0.00177663
0.00175501
0.00173387
0.00171332
0.00169319
0.00167302
0.00165239
0.00163163
0.00161258
0.00159891
0.0015954
0.00160246
0.00161774
0.00167129
0.00115754
0.000923238
0.000833255
0.000852589
0.000966746
0.00115024
0.00137549
0.00162217
0.00187385
0.00211663
0.00233973
0.00253657
0.00270478
0.00284413
0.00295596
0.00304258
0.00310684
0.00315186
0.00318069
0.00319622
0.00320104
0.00319743
0.0031874
0.00317272
0.00315493
0.00313532
0.00311469
0.00309301
0.00306931
0.00304197
0.00300994
0.00297497
0.00294348
0.00292819
0.00167145
0.00115802
0.000924909
0.000838039
0.000863014
0.000983973
0.00117305
0.00140166
0.00164958
0.00190079
0.00214198
0.00236293
0.00255733
0.00272304
0.00286002
0.00296967
0.00305432
0.00311684
0.00316027
0.00318768
0.00320192
0.00320563
0.00320112
0.00319044
0.0031752
0.00315669
0.00313564
0.0031123
0.00308681
0.00305999
0.00303438
0.00301474
0.00300699
0.00301341
0.00302753
0.00167004
0.00117275
0.00104238
0.0011108
0.00127354
0.00147199
0.00167923
0.00188143
0.0020716
0.00224681
0.00240638
0.00255083
0.00268132
0.00279928
0.00290613
0.00300332
0.00309212
0.00317366
0.00324894
0.00331875
0.00338379
0.00344465
0.00350188
0.00355595
0.00360723
0.00365585
0.00370174
0.00374477
0.00378512
0.00382381
0.00386271
0.00390378
0.00394748
0.00399052
0.00402787
0.000835364
0.000574868
0.000516563
0.000500488
0.00049883
0.000503226
0.000509707
0.000516586
0.000523167
0.000529019
0.000533885
0.000537532
0.000539786
0.000540569
0.000539906
0.000537917
0.000534783
0.00053072
0.000525942
0.000520657
0.000515046
0.000509255
0.000503409
0.000497607
0.000491916
0.000486361
0.000480913
0.00047551
0.000470111
0.000464814
0.000459971
0.00045617
0.0004541
0.000453495
0.000454001
0.00167685
0.00118674
0.00104772
0.0011108
0.00127852
0.00148747
0.00170905
0.00192772
0.00213329
0.00232
0.00248445
0.00262467
0.00273991
0.00283066
0.0028985
0.00294591
0.00297583
0.00299137
0.00299553
0.00299097
0.00297997
0.00296442
0.00294582
0.00292539
0.00290407
0.0028825
0.00286102
0.00283956
0.00281784
0.00279567
0.00277377
0.00275438
0.00274183
0.00273948
0.00275167
0.00167481
0.00117324
0.000994908
0.00101042
0.00115411
0.00136475
0.00160371
0.00184956
0.00208795
0.00230883
0.00250565
0.00267475
0.0028149
0.00292676
0.00301233
0.00307452
0.00311669
0.00314232
0.00315468
0.00315668
0.00315083
0.00313914
0.00312328
0.0031046
0.00308421
0.00306307
0.00304194
0.00302131
0.00300115
0.00298071
0.00295866
0.00293366
0.00290614
0.00287902
0.00286318
0.00166937
0.00115032
0.000897949
0.000761925
0.000688721
0.000661209
0.000678111
0.000743539
0.000859301
0.0010226
0.00122836
0.00146963
0.0017366
0.00201766
0.00230167
0.00257979
0.00284608
0.00309709
0.00333122
0.00354782
0.00374773
0.00393216
0.0041025
0.00426016
0.00440651
0.00454283
0.00467028
0.00478986
0.00490241
0.00500863
0.00510925
0.00520523
0.00529823
0.00538965
0.00548422
0.00165246
0.00118221
0.00111239
0.00121251
0.0013701
0.0015415
0.0017092
0.00186586
0.00200892
0.00213799
0.00225367
0.00235708
0.00244948
0.00253212
0.00260605
0.00267222
0.0027314
0.00278428
0.00283144
0.00287342
0.00291073
0.00294386
0.00297328
0.00299951
0.00302304
0.00304432
0.00306365
0.00308116
0.00309688
0.00311097
0.00312408
0.00313731
0.00315236
0.00316838
0.00319121
0.00163647
0.00115517
0.00106982
0.00114645
0.00128004
0.00142788
0.00157242
0.00170655
0.00182792
0.00193644
0.00203301
0.00211889
0.00219545
0.002264
0.00232574
0.00238173
0.00243286
0.0024799
0.0025235
0.00256417
0.00260235
0.00263841
0.00267268
0.00270546
0.00273693
0.00276707
0.00279566
0.00282251
0.00284783
0.00287263
0.00289864
0.00292736
0.00295854
0.00298833
0.00301117
0.00166946
0.00114849
0.000897231
0.000764988
0.000701044
0.000692222
0.000740227
0.000847081
0.00100733
0.00121146
0.0014502
0.00171394
0.00199234
0.00227555
0.00255604
0.00282837
0.00308897
0.00333585
0.00356806
0.00378536
0.00398796
0.0041764
0.00435145
0.00451407
0.00466537
0.00480649
0.00493848
0.00506215
0.00517817
0.00528731
0.00539085
0.00549064
0.00558883
0.00568586
0.00578313
0.00076856
0.000542894
0.000486027
0.000467267
0.000462474
0.000463588
0.000467278
0.000472003
0.000477024
0.000482021
0.000486875
0.000491534
0.000496005
0.000500317
0.000504501
0.000508582
0.000512581
0.000516511
0.000520378
0.000524181
0.000527917
0.000531584
0.00053519
0.000538744
0.000542251
0.000545694
0.000549019
0.000552159
0.000555095
0.000557918
0.000560858
0.000564143
0.000567856
0.000571422
0.000574769
0.00166896
0.00114659
0.000892839
0.00075202
0.000665961
0.000609812
0.00057214
0.000547827
0.000535358
0.000535704
0.000551679
0.000587184
0.000646233
0.000732257
0.000848008
0.000995355
0.00117432
0.00138223
0.00161397
0.00186298
0.00212262
0.00238709
0.00265188
0.0029138
0.00317075
0.00342152
0.00366551
0.00390249
0.00413245
0.00435561
0.00457259
0.00478451
0.0049927
0.00519774
0.0053983
0.00167322
0.00116214
0.000953439
0.000920617
0.00102113
0.00120993
0.0014435
0.00169627
0.0019525
0.00220113
0.00243487
0.0026495
0.00284309
0.00301456
0.00316363
0.00329097
0.00339794
0.00348639
0.00355852
0.00361665
0.00366303
0.00369978
0.00372882
0.0037518
0.00377015
0.00378506
0.00379744
0.00380794
0.00381687
0.00382438
0.00383075
0.00383679
0.00384483
0.00385697
0.00388109
0.00115894
0.000756646
0.000702057
0.00071525
0.000742353
0.000772951
0.000803136
0.000831106
0.000856115
0.000878139
0.000897396
0.000914061
0.00092825
0.000940058
0.00094958
0.000956922
0.000962228
0.00096569
0.000967537
0.000968011
0.00096736
0.000965819
0.000963605
0.000960911
0.000957905
0.000954719
0.000951442
0.000948096
0.000944652
0.00094106
0.000937396
0.000933892
0.000931562
0.000930269
0.000935311
0.00117438
0.00077344
0.000728488
0.000758209
0.000799607
0.000840178
0.000876427
0.00090777
0.0009343
0.000957037
0.000976517
0.000993018
0.00100663
0.00101741
0.00102544
0.00103087
0.00103391
0.00103483
0.00103395
0.00103159
0.00102806
0.00102365
0.00101863
0.0010132
0.00100756
0.00100184
0.000996187
0.000990674
0.00098535
0.000980168
0.00097505
0.000969775
0.000964632
0.000958709
0.000956938
0.00128639
0.000866892
0.000828248
0.000874152
0.000933107
0.000991442
0.00104487
0.00109191
0.00113221
0.00116564
0.00119246
0.00121284
0.00122679
0.00123455
0.00123664
0.00123381
0.00122691
0.00121681
0.00120428
0.00119011
0.00117493
0.00115921
0.00114333
0.00112761
0.00111225
0.00109732
0.00108269
0.00106804
0.00105311
0.00103815
0.00102443
0.0010144
0.00101124
0.00101472
0.00102394
0.00123653
0.000823617
0.000781964
0.000818239
0.000867783
0.000918419
0.000965808
0.00100801
0.0010443
0.00107452
0.00109887
0.0011173
0.00112983
0.00113666
0.0011383
0.00113542
0.00112882
0.00111931
0.00110765
0.00109453
0.00108046
0.00106587
0.00105105
0.00103628
0.00102179
0.00100784
0.000994601
0.000982069
0.000969922
0.000957426
0.000943656
0.000927981
0.0009115
0.000896586
0.000891046
0.00166882
0.00114308
0.000888719
0.000747689
0.000661409
0.000604445
0.000564547
0.000535267
0.000512955
0.000495424
0.000481302
0.000469689
0.000459987
0.000451785
0.000444809
0.000438884
0.000433922
0.000429909
0.000426911
0.00042508
0.000424662
0.000426011
0.000429597
0.000436016
0.000445999
0.000460431
0.000480378
0.000507143
0.000542319
0.000587802
0.00064572
0.000718255
0.000807371
0.000914483
0.00103748
0.00167306
0.00116362
0.000961173
0.000939119
0.00104859
0.00123979
0.00147191
0.00172193
0.00197469
0.00221908
0.00244869
0.0026598
0.00285023
0.00301904
0.00316614
0.00329221
0.00339853
0.00348688
0.00355931
0.00361803
0.00366523
0.00370295
0.00373306
0.00375719
0.00377673
0.00379286
0.00380657
0.00381862
0.00382959
0.00383979
0.00384933
0.00385808
0.00386651
0.00387389
0.00388743
0.00166581
0.0012114
0.00115234
0.00125515
0.00140992
0.00157484
0.00173285
0.00187703
0.0020051
0.00211651
0.00221131
0.00228979
0.00235243
0.00240011
0.00243409
0.00245594
0.00246745
0.00247048
0.00246682
0.00245814
0.00244583
0.00243106
0.00241475
0.00239761
0.00238021
0.00236302
0.0023464
0.00233057
0.00231552
0.00230088
0.00228596
0.00226984
0.00225277
0.00223464
0.00222519
0.00166131
0.00120101
0.00113688
0.00123407
0.00138389
0.00154461
0.00169901
0.0018395
0.00196402
0.00207244
0.00216493
0.00224187
0.00230367
0.00235103
0.002385
0.00240698
0.00241867
0.00242189
0.00241842
0.00240993
0.00239784
0.00238331
0.00236729
0.00235052
0.00233358
0.00231685
0.00230054
0.00228461
0.0022688
0.00225286
0.00223696
0.00222213
0.00221121
0.00220591
0.00221414
0.00167489
0.00117249
0.000994017
0.00100986
0.00115223
0.00135903
0.00159304
0.00183455
0.00207052
0.00229249
0.00249553
0.00267686
0.00283536
0.00297092
0.00308419
0.00317655
0.00324996
0.00330676
0.00334943
0.00338042
0.003402
0.0034162
0.00342477
0.00342916
0.00343057
0.00342999
0.00342824
0.00342593
0.0034235
0.00342107
0.00341852
0.00341537
0.00341172
0.00340674
0.00340732
0.00167426
0.00117561
0.00101991
0.00106669
0.0012287
0.00144106
0.00167136
0.00190227
0.00212378
0.00233026
0.002519
0.00268897
0.00283996
0.00297224
0.00308644
0.00318348
0.00326455
0.00333111
0.00338484
0.00342751
0.00346092
0.00348676
0.00350657
0.00352172
0.00353336
0.00354248
0.00354988
0.00355617
0.00356178
0.00356691
0.00357163
0.00357585
0.00358018
0.00358385
0.00359453
0.00166887
0.00114458
0.000890438
0.000749489
0.000663203
0.000606213
0.000566304
0.000537055
0.000514865
0.00049762
0.000484074
0.000473525
0.000465669
0.00046052
0.000458387
0.000459871
0.00046586
0.00047754
0.000496386
0.000524186
0.000563091
0.000615676
0.000684868
0.000773641
0.000884501
0.00101895
0.00117717
0.00135806
0.00155951
0.00177901
0.00201398
0.00226216
0.00252177
0.00279119
0.00306625
0.00166938
0.00115203
0.000899334
0.000759162
0.000674585
0.000622444
0.000593852
0.000587465
0.000606547
0.000656556
0.00074242
0.000866895
0.00103092
0.00123361
0.001471
0.00173545
0.00201682
0.00230445
0.00258876
0.00286242
0.00312055
0.00336038
0.00358091
0.00378232
0.00396561
0.00413228
0.00428402
0.00442256
0.0045495
0.00466625
0.00477408
0.00487426
0.00496868
0.00505898
0.00515081
0.00167112
0.00115325
0.000922839
0.000845169
0.000883554
0.00101703
0.00121457
0.00144957
0.00170508
0.00196847
0.00222988
0.00248247
0.00272201
0.00294616
0.0031538
0.00334457
0.00351859
0.0036763
0.00381841
0.00394589
0.00405988
0.00416163
0.0042525
0.00433384
0.00440701
0.00447324
0.00453364
0.00458903
0.00464006
0.00468728
0.00473152
0.00477396
0.00481646
0.00485918
0.00490694
0.00132809
0.000872291
0.000806697
0.000833323
0.000878628
0.000926435
0.000971857
0.001013
0.00104932
0.00108093
0.00110827
0.00113163
0.00115123
0.00116725
0.00117988
0.00118931
0.00119582
0.00119975
0.00120146
0.00120133
0.00119974
0.00119703
0.0011935
0.00118942
0.001185
0.00118043
0.00117581
0.00117118
0.00116648
0.00116163
0.0011567
0.00115192
0.00114856
0.00114652
0.00115255
0.00167308
0.00116626
0.000968476
0.000952292
0.00106557
0.00125687
0.00148687
0.00173213
0.00197588
0.0022057
0.00241266
0.00259095
0.00273894
0.0028572
0.00294777
0.00301366
0.00305838
0.00308551
0.00309846
0.00310025
0.00309347
0.00308024
0.00306235
0.00304124
0.00301815
0.00299415
0.00297011
0.0029465
0.0029231
0.00289874
0.00287167
0.00284046
0.00280628
0.00277449
0.00275776
0.00167398
0.00117
0.000982012
0.000982363
0.00111131
0.00131054
0.00154144
0.00178284
0.00201989
0.0022417
0.00244074
0.00261194
0.00275346
0.00286592
0.00295133
0.00301266
0.00305334
0.00307694
0.00308678
0.00308588
0.00307679
0.00306164
0.00304218
0.00301993
0.00299602
0.00297122
0.00294584
0.00291974
0.00289264
0.00286486
0.00283838
0.0028174
0.00280788
0.00281276
0.00282897
0.0015944
0.00111281
0.0010317
0.00109935
0.00121444
0.00133813
0.00145615
0.00156361
0.00165942
0.00174416
0.00181903
0.00188536
0.00194438
0.00199722
0.00204484
0.00208812
0.00212775
0.00216434
0.00219838
0.00223029
0.0022604
0.00228899
0.00231634
0.00234274
0.00236834
0.00239312
0.00241684
0.00243916
0.00246016
0.00248073
0.00250265
0.0025276
0.00255551
0.00258269
0.00260287
0.00164201
0.00118973
0.00113218
0.00122653
0.00136917
0.0015217
0.00166793
0.00180075
0.00191847
0.00202048
0.00210654
0.00217654
0.00223083
0.00227028
0.00229627
0.00231054
0.00231503
0.0023117
0.00230241
0.00228876
0.00227211
0.00225351
0.0022338
0.0022136
0.00219345
0.00217379
0.00215498
0.00213717
0.00212017
0.00210324
0.00208524
0.002065
0.0020431
0.0020212
0.00201078
0.00165568
0.00120344
0.00114646
0.00124664
0.00139783
0.00156017
0.00171609
0.00185797
0.00198399
0.00209363
0.0021866
0.00226284
0.00232264
0.00236672
0.00239636
0.00241331
0.00241959
0.00241729
0.00240841
0.00239471
0.00237769
0.00235853
0.00233817
0.00231734
0.0022966
0.00227629
0.00225652
0.0022371
0.00221761
0.00219782
0.00217831
0.00216101
0.00214993
0.0021475
0.00215972
0.00119815
0.00080077
0.000759863
0.000787348
0.000825377
0.000864546
0.000901578
0.000934857
0.00096346
0.000987597
0.00100717
0.00102207
0.00103221
0.00103769
0.00103887
0.00103628
0.00103055
0.00102236
0.00101231
0.00100096
0.000988779
0.000976119
0.000963257
0.000950428
0.000937841
0.000925687
0.000914108
0.000903103
0.000892435
0.000881547
0.000869742
0.000856529
0.000842803
0.000830246
0.000825292
0.0013456
0.000911314
0.000865769
0.00091153
0.000971439
0.00103057
0.00108481
0.00113282
0.00117391
0.0012087
0.0012372
0.00125933
0.00127507
0.00128464
0.00128857
0.00128757
0.00128248
0.00127417
0.00126344
0.00125101
0.00123745
0.00122321
0.00120867
0.0011941
0.00117977
0.0011659
0.00115265
0.00114005
0.00112789
0.00111559
0.00110238
0.00108765
0.00107229
0.00105769
0.00105209
0.00167024
0.00115514
0.000904735
0.000770334
0.000701509
0.000685184
0.000725332
0.000829641
0.000997221
0.00121692
0.00147337
0.00174917
0.00202614
0.00228862
0.00252575
0.00273157
0.00290412
0.00304427
0.00315457
0.00323845
0.00329964
0.00334181
0.00336839
0.00338247
0.00338678
0.00338375
0.00337543
0.00336335
0.00334825
0.0033299
0.0033074
0.00328001
0.00324895
0.00321925
0.00320111
0.00167025
0.00115518
0.000904821
0.000770534
0.000701991
0.000686208
0.000727143
0.000832259
0.00100038
0.00122022
0.00147643
0.00175178
0.00202826
0.00229039
0.00252736
0.00273317
0.00290583
0.00304607
0.00315639
0.00324016
0.00330112
0.00334297
0.00336923
0.00338301
0.00338705
0.00338357
0.00337419
0.00335998
0.00334174
0.00332057
0.0032988
0.00328054
0.00327102
0.00327319
0.0032829
0.00166929
0.00114686
0.000894426
0.000759119
0.000687712
0.000663616
0.000686154
0.000759468
0.000884396
0.00105647
0.00126887
0.00151349
0.00178074
0.00206062
0.00234435
0.00262527
0.0028989
0.00316253
0.00341475
0.00365496
0.00388309
0.00409943
0.00430449
0.00449897
0.00468361
0.00485907
0.00502574
0.0051838
0.00533355
0.00547591
0.00561285
0.00574693
0.00587977
0.00600944
0.00613161
0.00102078
0.000686151
0.000633269
0.000632389
0.000645034
0.000661828
0.000679478
0.000696482
0.000712206
0.000726528
0.000739547
0.000751407
0.000762296
0.000772395
0.000781859
0.000790812
0.000799354
0.000807563
0.000815489
0.000823166
0.000830613
0.00083785
0.000844907
0.000851827
0.000858638
0.000865313
0.000871746
0.000877785
0.00088337
0.000888691
0.000894262
0.000900627
0.000908079
0.000915314
0.000922591
0.000621293
0.000408545
0.000366071
0.000355873
0.000355721
0.000359601
0.000364922
0.000370485
0.000375716
0.000380298
0.00038405
0.000386818
0.000388484
0.000389
0.000388404
0.0003868
0.000384342
0.000381199
0.000377541
0.000373524
0.000369279
0.000364906
0.000360492
0.000356113
0.000351837
0.000347721
0.000343795
0.00034003
0.000336319
0.000332478
0.00032834
0.00032391
0.000319663
0.000316387
0.000315687
0.000622039
0.00040891
0.000366573
0.000356563
0.000356571
0.000360567
0.000365963
0.000371579
0.000376847
0.000381454
0.000385223
0.000388001
0.000389672
0.000390189
0.000389588
0.000387974
0.000385501
0.000382337
0.000378652
0.000374605
0.000370329
0.000365936
0.000361518
0.000357148
0.000352873
0.000348702
0.000344598
0.000340507
0.00033642
0.000332472
0.000329026
0.0003266
0.000325654
0.000325673
0.000325653
0.00166909
0.00114708
0.000893556
0.000754044
0.000671925
0.000625248
0.000607228
0.000619044
0.000665634
0.000751658
0.000878912
0.00104659
0.00125186
0.00148912
0.00175036
0.00202651
0.00230916
0.00259158
0.00286904
0.00313849
0.00339816
0.00364716
0.00388515
0.00411218
0.00432856
0.00453468
0.00473097
0.00491771
0.00509525
0.00526425
0.00542609
0.00558279
0.0057363
0.00588652
0.006032
0.00154822
0.00109739
0.00104818
0.00112947
0.00123949
0.00134699
0.00144327
0.00152695
0.00159838
0.0016593
0.00171117
0.00175484
0.00179082
0.00181951
0.00184139
0.00185701
0.00186705
0.00187226
0.00187346
0.00187144
0.00186695
0.00186064
0.00185307
0.00184471
0.00183591
0.00182699
0.00181819
0.00180969
0.00180156
0.00179374
0.00178603
0.00177801
0.00176996
0.00176061
0.0017578
0.0016693
0.00114824
0.000895859
0.000760162
0.000687982
0.000662774
0.000684258
0.000757549
0.000884257
0.00105967
0.00127612
0.00152449
0.00179426
0.00207467
0.00235676
0.00263416
0.00290269
0.0031598
0.00340402
0.00363459
0.00385105
0.00405376
0.00424328
0.00442033
0.0045858
0.00474064
0.00488579
0.00502208
0.00515026
0.00527115
0.00538588
0.00549604
0.00560367
0.00570994
0.00581691
0.00166919
0.00114853
0.000895527
0.000756657
0.000676224
0.000633612
0.000624001
0.000650856
0.000720346
0.000835805
0.000995788
0.00119597
0.00143009
0.00168958
0.00196449
0.00224567
0.00252575
0.00279929
0.00306267
0.00331373
0.00355131
0.00377514
0.00398555
0.00418325
0.00436922
0.00454453
0.00471024
0.00486723
0.00501624
0.00515798
0.00529345
0.00542409
0.00555169
0.00567698
0.00580134
0.00160011
0.00112419
0.00105103
0.00112171
0.00123488
0.00135456
0.00146817
0.00157126
0.00166308
0.00174432
0.00181601
0.00187939
0.00193564
0.00198592
0.00203115
0.00207208
0.00210931
0.00214334
0.00217455
0.00220327
0.00222974
0.0022542
0.00227686
0.00229797
0.00231778
0.00233644
0.00235396
0.00237012
0.00238476
0.00239806
0.00241093
0.00242475
0.002441
0.00245821
0.00247927
0.000560187
0.000376129
0.000332771
0.00031995
0.000317086
0.000318267
0.000321099
0.000324465
0.000327807
0.000330828
0.000333346
0.000335203
0.000336282
0.000336529
0.000335956
0.000334631
0.000332663
0.000330175
0.000327292
0.000324131
0.000320792
0.000317351
0.000313876
0.000310424
0.000307047
0.000303787
0.000300669
0.000297673
0.000294721
0.000291685
0.000288448
0.000285023
0.000281742
0.00027922
0.000278431
0.000561225
0.000376614
0.000333488
0.000321024
0.000318478
0.000319896
0.000322874
0.000326329
0.000329731
0.000332788
0.000335324
0.000337191
0.000338273
0.000338516
0.000337931
0.000336586
0.000334589
0.000332067
0.000329142
0.000325935
0.000322549
0.00031907
0.000315568
0.0003121
0.000308701
0.000305381
0.000302116
0.000298868
0.000295632
0.000292509
0.00028976
0.00028776
0.000286823
0.000286617
0.000286259
0.0016699
0.00114747
0.000901163
0.000784559
0.000754139
0.000801685
0.000922477
0.0011021
0.00132368
0.00157364
0.00184018
0.00211305
0.00238434
0.00264863
0.00290249
0.003144
0.00337229
0.00358722
0.00378915
0.00397869
0.00415661
0.00432376
0.00448106
0.00462944
0.00476981
0.00490281
0.00502875
0.0051477
0.00525998
0.00536679
0.00547056
0.00557408
0.00567846
0.00578016
0.00587256
0.00162446
0.00116433
0.00111047
0.00121317
0.00136128
0.00151551
0.00166214
0.0017964
0.00191724
0.00202513
0.00212112
0.00220637
0.00228194
0.00234906
0.00240864
0.00246145
0.00250812
0.00254922
0.00258526
0.00261672
0.00264409
0.00266783
0.00268841
0.00270631
0.00272198
0.00273584
0.00274822
0.00275929
0.00276912
0.0027778
0.00278571
0.00279356
0.00280265
0.00281257
0.00282797
0.00166884
0.00114383
0.000889538
0.000748523
0.000662233
0.000605251
0.000565335
0.000536041
0.000513727
0.000496217
0.000482159
0.000470695
0.000461292
0.000453652
0.00044768
0.00044347
0.000441329
0.000441793
0.00044566
0.000454004
0.000468176
0.000489777
0.000520642
0.000562847
0.000618748
0.000690941
0.000782024
0.000894157
0.0010286
0.00118541
0.00136341
0.00156044
0.0017737
0.00199999
0.00223253
0.00167256
0.00116144
0.000941373
0.000883915
0.000951503
0.00111127
0.00132399
0.00156267
0.00180976
0.00205119
0.00227684
0.00248038
0.00265799
0.00280829
0.00293179
0.0030303
0.00310635
0.00316284
0.00320272
0.00322882
0.00324376
0.00324984
0.00324911
0.00324329
0.00323384
0.0032219
0.00320826
0.0031933
0.00317707
0.00315966
0.00314182
0.00312567
0.00311522
0.00311416
0.00312631
0.00167286
0.00116315
0.00094995
0.00090545
0.000988207
0.00115821
0.00137565
0.00161609
0.00186317
0.00210339
0.00232691
0.00252695
0.00269976
0.00284434
0.00296167
0.00305399
0.00312418
0.00317538
0.00321068
0.00323295
0.00324474
0.00324827
0.00324543
0.00323782
0.00322681
0.0032136
0.00319917
0.00318424
0.00316908
0.0031533
0.00313592
0.00311579
0.00309311
0.00307005
0.00305581
0.00167526
0.00117098
0.000987839
0.000997948
0.00113909
0.00134958
0.00158924
0.00183723
0.00207983
0.00230833
0.00251845
0.00270763
0.00287462
0.00301907
0.00314135
0.00324259
0.00332452
0.00338933
0.00343939
0.00347711
0.00350478
0.00352446
0.00353796
0.00354682
0.00355232
0.0035555
0.00355712
0.00355767
0.00355733
0.00355612
0.00355422
0.00355234
0.00355282
0.00355775
0.0035754
0.00165551
0.001172
0.00107797
0.00115838
0.00130606
0.00147461
0.00164305
0.00180177
0.00194696
0.00207785
0.00219511
0.0023
0.00239394
0.00247833
0.00255448
0.00262356
0.00268661
0.00274451
0.00279804
0.0028478
0.00289434
0.00293815
0.00297967
0.00301933
0.00305741
0.00309394
0.00312866
0.00316125
0.00319189
0.00322183
0.00325333
0.00328842
0.0033268
0.00336349
0.00339083
0.00131414
0.000866454
0.000808568
0.000843592
0.000897431
0.000953186
0.00100482
0.00105022
0.00108939
0.00112227
0.00114891
0.00116927
0.00118338
0.00119151
0.00119417
0.00119206
0.00118602
0.00117691
0.00116553
0.00115258
0.00113864
0.00112418
0.00110954
0.00109504
0.00108088
0.00106712
0.00105365
0.00104021
0.00102653
0.00101277
0.00100002
0.000990375
0.000986836
0.000989346
0.000998704
0.00148784
0.00104192
0.00099007
0.0010511
0.00113723
0.00122514
0.00130714
0.00137982
0.0014426
0.00149547
0.00153841
0.00157159
0.00159522
0.00160983
0.00161631
0.0016158
0.00160958
0.00159894
0.00158503
0.00156882
0.00155116
0.00153267
0.0015138
0.00149496
0.00147647
0.00145865
0.00144175
0.00142578
0.00141039
0.00139466
0.00137735
0.00135749
0.00133618
0.00131628
0.00130803
0.00138428
0.000929708
0.000864049
0.000899639
0.000958134
0.0010205
0.00108021
0.00113443
0.00118216
0.00122384
0.00126008
0.00129139
0.00131816
0.00134069
0.00135924
0.00137405
0.00138539
0.00139362
0.00139912
0.0014023
0.00140358
0.00140333
0.00140192
0.00139967
0.00139685
0.00139369
0.00139033
0.00138681
0.0013831
0.00137912
0.00137493
0.0013709
0.00136842
0.00136785
0.00137516
0.000800513
0.000565461
0.000504029
0.000483468
0.00047762
0.000477888
0.000480847
0.00048495
0.000489449
0.000493991
0.000498443
0.00050275
0.000506912
0.000510947
0.000514883
0.000518738
0.000522529
0.000526269
0.00052996
0.000533602
0.000537191
0.000540727
0.000544214
0.000547664
0.00055108
0.000554441
0.000557694
0.000560772
0.000563661
0.000566457
0.000569386
0.000572665
0.000576356
0.000579852
0.000583175
0.00167477
0.00119646
0.00109095
0.0011786
0.00134848
0.00154761
0.0017528
0.00195067
0.00213333
0.002296
0.00243604
0.00255207
0.00264421
0.00271368
0.00276257
0.00279351
0.00280947
0.00281342
0.00280811
0.00279593
0.00277886
0.00275846
0.00273598
0.00271236
0.0026884
0.00266475
0.00264194
0.00262021
0.00259936
0.00257846
0.00255607
0.00253076
0.00250311
0.00247603
0.0024611
0.00167633
0.00120106
0.00110073
0.00119217
0.00136393
0.00156329
0.0017668
0.00196176
0.00214102
0.00230075
0.00243877
0.00255394
0.00264613
0.00271616
0.0027658
0.00279751
0.00281412
0.00281855
0.00281356
0.00280156
0.00278457
0.00276424
0.00274185
0.00271841
0.0026947
0.00267121
0.00264809
0.00262516
0.00260201
0.0025785
0.0025556
0.00253595
0.00252432
0.00252367
0.00253728
0.00166908
0.0011465
0.000893008
0.000753796
0.000672562
0.000627867
0.00061362
0.000631602
0.000686609
0.000781877
0.000917095
0.00108982
0.00129627
0.00153059
0.00178527
0.00205254
0.00232557
0.00259896
0.0028687
0.00313197
0.00338691
0.00363243
0.00386804
0.00409367
0.00430954
0.00451597
0.00471325
0.00490147
0.00508066
0.00525122
0.00541456
0.00557339
0.00573094
0.00588844
0.00604312
0.00167389
0.0011589
0.000950125
0.000918914
0.00102159
0.00121318
0.0014501
0.00170716
0.0019698
0.00222802
0.00247518
0.00270796
0.00292505
0.00312631
0.00331226
0.00348381
0.00364205
0.00378813
0.00392321
0.00404837
0.00416463
0.0042729
0.00437402
0.00446879
0.00455796
0.00464213
0.0047215
0.00479586
0.00486494
0.00492926
0.00499117
0.00505475
0.00512424
0.00519923
0.00527575
0.00110524
0.0007382
0.000686753
0.000692482
0.000710173
0.000731501
0.000752979
0.000773031
0.000790992
0.000806742
0.000820253
0.000831457
0.000840308
0.00084679
0.000850965
0.000852981
0.000853053
0.000851456
0.000848486
0.000844441
0.000839597
0.000834191
0.000828422
0.00082245
0.000816405
0.000810396
0.000804527
0.000798879
0.000793514
0.000788418
0.000783524
0.000778576
0.000773678
0.000767588
0.000765038
0.00162523
0.00114829
0.00106802
0.00114252
0.0012707
0.00141234
0.00155046
0.00167793
0.00179251
0.00189438
0.00198476
0.002065
0.00213651
0.00220059
0.00225835
0.00231075
0.00235861
0.00240262
0.0024434
0.00248147
0.00251723
0.00255102
0.00258315
0.00261391
0.00264361
0.00267239
0.00270008
0.0027262
0.0027503
0.00277272
0.00279532
0.00282123
0.00285335
0.00289062
0.00292838
0.00102583
0.000661068
0.000607604
0.000612266
0.000629473
0.000649975
0.000670389
0.000689312
0.0007065
0.000722018
0.000736036
0.000748747
0.000760337
0.000770978
0.000780816
0.00078996
0.000798486
0.000806438
0.000813841
0.000820716
0.000827077
0.000832942
0.000838328
0.00084326
0.000847771
0.000851903
0.000855707
0.000859225
0.000862496
0.000865533
0.000868379
0.000871017
0.000873787
0.000875981
0.000881317
0.00167174
0.00115319
0.000934255
0.000883276
0.00095964
0.00112837
0.00135023
0.00159899
0.00185851
0.00211736
0.00236787
0.00260557
0.00282832
0.00303554
0.00322755
0.00340515
0.00356941
0.00372149
0.00386256
0.00399372
0.00411597
0.00423026
0.00433743
0.00443833
0.00453375
0.00462428
0.00471014
0.0047911
0.00486694
0.00493831
0.00500761
0.00507889
0.00515608
0.00523843
0.0053195
0.00166884
0.00114407
0.000889674
0.000748591
0.000662281
0.000605292
0.000565372
0.000536073
0.000513745
0.0004962
0.00048206
0.000470431
0.000460714
0.000452511
0.00044557
0.000439761
0.000435074
0.000431622
0.000429665
0.000429633
0.000432157
0.000438085
0.000448492
0.000464671
0.000488122
0.000520565
0.000564003
0.000620826
0.000693866
0.000786298
0.000901348
0.00104192
0.00121018
0.00140718
0.0016297
0.00167517
0.001169
0.000996234
0.001021
0.00116681
0.00137002
0.00159602
0.0018276
0.00205436
0.00227006
0.00247146
0.00265761
0.00282872
0.00298561
0.00312935
0.00326109
0.00338194
0.00349293
0.00359497
0.00368886
0.0037753
0.00385491
0.00392828
0.00399594
0.00405845
0.00411634
0.00417011
0.00422007
0.00426647
0.00430954
0.00434988
0.00438858
0.00442747
0.00446697
0.00451158
0.0016689
0.00114554
0.000891288
0.000750242
0.000663892
0.000606891
0.0005671
0.00053825
0.00051702
0.000501797
0.000492153
0.000488647
0.000492744
0.000506702
0.000533302
0.000575467
0.000636023
0.00071777
0.000823552
0.000955791
0.00111562
0.00130224
0.00151288
0.00174326
0.00198835
0.00224307
0.0025029
0.00276421
0.00302428
0.00328123
0.00353399
0.00378224
0.00402636
0.00426697
0.00450266
0.00156877
0.00110884
0.00104682
0.00111857
0.00122602
0.00133787
0.00144304
0.00153757
0.00162007
0.00169042
0.00174843
0.00179424
0.00182818
0.00185093
0.00186359
0.00186757
0.0018644
0.00185565
0.00184272
0.00182681
0.00180899
0.00179004
0.00177054
0.00175091
0.00173146
0.00171244
0.00169414
0.00167685
0.00166073
0.00164546
0.00163005
0.00161259
0.0015917
0.00156624
0.00154466
0.00160331
0.00114268
0.0010813
0.00115694
0.00127148
0.00139133
0.00150367
0.0016042
0.0016918
0.00176659
0.00182857
0.00187778
0.00191452
0.00193943
0.00195362
0.00195851
0.00195571
0.0019469
0.0019336
0.00191714
0.00189861
0.00187884
0.00185845
0.00183792
0.00181765
0.00179802
0.00177936
0.00176182
0.00174521
0.00172877
0.00171134
0.00169166
0.0016701
0.00164785
0.00163506
0.00151283
0.00107193
0.00103197
0.00111013
0.00121052
0.00130826
0.00139633
0.00147291
0.00153901
0.00159537
0.00164229
0.00167986
0.00170825
0.00172789
0.00173953
0.00174414
0.00174286
0.00173683
0.00172718
0.0017149
0.00170082
0.00168563
0.00166983
0.0016538
0.00163783
0.00162215
0.00160698
0.00159254
0.00157898
0.00156619
0.00155362
0.00154001
0.00152458
0.00150555
0.00149064
0.00153841
0.00108524
0.00103417
0.0011079
0.00121051
0.00131391
0.00140809
0.00149047
0.00156189
0.00162304
0.00167416
0.00171539
0.00174693
0.00176919
0.00178289
0.00178903
0.00178876
0.00178335
0.00177399
0.00176176
0.00174758
0.00173217
0.00171608
0.00169974
0.00168347
0.00166759
0.00165234
0.00163794
0.0016244
0.00161144
0.00159845
0.00158449
0.00156944
0.00155232
0.00154099
0.000833454
0.000579787
0.000515907
0.000496791
0.000492841
0.000495012
0.000499633
0.000505035
0.000510577
0.000516038
0.000521315
0.000526371
0.000531208
0.000535844
0.000540299
0.000544593
0.00054873
0.000552707
0.000556516
0.000560145
0.000563584
0.000566825
0.000569862
0.000572695
0.00057533
0.000577781
0.000580062
0.000582188
0.000584171
0.000586013
0.000587738
0.000589355
0.000591031
0.000592488
0.000595196
0.00167277
0.00116209
0.000965369
0.00095261
0.00106895
0.00126174
0.00149126
0.0017353
0.00197986
0.00221588
0.0024381
0.00264399
0.00283264
0.00300394
0.00315816
0.00329579
0.00341746
0.00352401
0.00361653
0.00369624
0.00376453
0.00382284
0.00387259
0.00391516
0.0039518
0.00398367
0.00401184
0.00403723
0.00406065
0.00408267
0.00410365
0.00412352
0.00414237
0.00415874
0.00417756
0.00167375
0.00117364
0.00102272
0.00106927
0.00122041
0.00141673
0.00163003
0.00184479
0.00205156
0.00224535
0.00242409
0.00258747
0.00273609
0.00287094
0.00299316
0.00310378
0.00320371
0.00329377
0.00337469
0.0034472
0.003512
0.0035698
0.0036213
0.00366719
0.0037082
0.00374501
0.0037783
0.00380867
0.00383663
0.00386254
0.00388678
0.00390965
0.00393201
0.00395323
0.00397951
0.00166963
0.00119789
0.00111888
0.00122154
0.00138946
0.00157364
0.0017546
0.00192401
0.00207885
0.00221838
0.00234353
0.00245558
0.00255596
0.00264617
0.00272755
0.00280134
0.00286863
0.0029303
0.00298706
0.00303948
0.00308804
0.00313313
0.00317506
0.00321414
0.00325064
0.00328485
0.00331695
0.00334703
0.00337505
0.00340106
0.00342555
0.00344949
0.00347456
0.00350093
0.00353275
0.00158179
0.00111086
0.00103293
0.00109414
0.00119811
0.0013105
0.0014189
0.00151821
0.00160689
0.00168515
0.00175387
0.00181409
0.00186682
0.00191291
0.00195301
0.00198762
0.00201717
0.0020421
0.00206282
0.0020798
0.00209351
0.00210442
0.00211299
0.00211962
0.00212472
0.00212864
0.00213174
0.00213432
0.00213668
0.00213897
0.00214126
0.00214325
0.00214504
0.00214467
0.00214955
0.000621077
0.000410682
0.00036056
0.000346193
0.000343604
0.000345385
0.00034877
0.000352708
0.00035677
0.000360766
0.000364608
0.000368262
0.000371728
0.000375024
0.000378163
0.000381156
0.000384008
0.000386715
0.000389275
0.000391682
0.000393934
0.000396028
0.000397969
0.000399762
0.00040142
0.000402954
0.000404368
0.000405653
0.000406797
0.000407802
0.000408738
0.000409717
0.000410978
0.000412367
0.000414789
0.00167245
0.00115825
0.000961871
0.000951075
0.00106793
0.0012586
0.00148523
0.00172754
0.00197249
0.0022111
0.00243788
0.00265004
0.00284665
0.00302793
0.00319468
0.00334802
0.00348918
0.00361939
0.00373983
0.0038516
0.00395567
0.00405288
0.00414406
0.00422996
0.00431132
0.00438866
0.00446206
0.0045312
0.00459574
0.00465635
0.00471564
0.00477792
0.00484718
0.00492222
0.00499582
0.00110241
0.000719543
0.000664278
0.000672863
0.000694026
0.000717425
0.00073994
0.000760294
0.000778582
0.000795009
0.000809844
0.000823319
0.000835639
0.000846995
0.000857568
0.000867501
0.000876904
0.000885853
0.000894395
0.000902561
0.000910365
0.000917813
0.000924906
0.000931649
0.000938053
0.000944137
0.00094992
0.0009554
0.000960566
0.000965403
0.000969975
0.000974373
0.000979089
0.000983575
0.000991431
0.00167312
0.0011753
0.00101592
0.00105851
0.00121892
0.00143075
0.00166099
0.00189205
0.00211202
0.0023127
0.00248791
0.00263456
0.00275228
0.00284224
0.00290685
0.00294935
0.00297334
0.0029824
0.00297985
0.00296856
0.00295092
0.00292882
0.00290372
0.00287672
0.00284868
0.00282037
0.00279253
0.00276589
0.00274077
0.00271652
0.00269106
0.002661
0.00262366
0.00257973
0.00254016
0.0016734
0.00117595
0.00101764
0.00106279
0.00122643
0.00144063
0.00167201
0.0019034
0.0021233
0.00232376
0.00249887
0.0026455
0.00276324
0.00285324
0.0029179
0.00296045
0.00298447
0.00299354
0.00299098
0.00297962
0.00296184
0.00293949
0.00291408
0.00288684
0.00285881
0.0028309
0.00280383
0.00277781
0.00275225
0.0027256
0.00269569
0.00266112
0.00262388
0.00259093
0.00257687
0.00140059
0.000963562
0.000923194
0.000982716
0.00105999
0.00113652
0.00120671
0.00126865
0.00132192
0.00136627
0.00140194
0.00142919
0.00144816
0.00145926
0.0014632
0.00146096
0.00145366
0.00144238
0.00142816
0.00141197
0.00139455
0.00137643
0.00135802
0.00133967
0.00132172
0.00130447
0.00128816
0.00127277
0.00125786
0.00124244
0.00122523
0.00120539
0.00118433
0.00116544
0.00115866
0.00133374
0.000894687
0.000848051
0.000895049
0.000959285
0.00102413
0.00108421
0.00113747
0.00118329
0.00122142
0.00125207
0.00127534
0.00129135
0.00130045
0.00130326
0.00130065
0.00129358
0.00128302
0.00126993
0.00125513
0.00123926
0.00122282
0.00120614
0.00118948
0.00117304
0.00115702
0.0011417
0.00112731
0.00111395
0.00110116
0.00108777
0.00107186
0.0010522
0.00102867
0.001009
0.00166901
0.00114637
0.000892572
0.000752305
0.000668208
0.00061703
0.000590013
0.000585975
0.000608171
0.000661622
0.000750349
0.000876114
0.00103895
0.00123702
0.00146572
0.00171785
0.00198521
0.00226024
0.0025369
0.00281082
0.00307899
0.00333953
0.00359132
0.0038338
0.00406684
0.0042905
0.00450495
0.00471024
0.00490638
0.00509365
0.00527313
0.00544709
0.0056184
0.00578857
0.00595559
0.000893048
0.000609261
0.000553991
0.000542697
0.000544173
0.000550923
0.000559599
0.000568575
0.000576952
0.000584381
0.000590584
0.000595317
0.000598379
0.000599688
0.000599294
0.000597349
0.000594075
0.000589725
0.000584554
0.000578795
0.000572653
0.000566292
0.000559838
0.000553389
0.000547018
0.000540797
0.000534795
0.000529074
0.000523648
0.000518413
0.000513118
0.00050736
0.000500993
0.000493995
0.000488499
0.00167283
0.00116289
0.000968648
0.000958345
0.00107491
0.0012668
0.00149639
0.00174122
0.00198633
0.00222214
0.00244331
0.00264735
0.00283325
0.00300083
0.00315026
0.00328202
0.00339686
0.00349588
0.00358039
0.00365189
0.003712
0.00376233
0.00380447
0.00383985
0.00386977
0.00389542
0.00391783
0.00393796
0.00395656
0.00397419
0.00399111
0.00400708
0.00402194
0.00403394
0.00404742
0.0010345
0.000814923
0.000697114
0.000651515
0.000631413
0.000621099
0.000615566
0.000612631
0.00061121
0.000610689
0.000610696
0.000610982
0.000611354
0.000611657
0.000611778
0.00061164
0.0006112
0.000610446
0.000609388
0.000608058
0.000606494
0.000604742
0.000602846
0.000600848
0.000598787
0.000596695
0.0005946
0.000592524
0.000590485
0.000588494
0.000586545
0.000584655
0.000582745
0.000581142
0.000578734
0.00084057
0.00064245
0.000544565
0.000506709
0.000490009
0.000481597
0.000477102
0.000474812
0.000473828
0.000473639
0.000473967
0.000474655
0.000475606
0.000476756
0.000478062
0.000479491
0.000481018
0.000482624
0.000484291
0.000486005
0.000487754
0.000489528
0.000491321
0.000493125
0.000494937
0.000496746
0.000498539
0.000500302
0.000502034
0.000503756
0.000505515
0.00050736
0.000509287
0.000511104
0.00051311
0.0014711
0.00102816
0.000977031
0.00103048
0.00110432
0.00117771
0.00124492
0.00130434
0.00135574
0.00139976
0.00143701
0.00146794
0.00149284
0.00151201
0.0015258
0.00153467
0.00153919
0.00154001
0.00153781
0.00153326
0.00152696
0.00151941
0.00151105
0.00150219
0.00149311
0.00148403
0.00147515
0.00146663
0.00145862
0.00145113
0.00144407
0.00143697
0.00142988
0.00142057
0.0014167
0.00167353
0.00116377
0.000980924
0.000990273
0.00112301
0.00132014
0.00154668
0.00178411
0.0020202
0.00224698
0.00246005
0.00265756
0.00283946
0.00300646
0.00315959
0.00330008
0.00342924
0.00354825
0.00365818
0.00375992
0.00385425
0.00394186
0.00402334
0.00409925
0.00417013
0.00423648
0.00429866
0.00435683
0.00441105
0.00446157
0.00450927
0.00455585
0.00460361
0.00465318
0.0047061
0.00148738
0.00104334
0.000998856
0.00106647
0.00115758
0.00124936
0.00133435
0.00140986
0.00147513
0.00152965
0.00157376
0.00160766
0.00163161
0.00164615
0.00165218
0.00165091
0.00164369
0.00163185
0.00161662
0.00159908
0.00158007
0.00156021
0.00153995
0.00151974
0.00149997
0.00148101
0.00146313
0.00144631
0.00142999
0.00141296
0.00139367
0.00137112
0.00134699
0.00132576
0.00131878
0.00146305
0.00101455
0.000965988
0.00102816
0.00111358
0.00119999
0.00128006
0.00135115
0.00141249
0.00146369
0.00150505
0.00153674
0.001559
0.00157236
0.00157767
0.00157606
0.00156883
0.00155721
0.00154242
0.00152546
0.00150716
0.0014881
0.00146869
0.00144929
0.00143014
0.0014115
0.00139369
0.00137704
0.00136164
0.00134692
0.00133136
0.00131248
0.00128864
0.00125994
0.00123547
0.0016689
0.00114589
0.0008917
0.000750675
0.000664331
0.000607314
0.000567465
0.00053846
0.000516873
0.000500898
0.000489783
0.000483585
0.000483073
0.000489683
0.000505418
0.000532688
0.000574103
0.000632374
0.000710325
0.000810773
0.000936027
0.0010872
0.00126376
0.00146351
0.00168302
0.00191816
0.00216473
0.00241897
0.0026778
0.00293894
0.00320091
0.00346293
0.00372481
0.00398649
0.00424606
0.00145276
0.00103109
0.00099028
0.00104847
0.00112359
0.0011963
0.00126097
0.00131725
0.00136543
0.00140646
0.00144116
0.00147002
0.00149329
0.0015112
0.00152406
0.00153231
0.00153644
0.00153706
0.00153477
0.00153018
0.00152386
0.00151631
0.00150792
0.00149905
0.00148996
0.00148085
0.00147189
0.00146322
0.00145497
0.00144717
0.00143975
0.0014323
0.00142485
0.00141544
0.00141084
0.00160886
0.00113782
0.00106266
0.00113324
0.00124874
0.00137259
0.00149137
0.00160011
0.0016974
0.00178364
0.00185985
0.00192727
0.00198706
0.00204023
0.00208762
0.00212989
0.00216754
0.00220098
0.00223055
0.0022566
0.00227945
0.00229943
0.00231686
0.00233206
0.00234533
0.002357
0.00236737
0.00237674
0.00238534
0.00239334
0.00240087
0.00240789
0.00241482
0.00242053
0.00243088
0.00103234
0.000666257
0.000613269
0.000623311
0.000647848
0.000675302
0.000701941
0.000726405
0.000748369
0.000767918
0.000785384
0.000801078
0.000815261
0.000828214
0.00084019
0.000851399
0.000862008
0.000872144
0.000881904
0.000891355
0.00090054
0.000909482
0.000918198
0.000926704
0.000935019
0.000943145
0.000951041
0.000958611
0.000965757
0.00097248
0.00097905
0.000985957
0.000993882
0.00100264
0.00101263
0.000919869
0.000721889
0.000616429
0.000575549
0.00055726
0.000547724
0.000542585
0.00053988
0.000538569
0.000538071
0.000538024
0.000538175
0.000538335
0.00053836
0.000538152
0.000537651
0.000536834
0.000535707
0.000534297
0.000532641
0.000530785
0.000528777
0.000526659
0.000524471
0.000522248
0.000520017
0.000517804
0.000515628
0.000513501
0.000511429
0.000509399
0.000507421
0.000505415
0.000503738
0.000501308
0.000988549
0.000773219
0.000657517
0.000613445
0.000594033
0.000584049
0.000578779
0.000576098
0.00057489
0.000574541
0.000574667
0.000574992
0.000575308
0.00057546
0.000575337
0.000574877
0.000574055
0.000572881
0.000571388
0.000569623
0.000567639
0.000565488
0.00056322
0.00056088
0.000558505
0.000556128
0.000553774
0.000551464
0.000549208
0.000547007
0.000544847
0.000542745
0.000540618
0.000538854
0.000536216
0.00160151
0.00115473
0.00110798
0.00119066
0.00130745
0.00142664
0.00153821
0.00163921
0.00172925
0.00180899
0.00187938
0.00194154
0.00199671
0.00204596
0.00209016
0.00213
0.00216604
0.00219872
0.00222841
0.0022554
0.00227997
0.00230236
0.00232278
0.00234147
0.00235866
0.00237455
0.00238925
0.0024027
0.00241476
0.0024254
0.00243525
0.00244554
0.00245854
0.00247385
0.00249829
0.00167094
0.00115055
0.000918651
0.000839204
0.000875488
0.00100955
0.00121286
0.00145692
0.00172157
0.0019922
0.00225842
0.00251381
0.00275511
0.00298108
0.00319165
0.00338743
0.00356935
0.00373847
0.00389587
0.00404258
0.00417955
0.00430767
0.00442776
0.00454059
0.00464692
0.00474733
0.00484219
0.00493153
0.00501536
0.00509416
0.00516966
0.00524478
0.00532267
0.0054034
0.00548489
0.00167227
0.00115833
0.000962911
0.000954351
0.00107384
0.00126567
0.00149139
0.00173101
0.0019719
0.00220546
0.00242667
0.00263306
0.00282397
0.00299979
0.0031614
0.00331004
0.00344695
0.00357337
0.00369041
0.00379905
0.00390014
0.00399442
0.00408257
0.00416521
0.0042429
0.00431613
0.00438515
0.00444996
0.00451053
0.00456721
0.00462141
0.00467554
0.00473229
0.00479176
0.00485278
0.00164735
0.00116401
0.001075
0.00115841
0.00130483
0.00146878
0.00163051
0.00178139
0.00191835
0.00204105
0.00215036
0.00224759
0.00233424
0.00241179
0.00248157
0.0025448
0.00260248
0.00265548
0.00270451
0.00275012
0.00279281
0.00283294
0.00287081
0.00290672
0.00294091
0.00297356
0.00300466
0.00303405
0.00306149
0.00308714
0.00311198
0.00313782
0.00316665
0.00319844
0.00323206
0.00167145
0.00115484
0.000927176
0.000855485
0.000903031
0.00104712
0.00125542
0.00150022
0.00176305
0.00203033
0.00229222
0.00254246
0.00277768
0.0029963
0.00319774
0.00338194
0.0035491
0.00369969
0.00383441
0.00395425
0.00406038
0.00415415
0.004237
0.00431034
0.00437556
0.00443397
0.00448678
0.00453507
0.00457978
0.00462165
0.00466125
0.00469885
0.00473503
0.00476882
0.00480629
0.00165963
0.00118691
0.00109935
0.00119221
0.00135431
0.001538
0.0017217
0.00189422
0.00204999
0.00218586
0.00229972
0.00239141
0.00246146
0.0025112
0.00254271
0.00255863
0.00256179
0.00255499
0.00254077
0.00252126
0.00249821
0.00247293
0.0024464
0.00241935
0.00239227
0.00236563
0.00233996
0.00231578
0.00229331
0.00227195
0.00224984
0.0022238
0.00219122
0.00215188
0.00211584
0.00165939
0.00118938
0.00110611
0.0011981
0.00135673
0.00153734
0.00171869
0.00188932
0.0020434
0.00217798
0.00229106
0.00238223
0.00245189
0.00250135
0.00253267
0.00254842
0.00255144
0.00254452
0.00253019
0.00251059
0.00248744
0.00246202
0.00243529
0.00240809
0.00238114
0.00235503
0.00233024
0.00230683
0.00228418
0.00226077
0.00223458
0.00220423
0.0021715
0.0021422
0.00213025
0.00166896
0.00114644
0.000892381
0.000751423
0.000665253
0.000608929
0.000570961
0.000546234
0.000533383
0.000533827
0.000551225
0.000590644
0.000657162
0.000754579
0.000885191
0.00104998
0.00124798
0.00147559
0.00172676
0.00199424
0.00227082
0.00255035
0.00282814
0.00310098
0.00336691
0.00362485
0.00387428
0.00411499
0.00434692
0.00457016
0.00478517
0.00499302
0.00519541
0.00539381
0.00558833
0.00166975
0.0011476
0.000899746
0.000779063
0.000740189
0.000774129
0.000878509
0.00104263
0.00125135
0.00149163
0.00175194
0.00202183
0.00229285
0.0025589
0.00281602
0.0030618
0.00329508
0.00351549
0.00372313
0.00391855
0.0041024
0.00427541
0.00443832
0.00459192
0.00473697
0.00487417
0.00500399
0.00512661
0.00524212
0.00535107
0.00545507
0.00555699
0.00566003
0.00576488
0.00586988
0.00167618
0.0011858
0.00104959
0.00112565
0.00131658
0.00154973
0.00179077
0.00202407
0.00224199
0.00244097
0.00261969
0.00277782
0.00291555
0.00303339
0.00313221
0.00321321
0.00327798
0.00332835
0.00336633
0.00339398
0.00341325
0.00342593
0.00343359
0.00343755
0.0034389
0.00343851
0.00343707
0.00343515
0.00343317
0.0034314
0.00342997
0.0034286
0.00342741
0.00342442
0.00342701
0.00166304
0.00119596
0.00111687
0.00121127
0.0013704
0.00154661
0.0017185
0.00187615
0.00201625
0.0021387
0.00224414
0.00233335
0.00240706
0.002466
0.00251115
0.00254378
0.00256541
0.00257774
0.00258252
0.00258142
0.00257593
0.00256729
0.00255652
0.00254443
0.00253163
0.00251863
0.00250584
0.00249364
0.00248231
0.00247187
0.0024621
0.00245227
0.00244188
0.00242877
0.00241862
0.00132025
0.000874283
0.000808884
0.000837201
0.000886158
0.000938552
0.000988767
0.00103465
0.00107554
0.00111151
0.00114302
0.00117055
0.00119456
0.00121543
0.00123343
0.00124879
0.00126167
0.00127227
0.00128078
0.00128745
0.0012925
0.00129618
0.0012987
0.0013003
0.00130115
0.00130146
0.00130142
0.00130118
0.00130093
0.00130072
0.00130057
0.00130021
0.00129977
0.00129753
0.0013001
0.00167397
0.001189
0.00108151
0.00117307
0.00135001
0.00155422
0.001762
0.0019621
0.00214898
0.00232032
0.00247554
0.00261575
0.00274226
0.00285644
0.00295949
0.00305255
0.00313663
0.00321256
0.0032811
0.00334295
0.00339876
0.00344914
0.00349468
0.00353595
0.00357351
0.00360788
0.0036394
0.00366819
0.00369419
0.00371749
0.00373902
0.00376069
0.00378548
0.00381421
0.00384978
0.00166913
0.00114759
0.000894153
0.00075554
0.000675893
0.000634512
0.000626106
0.000652713
0.000718316
0.000824959
0.000972216
0.00115835
0.00137968
0.00162954
0.00189896
0.0021786
0.00246042
0.00273847
0.00300887
0.00326935
0.0035187
0.00375637
0.00398227
0.00419655
0.00439958
0.00459189
0.00477408
0.00494665
0.00511014
0.00526518
0.00541268
0.00555422
0.00569192
0.00582733
0.00596133
0.00166972
0.0011495
0.000900595
0.000775272
0.000726292
0.00074329
0.000825973
0.000968908
0.00116064
0.00138951
0.00164445
0.00191437
0.0021894
0.00246185
0.00272623
0.00297898
0.0032178
0.00344138
0.00364914
0.00384098
0.00401736
0.00417919
0.00432752
0.00446354
0.00458856
0.0047039
0.0048108
0.00491041
0.00500372
0.00509159
0.0051748
0.00525413
0.0053307
0.00540477
0.00548018
0.00165828
0.0011984
0.00113065
0.00122993
0.00138698
0.00155515
0.00171528
0.00186024
0.00198819
0.00209947
0.00219493
0.00227538
0.0023415
0.00239409
0.00243413
0.00246284
0.00248161
0.00249199
0.00249552
0.00249369
0.00248783
0.00247908
0.00246839
0.00245651
0.00244401
0.00243133
0.00241882
0.00240675
0.00239538
0.00238479
0.00237487
0.00236495
0.00235469
0.0023418
0.00233276
0.00162534
0.00115505
0.00108606
0.00117284
0.00130883
0.00145282
0.0015895
0.00171371
0.00182454
0.00192261
0.00200927
0.00208572
0.00215358
0.00221419
0.00226869
0.00231811
0.00236326
0.00240481
0.0024433
0.00247916
0.00251272
0.00254424
0.00257392
0.00260195
0.0026285
0.00265373
0.00267769
0.00270032
0.00272145
0.00274109
0.00275974
0.00277846
0.00279888
0.00282127
0.00284742
0.00161709
0.00116016
0.00109787
0.00117584
0.00129384
0.00141691
0.00153183
0.00163472
0.00172456
0.00180222
0.00186869
0.00192482
0.0019712
0.00200841
0.00203707
0.0020579
0.00207178
0.00207971
0.00208271
0.00208182
0.00207794
0.00207189
0.00206434
0.00205581
0.00204673
0.00203745
0.00202827
0.00201946
0.00201126
0.00200372
0.00199676
0.00198981
0.00198271
0.00197292
0.00196828
0.00141208
0.000935316
0.000860904
0.000901011
0.000968313
0.00103801
0.00110307
0.00116145
0.00121295
0.00125821
0.00129807
0.00133337
0.00136486
0.00139317
0.00141887
0.00144245
0.0014643
0.00148474
0.00150403
0.00152239
0.00153997
0.00155689
0.00157327
0.00158924
0.00160491
0.00162032
0.00163529
0.00164951
0.0016627
0.0016751
0.00168787
0.00170288
0.00172167
0.00174356
0.00176441
0.00166925
0.00115112
0.000898031
0.000757487
0.000671903
0.000617154
0.000582826
0.000565332
0.000565265
0.000586022
0.000632464
0.000709383
0.000820607
0.000969024
0.00115612
0.0013805
0.00163701
0.00191732
0.0022116
0.00251021
0.00280498
0.00308979
0.00336062
0.00361523
0.00385278
0.00407344
0.00427804
0.0044678
0.0046442
0.00480874
0.00496285
0.00510773
0.00524448
0.00537298
0.00549574
0.00167382
0.00116299
0.000981673
0.000998136
0.0011426
0.00134961
0.0015813
0.0018202
0.00205578
0.00228128
0.00249295
0.00268923
0.00286995
0.00303575
0.00318768
0.00332696
0.00345485
0.00357259
0.00368133
0.00378213
0.00387591
0.00396349
0.00404562
0.00412303
0.00419641
0.00426619
0.00433241
0.00439464
0.00445253
0.0045068
0.00456022
0.00461723
0.00468175
0.00475201
0.0048212
0.000952107
0.000733326
0.000622305
0.000580882
0.000562599
0.00055322
0.00054831
0.000545891
0.000544924
0.000544805
0.00054519
0.000545857
0.000546646
0.000547429
0.000548108
0.000548607
0.000548877
0.000548895
0.000548657
0.000548179
0.000547485
0.000546606
0.000545577
0.000544432
0.000543201
0.000541916
0.000540601
0.000539281
0.000537969
0.000536677
0.000535397
0.000534143
0.000532838
0.000531749
0.000529858
0.00167069
0.00114996
0.000914495
0.000826202
0.000847685
0.000964315
0.00115179
0.00138294
0.00163834
0.00190402
0.00216959
0.00242796
0.00267491
0.00290828
0.00312729
0.00333206
0.00352319
0.0037015
0.00386787
0.00402319
0.0041683
0.00430401
0.0044311
0.0045503
0.00466234
0.00476784
0.00486724
0.00496071
0.00504832
0.00513053
0.00520874
0.00528545
0.00536363
0.00544381
0.00552594
0.00166892
0.00114613
0.000892142
0.000751205
0.000664888
0.000607859
0.000567932
0.000538715
0.000516647
0.000499686
0.000486697
0.000477154
0.000471007
0.000468632
0.000470819
0.000478771
0.000494087
0.00051873
0.000555024
0.00060571
0.000674029
0.000763661
0.000878359
0.00102136
0.00119481
0.00139928
0.0016337
0.0018953
0.00218003
0.00248296
0.00279888
0.00312279
0.00345034
0.00377785
0.00410031
0.00163323
0.00115404
0.00107278
0.00115305
0.00128924
0.00143888
0.00158449
0.00171906
0.00184039
0.00194862
0.00204483
0.00213043
0.00220684
0.00227535
0.00233711
0.00239314
0.00244432
0.0024914
0.00253504
0.00257577
0.00261403
0.00265016
0.00268451
0.00271739
0.0027491
0.00277979
0.00280931
0.00283718
0.00286298
0.0028871
0.00291144
0.00293912
0.00297294
0.0030119
0.00304991
0.00167216
0.00115502
0.000935645
0.000881923
0.000952654
0.00111407
0.00132901
0.00157225
0.00182767
0.00208378
0.00233258
0.00256924
0.00279156
0.00299891
0.00319145
0.00336988
0.00353512
0.00368813
0.00382984
0.00396111
0.00408273
0.00419542
0.00429986
0.00439672
0.00448669
0.00457041
0.00464847
0.00472126
0.00478906
0.00485223
0.0049116
0.00496864
0.00502555
0.00508316
0.00514452
0.000899348
0.00064097
0.000578386
0.000559797
0.000555861
0.000558361
0.000563504
0.000569644
0.000575883
0.000581801
0.00058717
0.000591813
0.000595599
0.000598431
0.000600263
0.000601102
0.000601006
0.00060007
0.000598417
0.000596179
0.000593488
0.000590463
0.000587209
0.000583812
0.000580347
0.000576877
0.000573462
0.000570149
0.000566976
0.000563941
0.000561016
0.000558084
0.000555169
0.000551759
0.000549641
0.000945481
0.000734834
0.00062375
0.000579206
0.000559405
0.000549397
0.000544013
0.000541222
0.000539978
0.000539685
0.000540011
0.000540757
0.000541806
0.000543083
0.000544539
0.000546137
0.000547851
0.000549658
0.000551539
0.000553477
0.000555459
0.000557472
0.000559506
0.000561555
0.000563609
0.000565658
0.000567686
0.000569681
0.000571641
0.000573592
0.000575576
0.000577634
0.00057975
0.000581725
0.000583855
0.00167144
0.00115179
0.0009182
0.000833424
0.000861216
0.000986376
0.0011825
0.00142176
0.00168501
0.00195832
0.00223119
0.00249643
0.00274973
0.00298886
0.00321291
0.00342186
0.00361613
0.00379655
0.00396409
0.00411977
0.0042646
0.00439951
0.00452541
0.00464316
0.00475359
0.0048574
0.00495501
0.00504642
0.0051315
0.00521075
0.00528619
0.00536156
0.00544117
0.00552555
0.00561241
0.00166997
0.00115494
0.00090376
0.000769465
0.000700449
0.000682452
0.000717166
0.000809229
0.000956629
0.00115047
0.00137928
0.00163042
0.00189093
0.00214918
0.00239602
0.00262499
0.00283211
0.00301547
0.0031748
0.00331106
0.00342604
0.00352199
0.00360137
0.0036666
0.00372002
0.00376377
0.0037998
0.00382986
0.00385546
0.00387771
0.00389727
0.00391417
0.00392828
0.00393859
0.00394869
0.00166905
0.00114841
0.00089479
0.000754078
0.000668296
0.000612909
0.000576988
0.000556184
0.000550062
0.000560859
0.000592468
0.000649181
0.000734624
0.000851521
0.00100154
0.00118427
0.00139621
0.00163116
0.00188134
0.00213992
0.00240164
0.00266261
0.00292049
0.00317393
0.00342215
0.00366467
0.00390111
0.00413122
0.0043548
0.00457171
0.00478189
0.0049855
0.00518298
0.00537454
0.00556093
0.00155619
0.00106838
0.000985295
0.00104748
0.00115319
0.00126533
0.00137125
0.001467
0.00155199
0.00162692
0.00169291
0.00175109
0.00180259
0.0018485
0.00188981
0.00192734
0.00196174
0.00199355
0.00202323
0.00205112
0.00207749
0.00210253
0.00212642
0.0021493
0.00217133
0.00219257
0.00221298
0.00223234
0.00225046
0.00226741
0.00228398
0.0023016
0.00232185
0.00234458
0.00236885
0.0016086
0.00114873
0.00108972
0.00117006
0.00128746
0.00140674
0.00151693
0.00161493
0.00170143
0.00177747
0.00184454
0.00190399
0.00195694
0.00200437
0.00204716
0.00208602
0.00212153
0.00215413
0.00218418
0.00221196
0.00223769
0.00226155
0.0022837
0.00230426
0.0023234
0.00234125
0.00235797
0.00237362
0.00238825
0.00240185
0.00241462
0.00242685
0.00243962
0.00245228
0.00247246
0.00166918
0.00114768
0.000894539
0.000756321
0.000677727
0.000639023
0.000636579
0.000674727
0.000759308
0.000892356
0.00107106
0.00128973
0.00154016
0.00181209
0.00209517
0.00238072
0.00266244
0.00293619
0.0031995
0.00345103
0.00369015
0.00391673
0.00413096
0.0043333
0.00452435
0.00470489
0.00487564
0.00503716
0.00518987
0.00533431
0.00547173
0.00560449
0.00573587
0.00586783
0.00600132
0.00144197
0.00098959
0.000935079
0.000986341
0.00106003
0.00113388
0.0012019
0.00126273
0.0013165
0.0013639
0.00140568
0.00144257
0.00147533
0.00150469
0.00153121
0.00155533
0.00157738
0.00159763
0.00161628
0.00163349
0.0016494
0.00166412
0.00167776
0.00169042
0.00170223
0.00171329
0.00172363
0.00173314
0.00174167
0.00174919
0.00175621
0.00176373
0.00177356
0.00178519
0.00180401
0.00166888
0.00114506
0.000890863
0.000749855
0.000663544
0.000606532
0.000566592
0.000537288
0.000514987
0.000497532
0.000483602
0.000472393
0.000463452
0.000456601
0.000451911
0.000449698
0.000450542
0.000455305
0.000465131
0.000481434
0.000505884
0.000540415
0.000587303
0.000649253
0.000729392
0.000831066
0.000957458
0.00111116
0.0012938
0.00150575
0.00174603
0.00201232
0.00230117
0.0026083
0.00292619
0.00127096
0.000836525
0.00077956
0.000808645
0.000852892
0.000897917
0.00094007
0.000978117
0.00101185
0.00104166
0.00106807
0.00109158
0.00111263
0.00113161
0.0011488
0.00116445
0.00117871
0.0011917
0.00120349
0.00121416
0.00122379
0.00123243
0.00124017
0.00124709
0.00125327
0.00125881
0.00126381
0.00126838
0.00127259
0.00127651
0.00128018
0.00128356
0.00128702
0.00128966
0.00129642
0.00107438
0.0007007
0.00066334
0.000687691
0.000721096
0.000754485
0.000785171
0.000812442
0.000836158
0.000856467
0.000873321
0.000886636
0.000896313
0.000902376
0.000905031
0.000904628
0.00090159
0.000896398
0.000889557
0.00088151
0.000872643
0.000863271
0.000853636
0.000843923
0.000834275
0.00082481
0.000815644
0.000806889
0.000798604
0.000790691
0.000782855
0.000774456
0.000765281
0.000754392
0.000746488
0.00123243
0.000840664
0.000775892
0.000781335
0.000804279
0.000831779
0.000859386
0.00088516
0.000908536
0.000929542
0.000948418
0.000965464
0.000980986
0.000995262
0.00100853
0.00102096
0.00103273
0.00104394
0.00105472
0.00106512
0.00107521
0.00108502
0.00109459
0.00110397
0.00111321
0.00112231
0.00113114
0.00113948
0.00114712
0.00115423
0.0011616
0.00117043
0.00118183
0.00119506
0.00120823
0.000750194
0.000508166
0.000456834
0.000443934
0.000442878
0.000446466
0.000451804
0.00045755
0.000463114
0.000468218
0.000472608
0.000476072
0.000478447
0.000479643
0.000479663
0.000478586
0.000476543
0.000473696
0.000470219
0.000466276
0.000462014
0.000457555
0.000452998
0.000448416
0.000443872
0.000439416
0.000435099
0.000430963
0.000427024
0.000423224
0.000419427
0.000415403
0.000411083
0.000406401
0.000402703
0.00167608
0.00118579
0.00104785
0.00111128
0.00128167
0.00149614
0.00172297
0.001945
0.00215263
0.00234111
0.00250843
0.00265395
0.00277725
0.00287907
0.0029605
0.00302318
0.00306922
0.00310105
0.00312114
0.00313189
0.00313543
0.0031336
0.00312791
0.00311956
0.00310951
0.00309854
0.00308732
0.00307641
0.00306619
0.00305682
0.00304807
0.00303907
0.00302911
0.00301622
0.00300509
0.00167118
0.0011552
0.000922963
0.0008404
0.000872341
0.00100203
0.00120135
0.00144202
0.00170364
0.00197141
0.00223443
0.00248531
0.00271919
0.00293361
0.00312738
0.00330023
0.00345257
0.00358546
0.00370041
0.00379923
0.00388393
0.00395648
0.00401883
0.00407272
0.00411974
0.00416124
0.0041984
0.00423217
0.0042633
0.00429237
0.00431983
0.00434599
0.00437163
0.0043962
0.00442569
0.00166925
0.00115131
0.000898112
0.000757597
0.000672211
0.000617987
0.000584791
0.000569411
0.000572812
0.000598505
0.000650934
0.000734057
0.000850987
0.00100428
0.0011952
0.00142238
0.00168038
0.00196089
0.0022543
0.0025513
0.00284406
0.00312674
0.0033955
0.00364826
0.00388427
0.00410375
0.00430753
0.00449679
0.00467285
0.00483704
0.00499064
0.00513487
0.0052712
0.00540025
0.00552588
0.00161289
0.00114166
0.00107142
0.00114966
0.00127428
0.00140707
0.0015337
0.00164887
0.00175139
0.00184193
0.00192185
0.00199259
0.00205555
0.00211192
0.00216274
0.00220887
0.00225105
0.0022899
0.00232596
0.00235968
0.00239142
0.00242145
0.00245005
0.00247748
0.00250399
0.00252969
0.00255443
0.00257773
0.00259917
0.00261905
0.00263913
0.00266232
0.00269137
0.00272512
0.00275967
0.00158132
0.0011294
0.00107716
0.00115096
0.00125537
0.00136131
0.00145999
0.00154875
0.00162729
0.00169636
0.00175696
0.0018105
0.00185813
0.00190083
0.00193942
0.00197454
0.00200675
0.00203648
0.0020641
0.0020899
0.00211411
0.00213692
0.0021585
0.00217901
0.00219863
0.00221746
0.00223542
0.00225216
0.00226732
0.002281
0.00229435
0.00230955
0.00232912
0.00235272
0.00237995
0.00167279
0.00117257
0.00102275
0.00107706
0.00124182
0.00145116
0.00167495
0.00189869
0.00211394
0.00231599
0.00250275
0.00267367
0.00282908
0.00296972
0.00309651
0.00321039
0.00331229
0.00340308
0.00348361
0.00355477
0.00361748
0.00367265
0.00372121
0.00376408
0.00380211
0.00383609
0.00386669
0.00389434
0.00391928
0.00394177
0.00396247
0.00398264
0.00400457
0.00402877
0.00406071
0.00165985
0.00119263
0.00112068
0.00121337
0.00136172
0.00152275
0.00167892
0.00182281
0.00195282
0.00206917
0.00217303
0.00226577
0.00234875
0.00242325
0.00249039
0.00255114
0.00260627
0.00265644
0.00270216
0.00274389
0.00278199
0.00281679
0.00284859
0.00287768
0.00290433
0.00292885
0.0029515
0.0029725
0.002992
0.00301009
0.00302699
0.00304306
0.00305939
0.00307542
0.00309865
0.00166883
0.00114338
0.000889002
0.00074796
0.000661673
0.000604702
0.000564799
0.000535515
0.000513203
0.000495679
0.000481574
0.000470001
0.000460375
0.000452311
0.000445574
0.000440048
0.000435726
0.000432712
0.00043123
0.000431638
0.000434447
0.000440333
0.000450152
0.000464949
0.000485987
0.000514791
0.000553222
0.000603517
0.000668221
0.000749949
0.000851022
0.000973089
0.0011168
0.00128159
0.00146247
0.00116932
0.000779999
0.000740647
0.000766984
0.000803921
0.000842404
0.000878964
0.000911767
0.000940105
0.00096381
0.000982969
0.000997487
0.00100728
0.00101246
0.00101338
0.00101055
0.00100463
0.000996252
0.000986023
0.000974529
0.000962246
0.000949531
0.00093664
0.000923766
0.000911054
0.000898661
0.000886761
0.00087552
0.000864989
0.000854883
0.000844462
0.000832498
0.000818327
0.000801715
0.000788261
0.00111292
0.000739126
0.000696196
0.000715496
0.000746689
0.000780141
0.000811681
0.000839836
0.000864278
0.000884765
0.000901277
0.000913715
0.000921992
0.000926183
0.000926566
0.000923588
0.000917808
0.000909816
0.000900162
0.000889367
0.000877853
0.000865941
0.000853873
0.000841864
0.000830105
0.000818777
0.000808013
0.000797813
0.000787943
0.000777868
0.000766929
0.000754687
0.000741996
0.000730342
0.000725721
0.00167325
0.00116276
0.000970189
0.000963853
0.00108376
0.00127508
0.00150098
0.00174128
0.00198249
0.00221561
0.00243546
0.00263963
0.00282749
0.00299935
0.00315593
0.00329801
0.00342636
0.00354176
0.003645
0.00373694
0.00381851
0.00389068
0.00395446
0.00401087
0.00406092
0.00410558
0.0041458
0.00418241
0.00421611
0.00424745
0.00427689
0.00430471
0.00433164
0.00435682
0.00438651
0.00110616
0.000722461
0.000665243
0.000672277
0.000692922
0.000716562
0.000739686
0.000760643
0.000779498
0.000796444
0.000811732
0.000825599
0.000838258
0.000849903
0.000860707
0.000870806
0.000880302
0.000889257
0.000897712
0.000905694
0.000913217
0.000920292
0.000926927
0.000933136
0.000938941
0.000944374
0.000949469
0.000954252
0.000958739
0.000962927
0.000966869
0.000970593
0.000974543
0.000978027
0.000985235
0.00166894
0.00114618
0.000892252
0.000751385
0.000665264
0.000608906
0.000570692
0.000545199
0.000530414
0.000526572
0.000535551
0.000560318
0.000604268
0.000670695
0.000762715
0.000883309
0.00103469
0.00121717
0.00142844
0.00166375
0.00191685
0.00218111
0.00245054
0.00272031
0.00298696
0.00324825
0.00350284
0.00375005
0.00398951
0.00422121
0.0044456
0.0046639
0.004878
0.00508952
0.00529776
0.00167518
0.00117071
0.00100341
0.00103652
0.00119026
0.00139854
0.00162616
0.00185613
0.00207888
0.00228921
0.00248474
0.00266486
0.00282997
0.00298093
0.00311883
0.00324473
0.00335963
0.00346443
0.00355994
0.0036469
0.00372601
0.0037979
0.00386321
0.00392257
0.00397661
0.00402596
0.00407125
0.00411299
0.00415157
0.00418734
0.00422075
0.00425245
0.00428375
0.00431457
0.0043512
0.00166572
0.00117776
0.00107375
0.00115764
0.00131779
0.00150347
0.00169184
0.00187139
0.00203704
0.0021874
0.00232289
0.00244465
0.00255413
0.00265279
0.002742
0.00282299
0.00289687
0.00296464
0.00302716
0.00308521
0.00313939
0.00319023
0.00323821
0.0032838
0.00332743
0.00336936
0.00340947
0.00344722
0.00348214
0.00351469
0.00354718
0.0035835
0.0036272
0.00367698
0.00372677
0.00166915
0.00114913
0.000895845
0.000755753
0.000671855
0.00062123
0.000595583
0.00059445
0.000622014
0.000684117
0.000785085
0.000926254
0.00110639
0.00132163
0.00156502
0.00182747
0.00209966
0.00237363
0.00264347
0.00290536
0.00315719
0.003398
0.00362765
0.00384645
0.00405498
0.00425387
0.00444377
0.00462524
0.00479872
0.0049646
0.00512345
0.00527628
0.00542482
0.00557044
0.00571534
0.00164494
0.00116437
0.00107204
0.00113859
0.00126349
0.00140655
0.00154958
0.00168393
0.00180595
0.00191493
0.00201136
0.00209625
0.00217072
0.00223569
0.00229192
0.00234003
0.00238063
0.00241438
0.00244195
0.0024641
0.00248158
0.00249514
0.00250548
0.00251323
0.00251897
0.0025232
0.00252642
0.00252906
0.00253151
0.00253397
0.00253649
0.00253867
0.0025404
0.00253955
0.0025428
0.000910619
0.000615938
0.000557075
0.00054538
0.00054789
0.000555751
0.000565367
0.00057517
0.000584602
0.000593478
0.000601763
0.000609472
0.000616664
0.000623423
0.000629836
0.00063598
0.000641918
0.000647693
0.000653335
0.000658861
0.000664277
0.000669581
0.000674767
0.000679833
0.000684778
0.000689598
0.000694274
0.000698766
0.000703028
0.000707055
0.000710956
0.000714933
0.000719321
0.000723996
0.000729514
0.00166897
0.00114731
0.000893537
0.000752658
0.000666328
0.000609305
0.000569482
0.00054058
0.000519228
0.000503699
0.000493337
0.000488317
0.000489545
0.000498594
0.000517624
0.000549247
0.000596434
0.000662549
0.000751426
0.000867109
0.00101316
0.00119175
0.00140306
0.00164506
0.00191379
0.00220394
0.00250952
0.00282455
0.00314369
0.00346253
0.00377767
0.00408673
0.00438819
0.00468097
0.00496337
0.00166904
0.00114705
0.000893239
0.00075306
0.000669324
0.000619113
0.000594273
0.000594532
0.00062413
0.000688529
0.000791155
0.000932478
0.0011111
0.00132368
0.00156415
0.00182434
0.00209579
0.00237133
0.00264572
0.00291548
0.00317836
0.00343286
0.003678
0.0039132
0.00413824
0.00435319
0.00455831
0.00475391
0.00494027
0.00511785
0.00528757
0.00545105
0.00561049
0.00576744
0.00592197
0.00166959
0.00114796
0.000898047
0.000771448
0.000719971
0.000732844
0.000810539
0.000949025
0.00113749
0.00136425
0.00161809
0.00188774
0.00216315
0.00243675
0.00270353
0.00296048
0.00320594
0.00343907
0.0036596
0.00386762
0.00406351
0.0042478
0.0044211
0.00458409
0.0047375
0.00488202
0.00501825
0.00514656
0.00526732
0.00538105
0.00548887
0.00559276
0.00569528
0.00579767
0.00590074
0.00160678
0.0011441
0.00108416
0.001167
0.00128918
0.00141462
0.00153163
0.00163686
0.0017302
0.00181243
0.00188498
0.00194908
0.0020059
0.00205663
0.00210236
0.00214392
0.00218198
0.00221707
0.00224964
0.00228003
0.00230849
0.00233523
0.00236039
0.00238412
0.00240655
0.00242783
0.002448
0.00246706
0.00248488
0.00250144
0.00251709
0.00253259
0.00254932
0.00256732
0.00259031
0.000887694
0.000603342
0.00054417
0.000530265
0.00053044
0.000536538
0.000544839
0.000553697
0.000562292
0.000570267
0.000577493
0.000583892
0.0005894
0.000593965
0.000597562
0.00060019
0.000601882
0.000602707
0.000602763
0.000602159
0.000601014
0.000599438
0.000597535
0.000595394
0.000593097
0.000590716
0.000588322
0.000585975
0.000583722
0.000581571
0.000579496
0.000577362
0.000575176
0.000572329
0.000570721
0.00167676
0.00118728
0.00105341
0.00112567
0.0013039
0.00152156
0.00174804
0.0019678
0.00217224
0.0023568
0.00251952
0.00266
0.00277795
0.00287387
0.00294895
0.003005
0.00304436
0.00306963
0.00308343
0.00308825
0.00308626
0.00307929
0.00306884
0.00305606
0.00304188
0.00302706
0.00301225
0.00299798
0.0029846
0.00297213
0.00296017
0.00294771
0.00293399
0.00291737
0.00290325
0.00165953
0.00120229
0.00113902
0.0012313
0.00137366
0.00152723
0.0016757
0.0018115
0.00193197
0.0020378
0.00212989
0.0022091
0.00227613
0.00233164
0.00237634
0.00241104
0.00243675
0.0024546
0.00246585
0.0024717
0.00247332
0.00247172
0.00246778
0.00246219
0.00245555
0.00244833
0.00244096
0.00243381
0.00242721
0.00242128
0.00241593
0.00241053
0.00240473
0.00239598
0.00239132
0.00162297
0.00114928
0.00106651
0.00113048
0.00124395
0.00137041
0.00149447
0.00160891
0.00171118
0.00180133
0.00188019
0.00194862
0.00200739
0.00205713
0.00209841
0.00213179
0.00215794
0.00217764
0.00219174
0.00220114
0.00220672
0.00220927
0.0022095
0.00220802
0.00220534
0.00220189
0.0021981
0.00219432
0.00219085
0.00218782
0.00218516
0.00218231
0.00217888
0.00217273
0.00216889
0.00164851
0.00116703
0.00107936
0.00116375
0.00131139
0.00147723
0.00164161
0.00179566
0.00193597
0.00206209
0.00217488
0.00227569
0.00236594
0.00244703
0.00252021
0.0025866
0.00264718
0.00270282
0.00275425
0.00280212
0.00284695
0.00288915
0.00292912
0.00296725
0.0030039
0.00303926
0.0030732
0.00310521
0.00313482
0.00316242
0.00319009
0.00322132
0.00325933
0.0033031
0.00334644
0.0016727
0.00115987
0.000949323
0.00091335
0.00101035
0.00119816
0.00143338
0.00168889
0.00194852
0.00220166
0.00244162
0.0026646
0.00286854
0.00305246
0.00321602
0.00335957
0.00348394
0.00359044
0.00368072
0.00375662
0.0038201
0.00387304
0.00391724
0.00395431
0.00398567
0.00401259
0.00403618
0.00405744
0.0040772
0.004096
0.0041141
0.00413115
0.00414687
0.00415928
0.00417388
0.001674
0.0011928
0.00108087
0.00117098
0.00135188
0.00156243
0.0017768
0.00198179
0.00216995
0.00233705
0.00248029
0.00259821
0.00269095
0.00275976
0.00280685
0.0028351
0.00284772
0.00284792
0.00283864
0.00282241
0.00280131
0.00277694
0.00275055
0.00272311
0.00269545
0.0026683
0.00264225
0.00261753
0.00259376
0.0025697
0.0025435
0.0025136
0.00248094
0.00244979
0.00243258
0.00167027
0.00115537
0.000908128
0.00078603
0.00074413
0.000773635
0.000872459
0.0010309
0.00123437
0.00146854
0.00171874
0.00197072
0.00221285
0.00243782
0.00264186
0.00282401
0.00298463
0.00312458
0.00324507
0.00334754
0.00343366
0.00350528
0.00356428
0.00361256
0.0036519
0.00368395
0.0037102
0.00373201
0.00375054
0.00376676
0.00378124
0.00379397
0.00380463
0.00381186
0.0038188
0.00166944
0.00117781
0.00106215
0.00114316
0.00130988
0.00150617
0.00170792
0.00190298
0.0020853
0.00225252
0.00240437
0.00254162
0.00266554
0.00277751
0.00287895
0.00297117
0.00305539
0.00313268
0.00320402
0.00327021
0.00333195
0.00338982
0.00344437
0.0034961
0.0035455
0.00359285
0.00363802
0.00368053
0.00371997
0.00375694
0.0037939
0.00383473
0.00388278
0.00393655
0.00398845
0.00157789
0.00110885
0.00103241
0.00109124
0.00118999
0.00129634
0.00139864
0.00149212
0.00157512
0.00164841
0.00171296
0.00176979
0.0018199
0.00186413
0.00190317
0.00193753
0.00196762
0.00199379
0.00201636
0.00203567
0.00205206
0.00206589
0.00207748
0.00208716
0.00209527
0.0021021
0.00210796
0.00211313
0.00211787
0.00212233
0.0021266
0.0021305
0.00213431
0.00213637
0.00214436
0.000890749
0.000576731
0.000528818
0.000525782
0.000535101
0.000548875
0.000563025
0.000576248
0.000588127
0.00059846
0.000607041
0.00061364
0.00061811
0.000620416
0.000620644
0.000618991
0.000615726
0.00061116
0.000605602
0.000599334
0.000592597
0.000585584
0.000578447
0.000571312
0.000564285
0.000557464
0.00055093
0.000544711
0.000538747
0.000532847
0.000526752
0.000520199
0.000513474
0.000506647
0.000503134
0.00167057
0.00115537
0.000911083
0.000796813
0.000771312
0.000827377
0.000958326
0.00114716
0.0013748
0.00162498
0.00188315
0.002137
0.00237741
0.00259861
0.00279755
0.00297322
0.00312596
0.00325702
0.0033682
0.00346156
0.0035393
0.00360358
0.00365647
0.00369987
0.00373549
0.00376489
0.00378945
0.00381043
0.00382891
0.00384568
0.00386113
0.00387503
0.00388703
0.0038956
0.0039045
0.00167012
0.00114816
0.000904318
0.000794816
0.000778173
0.000845502
0.000986958
0.0011839
0.00141861
0.00167698
0.00194673
0.00221789
0.00248344
0.00273901
0.00298217
0.00321187
0.00342792
0.00363061
0.00382055
0.00399852
0.00416538
0.004322
0.00446924
0.00460795
0.00473895
0.00486295
0.00498035
0.00509121
0.00519555
0.00529395
0.00538835
0.00548205
0.00557855
0.00567799
0.00577672
0.00167416
0.00116757
0.00097128
0.000957106
0.00107269
0.00126582
0.00149708
0.00174411
0.00199181
0.0022292
0.00244912
0.00264723
0.00282107
0.00296985
0.00309399
0.00319495
0.00327492
0.00333655
0.00338262
0.00341589
0.00343887
0.00345378
0.0034625
0.00346658
0.00346732
0.00346577
0.00346284
0.00345932
0.00345583
0.00345268
0.00344981
0.00344652
0.00344211
0.00343474
0.00342862
0.000756539
0.000509268
0.000457798
0.000446807
0.000448182
0.000453734
0.000460293
0.00046675
0.000472739
0.000478164
0.000483049
0.000487357
0.00049102
0.000493971
0.000496169
0.000497603
0.000498296
0.0004983
0.000497692
0.000496562
0.000495008
0.000493125
0.000491001
0.000488714
0.00048633
0.000483903
0.000481477
0.000479093
0.000476779
0.000474544
0.000472386
0.000470234
0.000468137
0.000465729
0.000464305
0.00167106
0.00117146
0.00103282
0.00109938
0.00127025
0.00148032
0.00169937
0.00191288
0.00211368
0.00229877
0.00246747
0.00262034
0.0027586
0.00288372
0.00299723
0.00310057
0.00319505
0.00328183
0.00336193
0.00343619
0.00350531
0.00356987
0.00363036
0.00368724
0.00374094
0.00379177
0.00383986
0.0038851
0.00392732
0.00396676
0.00400463
0.0040431
0.00408464
0.00412932
0.0041758
0.00112289
0.000798592
0.000744298
0.000742775
0.000753664
0.000768768
0.000784384
0.000799196
0.000812623
0.000824562
0.000834966
0.000843766
0.000850856
0.000856161
0.00085968
0.00086148
0.00086169
0.000860492
0.000858099
0.000854734
0.000850616
0.000845948
0.000840905
0.000835634
0.000830254
0.000824864
0.000819546
0.000814372
0.0008094
0.000804638
0.000800055
0.00079544
0.000790864
0.000785388
0.00078254
0.00167063
0.00115292
0.000914929
0.000818531
0.0008254
0.000923541
0.00109444
0.0013144
0.00156437
0.00182931
0.00209718
0.00235933
0.00261004
0.00284579
0.0030644
0.00326462
0.00344591
0.00360844
0.00375299
0.00388072
0.00399318
0.00409212
0.00417929
0.0042564
0.00432503
0.00438661
0.00444246
0.00449376
0.0045415
0.00458649
0.00462928
0.00467007
0.00470913
0.00474532
0.00478306
0.00103099
0.000708492
0.000644888
0.000633685
0.000638136
0.000648527
0.00066105
0.000673877
0.000686121
0.000697545
0.000708139
0.000717943
0.000727066
0.00073563
0.000743743
0.000751492
0.000758948
0.000766162
0.000773172
0.000779998
0.000786654
0.000793141
0.000799467
0.000805648
0.000811701
0.000817623
0.000823346
0.00082874
0.000833693
0.000838265
0.000842883
0.000848216
0.00085505
0.000862779
0.000872031
0.000837932
0.000586744
0.000524634
0.000507036
0.000503929
0.000506264
0.000510675
0.000515788
0.000521022
0.000526196
0.000531211
0.000536028
0.000540651
0.000545103
0.000549413
0.00055361
0.000557712
0.000561727
0.000565657
0.000569496
0.000573236
0.000576865
0.000580373
0.000583751
0.000586997
0.000590111
0.000593092
0.00059593
0.000598614
0.000601136
0.000603535
0.000605874
0.000608358
0.000610809
0.000614288
0.00153243
0.00107259
0.00101738
0.00108799
0.00119043
0.00129376
0.00138886
0.0014738
0.00154885
0.00161495
0.00167313
0.00172445
0.00176993
0.00181044
0.00184671
0.00187928
0.00190861
0.00193505
0.00195887
0.00198033
0.00199966
0.00201706
0.00203274
0.00204691
0.00205978
0.00207154
0.00208231
0.00209208
0.00210077
0.00210837
0.00211533
0.00212251
0.00213173
0.00214256
0.00216142
0.00164669
0.00118106
0.0011111
0.00119829
0.0013395
0.00149424
0.00164542
0.00178589
0.00191321
0.00202723
0.00212862
0.00221866
0.00229892
0.00237077
0.00243534
0.00249353
0.00254614
0.00259379
0.00263702
0.00267629
0.00271201
0.00274455
0.00277425
0.00280144
0.00282646
0.0028496
0.00287102
0.00289066
0.00290831
0.00292399
0.00293851
0.00295362
0.00297205
0.00299412
0.00302352
0.000884416
0.000681918
0.000578545
0.000538375
0.000520244
0.000510879
0.000505965
0.000503553
0.000502596
0.00050249
0.000502903
0.000503638
0.000504565
0.000505588
0.000506628
0.000507619
0.000508509
0.00050926
0.000509847
0.00051026
0.0005105
0.000510576
0.000510503
0.000510302
0.000509993
0.000509598
0.000509139
0.000508637
0.000508105
0.000507557
0.000506991
0.000506418
0.000505793
0.000505267
0.000504312
0.00166954
0.00114885
0.000898359
0.000768566
0.000709929
0.000710179
0.000770201
0.000889274
0.00106002
0.00127269
0.00151747
0.00178365
0.00206048
0.0023388
0.00261184
0.00287516
0.00312607
0.00336306
0.0035854
0.00379288
0.00398563
0.00416421
0.00432945
0.0044823
0.00462384
0.00475525
0.00487764
0.00499207
0.00509945
0.00520058
0.0052963
0.00538762
0.00547594
0.00556201
0.00564874
0.000963669
0.000754468
0.000643596
0.000601085
0.00058209
0.000572134
0.000566764
0.000563958
0.000562611
0.000562107
0.00056206
0.000562198
0.000562317
0.000562262
0.000561932
0.00056127
0.000560256
0.000558904
0.000557246
0.000555329
0.000553205
0.000550924
0.000548536
0.000546082
0.000543597
0.000541113
0.000538654
0.000536242
0.000533888
0.000531595
0.000529346
0.00052715
0.000524919
0.000523053
0.00052035
0.000950595
0.000738697
0.000625819
0.000583701
0.000565251
0.0005557
0.000550643
0.000548049
0.000546852
0.000546468
0.000546531
0.00054677
0.000546986
0.000547028
0.000546793
0.000546221
0.000545296
0.000544029
0.000542456
0.000540625
0.000538588
0.000536398
0.000534102
0.000531743
0.000529358
0.000526977
0.000524625
0.000522319
0.000520068
0.000517871
0.000515714
0.000513612
0.000511488
0.000509741
0.00050714
0.000956851
0.000654767
0.000590355
0.000576346
0.000578005
0.00058555
0.000595122
0.000605059
0.000614711
0.000623856
0.000632426
0.000640399
0.000647826
0.000654794
0.000661381
0.00066764
0.00067361
0.000679318
0.000684775
0.000689987
0.000694957
0.000699683
0.000704169
0.000708425
0.000712468
0.00071631
0.000719938
0.000723303
0.00072635
0.000729088
0.000731709
0.000734553
0.000738155
0.000742278
0.000747922
0.00167142
0.00117732
0.00105163
0.00113063
0.00130727
0.00151766
0.0017337
0.00194231
0.00213728
0.00231612
0.00247849
0.00262516
0.00275746
0.00287698
0.00298528
0.00308384
0.00317379
0.00325635
0.00333249
0.00340299
0.00346851
0.00352956
0.00358661
0.00364008
0.00369034
0.00373772
0.00378241
0.00382438
0.00386351
0.00389994
0.00393459
0.00396919
0.004006
0.00404539
0.00408797
0.00114266
0.000764228
0.000712628
0.000721198
0.000741118
0.000763896
0.000786488
0.000807558
0.00082646
0.000843072
0.000857421
0.000869512
0.000879333
0.000886884
0.000892223
0.000895466
0.000896796
0.000896452
0.000894702
0.000891821
0.000888072
0.000883686
0.000878861
0.00087376
0.000868518
0.000863249
0.000858061
0.000853047
0.000848283
0.000843777
0.000839488
0.000835169
0.000830913
0.000825351
0.000823272
0.00108313
0.000708862
0.000648588
0.000647312
0.00065982
0.000676772
0.000694587
0.00071168
0.000727335
0.0007413
0.000753559
0.000764114
0.000772947
0.000780051
0.00078545
0.000789204
0.000791424
0.000792268
0.000791925
0.000790599
0.000788487
0.000785776
0.000782626
0.000779173
0.000775537
0.000771819
0.00076812
0.000764525
0.000761105
0.000757871
0.000754787
0.000751641
0.000748477
0.000744185
0.000742509
0.00166887
0.00114486
0.000890485
0.0007494
0.000663066
0.000606046
0.000566101
0.000536792
0.000514489
0.000497045
0.00048316
0.000472079
0.000463448
0.000457262
0.00045388
0.000454051
0.000458944
0.000470129
0.0004895
0.000519134
0.000561177
0.00061786
0.00069159
0.000784912
0.000900148
0.00103889
0.00120159
0.00138744
0.00159451
0.00181999
0.00206063
0.00231319
0.00257472
0.00284275
0.00311312
0.00107797
0.000706116
0.000655111
0.00066359
0.000685412
0.000709991
0.000733956
0.000756171
0.000776364
0.0007946
0.000811036
0.000825842
0.000839253
0.000851516
0.000862831
0.000873347
0.000883174
0.000892392
0.000901054
0.000909196
0.000916846
0.000924025
0.000930757
0.000937074
0.000943015
0.000948616
0.000953875
0.000958731
0.000963103
0.00096698
0.000970631
0.000974536
0.000979662
0.000985469
0.000995278
0.0016696
0.0011537
0.000901244
0.000762453
0.000681854
0.000638896
0.000628442
0.000653238
0.000718754
0.000828649
0.000983172
0.00118018
0.00141485
0.00167854
0.00195934
0.00224438
0.00252214
0.00278397
0.00302442
0.00324091
0.00343304
0.0036019
0.00374946
0.00387807
0.00399026
0.00408844
0.00417487
0.00425159
0.0043204
0.00438285
0.00444017
0.00449318
0.00454257
0.00458764
0.0046321
0.00093382
0.000586718
0.000539109
0.000544147
0.000561312
0.000581233
0.000600635
0.000618633
0.000635008
0.00064981
0.00066315
0.00067518
0.000686086
0.000696056
0.000705244
0.000713763
0.000721696
0.000729099
0.000736009
0.000742452
0.000748449
0.000754019
0.000759184
0.000763974
0.000768426
0.000772576
0.000776434
0.000779972
0.00078314
0.000785927
0.00078852
0.000791226
0.000794827
0.00079876
0.000806609
0.00154007
0.00106745
0.000997316
0.00105904
0.00115464
0.00125301
0.00134474
0.00142711
0.00149992
0.00156397
0.00162038
0.00167023
0.00171449
0.00175398
0.00178939
0.00182126
0.00184997
0.00187585
0.00189914
0.00192007
0.00193883
0.00195562
0.00197062
0.00198402
0.00199601
0.00200679
0.00201656
0.0020255
0.00203378
0.00204147
0.0020487
0.00205545
0.00206227
0.0020681
0.00207954
0.000912109
0.000699755
0.00059708
0.000558208
0.000540927
0.000532073
0.00052732
0.000524889
0.00052385
0.000523685
0.000524102
0.000524917
0.000526013
0.000527316
0.000528775
0.000530347
0.000531995
0.000533687
0.000535395
0.000537094
0.000538765
0.000540391
0.000541962
0.00054347
0.000544912
0.000546283
0.00054758
0.000548796
0.000549931
0.000550999
0.000552029
0.000553078
0.000554154
0.000555255
0.000556136
0.00153847
0.00106808
0.000994352
0.00104369
0.00112534
0.00121216
0.0012948
0.00136968
0.0014357
0.00149324
0.00154308
0.00158589
0.00162217
0.00165235
0.00167682
0.00169596
0.00171024
0.00172022
0.0017265
0.00172971
0.00173045
0.00172926
0.00172663
0.00172296
0.00171859
0.00171382
0.00170892
0.00170417
0.00169975
0.00169576
0.0016921
0.00168826
0.00168404
0.00167722
0.00167438
0.00159928
0.00115368
0.00110308
0.00117531
0.00127881
0.00138486
0.00148423
0.00157395
0.0016535
0.00172357
0.00178523
0.00183975
0.00188826
0.00193176
0.00197108
0.00200688
0.00203973
0.00207009
0.00209834
0.0021248
0.00214971
0.00217326
0.00219563
0.00221699
0.00223755
0.00225737
0.00227633
0.00229401
0.00231002
0.00232455
0.00233905
0.00235601
0.00237802
0.00240423
0.00243287
0.00167176
0.00115353
0.000933288
0.000879324
0.000951973
0.00111767
0.00133735
0.00158452
0.00184291
0.00210087
0.00235051
0.00258727
0.00280912
0.00301556
0.00320689
0.00338405
0.00354813
0.00370022
0.00384137
0.00397254
0.00409459
0.00420829
0.00431435
0.00441344
0.00450622
0.00459327
0.00467501
0.00475161
0.00482318
0.00489006
0.00495344
0.00501546
0.00507878
0.00514399
0.00521205
0.00167251
0.001164
0.000959731
0.000932976
0.00103694
0.00122381
0.00145285
0.00169952
0.00194668
0.00218125
0.00239365
0.00257732
0.00273029
0.00285299
0.00294741
0.00301653
0.00306385
0.00309299
0.00310738
0.00311013
0.00310391
0.00309095
0.00307305
0.00305162
0.00302781
0.00300261
0.00297697
0.00295179
0.00292756
0.00290384
0.00287889
0.00284967
0.00281367
0.00277148
0.00273292
0.00167295
0.00116556
0.000965143
0.000946106
0.00105924
0.00125233
0.00148365
0.00172967
0.0019744
0.00220571
0.00241481
0.00259552
0.00274577
0.00286604
0.0029583
0.0030255
0.00307113
0.00309877
0.00311185
0.00311342
0.00310612
0.00309212
0.00307324
0.00305098
0.00302661
0.00300133
0.00297604
0.00295121
0.00292654
0.00290079
0.00287209
0.00283909
0.00280325
0.00277044
0.0027535
0.00163961
0.00116234
0.00108293
0.00117044
0.00131595
0.0014751
0.00162956
0.00177205
0.00190043
0.00201481
0.0021163
0.00220626
0.00228624
0.0023577
0.00242187
0.00248001
0.0025331
0.0025819
0.00262705
0.00266908
0.00270839
0.00274532
0.00278011
0.00281302
0.00284426
0.00287401
0.00290231
0.00292904
0.002954
0.00297722
0.00299941
0.00302203
0.00304698
0.00307456
0.00310534
0.0016718
0.00115879
0.000929793
0.000853952
0.000897236
0.00103943
0.00124779
0.00149278
0.00175382
0.00201495
0.00226414
0.00249334
0.00269783
0.00287553
0.00302633
0.00315153
0.00325333
0.00333444
0.00339773
0.00344602
0.00348194
0.00350786
0.00352581
0.00353756
0.00354458
0.00354814
0.00354935
0.00354918
0.00354839
0.00354738
0.00354612
0.00354395
0.00354021
0.00353341
0.00352809
0.00164521
0.00116393
0.00107557
0.0011537
0.00129253
0.00144793
0.00160101
0.00174381
0.00187349
0.00198978
0.00209353
0.00218605
0.00226871
0.00234287
0.00240973
0.00247038
0.00252576
0.00257666
0.0026238
0.00266775
0.00270896
0.00274783
0.00278473
0.00281999
0.00285391
0.00288663
0.00291794
0.00294737
0.00297462
0.00300031
0.00302657
0.00305656
0.00309261
0.00313282
0.00317014
0.000911061
0.000614665
0.000554496
0.000541814
0.000542796
0.00054938
0.000558081
0.000567291
0.000576264
0.000584733
0.000592639
0.000599986
0.000606826
0.000613215
0.000619198
0.000624807
0.000630055
0.000634942
0.000639463
0.000643616
0.000647403
0.00065083
0.000653911
0.000656665
0.00065912
0.000661309
0.000663273
0.00066505
0.000666675
0.000668166
0.000669547
0.000670795
0.000672067
0.000672944
0.000675398
0.00166922
0.00114784
0.000894983
0.000757745
0.000681511
0.000647418
0.000652273
0.000699182
0.000790669
0.000925509
0.00110036
0.00131096
0.00155101
0.00181207
0.00208515
0.00236225
0.00263715
0.00290547
0.00316431
0.00341196
0.00364742
0.00387036
0.00408086
0.00427929
0.00446622
0.00464237
0.00480852
0.00496544
0.00511379
0.00525426
0.00538777
0.00551571
0.00563997
0.00576189
0.00588347
0.00167201
0.00118437
0.00106797
0.00114143
0.00129686
0.00148285
0.00167683
0.00186635
0.0020447
0.00220882
0.00235774
0.00249151
0.00261069
0.00271603
0.00280836
0.00288855
0.00295748
0.00301609
0.00306537
0.00310638
0.00314021
0.00316797
0.0031907
0.00320937
0.00322484
0.00323786
0.00324904
0.00325884
0.00326756
0.00327538
0.00328254
0.00328931
0.00329683
0.00330453
0.00331978
0.00167283
0.0011623
0.000969661
0.0009648
0.00108907
0.00128512
0.00151388
0.00175566
0.00199826
0.00223335
0.00245581
0.00266295
0.00285364
0.0030277
0.00318551
0.00332768
0.00345499
0.00356827
0.00366847
0.00375667
0.00383402
0.00390174
0.00396107
0.0040132
0.00405928
0.00410035
0.00413729
0.00417075
0.00420117
0.00422891
0.00425461
0.0042793
0.00430505
0.00433235
0.00436721
0.00166891
0.00114596
0.000891945
0.000751011
0.000664697
0.000607669
0.000567734
0.000538486
0.000516349
0.000499255
0.000486034
0.000476111
0.000469374
0.000466118
0.000467046
0.000473262
0.000486279
0.000507988
0.000540656
0.000586968
0.000650131
0.000733871
0.000842156
0.000978607
0.00114581
0.00134477
0.00157468
0.0018329
0.00211534
0.00241688
0.00273208
0.00305577
0.00338355
0.00371199
0.00403622
0.000667524
0.000493462
0.000417688
0.000391764
0.000379964
0.000373689
0.000370325
0.000368586
0.00036777
0.000367468
0.000367382
0.000367301
0.000367071
0.000366588
0.000365796
0.000364684
0.000363268
0.000361589
0.000359694
0.000357635
0.000355461
0.000353215
0.000350932
0.00034864
0.000346363
0.000344122
0.000341935
0.000339809
0.000337739
0.000335704
0.000333665
0.000331631
0.000329561
0.00032796
0.000325873
0.000667533
0.000493363
0.000417647
0.000391826
0.000380097
0.000373867
0.000370528
0.000368798
0.000367981
0.000367676
0.000367585
0.000367499
0.000367264
0.000366778
0.000365984
0.00036487
0.000363453
0.000361773
0.000359878
0.000357817
0.00035564
0.000353391
0.000351107
0.000348817
0.000346546
0.000344315
0.000342133
0.000339999
0.000337898
0.000335814
0.000333736
0.000331729
0.00032981
0.00032849
0.000326712
0.000992555
0.000619134
0.00056725
0.000579549
0.000607185
0.000637686
0.000666694
0.000692934
0.00071634
0.000737097
0.000755587
0.000772141
0.000787022
0.000800459
0.000812633
0.000823681
0.000833702
0.000842772
0.00085095
0.000858293
0.000864858
0.000870705
0.000875904
0.000880524
0.000884645
0.000888341
0.000891662
0.00089462
0.000897194
0.000899375
0.000901309
0.000903263
0.000905926
0.000909041
0.000915273
0.000684591
0.000511246
0.000434258
0.000407619
0.00039561
0.000389292
0.000385922
0.000384183
0.00038336
0.000383039
0.000382937
0.000382847
0.000382612
0.000382126
0.00038133
0.000380209
0.000378777
0.000377074
0.000375149
0.000373052
0.000370832
0.000368533
0.000366194
0.000363846
0.000361518
0.00035923
0.000356993
0.000354807
0.000352657
0.000350526
0.000348399
0.000346329
0.000344331
0.000342918
0.000341037
0.000680769
0.000509557
0.000432706
0.000405662
0.000393342
0.000386816
0.00038333
0.000381547
0.000380728
0.000380428
0.000380357
0.000380296
0.000380086
0.000379619
0.000378839
0.000377729
0.000376308
0.000374615
0.000372699
0.000370613
0.000368406
0.000366121
0.000363795
0.000361458
0.000359135
0.000356848
0.000354614
0.000352443
0.000350331
0.000348259
0.000346187
0.000344117
0.000341995
0.000340317
0.000338113
0.00128862
0.000841526
0.000774656
0.000801086
0.000847881
0.000896936
0.000943191
0.000984982
0.00102205
0.00105477
0.00108372
0.00110948
0.00113255
0.00115341
0.00117248
0.0011901
0.00120656
0.00122208
0.00123685
0.00125101
0.00126467
0.00127791
0.0012908
0.00130344
0.0013159
0.00132819
0.00134017
0.00135155
0.00136216
0.00137219
0.00138262
0.00139488
0.00141012
0.00142767
0.00144404
0.00129095
0.000837147
0.00076892
0.000797183
0.000845229
0.000894431
0.000940273
0.000981537
0.00101815
0.00105052
0.00107919
0.0011047
0.00112753
0.00114816
0.00116701
0.00118441
0.00120066
0.00121598
0.00123056
0.00124455
0.00125804
0.0012711
0.00128381
0.00129623
0.00130843
0.0013204
0.00133201
0.00134308
0.00135345
0.00136332
0.00137343
0.00138488
0.00139858
0.00141386
0.00142834
0.00167677
0.00119154
0.00108051
0.0011675
0.00133981
0.00154001
0.00174435
0.00194112
0.00212482
0.00229322
0.00244637
0.00258512
0.00271067
0.00282437
0.00292753
0.00302133
0.0031068
0.00318481
0.00325614
0.00332141
0.00338119
0.00343597
0.00348618
0.00353226
0.0035746
0.00361366
0.0036498
0.00368331
0.00371439
0.0037432
0.00377011
0.00379582
0.00382175
0.00384789
0.00388029
0.00150322
0.00102121
0.000942518
0.00099263
0.00107632
0.00116348
0.00124513
0.00131867
0.00138379
0.00144114
0.00149169
0.00153641
0.00157621
0.00161185
0.00164408
0.00167352
0.00170066
0.00172592
0.00174964
0.00177209
0.00179347
0.00181395
0.00183368
0.00185281
0.00187147
0.0018897
0.00190732
0.001924
0.00193949
0.00195414
0.00196924
0.00198676
0.0020082
0.00203251
0.00205509
0.000909856
0.00070222
0.000598037
0.000557652
0.000539609
0.000530331
0.00052529
0.000522666
0.0005215
0.000521232
0.000521551
0.000522276
0.000523292
0.00052453
0.00052594
0.000527483
0.000529124
0.000530838
0.000532597
0.000534382
0.000536174
0.000537957
0.000539721
0.000541457
0.000543158
0.000544816
0.000546421
0.000547959
0.000549427
0.000550843
0.000552246
0.000553694
0.000555198
0.000556658
0.000558081
0.000751575
0.000498284
0.000446504
0.000431899
0.000429636
0.000433033
0.000438827
0.000445438
0.000452038
0.000458274
0.000464033
0.000469254
0.000473892
0.000477914
0.000481296
0.000484023
0.000486097
0.000487546
0.000488416
0.000488771
0.000488681
0.000488222
0.000487463
0.000486471
0.000485308
0.000484034
0.000482707
0.000481378
0.000480088
0.000478845
0.000477629
0.000476338
0.00047497
0.000473076
0.00047204
0.00149786
0.00101676
0.000941229
0.000993756
0.00107829
0.00116524
0.00124625
0.00131908
0.00138355
0.00144035
0.00149041
0.00153471
0.00157412
0.00160945
0.00164141
0.0016706
0.00169753
0.00172258
0.00174612
0.0017684
0.00178962
0.00180995
0.00182953
0.0018485
0.001867
0.00188505
0.00190247
0.00191895
0.00193428
0.00194878
0.0019637
0.0019809
0.00200178
0.00202529
0.00204701
0.00166917
0.00114676
0.000893634
0.000756494
0.000680795
0.000648092
0.000656087
0.000709196
0.000811041
0.000960423
0.00115283
0.00138199
0.00163933
0.00191468
0.00219819
0.00248193
0.00276036
0.00303001
0.00328896
0.00353634
0.00377192
0.0039959
0.00420868
0.00441085
0.00460309
0.00478606
0.00496025
0.00512588
0.00528304
0.00543221
0.00557494
0.00571419
0.0058534
0.0059937
0.006132
0.00126332
0.00083087
0.000777546
0.000816491
0.000870301
0.000921715
0.000967124
0.00100638
0.00104026
0.00106968
0.00109528
0.00111748
0.00113656
0.00115269
0.00116601
0.00117667
0.00118484
0.00119073
0.00119461
0.00119673
0.00119741
0.00119693
0.00119555
0.00119351
0.00119102
0.00118824
0.00118531
0.00118234
0.00117941
0.00117653
0.00117375
0.00117092
0.00116839
0.00116505
0.00116583
0.00167742
0.00117423
0.00101175
0.00105364
0.00121792
0.00143688
0.00167575
0.00191792
0.00215325
0.00237584
0.00258266
0.002773
0.00294734
0.00310666
0.00325223
0.00338533
0.00350727
0.00361932
0.0037226
0.00381817
0.00390692
0.00398966
0.00406709
0.00413991
0.00420877
0.00427411
0.00433597
0.00439393
0.00444763
0.00449763
0.00454648
0.00459844
0.00465759
0.00472264
0.00478881
0.00166042
0.0011848
0.00109858
0.00118527
0.00133529
0.00150419
0.00167273
0.00183194
0.00197822
0.00211056
0.00222927
0.00233512
0.00242906
0.00251205
0.00258498
0.00264866
0.00270387
0.00275133
0.00279178
0.00282597
0.00285468
0.00287868
0.00289872
0.00291549
0.00292966
0.00294176
0.00295228
0.00296154
0.00296973
0.00297694
0.00298343
0.00298958
0.00299672
0.00300443
0.00302013
0.0016701
0.00115534
0.000904154
0.000768258
0.000695273
0.000669173
0.000689986
0.000762873
0.000889163
0.00106389
0.00127927
0.00152579
0.00179038
0.0020581
0.00231501
0.00255045
0.00275787
0.00293458
0.00308078
0.00319859
0.00329114
0.00336196
0.00341459
0.0034523
0.00347803
0.00349442
0.00350373
0.0035079
0.00350835
0.00350594
0.00350079
0.00349246
0.0034807
0.00346602
0.00345298
0.0016701
0.00115533
0.000904246
0.000768658
0.000696342
0.000671419
0.00069379
0.000767922
0.000894166
0.00106711
0.00127926
0.0015215
0.00178137
0.00204442
0.00229731
0.00252979
0.00273554
0.00291184
0.00305874
0.00317808
0.00327274
0.00334603
0.00340127
0.00344158
0.00346979
0.00348837
0.0034995
0.00350508
0.00350674
0.00350562
0.0035022
0.00349596
0.00348586
0.00347073
0.00345342
0.00149801
0.00103118
0.000964767
0.00101937
0.00110278
0.00118857
0.00126874
0.00134083
0.00140481
0.00146131
0.00151103
0.00155463
0.00159271
0.00162577
0.00165423
0.00167844
0.00169876
0.00171554
0.00172913
0.00173992
0.00174829
0.00175464
0.00175934
0.00176273
0.00176512
0.00176677
0.00176789
0.00176864
0.0017691
0.00176929
0.00176928
0.00176911
0.00176953
0.0017696
0.00177599
0.00166982
0.00115457
0.000902607
0.000765193
0.000688237
0.000653302
0.000657668
0.000705266
0.000799613
0.000939929
0.00112238
0.0013414
0.0015886
0.00185255
0.00212068
0.0023814
0.00262582
0.0028482
0.0030457
0.00321771
0.00336523
0.00349029
0.00359539
0.00368325
0.00375653
0.00381771
0.00386901
0.00391243
0.00394975
0.00398242
0.00401152
0.00403753
0.00406055
0.00407952
0.00409701
0.00166904
0.00114887
0.00089514
0.00075425
0.000667918
0.000611042
0.000571725
0.000544043
0.000525207
0.00051439
0.00051221
0.000520481
0.000541977
0.000580103
0.000638588
0.000721536
0.000833116
0.000977153
0.00115602
0.00136963
0.0016151
0.00188719
0.00217918
0.00248394
0.00279479
0.00310603
0.00341322
0.00371316
0.00400371
0.00428358
0.00455213
0.00480937
0.00505604
0.00529296
0.00552143
0.00167066
0.00115074
0.000911889
0.000814494
0.00082099
0.00092044
0.00109366
0.00131482
0.00156399
0.00182691
0.00209269
0.00235362
0.00260489
0.00284379
0.0030688
0.00327932
0.00347536
0.00365722
0.00382535
0.00398034
0.00412284
0.00425362
0.00437352
0.00448343
0.00458432
0.00467717
0.00476291
0.00484238
0.00491628
0.00498522
0.00504995
0.00511149
0.00517139
0.00523026
0.00529204
0.00167109
0.00115436
0.000921695
0.00083727
0.000863794
0.000983443
0.00116945
0.00139636
0.00164694
0.00190808
0.00216919
0.00242235
0.00266172
0.00288395
0.0030871
0.0032702
0.00343306
0.00357645
0.00370171
0.0038105
0.00390469
0.00398621
0.00405692
0.00411856
0.0041727
0.00422075
0.00426397
0.00430349
0.00434027
0.00437505
0.00440825
0.00443983
0.00446971
0.00449638
0.00452388
0.00166904
0.0011485
0.000894755
0.000753975
0.000668107
0.000612547
0.000576289
0.000554889
0.000547794
0.000557133
0.000586747
0.000640991
0.000723657
0.000837699
0.000985056
0.00116538
0.00137533
0.00160872
0.00185803
0.00211621
0.00237788
0.00263922
0.00289797
0.00315287
0.00340322
0.00364851
0.0038883
0.00412217
0.00434968
0.00457044
0.00478431
0.00499166
0.00519363
0.00539126
0.00558572
0.000836881
0.000639199
0.000542271
0.000505672
0.000489481
0.000481042
0.000476359
0.000473853
0.000472648
0.000472271
0.000472445
0.00047301
0.000473861
0.000474927
0.000476157
0.000477512
0.000478957
0.000480461
0.000481997
0.000483542
0.000485074
0.000486577
0.000488037
0.000489444
0.000490791
0.000492075
0.000493293
0.000494444
0.00049553
0.000496556
0.000497529
0.00049847
0.000499366
0.000500249
0.000500932
0.00167027
0.00121306
0.00114818
0.00125546
0.0014217
0.00160347
0.00178166
0.00194705
0.0020959
0.00222632
0.00233764
0.00242967
0.00250279
0.00255799
0.00259684
0.00262132
0.00263368
0.00263622
0.00263112
0.00262033
0.00260552
0.00258802
0.00256885
0.0025488
0.00252844
0.00250822
0.00248854
0.00246977
0.00245219
0.0024357
0.0024196
0.00240229
0.00238238
0.00235799
0.00233692
0.00167169
0.00120701
0.00113113
0.0012345
0.00140296
0.00158954
0.0017737
0.00194466
0.00209877
0.0022346
0.00235137
0.00244884
0.00252716
0.00258706
0.00262987
0.0026575
0.00267221
0.0026764
0.00267239
0.00266225
0.00264775
0.00263031
0.00261102
0.00259073
0.00257009
0.00254967
0.00252993
0.00251126
0.00249376
0.0024771
0.00246046
0.00244254
0.00242282
0.00240057
0.00238368
0.00117117
0.000769317
0.000712816
0.000730453
0.000763613
0.000799254
0.000833379
0.000864328
0.000891957
0.000916599
0.000938591
0.000958256
0.000975945
0.000992021
0.00100678
0.00102044
0.00103318
0.00104512
0.00105637
0.00106698
0.00107702
0.00108652
0.00109552
0.00110405
0.00111218
0.00111993
0.00112727
0.0011341
0.00114027
0.00114578
0.00115107
0.00115692
0.00116454
0.00117349
0.00118611
0.00161529
0.00117097
0.00112494
0.00121422
0.00133875
0.00146654
0.0015857
0.00169244
0.00178598
0.00186623
0.00193317
0.00198681
0.00202744
0.00205577
0.00207298
0.00208053
0.00208008
0.00207329
0.0020617
0.00204669
0.00202938
0.00201064
0.00199116
0.00197141
0.00195175
0.00193246
0.00191385
0.00189622
0.00187976
0.00186424
0.00184877
0.00183156
0.00181128
0.00178635
0.00176557
0.00161428
0.00116556
0.00111409
0.00120015
0.00132476
0.00145386
0.00157399
0.00168109
0.00177465
0.00185492
0.00192196
0.00197588
0.00201698
0.00204588
0.00206362
0.00207161
0.00207147
0.00206486
0.00205337
0.00203838
0.00202105
0.00200226
0.00198269
0.00196285
0.00194317
0.00192401
0.00190571
0.00188848
0.00187226
0.00185653
0.00184035
0.00182248
0.00180291
0.00178159
0.00176777
0.000981082
0.000645796
0.000584574
0.000578143
0.000585952
0.000598665
0.00061286
0.000626881
0.00064001
0.000652061
0.000663108
0.000673262
0.000682647
0.000691392
0.000699617
0.000707429
0.000714916
0.000722148
0.000729187
0.000736074
0.000742841
0.000749507
0.000756094
0.000762633
0.000769152
0.000775641
0.00078202
0.000788138
0.000793886
0.000799371
0.000805086
0.000811779
0.000820059
0.000829484
0.000838541
0.00084067
0.000640891
0.000543629
0.000507051
0.000490735
0.0004822
0.000477503
0.000474998
0.000473811
0.000473451
0.000473645
0.000474231
0.000475102
0.000476186
0.000477429
0.000478789
0.000480228
0.000481712
0.000483211
0.0004847
0.000486157
0.000487565
0.000488911
0.000490188
0.00049139
0.000492516
0.000493568
0.000494547
0.000495459
0.000496309
0.000497103
0.000497862
0.000498569
0.000499277
0.000499733
0.00112147
0.000731672
0.000679003
0.000691228
0.000716858
0.000746543
0.000776261
0.000804095
0.000829056
0.000851076
0.000870454
0.000887369
0.000901953
0.000914299
0.00092449
0.000932604
0.000938756
0.000943105
0.00094585
0.000947213
0.000947421
0.000946694
0.000945234
0.000943219
0.000940809
0.000938152
0.000935394
0.000932666
0.000930074
0.000927645
0.000925326
0.000922843
0.000920115
0.000916011
0.00091351
0.00151498
0.00103155
0.000954083
0.00101251
0.00110835
0.00120816
0.00130132
0.00138481
0.00145847
0.00152314
0.00157993
0.00162979
0.0016739
0.00171326
0.00174875
0.00178104
0.00181071
0.00183822
0.00186394
0.00188816
0.00191109
0.0019329
0.00195372
0.00197365
0.0019928
0.00201126
0.00202899
0.00204585
0.00206163
0.00207635
0.00209054
0.0021053
0.00212206
0.00214091
0.00216215
0.00166894
0.00114672
0.000892741
0.000751794
0.0006655
0.000608654
0.000569276
0.000541326
0.000521821
0.00050961
0.000504827
0.000508636
0.000523018
0.000550538
0.000594075
0.000656704
0.000741705
0.000852342
0.000991091
0.00115867
0.0013535
0.00157186
0.00180869
0.0020585
0.00231628
0.00257803
0.00284094
0.00310328
0.00336402
0.0036226
0.00387869
0.00413214
0.00438303
0.00463139
0.00487584
0.00087504
0.000673426
0.000571712
0.000531539
0.000513755
0.000504804
0.000500016
0.000497561
0.000496496
0.000496289
0.000496638
0.000497367
0.000498368
0.000499571
0.000500931
0.000502418
0.000504006
0.000505675
0.000507409
0.000509191
0.00051101
0.000512853
0.000514711
0.000516576
0.000518439
0.000520292
0.00052212
0.000523914
0.000525669
0.000527404
0.000529148
0.000530937
0.000532769
0.000534486
0.000536423
0.000848258
0.000647139
0.000549634
0.000511684
0.000494779
0.000486235
0.000481664
0.000479331
0.000478327
0.000478137
0.000478474
0.000479174
0.000480138
0.0004813
0.000482619
0.000484062
0.000485606
0.000487231
0.000488921
0.000490662
0.00049244
0.000494247
0.000496074
0.000497916
0.000499765
0.000501612
0.000503444
0.000505247
0.00050702
0.000508787
0.000510592
0.00051248
0.000514444
0.000516285
0.000518321
0.00166991
0.00114813
0.000899961
0.000777743
0.00073635
0.000768356
0.000874043
0.00104378
0.00126074
0.00151015
0.00177993
0.00205952
0.00234021
0.00261561
0.00288142
0.0031351
0.00337525
0.00360165
0.00381454
0.00401442
0.004202
0.00437805
0.00454338
0.00469884
0.00484529
0.00498348
0.00511391
0.00523672
0.00535194
0.00546009
0.00556315
0.00566468
0.00576881
0.00587628
0.0059849
0.00166974
0.00115414
0.000902044
0.000764196
0.000686169
0.000649106
0.000650083
0.000693494
0.000783901
0.000921341
0.00110198
0.00131971
0.00156575
0.00182859
0.00209596
0.00235701
0.00260351
0.00283016
0.00303418
0.00321481
0.00337271
0.00350948
0.0036272
0.00372819
0.00381478
0.00388921
0.0039536
0.00400987
0.00405975
0.00410465
0.00414558
0.00418295
0.00421689
0.00424637
0.00427439
0.000828248
0.000630061
0.000534354
0.000497343
0.000481036
0.000472841
0.000468468
0.000466243
0.000465299
0.000465149
0.000465519
0.000466246
0.000467223
0.000468386
0.000469693
0.000471115
0.000472631
0.00047422
0.000475866
0.000477555
0.000479274
0.000481012
0.000482758
0.000484503
0.000486242
0.000487963
0.000489656
0.000491313
0.000492927
0.000494512
0.000496089
0.000497689
0.000499318
0.000500855
0.000502584
0.000670824
0.000461275
0.000408313
0.000391572
0.000387406
0.000388342
0.000391172
0.000394612
0.000398139
0.000401464
0.000404363
0.000406635
0.000408134
0.000408777
0.000408547
0.000407489
0.000405696
0.000403288
0.000400396
0.000397146
0.000393649
0.00039
0.000386277
0.000382541
0.000378849
0.000375248
0.000371777
0.000368452
0.000365252
0.000362104
0.000358906
0.000355568
0.00035218
0.000348882
0.000346564
0.000889572
0.000602744
0.000548164
0.000538073
0.000540491
0.000547831
0.000556848
0.000565971
0.000574496
0.000582115
0.00058856
0.000593579
0.000596977
0.000598664
0.000598676
0.000597147
0.000594282
0.000590322
0.000585511
0.00058008
0.000574233
0.000568135
0.000561917
0.000555681
0.000549506
0.00054346
0.000537614
0.000532028
0.000526723
0.000521612
0.000516486
0.000510981
0.000504988
0.00049834
0.00049332
0.00095245
0.000751678
0.000642738
0.000600098
0.000581115
0.000571306
0.000566023
0.000563217
0.00056184
0.000561313
0.000561274
0.000561484
0.000561754
0.000561939
0.000561935
0.000561672
0.000561116
0.00056026
0.00055912
0.000557728
0.000556123
0.000554349
0.000552449
0.000550463
0.000548425
0.000546365
0.00054431
0.000542279
0.000540289
0.000538347
0.000536446
0.000534601
0.000532732
0.000531168
0.000528829
0.000842827
0.000512202
0.000461906
0.000460788
0.000472335
0.000487617
0.000502987
0.000517398
0.000530579
0.000542528
0.000553339
0.000563138
0.000572056
0.000580218
0.00058773
0.000594667
0.000601084
0.000607014
0.000612484
0.000617511
0.000622116
0.000626318
0.000630145
0.000633628
0.000636805
0.000639713
0.000642372
0.000644773
0.000646892
0.000648721
0.000650388
0.000652107
0.000654443
0.000657025
0.000662359
0.000875459
0.000678364
0.000574021
0.000534578
0.000517028
0.000507906
0.000503012
0.000500471
0.000499292
0.000498916
0.000499005
0.000499322
0.000499689
0.000499968
0.000500059
0.000499897
0.00049945
0.000498715
0.00049771
0.000496469
0.000495031
0.000493438
0.00049173
0.000489945
0.000488116
0.00048627
0.000484432
0.000482619
0.000480843
0.000479108
0.000477406
0.000475752
0.000474068
0.000472688
0.000470455
0.00166285
0.00118701
0.00110424
0.00119561
0.00134998
0.00152278
0.00169477
0.00185677
0.00200499
0.00213858
0.00225804
0.00236446
0.00245961
0.00254502
0.00262198
0.00269151
0.00275451
0.00281173
0.00286382
0.00291134
0.00295478
0.00299457
0.00303111
0.00306478
0.00309596
0.00312497
0.00315195
0.00317677
0.00319918
0.00321924
0.00323804
0.00325778
0.00328159
0.00330978
0.00334482
0.0014963
0.00103201
0.000971845
0.00103409
0.00112585
0.0012191
0.0013056
0.0013832
0.00145192
0.00151249
0.00156587
0.00161292
0.00165441
0.00169101
0.00172327
0.00175162
0.00177642
0.00179799
0.00181663
0.00183263
0.00184628
0.00185787
0.0018677
0.00187605
0.00188318
0.00188934
0.00189472
0.00189943
0.00190351
0.00190697
0.00190997
0.00191282
0.00191661
0.00192085
0.0019314
0.000961268
0.00064608
0.000579144
0.000565666
0.000568347
0.000577136
0.000588104
0.000599393
0.000610202
0.000620256
0.000629582
0.000638248
0.000646337
0.000653947
0.000661168
0.000668082
0.000674754
0.000681238
0.000687578
0.000693808
0.000699948
0.000706012
0.000712014
0.000717979
0.00072393
0.000729858
0.000735688
0.000741284
0.000746543
0.000751558
0.000756765
0.000762833
0.000770317
0.000778842
0.000786977
0.00164289
0.00116957
0.00108993
0.00116981
0.00130476
0.00145311
0.00159737
0.00173068
0.00185103
0.00195854
0.00205423
0.00213941
0.00221537
0.00228331
0.00234426
0.00239907
0.00244844
0.00249289
0.0025329
0.00256887
0.00260116
0.00263012
0.00265609
0.00267936
0.00270028
0.00271917
0.00273635
0.00275211
0.00276667
0.00278018
0.00279284
0.00280476
0.00281668
0.00282769
0.00284506
0.00167157
0.0011541
0.000928386
0.000860978
0.000913716
0.00105944
0.00126304
0.00149873
0.00175072
0.00200726
0.00225947
0.0025014
0.00273015
0.00294422
0.00314303
0.00332654
0.00349499
0.00364876
0.00378839
0.00391461
0.00402826
0.00413035
0.00422196
0.00430424
0.00437834
0.00444538
0.00450646
0.00456253
0.00461442
0.00466281
0.0047083
0.00475141
0.00479313
0.00483304
0.00487699
0.00167635
0.00118259
0.00105042
0.00112243
0.00129804
0.00151361
0.0017395
0.00196081
0.00216968
0.00236264
0.00253877
0.00269861
0.00284342
0.00297467
0.00309379
0.00320212
0.00330089
0.00339119
0.00347401
0.00355021
0.00362056
0.00368573
0.00374631
0.00380285
0.00385591
0.00390588
0.00395282
0.00399642
0.00403634
0.00407294
0.00410823
0.00414577
0.00418939
0.0042387
0.00429088
0.00167406
0.00116778
0.000972659
0.000963208
0.00108561
0.00128315
0.00151441
0.00175761
0.00199838
0.00222606
0.00243436
0.00261934
0.00277879
0.00291212
0.00302011
0.00310466
0.0031684
0.00321432
0.00324545
0.00326465
0.00327448
0.00327712
0.0032744
0.00326779
0.0032585
0.00324756
0.00323582
0.00322402
0.00321266
0.00320183
0.00319109
0.00317942
0.00316604
0.00314983
0.00313613
0.000993867
0.000676304
0.000615954
0.000608543
0.000615012
0.000625964
0.000637906
0.000649347
0.000660028
0.000669905
0.000678948
0.000687134
0.000694432
0.000700803
0.000706214
0.000710651
0.000714122
0.000716663
0.00071834
0.00071924
0.000719467
0.000719133
0.000718348
0.000717218
0.000715834
0.000714279
0.000712619
0.000710906
0.000709181
0.000707455
0.00070575
0.000704026
0.000702463
0.000700598
0.000700535
0.000927806
0.000724335
0.000616137
0.000574271
0.000555791
0.000546182
0.000540876
0.000537988
0.00053655
0.000536034
0.000536123
0.000536605
0.000537331
0.000538181
0.000539058
0.000539884
0.000540599
0.000541161
0.000541546
0.000541745
0.00054176
0.000541606
0.000541303
0.000540872
0.000540338
0.000539724
0.000539052
0.000538339
0.0005376
0.000536851
0.000536097
0.000535364
0.000534617
0.000534051
0.000533004
0.00167136
0.00115801
0.000922144
0.000827781
0.000838048
0.000939693
0.00111191
0.00133029
0.00157521
0.00182961
0.00207815
0.00230892
0.00251468
0.00269247
0.00284202
0.00296467
0.00306257
0.00313833
0.00319475
0.00323464
0.00326074
0.00327553
0.00328125
0.00327982
0.00327289
0.0032619
0.00324816
0.00323283
0.00321681
0.00320042
0.00318303
0.00316289
0.00313804
0.00310766
0.00307746
0.00167138
0.00115792
0.000920742
0.000823607
0.000829889
0.000928317
0.00109955
0.00131801
0.00156262
0.00181577
0.00206278
0.00229268
0.00249864
0.00267759
0.00282899
0.0029538
0.00305387
0.00313156
0.00318954
0.00323057
0.00325738
0.0032725
0.00327823
0.00327661
0.00326944
0.00325833
0.00324468
0.00322956
0.00321354
0.00319644
0.00317738
0.0031552
0.00312986
0.00310341
0.00308359
0.00166893
0.00114628
0.000892282
0.000751349
0.000665037
0.000608074
0.000568367
0.000539692
0.000518782
0.000504075
0.000495173
0.000492606
0.000497718
0.000512547
0.000539623
0.000581746
0.000641867
0.000723106
0.000828561
0.000960648
0.00112027
0.00130634
0.00151594
0.00174489
0.00198866
0.00224301
0.00250443
0.00277026
0.00303855
0.00330788
0.00357718
0.00384584
0.00411366
0.00438064
0.00464475
0.00167234
0.00117783
0.00102947
0.00108129
0.00124183
0.00144905
0.00167287
0.00189591
0.00210661
0.00229742
0.00246285
0.00260033
0.00270982
0.00279263
0.00285121
0.00288873
0.00290872
0.00291466
0.00290976
0.00289678
0.00287801
0.00285523
0.00282984
0.00280287
0.00277509
0.0027472
0.00271987
0.0026938
0.00266934
0.0026459
0.0026215
0.00259279
0.00255692
0.00251405
0.00247453
0.00167361
0.00118239
0.00104372
0.0011104
0.00128412
0.00149875
0.00172453
0.00194587
0.0021529
0.00233933
0.00250083
0.00263478
0.00274124
0.00282147
0.00287785
0.00291349
0.00293186
0.00293641
0.0029303
0.00291626
0.00289651
0.00287276
0.00284645
0.00281872
0.00279051
0.00276267
0.00273585
0.00271029
0.00268543
0.00265976
0.00263111
0.00259792
0.00256178
0.00252885
0.00251343
0.0016645
0.00120938
0.00115229
0.00127107
0.00144738
0.00163303
0.00180961
0.00197015
0.00211227
0.00223663
0.00234442
0.00243652
0.00251363
0.00257653
0.00262613
0.00266358
0.00269022
0.00270755
0.00271713
0.00272051
0.00271909
0.00271413
0.00270667
0.00269757
0.0026875
0.00267697
0.00266639
0.00265609
0.00264633
0.00263724
0.00262878
0.00262042
0.00261193
0.00260126
0.00259469
0.00103749
0.000651796
0.00060156
0.000618652
0.000650764
0.000685104
0.000717519
0.000746787
0.000772854
0.000796016
0.000816634
0.000835036
0.000851513
0.000866298
0.000879586
0.000891524
0.000902222
0.000911769
0.00092024
0.00092771
0.000934258
0.000939971
0.000944939
0.000949257
0.000953022
0.000956326
0.000959239
0.000961792
0.00096398
0.000965794
0.000967359
0.000968884
0.000971052
0.0009735
0.000979526
0.00167323
0.00116563
0.000996681
0.00102651
0.00117378
0.00137563
0.00159992
0.0018301
0.00205556
0.00226986
0.00246975
0.00265413
0.00282318
0.00297773
0.00311898
0.00324823
0.00336678
0.00347587
0.00357664
0.00367009
0.0037571
0.00383843
0.0039148
0.00398687
0.00405527
0.0041204
0.00418229
0.00424054
0.00429484
0.00434586
0.00439612
0.00444969
0.00451012
0.00457601
0.00463996
0.00167215
0.00115912
0.000934083
0.000865747
0.000918019
0.00106522
0.00127253
0.00151262
0.0017679
0.00202485
0.00227285
0.00250445
0.00271494
0.0029018
0.00306421
0.00320272
0.00331883
0.0034147
0.00349279
0.00355567
0.0036058
0.00364545
0.00367662
0.00370104
0.0037202
0.00373538
0.00374769
0.00375811
0.00376747
0.0037763
0.0037848
0.00379251
0.0037989
0.00380208
0.00380631
0.00108371
0.000707181
0.000658728
0.000673428
0.000700147
0.000729459
0.00075828
0.000784789
0.000808452
0.000829522
0.000848295
0.000865012
0.000879921
0.000893243
0.000905144
0.000915736
0.0009251
0.000933298
0.000940391
0.000946452
0.000951564
0.000955819
0.000959313
0.000962145
0.000964416
0.000966232
0.000967705
0.00096894
0.000970038
0.000971046
0.000971996
0.000972752
0.000973527
0.000973167
0.000976413
0.000806999
0.000611751
0.000517352
0.000481864
0.000465895
0.000457499
0.000452876
0.000450402
0.000449222
0.000448852
0.000449019
0.000449563
0.000450378
0.000451393
0.000452555
0.00045382
0.000455148
0.000456504
0.000457857
0.000459181
0.000460457
0.000461667
0.000462803
0.000463858
0.00046483
0.000465721
0.000466536
0.00046728
0.000467959
0.000468581
0.000469151
0.000469687
0.000470171
0.000470669
0.000470922
0.00125986
0.000824752
0.000765087
0.000795875
0.000844928
0.00089521
0.00094215
0.000984242
0.00102123
0.00105383
0.0010826
0.00110812
0.00113094
0.00115156
0.00117037
0.00118768
0.00120375
0.00121877
0.00123288
0.00124621
0.00125883
0.00127082
0.00128222
0.00129311
0.00130356
0.00131359
0.00132317
0.00133211
0.00134023
0.00134754
0.00135462
0.00136258
0.00137288
0.00138515
0.00140077
0.0016733
0.00116382
0.000969916
0.000963971
0.00108844
0.00128527
0.00151511
0.001758
0.00200094
0.00223498
0.00245462
0.00265688
0.00284015
0.00300421
0.00314923
0.00327581
0.00338488
0.0034777
0.00355582
0.00362095
0.00367489
0.00371943
0.00375625
0.00378688
0.00381263
0.00383465
0.00385387
0.00387104
0.0038867
0.00390123
0.00391496
0.00392806
0.00394136
0.00395408
0.00397323
0.00166355
0.00120478
0.00114403
0.00126267
0.00144168
0.00163215
0.00181467
0.00198134
0.00212979
0.0022604
0.00237433
0.00247258
0.00255597
0.00262528
0.00268139
0.00272532
0.0027583
0.0027817
0.00279699
0.00280566
0.00280909
0.00280854
0.0028051
0.00279966
0.00279295
0.00278553
0.00277785
0.00277025
0.00276301
0.00275629
0.0027501
0.00274402
0.00273804
0.00273014
0.00272729
0.00143359
0.000964949
0.000899235
0.000946816
0.00101937
0.0010928
0.00116072
0.00122122
0.0012743
0.00132076
0.00136159
0.00139772
0.00142994
0.00145894
0.00148528
0.00150945
0.00153181
0.00155268
0.00157235
0.00159101
0.00160884
0.00162596
0.00164248
0.00165853
0.00167423
0.00168963
0.00170458
0.00171872
0.00173175
0.00174384
0.00175613
0.00177055
0.001789
0.00181071
0.00183306
0.00155285
0.00109701
0.00104916
0.00113832
0.00125794
0.00137463
0.00147919
0.0015699
0.00164737
0.00171355
0.0017702
0.00181833
0.00185854
0.00189128
0.00191703
0.00193632
0.0019498
0.00195818
0.00196225
0.00196281
0.0019606
0.00195633
0.00195058
0.00194385
0.00193654
0.00192895
0.00192134
0.00191391
0.00190682
0.00190013
0.00189385
0.00188761
0.00188148
0.00187365
0.00187079
0.00125721
0.000806634
0.00074296
0.000772776
0.000821096
0.00087067
0.000917145
0.000959043
0.000996125
0.00102881
0.00105771
0.00108343
0.00110649
0.00112735
0.00114641
0.001164
0.0011804
0.00119584
0.00121051
0.00122456
0.00123809
0.0012512
0.00126396
0.00127646
0.00128879
0.00130097
0.00131286
0.00132418
0.00133469
0.00134456
0.00135473
0.00136674
0.00138191
0.00139976
0.00141705
0.00166939
0.00114771
0.000895762
0.000762052
0.000694395
0.000677786
0.000712801
0.000802831
0.00094577
0.0011344
0.00136041
0.0016147
0.00188721
0.00216834
0.00245019
0.00272701
0.00299499
0.0032518
0.00349629
0.00372805
0.00394715
0.00415394
0.00434895
0.00453285
0.00470638
0.00487027
0.00502514
0.00517132
0.00530901
0.00543873
0.00556201
0.00568179
0.00580178
0.00592357
0.00604662
0.00167028
0.00115334
0.000908332
0.000793155
0.000766299
0.000820923
0.000951621
0.0011422
0.00137398
0.00163137
0.00190041
0.002169
0.00242759
0.00266965
0.00289184
0.00309263
0.00327183
0.00343027
0.00356945
0.00369125
0.00379767
0.00389065
0.00397205
0.00404358
0.0041068
0.00416312
0.00421383
0.00426011
0.004303
0.00434333
0.00438165
0.00441796
0.00445212
0.00448258
0.00451263
0.00167597
0.00118075
0.00102327
0.00106549
0.00122411
0.00143499
0.00166519
0.00189694
0.00211811
0.00232067
0.00249948
0.00265148
0.00277562
0.00287261
0.00294445
0.00299407
0.00302482
0.00304018
0.00304337
0.00303729
0.00302433
0.00300643
0.00298515
0.0029617
0.00293711
0.00291227
0.00288791
0.00286449
0.00284196
0.00281952
0.00279574
0.00276906
0.0027396
0.00270973
0.00268943
0.00167379
0.00116815
0.0009735
0.00096315
0.00108308
0.00127906
0.00151093
0.001756
0.00199873
0.00222754
0.00243402
0.00261287
0.00276225
0.00288245
0.00297533
0.00304377
0.00309114
0.00312097
0.00313659
0.00314102
0.00313684
0.0031262
0.00311085
0.00309216
0.00307121
0.00304894
0.00302622
0.00300379
0.00298221
0.0029614
0.00294029
0.00291662
0.00288812
0.00285377
0.00282049
0.00166963
0.00114727
0.000897951
0.00077328
0.000726269
0.0007473
0.000836512
0.000987495
0.00118728
0.00142321
0.0016836
0.00195728
0.0022347
0.00250878
0.00277476
0.00302976
0.00327224
0.00350161
0.00371792
0.0039216
0.0041133
0.00429382
0.00446397
0.00462464
0.00477669
0.00492088
0.00505768
0.00518722
0.00530949
0.00542506
0.0055359
0.00564547
0.00575755
0.00587261
0.00598637
0.00167774
0.00117548
0.00101382
0.00105242
0.00120902
0.00142033
0.00165402
0.00189316
0.00212699
0.00234899
0.00255582
0.00274648
0.00292127
0.00308114
0.00322719
0.00336072
0.00348301
0.00359526
0.00369857
0.00379394
0.00388228
0.00396435
0.00404088
0.00411256
0.00418001
0.00424369
0.00430369
0.00435963
0.00441118
0.00445886
0.00450512
0.00455409
0.00460987
0.00467156
0.00473428
0.000889893
0.000602728
0.000543038
0.000531975
0.000534802
0.000542197
0.000550724
0.000559116
0.000567009
0.000574341
0.000581056
0.000587149
0.000592579
0.000597294
0.000601254
0.000604436
0.00060684
0.000608493
0.000609449
0.00060978
0.000609574
0.000608923
0.000607918
0.000606646
0.000605182
0.000603592
0.000601932
0.000600244
0.000598563
0.0005969
0.00059527
0.000593631
0.000592114
0.000590331
0.000590032
0.000920943
0.000713951
0.000607199
0.00056455
0.000545562
0.000535977
0.000530842
0.000528204
0.000527052
0.00052681
0.000527161
0.000527915
0.000528958
0.000530221
0.000531656
0.000533228
0.000534911
0.000536684
0.000538529
0.000540429
0.000542371
0.000544344
0.000546339
0.000548349
0.000550365
0.000552377
0.000554371
0.000556332
0.00055826
0.000560178
0.000562131
0.000564166
0.000566272
0.00056825
0.000570402
0.00167161
0.00115775
0.000928137
0.000849738
0.000886032
0.00101695
0.00121368
0.00144964
0.00170521
0.00196487
0.00221688
0.00245307
0.00266853
0.00286054
0.00302802
0.00317181
0.00329348
0.00339518
0.00347928
0.0035482
0.00360428
0.00364966
0.0036863
0.00371591
0.00373998
0.00375978
0.00377639
0.00379072
0.00380353
0.00381542
0.00382671
0.0038373
0.00384716
0.00385473
0.00386488
0.00088146
0.000588936
0.000529409
0.000516854
0.000518755
0.000526285
0.000535807
0.000545648
0.00055507
0.00056391
0.00057214
0.000579782
0.000586902
0.000593589
0.000599924
0.000605968
0.00061177
0.000617364
0.000622774
0.000628011
0.000633081
0.000637986
0.000642727
0.000647313
0.000651759
0.000656064
0.000660195
0.000664072
0.000667621
0.000670871
0.000674082
0.000677687
0.000682243
0.000687449
0.000694117
0.00167387
0.00116894
0.00100194
0.00103366
0.00118282
0.00138619
0.00161189
0.00184395
0.00207191
0.00228906
0.00249186
0.0026791
0.00285079
0.00300753
0.00315018
0.00327968
0.00339696
0.00350292
0.00359841
0.00368428
0.00376141
0.00383064
0.00389283
0.0039488
0.00399937
0.0040453
0.00408719
0.00412538
0.00416
0.00419132
0.00422027
0.00424876
0.00427977
0.00431433
0.00435581
0.00100777
0.000678548
0.000615031
0.000604384
0.000608156
0.000617531
0.000628983
0.000640781
0.00065206
0.000662559
0.000672263
0.000681179
0.000689407
0.000697022
0.000704084
0.000710633
0.000716685
0.000722244
0.000727311
0.000731889
0.000735991
0.000739635
0.000742846
0.000745657
0.000748108
0.000750247
0.000752129
0.000753805
0.000755324
0.000756712
0.000757994
0.000759128
0.000760281
0.000760918
0.000763601
0.00123805
0.000814695
0.000756288
0.000782876
0.000826878
0.000872449
0.000915318
0.000953942
0.000988001
0.00101793
0.00104442
0.00106802
0.00108922
0.00110845
0.00112608
0.00114241
0.00115767
0.00117207
0.00118578
0.00119893
0.00121161
0.0012239
0.00123587
0.00124759
0.00125915
0.00127056
0.00128169
0.00129228
0.0013021
0.00131128
0.00132068
0.00133172
0.00134572
0.00136215
0.00137856
0.000833265
0.000635277
0.000541037
0.000507741
0.000493086
0.00048555
0.000481587
0.00047957
0.00047865
0.000478316
0.000478247
0.000478202
0.000477999
0.000477508
0.000476653
0.000475407
0.000473785
0.000471826
0.000469586
0.000467128
0.000464511
0.000461789
0.000459009
0.000456212
0.000453431
0.000450693
0.000448016
0.000445402
0.000442841
0.000440312
0.00043779
0.000435319
0.000432886
0.000431057
0.000428597
0.000818238
0.000630107
0.000537409
0.000503413
0.00048812
0.000480089
0.000475794
0.000473601
0.000472614
0.000472259
0.000472188
0.000472152
0.000471962
0.000471485
0.000470647
0.000469425
0.000467833
0.000465914
0.000463723
0.000461319
0.00045876
0.000456101
0.000453382
0.000450643
0.000447913
0.000445218
0.00044258
0.000440013
0.000437518
0.00043508
0.000432654
0.000430239
0.000427754
0.000425717
0.000423007
0.00167167
0.00115884
0.000929582
0.000850972
0.000887407
0.00101783
0.00121139
0.00144114
0.00168813
0.00193665
0.0021735
0.00238877
0.00257681
0.00273595
0.00286658
0.00297047
0.0030502
0.00310875
0.00314922
0.00317463
0.00318775
0.00319107
0.00318672
0.00317649
0.00316189
0.00314421
0.00312466
0.00310433
0.00308396
0.0030635
0.00304174
0.00301626
0.00298482
0.00294752
0.00291223
0.00167199
0.00115995
0.000933498
0.000861085
0.000906563
0.00104531
0.00124412
0.00147624
0.00172325
0.00196979
0.00220338
0.00241485
0.00259887
0.00275408
0.00288101
0.00298152
0.0030582
0.00311403
0.00315207
0.0031753
0.00318647
0.00318799
0.003182
0.00317033
0.00315457
0.00313618
0.00311639
0.00309602
0.00307522
0.00305327
0.00302878
0.00300046
0.00296897
0.00293834
0.00291875
0.00160013
0.00112915
0.00105461
0.0011224
0.00123305
0.00135043
0.00146089
0.00155953
0.00164551
0.00171944
0.00178193
0.00183345
0.00187441
0.00190535
0.001927
0.00194033
0.00194647
0.00194667
0.00194219
0.00193419
0.00192367
0.00191146
0.00189822
0.00188444
0.00187052
0.00185677
0.00184347
0.00183087
0.00181909
0.00180805
0.00179742
0.00178643
0.00177485
0.00176077
0.00175102
0.000756821
0.000568924
0.000483857
0.00045181
0.000437627
0.00043046
0.000426622
0.000424658
0.000423822
0.000423692
0.000424025
0.000424681
0.000425567
0.000426624
0.000427815
0.000429112
0.000430493
0.000431938
0.000433431
0.000434957
0.000436503
0.000438055
0.000439605
0.000441143
0.000442661
0.000444152
0.000445607
0.00044702
0.000448386
0.00044971
0.000451007
0.000452305
0.000453608
0.000454863
0.000456217
0.00167457
0.00117639
0.00103435
0.00109715
0.00126712
0.00147961
0.0017046
0.00192698
0.00213838
0.00233472
0.00251457
0.00267823
0.0028268
0.00296159
0.00308378
0.00319467
0.00329538
0.00338686
0.00347
0.0035456
0.00361439
0.00367708
0.00373427
0.00378661
0.00383468
0.00387904
0.00392005
0.00395773
0.00399195
0.00402288
0.00405167
0.00408079
0.00411372
0.00415139
0.00419581
0.00159253
0.00112835
0.00105924
0.00113061
0.00124198
0.00135802
0.00146621
0.00156251
0.00164636
0.00171827
0.00177884
0.00182854
0.0018678
0.00189719
0.00191752
0.0019298
0.00193516
0.00193483
0.00193
0.00192176
0.0019111
0.0018988
0.0018855
0.0018717
0.00185776
0.00184397
0.00183054
0.0018177
0.00180561
0.00179427
0.00178345
0.00177233
0.00176051
0.00174579
0.00173503
0.00166904
0.00114868
0.000895044
0.000754192
0.000667876
0.000611
0.000571655
0.000543891
0.000524879
0.000513728
0.000510984
0.000518385
0.000538638
0.000575079
0.000631331
0.000711189
0.000818672
0.00095763
0.00113091
0.00133883
0.00157893
0.00184634
0.00213454
0.00243644
0.00274528
0.00305523
0.00336173
0.00366148
0.00395231
0.00423293
0.00450273
0.0047616
0.00500985
0.00524757
0.00547525
0.000883797
0.000683564
0.000582626
0.00054314
0.000525241
0.000515819
0.000510664
0.00050798
0.000506789
0.000506491
0.00050676
0.000507412
0.000508329
0.000509432
0.000510658
0.000511952
0.000513268
0.000514564
0.000515802
0.000516958
0.000518011
0.00051895
0.000519773
0.000520479
0.000521076
0.000521574
0.000521984
0.00052232
0.000522594
0.000522817
0.000522995
0.000523142
0.00052324
0.000523355
0.000523286
0.00121675
0.000809482
0.000767783
0.000801197
0.000845312
0.000888819
0.000928676
0.000963759
0.000994028
0.00101974
0.0010409
0.00105739
0.00106917
0.00107633
0.00107921
0.00107832
0.00107426
0.00106765
0.00105912
0.0010492
0.00103837
0.001027
0.00101536
0.00100367
0.000992083
0.000980743
0.000969796
0.000959388
0.000949588
0.000940228
0.00093082
0.000920419
0.000908597
0.000894473
0.000883949
0.00120214
0.000785018
0.000736236
0.000761671
0.000801092
0.000841994
0.000879477
0.000912386
0.000940882
0.000965169
0.000985199
0.00100083
0.00101201
0.00101881
0.00102153
0.00102061
0.00101661
0.00101014
0.00100181
0.000992129
0.000981562
0.000970461
0.0009591
0.000947694
0.000936429
0.000925478
0.000914997
0.000905068
0.000895636
0.000886403
0.0008769
0.000866529
0.000855537
0.000843641
0.000837062
0.00167234
0.00117784
0.00104349
0.00110767
0.00126837
0.00146691
0.00167755
0.00188658
0.00208607
0.0022719
0.00244241
0.00259731
0.00273698
0.00286216
0.00297375
0.00307262
0.00315969
0.00323584
0.00330198
0.00335907
0.00340812
0.00345015
0.00348619
0.00351719
0.00354405
0.00356757
0.00358841
0.00360706
0.00362383
0.00363891
0.00365273
0.003666
0.00368041
0.00369599
0.00371941
0.00160258
0.00114579
0.00108829
0.00117587
0.00130667
0.00144507
0.0015769
0.00169626
0.00180097
0.00189003
0.00196314
0.00202062
0.00206291
0.00209098
0.0021063
0.00211071
0.00210627
0.00209499
0.00207869
0.00205892
0.00203692
0.00201355
0.00198953
0.00196545
0.00194181
0.0019191
0.00189766
0.00187749
0.00185801
0.0018378
0.00181501
0.00178841
0.00175972
0.00173409
0.00172456
0.00158702
0.00112637
0.00106486
0.00114503
0.00126702
0.00139594
0.00151818
0.00162834
0.00172464
0.00180611
0.00187269
0.00192471
0.00196265
0.00198743
0.00200043
0.00200339
0.0019982
0.00198673
0.00197066
0.00195141
0.00193016
0.00190774
0.00188477
0.00186171
0.00183891
0.00181667
0.00179538
0.00177543
0.001757
0.00173951
0.00172128
0.00169948
0.0016719
0.0016382
0.00160803
0.00132417
0.000893457
0.000846863
0.00088704
0.000940866
0.000994739
0.00104474
0.00108923
0.00112739
0.00115967
0.00118596
0.00120619
0.00122033
0.00122858
0.00123142
0.00122956
0.00122379
0.00121497
0.00120386
0.00119115
0.00117741
0.0011631
0.00114853
0.00113396
0.00111956
0.0011055
0.00109197
0.00107916
0.00106714
0.00105567
0.001044
0.0010308
0.00101531
0.00099684
0.000981865
0.001448
0.000971932
0.000902805
0.000948268
0.0010202
0.00109501
0.00116423
0.00122538
0.00127822
0.00132284
0.00135935
0.00138768
0.00140796
0.00142058
0.00142621
0.00142578
0.00142035
0.00141103
0.00139883
0.00138465
0.00136919
0.001353
0.00133648
0.00131998
0.00130378
0.00128814
0.0012733
0.00125933
0.001246
0.00123263
0.00121825
0.00120194
0.00118436
0.00116682
0.00115826
0.00166964
0.00115022
0.000900086
0.000770702
0.000713376
0.000716942
0.000783326
0.000911409
0.00109132
0.00131096
0.00155912
0.00182482
0.00209779
0.00236958
0.00263385
0.00288614
0.00312361
0.0033447
0.00354888
0.00373641
0.00390809
0.00406506
0.0042087
0.00434044
0.00446167
0.0045737
0.00467771
0.00477472
0.00486551
0.00495077
0.0050313
0.00510822
0.00518344
0.0052578
0.00533621
0.00108731
0.000736892
0.000691774
0.000701294
0.000721104
0.000743355
0.000764609
0.000783864
0.000800767
0.000815554
0.000828363
0.000839227
0.000848095
0.00085492
0.000859715
0.000862562
0.000863606
0.000863046
0.000861119
0.000858074
0.000854159
0.000849598
0.000844592
0.000839308
0.000833881
0.000828423
0.000823024
0.000817765
0.000812709
0.000807871
0.000803226
0.000798565
0.00079394
0.000788403
0.000785046
0.00167229
0.00115798
0.000950166
0.000919219
0.00101805
0.0012007
0.0014267
0.00167327
0.00192647
0.00217631
0.00241612
0.00264209
0.00285242
0.00304654
0.00322457
0.00338701
0.00353454
0.00366794
0.00378807
0.00389587
0.00399239
0.0040787
0.00415592
0.00422513
0.00428741
0.00434378
0.00439509
0.00444192
0.00448466
0.00452369
0.00455992
0.00459499
0.00463166
0.0046709
0.00471773
0.00167111
0.00115588
0.000921956
0.000834533
0.000858838
0.00098031
0.0011723
0.00140637
0.00166246
0.00192549
0.00218377
0.00242912
0.00265621
0.00286186
0.00304459
0.00320446
0.00334249
0.00346038
0.00356021
0.00364419
0.00371455
0.0037734
0.00382272
0.00386425
0.00389954
0.00392991
0.0039565
0.00398026
0.00400197
0.00402223
0.00404145
0.00405968
0.00407715
0.00409279
0.00411173
0.00166885
0.00114404
0.000889627
0.000748556
0.000662251
0.000605264
0.00056535
0.000536066
0.000513774
0.000496308
0.000482331
0.00047101
0.000461845
0.000454586
0.000449191
0.000445824
0.000444862
0.000446917
0.000452856
0.000463815
0.000481197
0.00050668
0.000542241
0.000590203
0.000653216
0.000734056
0.000835233
0.000958512
0.00110454
0.00127269
0.00146121
0.00166753
0.00188873
0.00212181
0.00236107
0.00142643
0.000963626
0.000900903
0.000946669
0.00101393
0.00108065
0.00114126
0.00119438
0.00124086
0.00128159
0.00131751
0.00134942
0.00137794
0.00140365
0.00142702
0.00144843
0.00146818
0.0014865
0.00150354
0.00151942
0.00153424
0.00154808
0.00156099
0.00157302
0.00158426
0.00159476
0.00160462
0.00161387
0.00162255
0.00163064
0.00163824
0.00164548
0.00165311
0.00166028
0.00167421
0.00167454
0.00117676
0.00102987
0.00108232
0.00123722
0.00143442
0.00164759
0.00186196
0.00206806
0.00226076
0.00243758
0.00259762
0.00274081
0.0028676
0.00297866
0.00307483
0.00315708
0.00322652
0.00328441
0.00333213
0.00337111
0.00340275
0.00342841
0.00344929
0.00346645
0.00348081
0.0034931
0.00350389
0.0035136
0.00352245
0.0035307
0.00353853
0.00354691
0.00355506
0.00357051
0.0010485
0.000668294
0.000630742
0.000654297
0.000688037
0.000723297
0.000756582
0.000786352
0.000812045
0.000833467
0.000850611
0.000863433
0.000871899
0.000876128
0.000876449
0.000873356
0.000867445
0.000859322
0.000849576
0.000838728
0.000827196
0.000815286
0.000803233
0.000791218
0.000779382
0.000767879
0.000756893
0.000746592
0.000736984
0.000727688
0.000717817
0.000706056
0.000691817
0.000675413
0.000662965
0.00105842
0.000676032
0.000639067
0.000663992
0.000699001
0.000735286
0.000769395
0.000799861
0.000826162
0.000848052
0.000865569
0.000878675
0.000887338
0.000891681
0.00089204
0.000888916
0.000882919
0.00087467
0.000864758
0.000853709
0.000841942
0.000829757
0.000817427
0.000805175
0.000793216
0.000781744
0.000770888
0.000760599
0.000750542
0.00074004
0.000728324
0.000715041
0.000701466
0.000689999
0.000687375
0.00167699
0.00118913
0.00105881
0.0011317
0.00130546
0.00151788
0.00174058
0.00195775
0.00216022
0.00234307
0.00250416
0.00264259
0.00275855
0.00285285
0.00292683
0.00298239
0.00302185
0.00304767
0.00306234
0.00306823
0.00306743
0.00306173
0.00305257
0.00304111
0.00302824
0.00301467
0.00300093
0.00298751
0.00297479
0.00296294
0.0029518
0.00294052
0.00292832
0.00291298
0.00289994
0.0016671
0.00121819
0.00116682
0.00126612
0.00141264
0.00156878
0.00171937
0.00185816
0.00198317
0.00209457
0.0021935
0.00228144
0.00235988
0.00243022
0.00249363
0.00255113
0.00260357
0.00265171
0.00269617
0.00273748
0.00277607
0.00281229
0.00284646
0.00287891
0.00290994
0.0029397
0.00296804
0.00299446
0.00301853
0.00304063
0.00306275
0.00308821
0.00312012
0.00315709
0.00319538
0.00167085
0.00115094
0.000913792
0.000820598
0.000834158
0.000941997
0.00112209
0.00134758
0.0015988
0.00186173
0.00212588
0.00238404
0.00263179
0.00286679
0.00308801
0.00329516
0.00348848
0.00366844
0.00383561
0.00399062
0.00413414
0.00426685
0.00438949
0.00450282
0.00460764
0.00470477
0.00479499
0.00487896
0.00495718
0.00503017
0.00509872
0.00516409
0.00522819
0.00529183
0.00535865
0.000473467
0.000307607
0.000267367
0.000254825
0.000251798
0.000252364
0.000254286
0.000256695
0.000259261
0.000261833
0.000264341
0.000266753
0.000269057
0.000271247
0.000273321
0.000275274
0.000277101
0.000278796
0.000280354
0.000281772
0.000283051
0.000284194
0.00028521
0.000286107
0.0002869
0.0002876
0.000288217
0.000288753
0.000289206
0.00028958
0.000289912
0.00029026
0.000290736
0.000291303
0.000292256
0.00166229
0.00118247
0.00108706
0.00117522
0.00133584
0.00152094
0.00170958
0.00189102
0.00206009
0.00221455
0.00235444
0.00248038
0.00259326
0.00269416
0.00278406
0.00286389
0.00293447
0.00299657
0.00305093
0.00309828
0.00313937
0.00317496
0.00320579
0.00323258
0.003256
0.00327668
0.0032951
0.00331158
0.00332631
0.0033394
0.00335132
0.00336296
0.00337614
0.00339106
0.00341328
0.00141612
0.000961168
0.000899573
0.000940504
0.00100168
0.00106384
0.00112203
0.00117459
0.00122105
0.00126193
0.00129799
0.00132989
0.00135826
0.00138361
0.00140634
0.00142678
0.00144512
0.00146154
0.00147617
0.00148913
0.00150056
0.00151059
0.00151936
0.001527
0.00153366
0.00153949
0.00154465
0.0015493
0.00155356
0.00155753
0.00156126
0.00156468
0.00156812
0.00157045
0.00157742
0.000856256
0.0006567
0.000557444
0.000519052
0.000501594
0.000492537
0.000487755
0.000485383
0.000484417
0.000484284
0.000484664
0.000485368
0.000486272
0.000487287
0.000488338
0.000489364
0.000490313
0.000491146
0.000491837
0.000492373
0.00049275
0.000492973
0.000493056
0.000493013
0.000492863
0.000492626
0.000492321
0.000491968
0.000491582
0.000491173
0.000490742
0.000490301
0.000489807
0.000489406
0.000488553
0.000883476
0.000684244
0.000580272
0.000541064
0.000523623
0.000514589
0.000509782
0.00050732
0.000506222
0.000505929
0.00050611
0.000506538
0.000507046
0.000507501
0.000507801
0.000507879
0.000507696
0.00050724
0.000506522
0.000505568
0.000504413
0.000503094
0.000501649
0.000500113
0.00049852
0.000496897
0.000495269
0.000493655
0.000492069
0.000490517
0.000488993
0.000487512
0.00048599
0.000484738
0.000482586
0.000904513
0.00061883
0.000550583
0.000531575
0.000529188
0.000533536
0.000540558
0.000548406
0.000556269
0.000563824
0.00057096
0.000577664
0.000583976
0.000589963
0.000595685
0.000601201
0.000606564
0.000611813
0.00061698
0.000622087
0.000627144
0.000632161
0.000637147
0.000642117
0.000647083
0.000652026
0.000656882
0.000661555
0.000665994
0.000670307
0.00067484
0.000680056
0.000686241
0.000692991
0.000699059
0.00167178
0.00115332
0.000934513
0.000883348
0.000958371
0.00112433
0.00134319
0.00158962
0.00184751
0.00210503
0.00235411
0.00259007
0.00281083
0.00301589
0.00320568
0.00338113
0.00354338
0.00369364
0.00383305
0.00396271
0.00408359
0.00419658
0.00430251
0.00440214
0.00449622
0.00458528
0.00466953
0.00474885
0.00482313
0.00489303
0.00496072
0.00502973
0.0051033
0.00518067
0.00525638
0.000900618
0.000693057
0.000589145
0.000548802
0.000530973
0.00052197
0.000517156
0.000514708
0.000513659
0.000513461
0.000513817
0.000514557
0.00051558
0.000516818
0.000518224
0.000519763
0.000521409
0.000523138
0.000524932
0.000526775
0.000528654
0.000530557
0.000532478
0.000534409
0.000536346
0.000538278
0.000540191
0.000542068
0.000543907
0.000545728
0.000547581
0.000549526
0.000551567
0.000553514
0.000555611
0.00106524
0.000686402
0.000626475
0.000629056
0.000646282
0.000667562
0.000689187
0.000709488
0.000727803
0.000744286
0.00075916
0.00077265
0.000784983
0.000796367
0.000806985
0.000816981
0.000826475
0.000835567
0.000844339
0.000852851
0.000861146
0.000869251
0.000877197
0.000885023
0.00089277
0.000900432
0.000907915
0.000915027
0.000921619
0.000927805
0.000934195
0.000941746
0.000951307
0.000962382
0.000973063
0.0014148
0.000961363
0.000904293
0.000954668
0.00102494
0.00109341
0.00115525
0.00120976
0.00125755
0.00129945
0.00133614
0.00136816
0.00139593
0.00141976
0.0014399
0.0014566
0.00147011
0.00148071
0.0014887
0.00149442
0.00149822
0.00150044
0.00150141
0.00150143
0.00150075
0.00149959
0.00149813
0.00149649
0.00149477
0.00149298
0.00149119
0.0014893
0.00148783
0.00148566
0.00148861
0.000882988
0.000601742
0.000536481
0.000519243
0.000517577
0.000522037
0.000528901
0.000536499
0.000544101
0.00055142
0.000558328
0.000564817
0.000570918
0.000576694
0.00058221
0.000587526
0.000592691
0.000597743
0.000602714
0.000607624
0.000612483
0.0006173
0.000622081
0.000626839
0.000631579
0.000636284
0.000640896
0.000645332
0.000649553
0.000653652
0.000657928
0.000662771
0.00066842
0.000674514
0.000680081
0.00150493
0.00102259
0.000946822
0.00100228
0.00109259
0.00118665
0.00127485
0.00135424
0.00142442
0.00148613
0.00154045
0.00158851
0.00163128
0.00166964
0.00170431
0.00173593
0.00176504
0.00179206
0.00181737
0.00184127
0.00186399
0.00188571
0.00190659
0.00192683
0.00194658
0.00196592
0.00198468
0.00200245
0.00201886
0.00203415
0.00204973
0.00206799
0.00209103
0.00211826
0.00214492
0.00167029
0.00114937
0.00090624
0.000798243
0.00078485
0.000858172
0.00100809
0.00121424
0.00145686
0.00172081
0.00199375
0.00226604
0.00253116
0.00278532
0.00302649
0.00325397
0.00346775
0.00366817
0.00385576
0.00403114
0.00419495
0.00434789
0.00449065
0.00462394
0.00474852
0.00486511
0.00497436
0.00507673
0.00517258
0.00526241
0.0053472
0.00542867
0.00550918
0.00558975
0.0056727
0.00166659
0.001206
0.00114482
0.00125224
0.00141359
0.00158427
0.00174769
0.00189768
0.00203288
0.00215327
0.00226057
0.0023563
0.00244189
0.00251871
0.002588
0.00265083
0.00270808
0.00276048
0.00280863
0.002853
0.00289399
0.0029319
0.00296702
0.0029996
0.00302988
0.00305812
0.00308452
0.00310919
0.00313217
0.00315348
0.00317345
0.00319273
0.00321277
0.00323346
0.00326087
0.000888919
0.000683302
0.000584058
0.000545722
0.000528445
0.000519532
0.000514695
0.000512189
0.00051109
0.000510859
0.000511197
0.000511925
0.000512937
0.000514164
0.000515558
0.000517082
0.000518705
0.000520401
0.000522146
0.00052392
0.000525706
0.00052749
0.000529261
0.000531011
0.000532733
0.000534418
0.000536055
0.000537631
0.000539139
0.000540598
0.00054205
0.000543555
0.000545129
0.000546663
0.000548216
0.001158
0.000744788
0.00068906
0.000709081
0.000745125
0.000783321
0.000819454
0.000852234
0.000881527
0.000907596
0.000930805
0.000951466
0.000969877
0.000986292
0.00100091
0.0010139
0.00102537
0.00103543
0.00104418
0.00105174
0.0010582
0.00106368
0.00106832
0.00107223
0.00107553
0.00107835
0.00108076
0.00108283
0.00108455
0.00108594
0.00108708
0.00108814
0.00108978
0.00109153
0.00109741
0.00166901
0.0011753
0.00105271
0.00112053
0.0012739
0.001461
0.00165759
0.00185025
0.00203184
0.0021993
0.00235188
0.0024901
0.00261505
0.00272807
0.00283051
0.00292368
0.0030088
0.00308694
0.00315904
0.00322593
0.00328832
0.00334678
0.00340187
0.00345409
0.00350391
0.00355157
0.00359694
0.00363954
0.00367908
0.0037163
0.00375373
0.00379517
0.00384351
0.00389663
0.00394654
0.00125144
0.000812551
0.000754879
0.000787021
0.000836031
0.000885761
0.00093226
0.000974145
0.00101118
0.0010438
0.00107263
0.00109829
0.0011213
0.00114212
0.00116115
0.00117872
0.00119511
0.00121054
0.0012252
0.00123923
0.00125276
0.00126585
0.0012786
0.00129108
0.00130341
0.00131557
0.00132745
0.00133874
0.00134919
0.00135898
0.00136909
0.00138111
0.00139645
0.00141453
0.0014319
0.00086954
0.000670374
0.000567969
0.000529766
0.00051288
0.000504159
0.000499542
0.000497211
0.000496215
0.000496005
0.000496262
0.000496778
0.0004974
0.000498008
0.000498507
0.000498828
0.000498929
0.000498789
0.000498411
0.000497811
0.000497015
0.000496054
0.000494962
0.000493769
0.000492506
0.000491199
0.000489874
0.000488549
0.000487238
0.00048595
0.00048468
0.000483439
0.000482155
0.000481093
0.000479232
0.00166928
0.0011492
0.000896717
0.000759289
0.000682374
0.000646994
0.000649982
0.000695098
0.000786151
0.000922857
0.00110174
0.00131771
0.00156339
0.00182924
0.0021052
0.00238244
0.00265427
0.00291612
0.00316517
0.00339983
0.00361962
0.00382485
0.00401631
0.00419502
0.00436214
0.00451884
0.00466627
0.00480549
0.00493745
0.00506299
0.00518284
0.00529771
0.00540854
0.00551564
0.00562171
0.00167408
0.00117179
0.00101768
0.00106907
0.00123652
0.00145277
0.00168456
0.0019155
0.00213633
0.00234233
0.00253171
0.00270454
0.00286178
0.00300476
0.00313476
0.00325305
0.00336079
0.00345902
0.00354871
0.0036307
0.0037058
0.00377472
0.00383807
0.0038965
0.00395061
0.00400092
0.00404771
0.00409091
0.00413033
0.00416619
0.00419992
0.00423439
0.00427329
0.00431734
0.00436687
0.00167395
0.00116738
0.000968552
0.000953066
0.00107271
0.00127611
0.00151917
0.00177576
0.00202901
0.00226803
0.0024865
0.00268019
0.00284767
0.00298892
0.00310486
0.00319736
0.00326899
0.00332263
0.00336121
0.00338752
0.00340405
0.00341297
0.00341608
0.0034149
0.00341063
0.00340427
0.00339664
0.00338844
0.00338026
0.00337246
0.00336502
0.00335718
0.00334807
0.00333577
0.00332465
0.00136648
0.000925648
0.00086716
0.000901981
0.000954467
0.00100833
0.00105925
0.0011055
0.00114631
0.0011822
0.0012139
0.00124195
0.00126687
0.00128908
0.00130891
0.00132661
0.00134235
0.00135627
0.00136848
0.00137912
0.0013883
0.00139616
0.00140286
0.00140854
0.00141333
0.0014174
0.0014209
0.00142399
0.00142681
0.00142943
0.00143191
0.00143411
0.00143634
0.00143727
0.00144293
0.00167311
0.00116027
0.000960486
0.000943133
0.00105342
0.00123841
0.00145935
0.00169607
0.00193582
0.00216985
0.00239281
0.00260188
0.00279606
0.00297536
0.00314027
0.00329148
0.00342973
0.00355575
0.00367029
0.00377409
0.00386791
0.00395255
0.00402882
0.00409757
0.00415967
0.00421598
0.00426733
0.00431445
0.00435797
0.00439836
0.00443615
0.00447191
0.00450681
0.00454063
0.00457932
0.00166919
0.00114693
0.000893839
0.000756197
0.000679133
0.000643731
0.000647298
0.000694352
0.000789186
0.000930929
0.00111469
0.00133423
0.00158196
0.00184894
0.00212629
0.0024065
0.00268388
0.00295457
0.00321614
0.00346721
0.00370715
0.00393582
0.00415344
0.00436041
0.00455727
0.00474458
0.00492276
0.005092
0.00525237
0.00540436
0.00554959
0.00569102
0.00583224
0.00597442
0.00611527
0.0016689
0.0011455
0.000891487
0.000750562
0.000664263
0.000607293
0.000567522
0.00053866
0.000517327
0.000501777
0.00049132
0.000486065
0.000486798
0.000494905
0.000512271
0.000541151
0.000584087
0.000643918
0.000723799
0.000826912
0.000955794
0.00111156
0.00129346
0.00149892
0.001724
0.00196418
0.00221496
0.00247246
0.00273352
0.00299582
0.00325784
0.0035189
0.00377905
0.00403867
0.00429574
0.000819046
0.000625336
0.000532361
0.000497181
0.000481513
0.000473351
0.000468867
0.0004665
0.000465395
0.000465085
0.000465308
0.000465908
0.000466782
0.000467862
0.000469098
0.000470449
0.000471881
0.000473362
0.000474865
0.000476365
0.000477843
0.000479281
0.000480666
0.00048199
0.000483248
0.000484436
0.000485554
0.000486603
0.000487587
0.000488509
0.000489378
0.000490211
0.000490998
0.000491782
0.000492358
0.00106578
0.000750614
0.00069547
0.000689338
0.000695602
0.000706933
0.000719611
0.000732032
0.000743574
0.000753972
0.000763054
0.000770671
0.000776676
0.000780975
0.000783561
0.000784504
0.000783941
0.000782059
0.000779074
0.000775209
0.000770676
0.000765668
0.000760349
0.000754856
0.000749298
0.000743763
0.000738327
0.000733057
0.000728003
0.000723163
0.000718484
0.000713752
0.000708981
0.000703435
0.000699839
0.00165519
0.00118043
0.00109481
0.00117331
0.00131065
0.00146497
0.00161803
0.00176149
0.00189198
0.00200896
0.00211309
0.00220558
0.00228773
0.0023607
0.00242551
0.00248294
0.00253364
0.00257817
0.00261703
0.00265076
0.00267986
0.00270487
0.0027263
0.00274466
0.00276042
0.00277407
0.00278605
0.00279678
0.00280663
0.00281584
0.00282457
0.00283272
0.00284064
0.00284678
0.00285871
0.0015396
0.00105551
0.000977315
0.0010362
0.00113243
0.00123249
0.00132621
0.00141075
0.00148576
0.00155194
0.0016103
0.0016619
0.00170775
0.00174878
0.00178581
0.00181954
0.00185055
0.00187931
0.00190623
0.00193163
0.00195573
0.00197873
0.00200079
0.00202209
0.00204276
0.00206284
0.00208218
0.00210046
0.00211747
0.00213351
0.00214985
0.00216837
0.0021906
0.0022155
0.00223933
0.000773023
0.000507472
0.000448034
0.000432421
0.000431259
0.000435569
0.000441824
0.00044861
0.000455357
0.000461838
0.000467962
0.000473689
0.000479014
0.000483942
0.000488477
0.000492619
0.000496368
0.000499724
0.00050269
0.000505277
0.000507503
0.000509395
0.000510985
0.00051231
0.000513407
0.000514314
0.000515062
0.000515669
0.000516144
0.000516491
0.000516754
0.000516994
0.000517429
0.000517908
0.000519564
0.000938392
0.000655938
0.000591533
0.00057312
0.00057069
0.000574892
0.000581802
0.000589587
0.000597417
0.000604958
0.000612104
0.000618848
0.000625235
0.000631325
0.000637176
0.000642833
0.000648337
0.000653717
0.000658997
0.00066419
0.000669301
0.000674331
0.000679286
0.000684179
0.000689022
0.000693804
0.000698459
0.000702874
0.000706968
0.000710824
0.000714817
0.0007195
0.000725355
0.000731913
0.00073858
0.00118868
0.000764492
0.000715159
0.000743595
0.00078516
0.000827216
0.000865171
0.000898682
0.000927781
0.00095274
0.000973585
0.00099022
0.00100259
0.00101076
0.00101498
0.00101563
0.00101322
0.0010083
0.00100145
0.000993173
0.000983925
0.000974065
0.000963876
0.000953578
0.000943349
0.00093335
0.000923727
0.000914582
0.000905932
0.000897621
0.000889349
0.000880601
0.000871443
0.000860941
0.000854465
0.00167394
0.00117295
0.00102176
0.00107596
0.00124543
0.00146312
0.00169567
0.00192662
0.00214688
0.00235195
0.00254025
0.00271191
0.00286798
0.00300983
0.00313883
0.00325628
0.00336339
0.00346123
0.00355082
0.00363304
0.00370869
0.00377849
0.00384305
0.00390298
0.00395888
0.0040112
0.00406012
0.00410547
0.00414694
0.0041848
0.0042208
0.00425821
0.00430097
0.00434935
0.00440246
0.0016692
0.00115012
0.000896769
0.000756843
0.000673453
0.000623989
0.000600547
0.00060288
0.000634778
0.000700811
0.000803844
0.000944789
0.00112311
0.00133583
0.00157645
0.00183578
0.00210422
0.00237375
0.00263879
0.00289608
0.00314399
0.00338184
0.00360932
0.00382638
0.00403311
0.00422971
0.00441651
0.00459388
0.00476228
0.00492215
0.00507413
0.00521918
0.00535887
0.00549431
0.00562859
0.00166919
0.00114688
0.000893956
0.000757152
0.000682205
0.00065096
0.00066134
0.000717704
0.000823286
0.000976394
0.00117196
0.001403
0.00166038
0.00193387
0.00221417
0.00249409
0.00276867
0.00303484
0.00329077
0.00353558
0.00376898
0.00399103
0.00420201
0.00440235
0.00459258
0.00477328
0.00494493
0.00510784
0.00526219
0.00540852
0.00554817
0.00568361
0.00581785
0.00595207
0.00608515
0.000814367
0.000620591
0.000527649
0.000492445
0.000476637
0.000468375
0.000463861
0.000461479
0.000460373
0.000460067
0.000460295
0.000460897
0.000461769
0.000462842
0.000464064
0.00046539
0.000466785
0.000468214
0.000469647
0.000471058
0.000472427
0.000473737
0.000474978
0.000476143
0.000477227
0.000478232
0.000479162
0.000480019
0.000480809
0.00048154
0.000482217
0.000482858
0.000483448
0.000484045
0.000484418
0.00166634
0.00119147
0.00109942
0.0011951
0.00136379
0.00155572
0.00174936
0.00193297
0.00210008
0.00224683
0.00237064
0.00247097
0.0025482
0.00260366
0.00263955
0.00265865
0.00266399
0.00265855
0.00264503
0.00262574
0.00260254
0.00257684
0.00254967
0.00252182
0.00249385
0.00246628
0.0024397
0.00241467
0.00239143
0.00236924
0.00234594
0.002318
0.00228267
0.00224036
0.0022024
0.00166668
0.00119127
0.00109785
0.0011922
0.00136027
0.00155258
0.00174748
0.00193283
0.00210188
0.00225059
0.00237635
0.00247843
0.00255715
0.00261385
0.00265073
0.0026706
0.00267652
0.0026715
0.00265827
0.00263914
0.00261595
0.00259013
0.00256275
0.00253473
0.00250682
0.00247971
0.00245392
0.00242951
0.00240578
0.00238106
0.00235316
0.00232065
0.0022856
0.0022548
0.00224318
0.00167396
0.00116748
0.000967887
0.000948734
0.00105903
0.00124703
0.00147272
0.00171387
0.00195455
0.00218326
0.00239205
0.00257567
0.00273137
0.0028587
0.00295898
0.0030347
0.00308899
0.00312519
0.00314653
0.00315599
0.00315618
0.0031493
0.00313717
0.00312129
0.00310291
0.00308313
0.0030629
0.0030429
0.00302338
0.00300387
0.00298326
0.00296009
0.00293405
0.00290657
0.00288597
0.00166913
0.00115001
0.000896566
0.000755796
0.000669668
0.000613434
0.00057572
0.000551449
0.000539148
0.00053984
0.000556443
0.000593123
0.000654432
0.000744656
0.000867658
0.00102655
0.00122251
0.00145363
0.00171473
0.0019983
0.00229584
0.0025992
0.00290145
0.00319731
0.00348313
0.00375669
0.0040169
0.0042635
0.00449682
0.00471752
0.00492647
0.00512458
0.00531283
0.00549143
0.00566223
0.001669
0.00114716
0.000893324
0.000752614
0.000667073
0.000612292
0.000577577
0.000558898
0.000556087
0.000571404
0.00060832
0.00067039
0.000760704
0.000881994
0.0010363
0.00122371
0.00144133
0.0016835
0.00194298
0.00221239
0.00248526
0.00275657
0.00302277
0.0032816
0.00353178
0.00377278
0.00400457
0.0042274
0.00444168
0.00464792
0.00484681
0.00503941
0.00522722
0.00541152
0.00559266
0.00167219
0.0011618
0.000948261
0.00090504
0.000992918
0.00117139
0.00139775
0.00164522
0.00189649
0.00213802
0.00235937
0.00255305
0.00271635
0.00284917
0.00295312
0.00303095
0.00308599
0.00312177
0.00314173
0.00314902
0.00314639
0.00313618
0.00312027
0.00310022
0.00307728
0.00305256
0.00302713
0.00300196
0.00297757
0.0029535
0.00292784
0.00289737
0.00285954
0.00281535
0.00277541
0.00167228
0.0011621
0.00094937
0.000908029
0.000998535
0.00117906
0.0014063
0.00165376
0.00190447
0.00214517
0.00236561
0.00255848
0.002721
0.00285311
0.00295643
0.00303369
0.00308824
0.0031236
0.00314319
0.00315012
0.00314712
0.00313648
0.00312015
0.00309977
0.00307674
0.00305235
0.0030276
0.00300298
0.00297817
0.0029518
0.00292195
0.00288738
0.00285002
0.00281679
0.00280145
0.00086795
0.000665584
0.000564584
0.000525046
0.000507606
0.000498844
0.000494165
0.000491773
0.000490746
0.00049056
0.000490923
0.000491661
0.000492668
0.000493872
0.000495229
0.00049671
0.00049829
0.000499948
0.000501669
0.000503437
0.000505239
0.000507062
0.000508898
0.000510738
0.000512574
0.000514395
0.000516191
0.00051795
0.000519668
0.000521359
0.00052305
0.000524775
0.00052654
0.000528204
0.000530098
0.000872591
0.000667037
0.000574202
0.000538796
0.000522757
0.000514509
0.000510091
0.000507856
0.000506923
0.000506794
0.000507193
0.00050796
0.000508995
0.000510236
0.00051164
0.00051317
0.0005148
0.000516506
0.000518268
0.000520069
0.000521896
0.000523736
0.000525581
0.000527424
0.00052926
0.000531079
0.000532864
0.0005346
0.000536279
0.000537925
0.000539593
0.000541353
0.000543216
0.000545026
0.000546882
0.00166882
0.00114311
0.000888587
0.000747475
0.000661176
0.00060421
0.000564313
0.000535036
0.000512726
0.000495193
0.000481061
0.000469425
0.000459674
0.000451378
0.000444235
0.000438026
0.000432593
0.000427831
0.000423675
0.000420103
0.000417138
0.000414854
0.000413386
0.000412945
0.000413831
0.000416456
0.00042136
0.000429235
0.000440947
0.000457572
0.000480429
0.000511153
0.000551735
0.000604551
0.00067057
0.00141954
0.000961666
0.000895815
0.000936771
0.00100129
0.00106856
0.00113196
0.00118899
0.00123937
0.00128364
0.0013225
0.0013566
0.00138657
0.00141293
0.00143608
0.00145631
0.00147384
0.00148888
0.00150163
0.00151229
0.00152109
0.00152827
0.00153404
0.00153863
0.00154225
0.00154509
0.00154738
0.00154931
0.00155105
0.00155271
0.00155434
0.0015557
0.00155703
0.0015566
0.00156168
0.00166985
0.00114928
0.000901633
0.000780415
0.000740775
0.000774621
0.000880564
0.00104807
0.00126123
0.00150647
0.0017722
0.00204791
0.00232479
0.00259608
0.00285711
0.00310484
0.00333762
0.00355487
0.00375649
0.00394281
0.00411449
0.00427239
0.00441753
0.00455104
0.00467412
0.00478794
0.00489357
0.00499182
0.0050833
0.00516863
0.00524897
0.00532632
0.00540369
0.00548265
0.00556646
0.00116226
0.000759215
0.000698236
0.000708153
0.000733829
0.000764402
0.000795086
0.000823994
0.000850133
0.000873324
0.000893763
0.00091167
0.000927233
0.000940597
0.00095187
0.000961139
0.000968508
0.000974115
0.000978132
0.000980753
0.000982185
0.00098263
0.000982281
0.000981309
0.000979874
0.000978126
0.000976213
0.00097427
0.000972408
0.000970663
0.000969
0.00096716
0.000965128
0.000961667
0.000960661
0.00167014
0.00115089
0.000906096
0.000792753
0.000768935
0.000826649
0.00095837
0.00114681
0.00137429
0.00162695
0.00189291
0.00216223
0.00242761
0.00268388
0.00292761
0.00315688
0.00337028
0.00356703
0.00374703
0.0039106
0.00405861
0.00419227
0.00431298
0.00442218
0.00452132
0.00461178
0.00469488
0.0047718
0.00484356
0.00491101
0.00497487
0.00503567
0.00509425
0.00515024
0.00520852
0.00167669
0.00119527
0.00108016
0.00116404
0.00133994
0.0015488
0.00176414
0.00197176
0.00216436
0.00233839
0.00249241
0.00262596
0.00273919
0.00283277
0.00290778
0.00296576
0.0030086
0.00303843
0.00305745
0.0030678
0.00307142
0.00307001
0.00306498
0.00305749
0.00304843
0.00303851
0.00302829
0.00301822
0.00300867
0.00299983
0.00299168
0.00298361
0.00297514
0.00296415
0.00295618
0.00117321
0.00076904
0.000717673
0.000739095
0.000775092
0.000813161
0.000849408
0.000882501
0.000912208
0.000938731
0.000962372
0.000983413
0.00100209
0.00101864
0.00103324
0.00104603
0.00105714
0.00106668
0.00107477
0.00108154
0.00108713
0.00109169
0.00109536
0.00109829
0.00110063
0.00110249
0.00110399
0.00110518
0.00110609
0.00110673
0.00110717
0.00110752
0.00110837
0.0011092
0.00111383
0.00149706
0.00104224
0.00098357
0.001041
0.00112675
0.00121494
0.00129754
0.00137219
0.00143859
0.00149729
0.00154906
0.00159452
0.0016345
0.00166958
0.00170023
0.00172686
0.00174982
0.00176942
0.00178599
0.00179985
0.00181132
0.00182074
0.00182843
0.00183471
0.00183985
0.00184411
0.00184769
0.00185072
0.00185326
0.00185531
0.001857
0.00185851
0.00186081
0.00186326
0.00187209
0.000918761
0.000626005
0.000567335
0.00055527
0.000556604
0.000563242
0.000571823
0.000580817
0.000589644
0.000598061
0.000605942
0.000613209
0.000619821
0.000625748
0.000630966
0.000635461
0.000639231
0.000642291
0.000644675
0.000646433
0.000647631
0.000648343
0.000648649
0.000648625
0.000648343
0.000647869
0.000647257
0.000646547
0.000645767
0.000644922
0.000644046
0.000643138
0.000642419
0.000641528
0.000642379
0.00138581
0.000936527
0.000880514
0.000924107
0.000986337
0.00104777
0.00110385
0.00115359
0.00119737
0.00123586
0.00126984
0.00129994
0.00132682
0.00135105
0.00137311
0.00139341
0.00141228
0.00142997
0.00144669
0.00146256
0.00147769
0.00149214
0.00150595
0.00151917
0.00153184
0.001544
0.00155566
0.00156675
0.00157719
0.00158692
0.00159619
0.00160546
0.00161565
0.00162664
0.00164124
0.00157031
0.00112618
0.00107266
0.00113546
0.00122695
0.00132072
0.00140852
0.00148769
0.00155783
0.00161957
0.00167395
0.00172205
0.0017649
0.00180338
0.00183822
0.00187003
0.0018993
0.00192644
0.0019518
0.00197567
0.00199823
0.00201968
0.00204015
0.00205982
0.00207886
0.00209732
0.00211504
0.00213158
0.00214658
0.00216028
0.00217418
0.00219074
0.00221232
0.00223781
0.00226448
0.000872801
0.000677881
0.000576373
0.000537693
0.000520422
0.000511489
0.000506741
0.000504316
0.000503238
0.000502951
0.000503122
0.000503522
0.000503979
0.000504356
0.000504555
0.000504509
0.000504183
0.000503573
0.000502694
0.000501576
0.000500257
0.000498779
0.00049718
0.000495497
0.000493764
0.000492009
0.000490255
0.000488523
0.000486824
0.000485167
0.000483541
0.000481962
0.000480348
0.000479009
0.000476812
0.000759709
0.000574636
0.000487902
0.000454393
0.000439435
0.00043186
0.000427803
0.000425731
0.000424839
0.000424669
0.000424969
0.000425591
0.00042645
0.000427488
0.000428665
0.000429955
0.000431334
0.000432786
0.000434296
0.000435851
0.00043744
0.000439054
0.000440685
0.00044233
0.000443982
0.000445633
0.00044727
0.000448881
0.000450467
0.000452047
0.000453663
0.000455355
0.000457117
0.000458769
0.000460605
0.000862863
0.000665491
0.000564886
0.000526228
0.000509305
0.000500583
0.000495741
0.000493136
0.00049188
0.000491487
0.000491666
0.000492246
0.000493118
0.000494211
0.000495474
0.00049687
0.000498365
0.000499932
0.000501544
0.000503181
0.000504822
0.00050645
0.000508052
0.000509616
0.000511133
0.000512597
0.000514003
0.000515349
0.00051663
0.000517854
0.000519028
0.000520174
0.00052129
0.00052237
0.00052338
0.000840326
0.000644983
0.000548236
0.000510901
0.000494271
0.00048573
0.000481094
0.000478687
0.000477617
0.000477372
0.000477668
0.000478338
0.000479276
0.000480417
0.000481715
0.000483132
0.000484638
0.000486206
0.000487812
0.000489435
0.000491059
0.00049267
0.000494256
0.000495809
0.000497325
0.000498796
0.000500213
0.000501566
0.000502853
0.000504087
0.000505302
0.000506552
0.000507848
0.000509116
0.000510365
0.00166513
0.00118487
0.00109557
0.00118982
0.00135259
0.00153537
0.00171784
0.00189023
0.00204837
0.00219119
0.00231917
0.00243354
0.00253595
0.00262796
0.00271092
0.00278596
0.00285409
0.00291611
0.00297275
0.00302462
0.00307226
0.00311614
0.00315668
0.00319428
0.00322933
0.00326213
0.0032928
0.00332111
0.00334677
0.00336988
0.00339176
0.00341501
0.00344298
0.0034758
0.00351491
0.00167192
0.00118646
0.00107787
0.00115932
0.00132015
0.00150808
0.00170027
0.00188496
0.00205684
0.00221405
0.00235654
0.00248517
0.00260113
0.00270573
0.00280021
0.00288564
0.00296294
0.00303287
0.00309611
0.00315324
0.00320481
0.00325131
0.00329324
0.00333106
0.00336524
0.00339626
0.00342458
0.00345061
0.00347464
0.00349691
0.0035177
0.00353736
0.00355689
0.00357575
0.00360091
0.000818241
0.00062712
0.000533372
0.000497594
0.000481806
0.000473617
0.000469074
0.000466653
0.0004655
0.000465156
0.000465348
0.000465919
0.000466766
0.000467821
0.000469036
0.000470374
0.000471802
0.000473293
0.00047482
0.000476363
0.000477901
0.000479418
0.000480901
0.000482339
0.000483725
0.000485055
0.000486324
0.000487531
0.000488675
0.000489761
0.000490796
0.000491801
0.000492769
0.000493719
0.000494532
0.00167261
0.00115696
0.000953854
0.000933293
0.00104315
0.00123175
0.00145873
0.0017027
0.00195047
0.00219275
0.00242374
0.00264039
0.00284159
0.00302739
0.00319855
0.00335615
0.0035014
0.00363553
0.00375973
0.00387508
0.00398253
0.00408296
0.00417714
0.00426584
0.00434976
0.0044294
0.00450486
0.00457591
0.00464236
0.00470491
0.004766
0.0048295
0.0048988
0.00497262
0.0050444
0.00132073
0.00089226
0.000840935
0.000878563
0.000932871
0.000986998
0.00103673
0.00108103
0.0011201
0.00115449
0.00118489
0.00121187
0.00123598
0.00125774
0.00127758
0.00129589
0.00131298
0.00132906
0.00134432
0.00135889
0.00137285
0.00138626
0.00139915
0.00141156
0.00142353
0.0014351
0.00144623
0.00145685
0.00146685
0.00147618
0.00148511
0.0014942
0.00150441
0.0015156
0.00152962
0.00166991
0.00115322
0.000904419
0.000777509
0.000725446
0.000738395
0.000817421
0.000958408
0.00114946
0.00137702
0.00162758
0.00188784
0.00214637
0.00239486
0.00262815
0.00284353
0.00303992
0.00321723
0.00337596
0.00351708
0.00364187
0.00375181
0.00384854
0.00393372
0.00400898
0.00407586
0.00413577
0.00418997
0.00423957
0.00428548
0.00432843
0.0043688
0.0044071
0.00444258
0.00447948
0.00156347
0.00109979
0.00104368
0.00112581
0.00124001
0.00135174
0.00145221
0.00154027
0.00161693
0.00168362
0.00174158
0.00179174
0.00183482
0.00187135
0.00190178
0.00192657
0.00194618
0.00196113
0.00197199
0.00197936
0.00198384
0.00198601
0.0019864
0.00198547
0.00198363
0.00198118
0.0019784
0.00197548
0.00197257
0.00196971
0.00196696
0.00196414
0.00196175
0.00195817
0.00196129
0.00160982
0.00113514
0.00106399
0.0011415
0.00126402
0.00139351
0.00151654
0.00162849
0.00172836
0.00181674
0.00189471
0.00196359
0.00202474
0.00207941
0.00212858
0.00217308
0.00221359
0.00225065
0.00228472
0.00231617
0.0023453
0.00237237
0.00239762
0.00242126
0.00244353
0.00246458
0.00248442
0.00250279
0.00251937
0.00253421
0.00254838
0.00256395
0.00258373
0.00260732
0.00263838
0.000868376
0.000669371
0.000568397
0.000528279
0.000510458
0.00050146
0.000496628
0.000494137
0.000493041
0.000492807
0.000493132
0.000493836
0.000494814
0.000495995
0.000497335
0.000498803
0.000500374
0.000502028
0.000503747
0.000505516
0.000507322
0.000509155
0.000511005
0.000512863
0.000514724
0.000516575
0.000518406
0.000520202
0.000521964
0.000523709
0.000525471
0.000527287
0.000529151
0.000530899
0.000532849
0.000771371
0.00058366
0.000495728
0.000461846
0.00044678
0.000439174
0.000435117
0.000433061
0.000432189
0.000432042
0.000432365
0.000433013
0.000433899
0.000434964
0.000436171
0.000437489
0.000438897
0.000440378
0.000441915
0.000443498
0.000445114
0.000446754
0.000448412
0.000450083
0.000451761
0.000453438
0.000455101
0.000456738
0.000458346
0.000459949
0.000461588
0.000463306
0.0004651
0.000466788
0.000468667
0.00167015
0.00115293
0.000906998
0.00078892
0.00075635
0.000802771
0.000924918
0.00110789
0.0013327
0.00158312
0.00184566
0.00210914
0.00236509
0.00260759
0.00283288
0.00303888
0.00322488
0.00339115
0.00353865
0.00366884
0.00378341
0.00388415
0.00397286
0.00405127
0.00412097
0.00418341
0.00423986
0.00429145
0.00433909
0.00438354
0.0044254
0.00446505
0.00450318
0.00453929
0.00457855
0.000853602
0.000536892
0.000501711
0.000511077
0.000529529
0.000550617
0.000571316
0.000590184
0.000606636
0.000620441
0.000631535
0.000639787
0.000645108
0.000647537
0.000647267
0.000644623
0.000640009
0.000633852
0.000626549
0.000618462
0.000609884
0.000601048
0.000592118
0.000583223
0.000574468
0.000565964
0.000557837
0.0005502
0.000543052
0.00053612
0.000528807
0.000520236
0.000510091
0.000498597
0.000490173
0.00087559
0.00055182
0.00051783
0.000530066
0.000551161
0.000574445
0.000596847
0.000617064
0.000634654
0.000649329
0.000661107
0.00066987
0.000675535
0.000678143
0.000677901
0.000675147
0.000670308
0.000663843
0.000656164
0.00064765
0.000638605
0.000629271
0.000619839
0.000610477
0.00060134
0.00059257
0.000584255
0.000576358
0.000568645
0.000560647
0.000551853
0.000542043
0.000532165
0.000523778
0.000521731
0.00167003
0.00115426
0.00090546
0.000778752
0.000726627
0.000738398
0.000814344
0.000950978
0.00113815
0.0013634
0.00161298
0.00187228
0.00212839
0.00237228
0.00259878
0.00280574
0.00299269
0.00315988
0.00330795
0.00343789
0.00355098
0.00364878
0.003733
0.00380545
0.00386787
0.00392193
0.00396914
0.00401087
0.00404834
0.00408254
0.0041142
0.00414358
0.00417089
0.00419505
0.00421972
0.00166932
0.00114678
0.000894736
0.000761034
0.000693573
0.000677364
0.000712957
0.00080355
0.000946748
0.00113536
0.00136127
0.00161553
0.00188814
0.00216936
0.00245111
0.00272752
0.00299483
0.00325092
0.00349483
0.00372633
0.00394564
0.00415321
0.00434967
0.00453578
0.00471232
0.00488002
0.00503936
0.00519047
0.00533341
0.00546875
0.00559847
0.005726
0.00585508
0.00598621
0.00611472
0.00162769
0.00117135
0.00111388
0.00120668
0.00134597
0.00149487
0.00163805
0.00176875
0.00188419
0.00198276
0.00206411
0.00212836
0.00217597
0.002208
0.00222608
0.00223224
0.00222873
0.00221774
0.00220125
0.00218095
0.00215814
0.00213382
0.00210874
0.00208354
0.00205877
0.00203495
0.00201244
0.00199125
0.00197072
0.00194931
0.00192505
0.00189668
0.00186615
0.0018394
0.00183017
0.00162233
0.00116653
0.00110933
0.00119925
0.00133416
0.00147786
0.00161546
0.00174059
0.0018508
0.00194463
0.00202184
0.00208261
0.00212744
0.00215734
0.00217387
0.002179
0.00217487
0.00216359
0.00214707
0.00212693
0.00210447
0.00208065
0.00205615
0.00203149
0.00200702
0.00198315
0.00196031
0.00193897
0.00191927
0.00190052
0.00188073
0.00185668
0.00182596
0.00178874
0.00175584
0.00166882
0.001143
0.000888437
0.000747311
0.000661011
0.000604047
0.000564154
0.000534879
0.000512571
0.000495042
0.000480913
0.000469282
0.000459537
0.000451253
0.000444127
0.000437943
0.000432547
0.000427835
0.000423742
0.000420244
0.000417354
0.000415127
0.000413667
0.000413135
0.000413762
0.00041586
0.000419845
0.000426255
0.000435778
0.000449281
0.000467847
0.00049283
0.000525873
0.000568908
0.000622708
0.00166896
0.00114726
0.000893476
0.000752595
0.00066626
0.000609222
0.000569362
0.000540383
0.000518884
0.000503094
0.000492304
0.000486615
0.000486853
0.000494521
0.000511751
0.000541218
0.000586037
0.000649752
0.000736371
0.000850143
0.000994856
0.00117289
0.00138457
0.00162784
0.00189852
0.00219101
0.00249917
0.00281693
0.00313888
0.0034605
0.00377827
0.00408978
0.00439372
0.00468948
0.00497584
0.00072946
0.00054902
0.000467318
0.000436244
0.000421868
0.000414287
0.000410229
0.0004082
0.000407352
0.000407213
0.000407521
0.000408121
0.000408912
0.000409822
0.000410792
0.000411773
0.00041272
0.000413599
0.000414383
0.000415055
0.000415608
0.000416042
0.000416359
0.000416571
0.000416689
0.000416726
0.000416699
0.00041662
0.000416503
0.000416358
0.000416185
0.000415998
0.000415757
0.000415592
0.000414965
0.000807786
0.000536993
0.000474299
0.000457019
0.00045494
0.000458882
0.00046516
0.000472122
0.000479055
0.000485691
0.000491949
0.000497831
0.000503377
0.00050864
0.000513673
0.000518526
0.000523245
0.000527863
0.00053241
0.000536904
0.000541356
0.000545773
0.000550166
0.000554551
0.000558938
0.000563315
0.000567625
0.000571778
0.000575716
0.000579531
0.000583538
0.000588183
0.000593763
0.000599951
0.000605619
0.00144128
0.000979784
0.000922614
0.000984812
0.00107476
0.0011651
0.00124802
0.00132179
0.00138676
0.00144385
0.0014941
0.00153843
0.00157768
0.00161246
0.00164332
0.00167069
0.00169493
0.00171631
0.0017351
0.00175152
0.00176582
0.00177825
0.00178903
0.00179841
0.00180661
0.00181385
0.00182029
0.00182599
0.00183098
0.00183522
0.00183897
0.00184264
0.00184744
0.00185312
0.00186413
0.00165411
0.0011959
0.00113067
0.0012227
0.00136735
0.00152527
0.00167919
0.00182137
0.00194841
0.00205861
0.00215126
0.00222608
0.00228342
0.00232432
0.0023504
0.00236371
0.00236646
0.00236088
0.00234903
0.00233269
0.00231331
0.00229204
0.00226972
0.00224699
0.00222428
0.00220197
0.00218043
0.00216004
0.00214106
0.00212321
0.00210536
0.00208529
0.00206105
0.00203115
0.0020041
0.00166546
0.001208
0.00114452
0.00124691
0.00140559
0.00157799
0.00174572
0.00190033
0.00203837
0.00215853
0.00226002
0.00234264
0.00240671
0.00245313
0.00248348
0.00249984
0.00250457
0.00250008
0.00248862
0.00247213
0.00245223
0.00243015
0.00240682
0.00238295
0.00235915
0.00233595
0.00231379
0.00229294
0.00227327
0.00225399
0.00223374
0.00221098
0.00218571
0.0021592
0.00214156
0.00166923
0.00114718
0.000894368
0.000758233
0.000685199
0.000658359
0.000677268
0.000747202
0.000870175
0.00104175
0.00125446
0.00149969
0.00176743
0.00204738
0.0023307
0.00261084
0.00288347
0.00314593
0.00339676
0.00363539
0.00386181
0.00407634
0.00427944
0.00447167
0.00465367
0.00482605
0.00498938
0.005144
0.00529016
0.00542844
0.00556011
0.00568742
0.00581315
0.00593857
0.00606325
0.00166897
0.00114731
0.000893462
0.000752562
0.000666279
0.000609487
0.000570301
0.000542847
0.000524434
0.000514396
0.000513603
0.000524198
0.000549281
0.000592445
0.000657337
0.000747463
0.000866022
0.00101503
0.00119422
0.00140054
0.00162886
0.00187318
0.0021278
0.00238827
0.00265178
0.00291647
0.00318108
0.00344466
0.00370632
0.00396513
0.00422032
0.0044715
0.00471889
0.00496288
0.00520296
0.00166913
0.00114891
0.000895717
0.000755532
0.000671191
0.000619377
0.000591079
0.000584753
0.000603343
0.00065188
0.000734855
0.000854642
0.00101167
0.00120421
0.00142748
0.0016741
0.00193553
0.00220373
0.00247217
0.00273614
0.0029926
0.00323983
0.00347708
0.00370423
0.00392151
0.00412934
0.00432823
0.00451872
0.00470133
0.00487655
0.00504489
0.00520687
0.00536325
0.00551428
0.00566175
0.00089711
0.000691488
0.000588455
0.000548855
0.000531539
0.000522764
0.000517996
0.000515487
0.000514344
0.000514071
0.00051437
0.000515068
0.000516053
0.000517253
0.00051862
0.00052012
0.000521721
0.0005234
0.000525133
0.0005269
0.000528683
0.000530466
0.000532236
0.00053398
0.00053569
0.000537357
0.000538974
0.000540533
0.000542031
0.000543473
0.00054487
0.000546249
0.000547621
0.000548941
0.000550352
0.00167177
0.00115618
0.000935222
0.000878029
0.000945414
0.00110521
0.00132031
0.00156504
0.00182293
0.00208169
0.00233261
0.00257031
0.00279178
0.00299563
0.00318141
0.00334919
0.00349942
0.00363285
0.00375051
0.00385365
0.00394374
0.00402234
0.004091
0.00415124
0.00420445
0.00425191
0.00429468
0.00433362
0.00436934
0.00440232
0.00443314
0.00446258
0.00449229
0.00452255
0.0045594
0.00166739
0.00117427
0.00105476
0.00112134
0.0012694
0.00144958
0.00163828
0.00182244
0.00199539
0.00215441
0.00229894
0.00242959
0.00254747
0.00265392
0.00275029
0.00283789
0.00291788
0.00299132
0.0030591
0.00312203
0.00318076
0.00323583
0.00328774
0.00333697
0.00338391
0.00342879
0.00347146
0.00351151
0.00354875
0.00358392
0.00361932
0.0036583
0.00370324
0.0037519
0.00379734
0.00166976
0.00114851
0.000899971
0.000776415
0.000731405
0.00075528
0.000846905
0.000997977
0.00119453
0.00142402
0.00167552
0.00193906
0.00220603
0.00247019
0.00272738
0.00297485
0.00321094
0.00343472
0.00364582
0.0038442
0.00403003
0.00420372
0.00436585
0.00451709
0.0046582
0.00479001
0.00491332
0.00502881
0.00513709
0.00523875
0.00533473
0.00542645
0.00551595
0.00560434
0.00569412
0.00154701
0.00107348
0.00100102
0.00105294
0.00113557
0.00122166
0.00130219
0.00137452
0.001438
0.001493
0.00154029
0.00158051
0.0016141
0.00164146
0.00166296
0.00167905
0.00169025
0.00169719
0.00170054
0.00170096
0.00169909
0.0016955
0.00169065
0.00168495
0.00167871
0.00167222
0.00166573
0.00165948
0.00165366
0.00164832
0.00164339
0.00163835
0.00163309
0.00162523
0.00162205
0.000795258
0.000606546
0.000515472
0.000480548
0.000464974
0.00045698
0.000452656
0.000450426
0.000449448
0.000449244
0.000449549
0.000450207
0.000451115
0.000452212
0.000453454
0.000454804
0.000456233
0.000457714
0.000459224
0.000460743
0.000462255
0.000463746
0.000465206
0.000466627
0.000468005
0.000469334
0.000470608
0.000471817
0.000472961
0.000474053
0.000475126
0.000476226
0.000477358
0.000478473
0.000479479
0.00095327
0.000742909
0.000633093
0.000590755
0.000571941
0.000562136
0.000556742
0.000553835
0.00055243
0.000551977
0.000552148
0.000552726
0.000553557
0.000554524
0.000555529
0.000556495
0.00055736
0.000558082
0.000558632
0.000559
0.000559185
0.000559198
0.000559057
0.000558784
0.000558401
0.00055793
0.000557393
0.000556808
0.000556189
0.000555552
0.000554904
0.000554273
0.000553628
0.000553157
0.000552222
0.00084432
0.000551402
0.000487577
0.000472505
0.000473284
0.000479949
0.000488575
0.000497525
0.000506172
0.000514304
0.000521873
0.000528891
0.000535412
0.000541523
0.000547312
0.000552852
0.000558205
0.000563416
0.00056852
0.00057354
0.000578487
0.000583365
0.000588178
0.00059293
0.000597623
0.00060225
0.000606775
0.000611138
0.000615291
0.000619258
0.000623217
0.000627447
0.000632255
0.000637483
0.000643056
0.00157022
0.00110477
0.00104575
0.00112302
0.00123525
0.00134927
0.0014552
0.00155034
0.00163444
0.00170841
0.00177339
0.0018307
0.00188157
0.00192707
0.00196809
0.00200534
0.00203939
0.00207072
0.00209971
0.00212668
0.00215188
0.00217551
0.00219774
0.00221875
0.00223874
0.00225783
0.00227596
0.00229284
0.0023081
0.00232177
0.00233492
0.00234963
0.00236862
0.00239154
0.00242089
0.00100384
0.000676084
0.000615337
0.000607097
0.000613681
0.000625773
0.000639625
0.000653455
0.000666466
0.000678484
0.000689551
0.000699743
0.000709176
0.000717985
0.000726288
0.000734175
0.00074172
0.000748976
0.000755982
0.000762761
0.000769324
0.000775679
0.000781831
0.000787798
0.000793599
0.000799237
0.000804658
0.000809748
0.000814399
0.000818648
0.000822868
0.000827682
0.000833852
0.000841006
0.00084947
0.00167099
0.00115033
0.000918931
0.000840044
0.000876081
0.0010074
0.00120541
0.00144377
0.00170412
0.00197234
0.00223786
0.00249391
0.00273681
0.00296494
0.00317799
0.0033763
0.00356065
0.003732
0.00389138
0.00403987
0.00417848
0.00430813
0.00442976
0.00454425
0.00465245
0.00475502
0.00485219
0.00494379
0.00502959
0.0051103
0.00518855
0.00526869
0.00535483
0.00544606
0.00553512
0.00167073
0.00114959
0.000913478
0.000824152
0.000844397
0.000959693
0.00114543
0.00137475
0.00162912
0.00189513
0.00216229
0.00242316
0.00267309
0.00290963
0.00313181
0.00333956
0.00353337
0.00371404
0.00388251
0.00403975
0.00418675
0.00432442
0.00445367
0.00457537
0.00469035
0.00479929
0.00490249
0.0049999
0.00509138
0.00517756
0.00526069
0.00534461
0.00543311
0.00552587
0.00561746
0.00153759
0.00105663
0.000975043
0.00102311
0.00110727
0.0011983
0.00128596
0.00136624
0.00143748
0.00149988
0.00155425
0.00160138
0.00164193
0.00167643
0.0017053
0.00172892
0.00174769
0.00176209
0.00177266
0.00177994
0.0017845
0.00178686
0.0017875
0.00178683
0.00178521
0.00178296
0.0017804
0.0017778
0.00177539
0.00177328
0.00177141
0.00176931
0.00176674
0.00176178
0.00175924
0.000745573
0.000562576
0.000479098
0.000449948
0.000436901
0.000430087
0.000426463
0.000424594
0.000423718
0.00042338
0.000423275
0.000423185
0.000422943
0.000422432
0.000421586
0.000420387
0.000418851
0.000417018
0.000414941
0.000412673
0.00041027
0.000407778
0.000405239
0.00040269
0.00040016
0.000397672
0.00039524
0.000392865
0.000390533
0.000388223
0.000385913
0.000383656
0.000381456
0.000379857
0.00037776
0.00075603
0.000574114
0.000489098
0.000458669
0.000444868
0.000437587
0.000433707
0.00043173
0.000430834
0.000430515
0.000430448
0.000430396
0.000430181
0.000429683
0.000428837
0.000427626
0.000426067
0.000424204
0.000422091
0.000419786
0.000417344
0.000414814
0.000412235
0.00040964
0.00040706
0.000404517
0.000402031
0.000399615
0.000397267
0.000394968
0.000392674
0.000390379
0.000388013
0.000386093
0.000383577
0.000663194
0.000433165
0.000387791
0.000376859
0.000376771
0.000381084
0.000386921
0.00039298
0.000398648
0.000403598
0.000407659
0.000410661
0.00041247
0.000413027
0.000412368
0.000410603
0.000407896
0.000404437
0.000400408
0.000395983
0.000391304
0.000386489
0.000381629
0.000376808
0.000372099
0.000367564
0.00036324
0.000359104
0.000355051
0.000350891
0.000346441
0.000341674
0.000337041
0.000333279
0.000332103
0.000652151
0.000427325
0.00038148
0.0003695
0.000368344
0.00037173
0.000376851
0.000382375
0.000387614
0.000392244
0.000396071
0.00039891
0.000400621
0.000401146
0.000400519
0.000398844
0.000396277
0.000392995
0.000389173
0.000384978
0.000380548
0.000375992
0.00037139
0.000366809
0.0003623
0.000357917
0.000353718
0.000349742
0.000345977
0.0003423
0.000338466
0.000334161
0.000329332
0.000324268
0.000320609
0.00167096
0.00115524
0.000916625
0.000817611
0.000821761
0.000919592
0.00109263
0.00131457
0.00156471
0.00182765
0.00209034
0.00234316
0.0025797
0.00279587
0.00298966
0.00316057
0.0033093
0.00343729
0.00354649
0.00363909
0.00371731
0.00378328
0.00383897
0.00388614
0.00392636
0.00396102
0.00399137
0.00401851
0.00404342
0.00406682
0.00408909
0.00411002
0.00412925
0.00414503
0.00416125
0.00166954
0.00115222
0.000900096
0.000763758
0.000689714
0.000660865
0.000676129
0.000739985
0.000854424
0.00101613
0.00121905
0.00145534
0.00171478
0.00198588
0.00225818
0.0025236
0.00277677
0.00301451
0.00323524
0.00343849
0.00362454
0.00379417
0.00394853
0.00408891
0.00421676
0.00433349
0.00444051
0.00453911
0.00463049
0.00471565
0.00479551
0.0048708
0.00494258
0.00501068
0.00508001
0.00157415
0.00111194
0.0010528
0.00112547
0.00123015
0.00133508
0.0014313
0.00151677
0.00159202
0.00165796
0.00171604
0.00176741
0.00181309
0.00185399
0.00189095
0.00192462
0.00195554
0.00198413
0.00201072
0.00203555
0.00205883
0.00208069
0.00210124
0.00212059
0.00213884
0.00215609
0.00217242
0.00218784
0.00220228
0.00221571
0.00222836
0.00224072
0.00225392
0.00226771
0.0022874
0.00166894
0.00114593
0.000891971
0.000751109
0.000665108
0.000609151
0.00057191
0.000548452
0.000537538
0.00054049
0.000560493
0.000601739
0.000668409
0.000764038
0.000891447
0.00105229
0.00124586
0.00146841
0.00171372
0.00197453
0.00224401
0.00251657
0.00278811
0.00305577
0.00331768
0.00357265
0.00381995
0.00405907
0.00428964
0.00451161
0.00472548
0.00493267
0.00513532
0.00533499
0.00553034
0.000802154
0.000613098
0.000521032
0.000487196
0.000472571
0.000465042
0.000460915
0.000458679
0.000457586
0.000457185
0.000457217
0.000457517
0.000457959
0.000458438
0.000458869
0.000459187
0.000459345
0.000459317
0.000459095
0.000458685
0.000458102
0.000457371
0.000456517
0.000455567
0.000454547
0.000453479
0.000452385
0.000451281
0.000450181
0.000449097
0.000448028
0.000446993
0.000445949
0.000445093
0.000443789
0.000857945
0.000665668
0.000565866
0.00052761
0.000510801
0.000502083
0.000497268
0.000494634
0.000493307
0.000492808
0.000492853
0.00049325
0.00049386
0.000494572
0.000495294
0.000495956
0.0004965
0.000496892
0.000497109
0.000497146
0.00049701
0.000496717
0.000496286
0.00049574
0.000495104
0.000494399
0.000493645
0.000492861
0.000492059
0.000491254
0.00049045
0.00048967
0.000488877
0.000488261
0.000487207
0.000813731
0.000552963
0.000493164
0.000474778
0.000470833
0.00047354
0.000479106
0.000485761
0.000492554
0.000499058
0.000505104
0.000510627
0.000515594
0.000519977
0.000523751
0.000526898
0.000529411
0.000531308
0.000532624
0.000533412
0.000533736
0.000533663
0.00053326
0.000532594
0.000531727
0.000530719
0.000529633
0.000528523
0.000527433
0.000526377
0.000525337
0.000524213
0.000523012
0.00052126
0.000520567
0.00166922
0.00114855
0.000895804
0.000757565
0.000678535
0.000638529
0.000632823
0.000663975
0.000736045
0.00085043
0.00100567
0.00119881
0.00142474
0.00167577
0.00194289
0.00221733
0.00249175
0.00276062
0.00302015
0.0032679
0.00350251
0.00372358
0.00393136
0.00412652
0.00430995
0.00448269
0.00464578
0.00480024
0.00494694
0.00508667
0.00522018
0.00534831
0.00547221
0.00559254
0.00571126
0.00167118
0.0011506
0.000913831
0.000822456
0.000840982
0.000957698
0.00114781
0.00138155
0.00163935
0.00190846
0.00217911
0.00244424
0.00269929
0.00294155
0.00316975
0.00338362
0.00358341
0.00376979
0.0039436
0.00410578
0.00425727
0.00439899
0.00453181
0.00465662
0.00477424
0.00488537
0.00499034
0.00508906
0.00518134
0.00526778
0.0053507
0.00543421
0.00552265
0.00561589
0.00570988
0.00164091
0.00116014
0.0010737
0.00115152
0.0012875
0.00143812
0.00158549
0.00172236
0.00184632
0.00195725
0.00205609
0.00214411
0.00222269
0.00229312
0.00235661
0.0024142
0.00246681
0.00251521
0.00256008
0.00260196
0.00264126
0.00267836
0.00271359
0.00274729
0.00277973
0.00281102
0.00284095
0.00286908
0.00289512
0.00291966
0.00294474
0.00297337
0.00300776
0.00304608
0.00308158
0.00159842
0.00113138
0.00106295
0.00113724
0.00125278
0.00137322
0.00148637
0.00158865
0.00167963
0.00175996
0.00183055
0.00189227
0.00194592
0.00199215
0.00203152
0.00206456
0.0020918
0.0021138
0.00213114
0.00214444
0.00215432
0.0021614
0.00216624
0.00216937
0.00217122
0.00217217
0.00217251
0.00217248
0.00217222
0.00217177
0.00217122
0.00217051
0.00217036
0.00216954
0.0021756
0.000850843
0.000653262
0.000555329
0.000516739
0.000499537
0.000490849
0.000486198
0.000483817
0.000482787
0.000482584
0.000482918
0.000483619
0.000484586
0.000485754
0.000487079
0.000488529
0.000490081
0.000491715
0.000493414
0.000495164
0.000496953
0.00049877
0.000500608
0.000502459
0.000504318
0.000506175
0.000508015
0.000509827
0.000511606
0.000513375
0.000515178
0.000517061
0.000519023
0.000520876
0.000522923
0.00143381
0.000975894
0.000917561
0.000965015
0.00103215
0.00109774
0.0011569
0.00120882
0.0012543
0.00129414
0.0013293
0.00136053
0.00138846
0.00141365
0.0014366
0.0014577
0.00147727
0.00149554
0.00151269
0.00152885
0.0015441
0.00155851
0.00157213
0.001585
0.00159718
0.00160871
0.00161965
0.00163001
0.00163974
0.00164882
0.00165738
0.00166566
0.00167454
0.00168339
0.00169833
0.000856784
0.000661686
0.000561245
0.000521173
0.00050334
0.000494305
0.000489431
0.000486896
0.000485758
0.000485483
0.000485768
0.000486436
0.000487377
0.000488524
0.000489832
0.00049127
0.000492811
0.000494436
0.000496127
0.00049787
0.000499651
0.00050146
0.000503287
0.000505126
0.000506968
0.000508804
0.00051062
0.000512405
0.000514158
0.000515896
0.000517658
0.000519479
0.000521353
0.00052311
0.000525051
0.00166899
0.00114756
0.000893751
0.000752881
0.000666702
0.00061022
0.000571769
0.000545817
0.000530181
0.000524863
0.000531498
0.000552891
0.000592451
0.000653625
0.000739686
0.000853699
0.000997926
0.00117267
0.00137546
0.00160148
0.00184463
0.00209878
0.00235873
0.00262068
0.00288212
0.00314145
0.00339781
0.00365077
0.00389993
0.00414485
0.00438513
0.00462055
0.0048512
0.00507714
0.00529796
0.00161781
0.00116071
0.00111315
0.00121609
0.00136065
0.00150844
0.00164682
0.00177217
0.00188416
0.00198362
0.00207173
0.00214981
0.00221907
0.00228068
0.00233558
0.00238454
0.0024282
0.00246706
0.0025016
0.00253223
0.00255936
0.00258336
0.00260462
0.0026235
0.00264037
0.00265556
0.00266929
0.00268167
0.00269266
0.0027023
0.00271109
0.00271998
0.00273098
0.00274383
0.00276542
0.00155701
0.00109758
0.00103514
0.00110595
0.00121426
0.00132826
0.00143594
0.0015325
0.00161658
0.00168755
0.00174537
0.00179037
0.00182295
0.0018439
0.00185443
0.00185607
0.00185048
0.0018393
0.00182403
0.00180587
0.00178596
0.00176504
0.00174368
0.00172227
0.00170112
0.00168048
0.00166069
0.00164209
0.00162482
0.00160845
0.00159162
0.00157196
0.00154765
0.00151798
0.00149153
0.00166017
0.00119771
0.00112537
0.0012187
0.00136976
0.00153709
0.00170238
0.00185643
0.00199479
0.00211481
0.00221562
0.00229691
0.00235904
0.00240315
0.00243107
0.00244506
0.00244761
0.00244118
0.00242804
0.0024101
0.00238893
0.00236577
0.00234151
0.00231682
0.00229215
0.00226791
0.0022445
0.00222235
0.00220171
0.00218225
0.00216265
0.00214044
0.00211341
0.00208038
0.00204953
0.00167298
0.00120209
0.00111321
0.00121325
0.00138836
0.00158609
0.00178349
0.00196911
0.00213723
0.00228507
0.0024106
0.00251338
0.00259369
0.00265265
0.00269222
0.00271496
0.00272373
0.00272144
0.00271074
0.00269394
0.00267292
0.00264913
0.00262368
0.00259741
0.00257107
0.0025453
0.00252065
0.00249737
0.0024752
0.00245313
0.00242952
0.00240274
0.0023732
0.00234369
0.00232513
0.00166909
0.0011466
0.000893106
0.000754174
0.000673797
0.00063102
0.00062039
0.000644279
0.000707692
0.000813678
0.000961823
0.00114956
0.0013722
0.00162218
0.00189022
0.00216729
0.00244616
0.00272162
0.00299032
0.00325024
0.00350029
0.00374
0.00396929
0.00418832
0.0043974
0.004597
0.00478748
0.00496905
0.00514182
0.0053062
0.00546354
0.00561636
0.00576778
0.00591903
0.00606802
0.000876302
0.000573742
0.000511734
0.000499404
0.000501521
0.000509013
0.000518429
0.000528161
0.000537517
0.00054627
0.000554397
0.000561945
0.000568978
0.000575583
0.000581839
0.000587818
0.000593582
0.000599182
0.000604657
0.000610039
0.000615345
0.000620589
0.000625787
0.00063096
0.000636127
0.000641279
0.00064635
0.000651226
0.000655827
0.000660248
0.000664873
0.000670269
0.000676855
0.000684299
0.000691261
0.00167
0.00114788
0.000901401
0.000784221
0.000752439
0.000797383
0.000914234
0.00108958
0.00130793
0.00155659
0.00182388
0.0020991
0.0023737
0.0026417
0.0028994
0.00314474
0.00337674
0.00359526
0.00380064
0.00399348
0.00417456
0.0043447
0.00450477
0.00465565
0.00479822
0.00493323
0.0050611
0.00518182
0.00529534
0.00540231
0.00550502
0.00560742
0.00571355
0.00582331
0.00593153
0.00166911
0.0011482
0.000894803
0.000754914
0.000671665
0.000622494
0.000599658
0.000603317
0.000637994
0.000709075
0.00081964
0.000969865
0.00115787
0.00137931
0.00162702
0.00189222
0.00216627
0.00244196
0.0027138
0.00297798
0.00323178
0.00347405
0.00370442
0.00392304
0.00413044
0.00432738
0.00451469
0.00469323
0.00486376
0.00502693
0.00518348
0.00533426
0.00548049
0.00562303
0.00576349
0.000815202
0.000618723
0.000527418
0.00049256
0.000477006
0.000469096
0.000464867
0.000462728
0.000461827
0.000461679
0.000462022
0.000462709
0.000463648
0.000464782
0.000466067
0.000467472
0.000468973
0.000470546
0.000472176
0.000473848
0.000475548
0.000477267
0.000478998
0.000480736
0.000482474
0.000484203
0.000485911
0.000487582
0.000489213
0.000490826
0.000492467
0.000494192
0.000496001
0.000497727
0.000499513
0.000859009
0.00066399
0.000564726
0.000527273
0.000510607
0.000502021
0.000497488
0.000495203
0.000494228
0.000494023
0.000494271
0.000494761
0.000495336
0.00049587
0.000496268
0.000496463
0.000496416
0.000496112
0.000495558
0.000494777
0.000493798
0.000492657
0.000491389
0.000490028
0.000488604
0.000487145
0.000485674
0.000484212
0.000482772
0.000481362
0.000479975
0.000478625
0.000477232
0.00047608
0.000474082
0.00107553
0.000691035
0.000634637
0.00063959
0.000657676
0.000679255
0.000700474
0.000719962
0.000737312
0.00075246
0.000765308
0.000775705
0.000783553
0.000788841
0.000791668
0.000792233
0.000790814
0.000787743
0.00078336
0.000777995
0.000771935
0.000765422
0.000758651
0.000751773
0.000744912
0.000738176
0.000731662
0.00072544
0.000719538
0.000713886
0.000708344
0.000702607
0.000696781
0.000689918
0.000686328
0.00099818
0.000692571
0.000634231
0.000625136
0.000629302
0.000638482
0.000649289
0.000660026
0.000670047
0.000679082
0.000686902
0.000693314
0.000698159
0.000701352
0.000702909
0.000702925
0.000701559
0.00069901
0.000695498
0.000691242
0.000686441
0.000681271
0.000675879
0.00067038
0.000664867
0.000659416
0.000654093
0.000648957
0.000644048
0.000639347
0.000634773
0.000630092
0.000625289
0.000619764
0.000616039
0.00116262
0.000752269
0.000698873
0.000722554
0.000761825
0.000802465
0.000840481
0.000874582
0.00090478
0.000931443
0.000955074
0.000976115
0.000994968
0.00101203
0.00102766
0.00104214
0.00105572
0.00106857
0.00108082
0.00109259
0.00110392
0.00111487
0.00112546
0.00113571
0.00114566
0.00115532
0.00116466
0.00117358
0.00118197
0.00118982
0.0011974
0.00120525
0.0012142
0.00122415
0.00123573
0.00166364
0.00119621
0.0011233
0.00122152
0.00138079
0.00155558
0.00172671
0.0018859
0.00203022
0.00215944
0.00227455
0.00237706
0.0024686
0.00255071
0.0026247
0.00269168
0.00275263
0.00280835
0.00285954
0.00290678
0.00295058
0.00299134
0.00302942
0.0030652
0.00309903
0.00313112
0.00316144
0.00318961
0.00321518
0.00323839
0.00326092
0.00328588
0.00331667
0.0033529
0.00339246
0.00154449
0.00106154
0.00098106
0.00103831
0.00113511
0.00123726
0.00133358
0.00142059
0.00149774
0.00156573
0.00162565
0.00167865
0.00172579
0.00176799
0.00180605
0.00184072
0.00187259
0.00190214
0.00192978
0.00195583
0.00198054
0.00200412
0.00202676
0.00204864
0.00206996
0.00209075
0.00211083
0.00212977
0.00214729
0.00216374
0.00218069
0.00220056
0.00222524
0.00225364
0.00228038
0.00167318
0.00116246
0.000966
0.000956244
0.00107719
0.00127137
0.00149882
0.00173986
0.0019819
0.0022161
0.00243688
0.00264121
0.00282763
0.00299582
0.00314598
0.00327864
0.00339459
0.00349488
0.0035808
0.00365385
0.00371562
0.00376774
0.00381179
0.00384923
0.00388138
0.00390935
0.0039341
0.00395637
0.00397669
0.00399545
0.00401302
0.00402978
0.00404691
0.00406399
0.00408823
0.000609904
0.000447235
0.000381731
0.000358544
0.000348111
0.000342659
0.000339712
0.000338204
0.000337572
0.000337499
0.000337797
0.000338349
0.00033908
0.000339939
0.000340889
0.000341897
0.000342934
0.000343978
0.000345007
0.000346003
0.000346954
0.00034785
0.000348686
0.00034946
0.000350172
0.000350825
0.00035142
0.000351959
0.000352443
0.000352883
0.000353295
0.000353711
0.000354131
0.000354595
0.000354882
0.000871374
0.000562203
0.000513974
0.000509053
0.000516365
0.000528168
0.000540639
0.000552365
0.000562974
0.000572305
0.000580161
0.00058632
0.000590623
0.000593009
0.000593529
0.000592332
0.000589644
0.00058573
0.000580862
0.000575296
0.000569256
0.000562925
0.000556447
0.000549941
0.000543507
0.000537236
0.000531206
0.000525459
0.000519967
0.000514598
0.000509151
0.000503373
0.000497429
0.000491127
0.000487417
0.00168111
0.00120583
0.00111643
0.00122178
0.00140429
0.00160934
0.00181483
0.00201034
0.00219106
0.00235549
0.00250391
0.00263748
0.00275772
0.00286618
0.00296432
0.00305342
0.00313466
0.00320908
0.00327761
0.00334103
0.00340003
0.00345515
0.00350691
0.00355581
0.00360232
0.00364671
0.00368886
0.00372825
0.00376444
0.00379796
0.00383124
0.00386828
0.00391277
0.00396302
0.0040144
0.00166881
0.00121209
0.00115271
0.00125372
0.00140805
0.0015745
0.00173605
0.00188553
0.00202056
0.00214115
0.00224838
0.00234377
0.00242891
0.00250526
0.00257406
0.00263638
0.00269317
0.00274519
0.00279312
0.00283751
0.00287883
0.00291747
0.00295376
0.00298805
0.00302068
0.00305184
0.00308139
0.00310887
0.00313381
0.00315652
0.00317898
0.00320457
0.0032367
0.00327437
0.00331418
0.000696067
0.000514552
0.000436851
0.000409219
0.000396827
0.000390326
0.000386779
0.000384928
0.00038411
0.000383952
0.000384233
0.000384816
0.000385614
0.000386569
0.000387636
0.000388779
0.000389966
0.00039117
0.000392367
0.000393537
0.000394665
0.000395739
0.000396752
0.000397701
0.000398585
0.000399405
0.000400161
0.000400853
0.000401484
0.000402066
0.000402617
0.000403175
0.000403734
0.000404334
0.000404659
0.00157521
0.00111466
0.00105058
0.00112042
0.0012271
0.00133911
0.00144509
0.00154032
0.00162325
0.00169391
0.00175201
0.00179764
0.00183107
0.00185304
0.00186472
0.00186757
0.00186321
0.00185324
0.00183913
0.00182213
0.00180327
0.00178333
0.00176289
0.00174237
0.00172206
0.00170223
0.00168316
0.00166518
0.00164846
0.00163266
0.00161662
0.00159821
0.00157577
0.00154819
0.001524
0.00162433
0.0011678
0.001109
0.00119023
0.00131311
0.00144376
0.00156815
0.00168037
0.0017783
0.00186206
0.00193163
0.00198678
0.00202786
0.00205566
0.00207145
0.00207688
0.00207382
0.00206413
0.00204954
0.00203153
0.00201127
0.00198968
0.00196742
0.00194504
0.00192299
0.00190168
0.00188147
0.00186249
0.00184441
0.00182628
0.00180663
0.00178412
0.00175941
0.00173498
0.00172198
0.00167029
0.00114951
0.000905752
0.000795612
0.000777708
0.000844282
0.000987238
0.00118848
0.00142938
0.00169488
0.00197197
0.00225047
0.00252309
0.00278519
0.00303418
0.00326881
0.00348871
0.00369415
0.00388576
0.00406434
0.00423075
0.00438586
0.00453052
0.00466558
0.00479191
0.0049103
0.00502134
0.00512528
0.00522221
0.00531258
0.00539805
0.00548173
0.00556764
0.00565717
0.0057499
0.00167335
0.00118566
0.00106616
0.00113719
0.00129215
0.00147997
0.00167742
0.0018704
0.00205091
0.00221586
0.00236419
0.00249601
0.00261182
0.00271222
0.00279787
0.00286957
0.00292836
0.00297552
0.00301248
0.00304072
0.00306172
0.00307688
0.00308743
0.00309445
0.00309885
0.00310143
0.0031029
0.00310387
0.00310485
0.0031061
0.0031076
0.00310874
0.00310899
0.00310602
0.00310589
0.00165558
0.00120945
0.00115981
0.00125035
0.00138217
0.0015208
0.00165299
0.00177375
0.00188174
0.00197747
0.00206217
0.00213727
0.00220418
0.00226414
0.00231824
0.00236734
0.00241222
0.00245352
0.00249181
0.00252754
0.00256106
0.00259269
0.00262269
0.00265134
0.00267891
0.00270551
0.00273097
0.00275476
0.00277645
0.00279638
0.00281652
0.00284005
0.00286997
0.00290484
0.00294091
0.000830944
0.000640833
0.000544331
0.000507905
0.000492029
0.000483827
0.000479304
0.000476828
0.000475579
0.0004751
0.000475126
0.000475473
0.000476009
0.000476627
0.000477238
0.000477773
0.00047818
0.000478425
0.000478492
0.000478379
0.000478094
0.000477656
0.000477087
0.000476411
0.000475652
0.000474832
0.000473971
0.000473087
0.000472193
0.000471302
0.000470418
0.00046956
0.000468692
0.000468001
0.000466908
0.00166882
0.00114303
0.000888615
0.000747572
0.000661293
0.000604333
0.00056444
0.000535164
0.000512855
0.000495326
0.000481199
0.000469575
0.000459844
0.000451585
0.000444504
0.000438394
0.000433119
0.000428595
0.000424792
0.000421727
0.000419471
0.000418153
0.000417974
0.000419216
0.000422259
0.0004276
0.000435879
0.000447905
0.000464705
0.000487579
0.000518167
0.000558526
0.00061112
0.000678738
0.000762104
0.000835463
0.000583934
0.00052044
0.000501788
0.000498096
0.000500229
0.00050464
0.000509767
0.000515023
0.000520208
0.000525238
0.00053008
0.000534734
0.000539215
0.000543549
0.000547756
0.000551849
0.000555829
0.000559692
0.000563429
0.00056703
0.000570484
0.000573781
0.000576915
0.000579886
0.0005827
0.000585364
0.000587879
0.000590245
0.000592458
0.000594547
0.000596545
0.000598639
0.000600603
0.00060374
0.000971286
0.000674674
0.000618959
0.000611243
0.000616094
0.000625496
0.000636332
0.00064699
0.00065688
0.000665791
0.000673474
0.000679707
0.000684311
0.000687193
0.000688372
0.000687956
0.00068612
0.000683081
0.000679079
0.000674341
0.000669078
0.00066347
0.000657662
0.000651771
0.000645888
0.000640088
0.000634439
0.000629002
0.000623815
0.000618844
0.000613978
0.000608948
0.000603692
0.000597724
0.00059326
0.000838049
0.000643403
0.000547889
0.000511735
0.000495471
0.000486949
0.00048227
0.000479766
0.000478582
0.000478238
0.000478443
0.000479009
0.000479804
0.000480726
0.000481692
0.000482636
0.000483505
0.000484259
0.000484874
0.000485337
0.000485645
0.000485805
0.000485831
0.000485739
0.000485547
0.000485275
0.000484939
0.000484555
0.000484135
0.000483692
0.000483234
0.000482789
0.000482327
0.000482026
0.000481242
0.00132913
0.000892686
0.000836504
0.000870277
0.000920432
0.000970097
0.00101541
0.00105556
0.00109095
0.00112225
0.00114998
0.00117461
0.0011967
0.00121669
0.00123498
0.0012519
0.00126771
0.00128259
0.00129669
0.00131011
0.00132292
0.00133516
0.00134686
0.00135804
0.00136873
0.00137898
0.00138878
0.0013981
0.00140688
0.00141508
0.00142286
0.00143054
0.00143894
0.00144772
0.00146059
0.00140797
0.000967839
0.000925995
0.000987295
0.00106557
0.00114131
0.00120969
0.00126921
0.00132035
0.00136367
0.00139949
0.00142782
0.00144876
0.00146261
0.00146996
0.00147162
0.00146853
0.00146162
0.00145183
0.00143996
0.0014267
0.00141259
0.00139805
0.00138338
0.00136881
0.00135452
0.00134072
0.00132762
0.00131533
0.0013037
0.00129212
0.00127931
0.00126451
0.0012463
0.00123188
0.00141997
0.000971456
0.00091963
0.000972323
0.001046
0.00111977
0.00118626
0.00124398
0.00129373
0.00133608
0.00137117
0.00139902
0.00141972
0.00143353
0.00144097
0.00144277
0.00143982
0.00143306
0.00142341
0.00141169
0.00139856
0.00138459
0.00137017
0.00135562
0.00134121
0.00132717
0.00131373
0.00130104
0.00128906
0.00127748
0.0012657
0.00125287
0.00123902
0.00122354
0.00121391
0.000790092
0.000605216
0.000516287
0.000483986
0.000469383
0.000461697
0.000457598
0.00045551
0.000454564
0.000454226
0.000454156
0.00045411
0.000453905
0.000453411
0.00045256
0.000451331
0.000449741
0.000447832
0.000445661
0.000443287
0.000440766
0.000438149
0.000435478
0.000432789
0.000430111
0.00042747
0.000424887
0.000422375
0.000419934
0.000417547
0.00041517
0.000412795
0.000410346
0.000408338
0.000405686
0.000726659
0.000550098
0.000468619
0.000439948
0.000427174
0.000420538
0.000417016
0.000415198
0.00041435
0.000414021
0.000413923
0.000413846
0.000413629
0.000413158
0.000412367
0.000411236
0.000409778
0.000408028
0.000406038
0.00040386
0.000401547
0.000399146
0.000396698
0.000394236
0.000391791
0.000389386
0.000387033
0.000384737
0.000382484
0.000380256
0.000378031
0.000375854
0.000373721
0.000372148
0.00037005
0.00136196
0.000936261
0.000895351
0.000948156
0.00101451
0.00107802
0.00113523
0.00118471
0.00122725
0.00126352
0.00129376
0.00131801
0.00133633
0.00134893
0.00135622
0.00135879
0.00135732
0.00135254
0.00134519
0.00133593
0.00132534
0.0013139
0.00130197
0.00128985
0.00127775
0.00126585
0.00125429
0.00124323
0.00123278
0.00122288
0.00121326
0.00120314
0.00119225
0.00117883
0.00116939
0.00142909
0.000962293
0.00090008
0.000946019
0.00101352
0.00108108
0.00114259
0.0011968
0.00124374
0.00128391
0.00131752
0.00134466
0.00136539
0.00137995
0.00138875
0.00139239
0.0013916
0.0013872
0.00137998
0.0013707
0.00135997
0.00134833
0.00133616
0.00132379
0.00131145
0.00129937
0.00128773
0.00127668
0.0012663
0.00125642
0.00124668
0.00123643
0.00122562
0.00121282
0.00120491
0.00167313
0.00115649
0.000942345
0.000901667
0.000994725
0.0011823
0.0014203
0.00168074
0.00194783
0.00221117
0.002464
0.00270263
0.00292553
0.0031324
0.0033238
0.00350056
0.00366383
0.00381483
0.00395471
0.00408459
0.0042055
0.00431837
0.00442405
0.00452339
0.00461716
0.00470596
0.00478998
0.00486892
0.0049425
0.00501135
0.00507807
0.00514705
0.0052226
0.00530374
0.00538505
0.00166996
0.00115482
0.000903463
0.000766799
0.000691778
0.000661317
0.000674302
0.000735464
0.000846969
0.00100524
0.00120401
0.0014358
0.00169045
0.00195491
0.00221595
0.00246246
0.0026867
0.0028844
0.00305426
0.00319705
0.00331489
0.00341058
0.00348716
0.00354762
0.00359478
0.00363114
0.00365893
0.00368012
0.00369641
0.00370913
0.00371908
0.00372625
0.00373015
0.00372956
0.00372708
0.00166992
0.00115487
0.000903351
0.000766487
0.00069118
0.000660558
0.000674334
0.000738923
0.000858271
0.00102916
0.00124386
0.00149224
0.0017612
0.00203577
0.00230194
0.00254892
0.00276995
0.00296198
0.00312476
0.00325991
0.00337014
0.00345862
0.00352859
0.00358314
0.0036251
0.00365699
0.00368105
0.00369922
0.00371307
0.00372371
0.00373163
0.0037367
0.00373867
0.00373704
0.0037355
0.000829597
0.000550052
0.000496069
0.000488021
0.000492733
0.00050128
0.000510407
0.000519035
0.00052683
0.00053381
0.000540062
0.000545597
0.000550357
0.000554283
0.000557331
0.000559491
0.000560785
0.000561269
0.000561025
0.000560155
0.00055877
0.000556981
0.000554889
0.000552587
0.000550152
0.000547648
0.000545131
0.000542645
0.000540224
0.000537881
0.000535618
0.000533362
0.000531182
0.000528654
0.000527331
0.00162285
0.00114125
0.00105588
0.00112829
0.00125494
0.00139393
0.00152872
0.00165307
0.00176509
0.00186493
0.00195359
0.00203234
0.00210249
0.00216529
0.00222186
0.00227318
0.0023201
0.00236332
0.00240343
0.00244092
0.00247618
0.00250953
0.00254126
0.00257165
0.00260092
0.00262918
0.00265621
0.00268164
0.00270522
0.00272749
0.00275027
0.00277617
0.00280707
0.00284128
0.00287253
0.00104235
0.000705921
0.00064556
0.000640557
0.000649199
0.000662101
0.000675935
0.00068932
0.000701859
0.000713453
0.000724058
0.000733649
0.000742218
0.000749752
0.000756243
0.000761694
0.000766128
0.000769584
0.000772129
0.000773849
0.000774847
0.000775233
0.000775119
0.000774612
0.000773807
0.000772791
0.000771632
0.000770387
0.000769093
0.00076776
0.00076642
0.000765037
0.000763886
0.00076236
0.000763645
0.00167943
0.00119642
0.00108949
0.00118082
0.00136003
0.0015694
0.0017836
0.00199
0.00218246
0.00235868
0.00251844
0.00266267
0.00279281
0.0029104
0.00301687
0.00311356
0.00320169
0.0032823
0.00335635
0.00342464
0.00348789
0.00354669
0.00360158
0.0036531
0.00370173
0.0037478
0.00379125
0.00383165
0.00386856
0.00390248
0.00393572
0.00397221
0.00401577
0.00406523
0.00411614
0.000812513
0.000617004
0.000523859
0.000489373
0.000474016
0.000466036
0.000461681
0.000459396
0.000458362
0.00045812
0.00045841
0.000459064
0.000459976
0.000461081
0.000462327
0.000463675
0.00046509
0.000466541
0.000468003
0.000469451
0.000470868
0.00047224
0.000473557
0.000474812
0.000476004
0.00047713
0.000478186
0.000479171
0.000480084
0.000480941
0.000481766
0.000482604
0.000483453
0.00048432
0.000484921
0.00140832
0.000946078
0.000881596
0.000917552
0.000972413
0.00102822
0.00108017
0.00112658
0.00116707
0.00120201
0.00123186
0.001257
0.00127764
0.001294
0.00130631
0.00131488
0.00132006
0.00132231
0.0013221
0.00131993
0.00131623
0.00131142
0.00130581
0.0012997
0.00129329
0.00128678
0.00128035
0.00127415
0.00126833
0.00126291
0.00125783
0.00125268
0.00124752
0.00124024
0.00123781
0.00155163
0.00107141
0.000997535
0.00106211
0.00116563
0.00127444
0.00137736
0.00147058
0.00155335
0.00162634
0.00169071
0.00174771
0.00179845
0.00184391
0.00188494
0.00192228
0.00195654
0.00198824
0.00201782
0.00204564
0.00207198
0.00209707
0.00212111
0.00214432
0.0021669
0.00218895
0.0022103
0.0022305
0.00224914
0.00226646
0.00228404
0.00230454
0.00233044
0.00236102
0.00239159
0.00166525
0.00119887
0.00112929
0.00122668
0.001382
0.00155188
0.00171785
0.00187177
0.00201092
0.00213531
0.00224607
0.00234474
0.0024329
0.00251203
0.00258339
0.00264808
0.00270707
0.0027612
0.00281118
0.00285763
0.00290105
0.00294185
0.0029804
0.00301709
0.00305226
0.0030861
0.00311843
0.00314873
0.0031765
0.00320217
0.00322794
0.00325744
0.00329402
0.00333621
0.0033793
0.00157696
0.00111921
0.0010625
0.00113923
0.00125142
0.00136789
0.00147716
0.00157484
0.00165925
0.00173084
0.00178962
0.00183564
0.00186923
0.00189116
0.00190255
0.00190486
0.00189976
0.00188891
0.00187384
0.00185584
0.00183598
0.00181501
0.00179353
0.00177202
0.0017509
0.00173056
0.00171132
0.00169322
0.00167586
0.00165819
0.00163874
0.00161633
0.00159207
0.00156915
0.00155859
0.000803157
0.000614093
0.000521206
0.000485638
0.000469572
0.000461251
0.000456879
0.00045474
0.000453902
0.000453821
0.000454196
0.000454851
0.000455665
0.000456548
0.000457429
0.000458248
0.000458957
0.000459523
0.000459928
0.000460166
0.000460241
0.000460166
0.000459956
0.000459631
0.000459213
0.000458723
0.00045818
0.000457604
0.000457008
0.000456402
0.000455786
0.000455166
0.000454503
0.000453936
0.000453016
0.000905182
0.000596193
0.000534746
0.000523759
0.000526844
0.00053515
0.000545334
0.000555788
0.000565798
0.000575135
0.000583793
0.000591827
0.000599309
0.000606332
0.00061298
0.000619332
0.000625451
0.000631391
0.000637196
0.000642897
0.000648515
0.000654064
0.000659561
0.000665029
0.000670489
0.000675932
0.000681287
0.00068643
0.000691273
0.000695912
0.000700761
0.000706437
0.000713409
0.000721325
0.000728732
0.00167022
0.00114822
0.000905669
0.000799497
0.000789602
0.000867502
0.00102136
0.00122992
0.00147406
0.00173917
0.00201308
0.00228628
0.00255223
0.00280698
0.00304849
0.00327592
0.00348924
0.00368888
0.00387559
0.00405023
0.00421374
0.00436705
0.00451108
0.00464675
0.00477498
0.00489649
0.00501163
0.00512036
0.00522255
0.00531889
0.00541177
0.0055053
0.00560351
0.00570607
0.00580657
0.00167291
0.00117159
0.00102704
0.00108412
0.00124478
0.00144669
0.00166131
0.00187411
0.00207701
0.00226595
0.00243944
0.00259749
0.00274095
0.00287108
0.00298921
0.00309684
0.00319528
0.00328572
0.00336921
0.00344664
0.00351876
0.00358623
0.0036496
0.00370942
0.00376615
0.00382009
0.0038712
0.00391918
0.00396388
0.00400598
0.0040476
0.0040919
0.00414136
0.00419425
0.00424468
0.00166895
0.00114646
0.000892538
0.000751625
0.000665464
0.000609089
0.000570921
0.000545621
0.00053135
0.000528644
0.000539814
0.000568337
0.000618068
0.000692593
0.000795109
0.000928411
0.00109411
0.00129142
0.00151657
0.00176339
0.00202458
0.00229319
0.0025635
0.00283143
0.00309445
0.00335114
0.00360079
0.00384313
0.00407805
0.00430561
0.00452617
0.00474058
0.00495021
0.00515631
0.00535871
0.0016722
0.00115567
0.000940276
0.00089577
0.000981789
0.00116182
0.00139477
0.00165248
0.00191757
0.00217869
0.00242897
0.00266494
0.00288517
0.00308941
0.00327807
0.00345187
0.00361164
0.00375842
0.00389319
0.00401693
0.0041306
0.0042351
0.00433127
0.00441988
0.00450179
0.00457776
0.00464831
0.00471361
0.00477367
0.00482885
0.00488062
0.00493194
0.00498666
0.00504604
0.00511019
0.00101752
0.00068975
0.000622177
0.00060989
0.000613962
0.000624193
0.000636597
0.000649278
0.000661429
0.000672776
0.000683264
0.000692955
0.000701954
0.000710373
0.000718328
0.000725923
0.000733243
0.000740354
0.00074731
0.000754147
0.000760889
0.000767549
0.000774147
0.000780707
0.000787247
0.000793743
0.000800109
0.000806212
0.000811982
0.000817569
0.000823456
0.00083029
0.000838487
0.000847456
0.00085555
0.00101621
0.000686505
0.00062011
0.000608853
0.00061352
0.000624123
0.000636763
0.000649611
0.000661901
0.00067337
0.00068396
0.000693737
0.00070281
0.000711293
0.000719305
0.00072695
0.000734312
0.00074146
0.000748448
0.000755312
0.000762076
0.000768755
0.000775367
0.000781935
0.000788475
0.000794963
0.000801313
0.000807397
0.00081315
0.000818719
0.00082457
0.000831325
0.000839377
0.000848173
0.000855951
0.00166901
0.00118694
0.00109
0.00118504
0.00135726
0.00155224
0.00174707
0.0019314
0.002101
0.00225467
0.00239289
0.00251684
0.00262797
0.00272783
0.00281803
0.00289991
0.00297459
0.00304306
0.00310614
0.00316448
0.00321864
0.00326904
0.00331605
0.00336
0.00340123
0.00344001
0.00347652
0.00351076
0.00354263
0.00357219
0.00360011
0.0036278
0.00365725
0.00368898
0.0037245
0.0016716
0.00115191
0.000924456
0.000855197
0.000907669
0.00105808
0.00127159
0.00151924
0.00178296
0.00205021
0.00231213
0.00256322
0.00280057
0.00302293
0.0032302
0.00342285
0.0036017
0.00376776
0.0039221
0.00406579
0.00419983
0.00432516
0.00444267
0.00455325
0.00465772
0.00475671
0.00485045
0.00493871
0.00502123
0.00509872
0.00517382
0.00525097
0.00533442
0.00542318
0.00551061
0.00167224
0.00115564
0.000939016
0.000892002
0.000975555
0.00115524
0.0013897
0.00164956
0.00191695
0.00218044
0.00243317
0.00267158
0.00289424
0.00310092
0.00329201
0.00346828
0.00363064
0.00378014
0.00391786
0.00404483
0.00416206
0.00427044
0.00437081
0.00446396
0.00455069
0.00463168
0.00470734
0.00477771
0.00484271
0.00490267
0.00495932
0.00501594
0.00507662
0.0051423
0.00521231
0.00166936
0.00114696
0.000895212
0.000762736
0.00069814
0.000687211
0.000730573
0.000830222
0.000982292
0.00117899
0.00141168
0.00167048
0.00194476
0.00222485
0.00250324
0.00277481
0.00303648
0.00328656
0.00352432
0.00374968
0.00396295
0.00416466
0.00435546
0.00453608
0.00470727
0.00486975
0.00502399
0.0051702
0.00530849
0.00543938
0.00556461
0.00568721
0.00581062
0.00593565
0.00605937
0.000739194
0.000557944
0.000474339
0.000445209
0.000432362
0.000425735
0.000422248
0.000420462
0.000419639
0.000419339
0.000419284
0.000419262
0.000419112
0.00041872
0.000418015
0.000416974
0.000415605
0.000413941
0.000412029
0.000409924
0.000407677
0.000405335
0.000402939
0.000400525
0.000398123
0.000395755
0.000393438
0.000391178
0.000388964
0.000386783
0.000384612
0.000382488
0.000380386
0.000378792
0.000376571
0.000843764
0.000651886
0.000556196
0.00052091
0.000505106
0.000496826
0.000492394
0.000490121
0.000489098
0.000488738
0.000488676
0.000488661
0.000488497
0.000488048
0.000487237
0.000486038
0.000484465
0.000482556
0.000480367
0.000477957
0.000475386
0.000472708
0.000469967
0.0004672
0.00046444
0.000461712
0.00045904
0.000456439
0.000453912
0.000451446
0.000448999
0.000446566
0.000444057
0.00044197
0.000439177
0.000953009
0.000740792
0.000629798
0.000586381
0.000566867
0.000556657
0.000551063
0.000548116
0.000546767
0.000546388
0.000546632
0.000547303
0.000548271
0.000549452
0.000550779
0.000552197
0.000553656
0.000555111
0.000556525
0.000557865
0.000559112
0.000560249
0.00056127
0.000562173
0.000562963
0.000563647
0.000564237
0.000564746
0.000565183
0.000565562
0.000565887
0.000566176
0.000566416
0.000566658
0.000566776
0.00167328
0.00116971
0.00101825
0.00106722
0.00122114
0.00141886
0.00163264
0.00184759
0.00205461
0.0022488
0.00242809
0.00259215
0.00274161
0.00287753
0.00300124
0.00311411
0.00321743
0.00331238
0.00340003
0.00348132
0.00355703
0.00362787
0.00369444
0.00375736
0.00381715
0.00387413
0.0039282
0.00397896
0.00402619
0.0040707
0.0041151
0.00416321
0.00421794
0.00427701
0.00433291
0.00166902
0.00114656
0.00089273
0.000752405
0.00066815
0.000616581
0.000588736
0.000583172
0.000602924
0.000652997
0.000737655
0.000858951
0.00101707
0.00121038
0.00143464
0.00168322
0.00194841
0.00222293
0.00250075
0.00277729
0.00304923
0.00331422
0.00357069
0.00381771
0.00405482
0.00428194
0.00449931
0.00470712
0.00490553
0.00509489
0.00527619
0.00545134
0.00562288
0.0057923
0.00595885
0.000833623
0.000594893
0.000530398
0.000508996
0.000502905
0.000503417
0.000506718
0.000511111
0.000515755
0.000520251
0.000524352
0.000527859
0.000530629
0.000532561
0.000533611
0.000533788
0.000533151
0.000531793
0.00052983
0.000527384
0.000524572
0.000521501
0.00051826
0.000514925
0.000511559
0.000508216
0.000504945
0.000501783
0.000498753
0.000495841
0.000493009
0.000490156
0.000487301
0.000484135
0.000481948
0.000715762
0.000540989
0.000462568
0.000432828
0.000419269
0.000412195
0.00040832
0.000406292
0.000405384
0.000405171
0.000405414
0.000405972
0.000406759
0.000407721
0.000408821
0.000410027
0.000411315
0.000412664
0.000414056
0.000415475
0.000416908
0.000418343
0.000419772
0.00042119
0.00042259
0.000423964
0.000425302
0.000426594
0.000427836
0.00042905
0.000430271
0.000431543
0.00043286
0.000434114
0.000435361
0.00166082
0.00118081
0.00109118
0.00117606
0.00132774
0.00150096
0.00167471
0.00183867
0.00198863
0.00212377
0.00224478
0.00235303
0.00245005
0.00253727
0.00261602
0.00268745
0.00275258
0.0028123
0.00286742
0.00291861
0.00296643
0.00301133
0.00305374
0.00309409
0.00313275
0.00316996
0.00320554
0.00323894
0.00326968
0.00329819
0.00332679
0.00335929
0.00339918
0.003445
0.00349135
0.00071139
0.000533433
0.000455006
0.000426231
0.000413219
0.000406374
0.000402645
0.000400706
0.000399851
0.000399681
0.00039996
0.000400539
0.000401311
0.000402199
0.000403139
0.000404079
0.000404978
0.000405802
0.000406529
0.000407145
0.000407642
0.000408024
0.000408295
0.000408467
0.000408552
0.000408563
0.000408513
0.000408413
0.000408272
0.000408101
0.00040791
0.000407724
0.000407528
0.000407448
0.000407029
0.000950906
0.000641125
0.000576618
0.000561176
0.000561754
0.000569429
0.000579972
0.000591254
0.000602241
0.000612516
0.000621936
0.000630471
0.000638142
0.000644978
0.000650997
0.000656205
0.000660611
0.000664237
0.000667121
0.000669318
0.000670895
0.000671927
0.000672494
0.000672671
0.000672537
0.000672167
0.000671643
0.000671038
0.000670416
0.000669802
0.00066919
0.000668451
0.000667671
0.000666023
0.000666726
0.00160989
0.00114124
0.00106601
0.00113429
0.00124941
0.001375
0.00149657
0.0016082
0.0017087
0.00179824
0.00187756
0.0019475
0.00200895
0.00206267
0.00210933
0.00214953
0.00218383
0.00221275
0.00223685
0.00225668
0.00227281
0.0022858
0.00229621
0.00230454
0.00231123
0.00231668
0.00232121
0.00232503
0.00232829
0.00233101
0.00233332
0.0023354
0.00233825
0.00234118
0.00235131
0.00167113
0.00117906
0.00105101
0.0011146
0.00126573
0.00145124
0.00164774
0.00184168
0.0020251
0.00219415
0.00234739
0.0024853
0.00260872
0.00271856
0.00281569
0.00290088
0.00297492
0.00303861
0.00309283
0.00313855
0.00317677
0.00320853
0.00323481
0.00325655
0.00327461
0.00328979
0.00330281
0.00331433
0.00332492
0.00333493
0.00334453
0.00335349
0.00336178
0.00336769
0.00337714
0.00136223
0.000908877
0.000858367
0.000917388
0.000994163
0.00106629
0.00112938
0.0011834
0.00122944
0.00126897
0.00130305
0.00133233
0.0013572
0.00137794
0.00139477
0.00140794
0.00141771
0.00142444
0.00142849
0.00143029
0.00143025
0.00142876
0.00142618
0.00142284
0.00141898
0.00141484
0.00141056
0.0014063
0.00140216
0.00139816
0.00139435
0.00139051
0.00138697
0.00138229
0.00138239
0.00102793
0.000673021
0.000627608
0.00063927
0.000662213
0.000687478
0.000711958
0.000734555
0.000755086
0.00077361
0.000790243
0.000805079
0.000818255
0.000829878
0.000840034
0.0008488
0.000856249
0.000862461
0.000867527
0.000871553
0.000874658
0.000876968
0.000878612
0.000879713
0.000880386
0.000880733
0.000880839
0.000880759
0.000880528
0.000880144
0.000879664
0.000879105
0.000878938
0.000878468
0.000881889
0.000726743
0.000503192
0.000444634
0.00042544
0.000420004
0.000420262
0.000422979
0.000426678
0.000430712
0.000434797
0.000438804
0.00044268
0.00044641
0.000449997
0.000453448
0.000456766
0.000459944
0.000462972
0.000465837
0.000468526
0.00047103
0.000473345
0.00047547
0.000477409
0.000479171
0.000480773
0.000482232
0.000483569
0.000484798
0.000485929
0.000486977
0.000487939
0.000488917
0.000489687
0.00049133
0.00121099
0.000772603
0.000709034
0.000733365
0.000775992
0.000820482
0.000862406
0.000900263
0.000933802
0.000963386
0.000989574
0.0010129
0.00103385
0.00105283
0.00107019
0.00108625
0.00110126
0.00111542
0.00112891
0.00114185
0.00115435
0.00116647
0.00117829
0.00118989
0.00120134
0.00121267
0.00122374
0.00123427
0.00124405
0.00125325
0.00126275
0.001274
0.00128823
0.00130497
0.00132101
0.000694927
0.000525
0.000444554
0.000414075
0.000400246
0.000392959
0.000388946
0.000386806
0.000385791
0.000385478
0.000385626
0.000386095
0.000386794
0.000387661
0.000388648
0.000389717
0.000390833
0.000391965
0.000393084
0.00039417
0.000395204
0.000396174
0.000397072
0.000397895
0.000398642
0.000399317
0.000399925
0.000400471
0.000400962
0.000401406
0.000401807
0.00040218
0.000402506
0.000402855
0.000402999
0.00154635
0.00107828
0.00101125
0.00107536
0.00117516
0.00127887
0.00137626
0.00146415
0.00154216
0.00161103
0.00167177
0.00172537
0.0017729
0.00181537
0.00185359
0.00188816
0.00191962
0.00194837
0.00197472
0.00199895
0.00202128
0.0020419
0.00206097
0.00207868
0.0020952
0.00211069
0.00212518
0.00213852
0.00215049
0.00216108
0.00217103
0.00218177
0.00219559
0.0022122
0.00223575
0.00108091
0.000690392
0.000632305
0.000644693
0.000672934
0.000704071
0.000734156
0.000761689
0.000786304
0.000808188
0.000827677
0.000845143
0.000860924
0.000875313
0.000888571
0.000900925
0.00091256
0.000923625
0.00093424
0.000944498
0.000954464
0.000964186
0.000973713
0.000983104
0.000992414
0.00100164
0.00101067
0.00101928
0.00102731
0.00103492
0.00104284
0.00105222
0.00106395
0.00107755
0.00109018
0.000772044
0.000531609
0.000471499
0.000451624
0.00044637
0.000447806
0.000452244
0.000457781
0.000463595
0.000469297
0.000474716
0.000479771
0.000484434
0.000488693
0.000492536
0.000495944
0.000498904
0.000501409
0.000503467
0.000505096
0.00050633
0.000507207
0.00050777
0.000508064
0.000508139
0.000508041
0.000507823
0.000507533
0.000507212
0.000506876
0.000506526
0.000506094
0.000505606
0.00050468
0.000504664
0.000862999
0.000662526
0.000562315
0.000523416
0.000506247
0.000497589
0.00049296
0.000490602
0.000489587
0.000489391
0.000489726
0.000490431
0.000491407
0.000492589
0.000493932
0.000495402
0.000496973
0.000498625
0.000500339
0.000502101
0.000503898
0.00050572
0.00050756
0.000509411
0.000511268
0.000513123
0.00051496
0.000516765
0.000518534
0.00052029
0.000522081
0.00052396
0.000525931
0.000527802
0.000529845
0.00167278
0.00117878
0.00104534
0.00110609
0.00125983
0.00145157
0.00165599
0.00185852
0.00205073
0.00222859
0.00239082
0.00253766
0.00267
0.00278899
0.00289577
0.00299131
0.00307646
0.00315199
0.00321862
0.00327712
0.00332826
0.00337281
0.00341155
0.00344527
0.0034747
0.00350058
0.00352359
0.00354436
0.00356342
0.00358116
0.00359785
0.00361357
0.00362879
0.00364229
0.00366074
0.00104339
0.000679802
0.000641512
0.000661622
0.000690707
0.000720275
0.000747756
0.000772143
0.000793378
0.000811594
0.000826675
0.000838479
0.000846903
0.00085197
0.000853877
0.000852962
0.000849641
0.000844372
0.000837613
0.000829774
0.00082121
0.000812209
0.000802991
0.000793722
0.000784528
0.000775521
0.000766815
0.000758519
0.000750687
0.000743194
0.000735699
0.000727521
0.000718394
0.0007076
0.000699626
0.00104994
0.000684561
0.000636412
0.00064775
0.000672087
0.000699246
0.000724937
0.000747936
0.000768061
0.000785397
0.000799892
0.000811364
0.000819686
0.000824852
0.000827006
0.000826426
0.000823488
0.000818621
0.00081226
0.000804804
0.000796602
0.000787935
0.000779026
0.000770048
0.000761149
0.000752463
0.000744109
0.00073616
0.000728605
0.000721283
0.000713914
0.000706084
0.000697917
0.000688883
0.000683273
0.000816003
0.000543233
0.000485467
0.000471678
0.000471957
0.000477693
0.000485338
0.000493324
0.000501099
0.000508463
0.000515369
0.000521825
0.000527869
0.000533566
0.000538987
0.000544197
0.000549247
0.000554172
0.000558998
0.000563741
0.000568404
0.000572986
0.000577483
0.000581894
0.000586218
0.000590449
0.000594565
0.000598525
0.000602284
0.000605847
0.000609327
0.000612926
0.000616931
0.000621247
0.00062596
0.00141684
0.000932363
0.00085108
0.000885439
0.000947879
0.00101497
0.00107932
0.00113805
0.0011902
0.00123589
0.00127573
0.00131036
0.00134032
0.00136605
0.0013879
0.00140612
0.00142096
0.00143274
0.00144177
0.0014484
0.001453
0.00145592
0.00145748
0.00145798
0.00145768
0.00145681
0.00145562
0.00145432
0.0014531
0.00145204
0.00145112
0.00144998
0.00144855
0.00144507
0.00144496
0.000952164
0.000642491
0.000579066
0.000564905
0.000565257
0.000571599
0.000580422
0.000589942
0.000599238
0.00060799
0.000616161
0.000623734
0.000630748
0.000637248
0.00064327
0.000648834
0.000653942
0.000658592
0.000662778
0.000666504
0.000669782
0.000672633
0.000675084
0.000677172
0.000678936
0.000680426
0.000681693
0.000682789
0.000683763
0.000684639
0.000685438
0.000686109
0.000686791
0.000686941
0.000688924
0.0016709
0.00115384
0.00091862
0.000829818
0.000851885
0.000970854
0.00116143
0.00139525
0.00165202
0.00191729
0.00218047
0.0024344
0.00267445
0.00289784
0.00310293
0.00328886
0.00345549
0.00360332
0.0037334
0.00384721
0.00394648
0.00403306
0.00410878
0.00417536
0.00423438
0.00428721
0.00433505
0.00437886
0.00441939
0.00445719
0.00449282
0.00452679
0.00456031
0.00459322
0.00463181
0.000830219
0.000632479
0.000538165
0.000502316
0.000486538
0.000478559
0.00047426
0.00047203
0.000471047
0.000470853
0.000471177
0.000471862
0.000472806
0.000473944
0.000475231
0.000476638
0.000478139
0.00047971
0.000481333
0.000482991
0.000484667
0.000486347
0.00048802
0.000489674
0.000491302
0.000492896
0.000494448
0.00049595
0.000497397
0.000498793
0.000500152
0.000501501
0.000502852
0.00050416
0.000505576
0.000698394
0.000525406
0.000447517
0.000417821
0.000404078
0.000396781
0.000392829
0.000390823
0.000389957
0.000389776
0.000390032
0.000390576
0.000391315
0.000392181
0.000393121
0.000394089
0.000395042
0.000395948
0.000396781
0.00039752
0.000398157
0.000398687
0.000399111
0.000399437
0.000399674
0.000399832
0.000399925
0.000399965
0.000399964
0.000399931
0.000399868
0.000399788
0.000399659
0.000399586
0.000399162
0.000734047
0.000555197
0.000471818
0.000439898
0.000425192
0.000417503
0.000413424
0.000411388
0.000410546
0.000410418
0.000410738
0.000411345
0.000412135
0.000413032
0.000413976
0.000414913
0.000415799
0.000416601
0.000417292
0.00041786
0.000418299
0.00041861
0.000418802
0.000418887
0.000418878
0.000418791
0.000418642
0.000418447
0.000418217
0.000417965
0.000417689
0.000417404
0.000417064
0.000416814
0.000416075
0.00166897
0.0011462
0.000892357
0.000751713
0.000666452
0.000612455
0.000579539
0.00056454
0.000568607
0.00059564
0.000650553
0.000737446
0.000858794
0.00101555
0.00120656
0.0014277
0.00167227
0.00193256
0.00220152
0.00247357
0.00274462
0.0030118
0.0032731
0.00352717
0.00377315
0.0040106
0.00423934
0.00445924
0.00467022
0.00487241
0.0050666
0.00525453
0.00543862
0.00562034
0.0057984
0.00148669
0.00102961
0.000977658
0.00103818
0.00111976
0.00120045
0.00127405
0.00133904
0.00139517
0.00144281
0.00148202
0.00151282
0.00153532
0.00154989
0.00155723
0.00155831
0.00155417
0.00154592
0.00153458
0.00152104
0.00150605
0.00149022
0.00147396
0.00145762
0.00144141
0.00142556
0.00141028
0.00139581
0.00138228
0.00136944
0.00135651
0.00134194
0.00132478
0.00130382
0.00128723
0.0014804
0.0010205
0.000962913
0.00101899
0.00110027
0.00118281
0.00125782
0.00132375
0.00138064
0.00142891
0.00146869
0.00149998
0.00152293
0.00153789
0.00154554
0.0015468
0.00154272
0.00153444
0.00152301
0.00150936
0.00149424
0.00147826
0.00146186
0.00144538
0.00142911
0.00141334
0.00139831
0.00138415
0.00137076
0.00135762
0.00134389
0.00132857
0.0013119
0.00129406
0.00128381
0.000750491
0.00057376
0.000485284
0.000452569
0.000437838
0.000429982
0.000425673
0.000423375
0.000422225
0.000421743
0.000421625
0.000421654
0.00042167
0.00042155
0.000421215
0.000420622
0.000419757
0.000418631
0.000417272
0.000415716
0.000414004
0.000412177
0.000410271
0.000408318
0.000406346
0.000404379
0.000402435
0.000400529
0.000398669
0.000396856
0.000395074
0.000393334
0.000391567
0.000390131
0.000387985
0.000664568
0.000499394
0.00042008
0.000391825
0.000379289
0.000372686
0.000369151
0.000367302
0.000366412
0.000366087
0.000366069
0.000366174
0.000366259
0.000366219
0.000365983
0.00036551
0.00036479
0.000363833
0.000362665
0.000361321
0.000359839
0.000358255
0.000356602
0.00035491
0.000353205
0.000351507
0.000349833
0.000348193
0.000346591
0.000345026
0.000343486
0.000341989
0.000340477
0.000339276
0.000337397
0.00166907
0.00114816
0.000894537
0.000754196
0.000669744
0.000617816
0.000589519
0.000583667
0.000603874
0.000655999
0.000745038
0.000873186
0.00104021
0.00124358
0.00147778
0.00173469
0.00200543
0.00228187
0.00255762
0.00282803
0.00308978
0.0033412
0.00358163
0.00381099
0.00402969
0.0042384
0.00443792
0.00462897
0.00481208
0.00498774
0.00515669
0.00532032
0.00548077
0.00563976
0.00579866
0.00167372
0.00116781
0.000992204
0.00101152
0.00115202
0.00135244
0.00157854
0.00181219
0.00204164
0.0022597
0.00246265
0.00264909
0.00281894
0.00297276
0.0031113
0.00323534
0.00334567
0.0034431
0.00352852
0.00360294
0.00366744
0.00372314
0.00377118
0.00381267
0.00384866
0.00388015
0.00390808
0.00393327
0.00395643
0.00397809
0.00399859
0.00401794
0.00403647
0.00405278
0.00407322
0.0015187
0.00104499
0.00097566
0.00103427
0.00112552
0.00121975
0.00130794
0.00138715
0.00145703
0.00151835
0.00157228
0.00161993
0.00166233
0.00170036
0.00173475
0.00176612
0.00179499
0.00182178
0.00184686
0.00187053
0.00189302
0.0019145
0.00193515
0.00195513
0.00197463
0.00199371
0.0020122
0.00202969
0.00204581
0.00206076
0.00207595
0.00209377
0.00211647
0.00214326
0.0021707
0.000715587
0.000536026
0.00045447
0.00042341
0.000409654
0.0004027
0.000398974
0.000397073
0.000396264
0.000396139
0.000396458
0.000397084
0.000397926
0.000398928
0.000400056
0.000401283
0.000402589
0.000403959
0.000405376
0.000406828
0.000408304
0.000409793
0.000411285
0.000412775
0.000414254
0.000415715
0.000417149
0.000418548
0.000419909
0.000421239
0.000422558
0.000423889
0.000425235
0.000426517
0.000427915
0.000765826
0.000580813
0.000493547
0.00046185
0.000448062
0.00044094
0.000437049
0.000434946
0.000433931
0.000433565
0.000433594
0.000433862
0.000434245
0.000434642
0.000434972
0.000435172
0.000435203
0.000435042
0.000434686
0.000434144
0.000433436
0.000432587
0.000431623
0.000430573
0.00042946
0.000428309
0.000427139
0.000425966
0.000424804
0.000423661
0.000422539
0.000421452
0.000420354
0.000419454
0.000418046
0.00132926
0.00088328
0.000827162
0.00086228
0.000915323
0.000969243
0.00101953
0.00106487
0.00110522
0.001141
0.00117264
0.00120052
0.00122505
0.00124654
0.00126526
0.00128142
0.00129522
0.00130684
0.00131648
0.00132435
0.00133065
0.00133562
0.00133947
0.00134241
0.00134464
0.00134631
0.00134757
0.00134851
0.00134916
0.00134953
0.0013497
0.00134971
0.00135033
0.00135069
0.00135687
0.000794745
0.000614798
0.000521932
0.000486757
0.000471054
0.000462909
0.000458562
0.000456322
0.000455294
0.000454978
0.000455067
0.00045534
0.000455636
0.000455826
0.000455821
0.000455565
0.000455035
0.000454232
0.000453178
0.000451907
0.000450459
0.000448874
0.000447189
0.000445441
0.000443658
0.000441867
0.000440089
0.00043834
0.00043663
0.000434962
0.000433326
0.000431736
0.000430119
0.000428791
0.000426697
0.000852568
0.00066801
0.000570276
0.000532266
0.000515217
0.000506343
0.000501548
0.000499001
0.000497747
0.000497256
0.000497199
0.00049735
0.000497537
0.000497628
0.000497529
0.000497182
0.00049656
0.000495662
0.000494506
0.000493124
0.000491556
0.000489842
0.000488021
0.000486128
0.000484196
0.000482251
0.000480316
0.000478409
0.000476541
0.000474722
0.00047294
0.000471208
0.000469451
0.000467988
0.000465802
0.00167273
0.00116098
0.000976269
0.000983616
0.00111374
0.00130689
0.0015286
0.00176151
0.00199407
0.00221838
0.00242978
0.00262612
0.00280697
0.00297288
0.00312483
0.00326419
0.00339229
0.00351037
0.00361959
0.00372094
0.00381529
0.00390339
0.00398591
0.0040635
0.00413672
0.004206
0.00427147
0.00433299
0.00439043
0.00444433
0.00449655
0.00455007
0.00460771
0.00466874
0.00472936
0.000689629
0.000514434
0.000438589
0.00041246
0.00040081
0.000394771
0.000391629
0.000390028
0.000389302
0.00038907
0.000389077
0.000389128
0.000389075
0.00038881
0.000388266
0.000387416
0.000386263
0.000384836
0.000383176
0.000381331
0.000379347
0.000377268
0.000375133
0.000372975
0.000370822
0.000368695
0.000366612
0.000364579
0.000362593
0.000360644
0.000358712
0.000356821
0.00035493
0.000353454
0.000351321
0.000806893
0.000618985
0.000529419
0.000496645
0.000481876
0.000474102
0.000469932
0.000467778
0.000466787
0.000466442
0.000466407
0.000466439
0.000466358
0.000466031
0.000465382
0.00046438
0.000463031
0.000461366
0.000459433
0.000457286
0.000454977
0.000452558
0.000450071
0.000447552
0.000445032
0.000442536
0.000440086
0.000437698
0.000435376
0.000433112
0.000430872
0.000428653
0.000426371
0.00042447
0.000421867
0.00167002
0.00115394
0.000904508
0.000775922
0.000720062
0.000726275
0.000796104
0.000927196
0.00110883
0.00132759
0.00157041
0.0018245
0.00207851
0.00232395
0.00255513
0.00276869
0.00296295
0.00313739
0.00329236
0.00342883
0.00354818
0.00365205
0.0037422
0.00382038
0.00388832
0.00394764
0.00399988
0.00404646
0.00408868
0.00412757
0.00416384
0.00419759
0.00422873
0.00425582
0.0042822
0.00164287
0.00116536
0.00107159
0.00113524
0.00125929
0.00140375
0.00154957
0.00168727
0.00181301
0.00192588
0.00202632
0.00211532
0.00219402
0.00226347
0.00232452
0.00237787
0.00242412
0.00246386
0.00249764
0.00252608
0.0025498
0.00256945
0.00258562
0.0025989
0.00260981
0.00261887
0.00262656
0.00263333
0.00263954
0.00264546
0.00265117
0.00265644
0.00266139
0.00266405
0.00267225
0.000752989
0.000565483
0.000483582
0.000453738
0.000440348
0.000433353
0.000429564
0.000427625
0.000426804
0.000426689
0.000427037
0.000427694
0.000428553
0.000429537
0.000430583
0.00043164
0.000432668
0.000433631
0.000434505
0.000435274
0.000435928
0.000436466
0.000436892
0.000437216
0.000437447
0.000437598
0.000437682
0.000437708
0.000437686
0.000437626
0.000437539
0.000437453
0.000437365
0.00043737
0.000437187
0.000765433
0.0005786
0.000491549
0.00045894
0.000444162
0.000436472
0.000432426
0.000430453
0.000429692
0.000429634
0.000429994
0.000430607
0.000431355
0.000432151
0.000432925
0.000433617
0.000434184
0.000434598
0.000434845
0.000434923
0.000434841
0.000434613
0.000434258
0.000433797
0.000433252
0.000432644
0.000431993
0.000431318
0.000430629
0.000429939
0.000429242
0.000428548
0.000427813
0.000427188
0.000426171
0.000703802
0.000527759
0.000446317
0.000416485
0.000403086
0.000396146
0.000392499
0.000390695
0.00038997
0.000389879
0.000390167
0.000390675
0.000391288
0.000391917
0.000392488
0.000392946
0.000393252
0.000393386
0.000393343
0.000393128
0.000392757
0.00039225
0.00039163
0.000390921
0.000390144
0.000389322
0.000388473
0.000387614
0.000386755
0.000385905
0.000385058
0.000384226
0.000383347
0.000382637
0.000381284
0.00152811
0.00105599
0.000987687
0.00105087
0.00114941
0.00125223
0.00134921
0.00143686
0.0015145
0.00158281
0.00164298
0.00169623
0.00174362
0.00178607
0.00182439
0.00185928
0.00189133
0.00192101
0.00194873
0.00197484
0.00199958
0.00202318
0.00204581
0.00206769
0.00208901
0.00210985
0.00213003
0.0021491
0.00216665
0.00218296
0.00219959
0.00221916
0.00224407
0.00227345
0.00230279
0.00166884
0.00114343
0.000889266
0.000748345
0.000662093
0.000605134
0.000565235
0.000535953
0.000513642
0.000496116
0.000482007
0.000470423
0.000460772
0.000452659
0.000445831
0.000440143
0.000435542
0.000432069
0.000429857
0.000429147
0.000430299
0.000433817
0.000440373
0.000450841
0.000466342
0.000488307
0.000518561
0.000559432
0.000613826
0.000685212
0.000777447
0.000894451
0.00103965
0.00121546
0.00141916
0.000741843
0.000563878
0.000480457
0.000448306
0.000433539
0.000425703
0.000421427
0.00041923
0.000418272
0.000418052
0.0004183
0.000418863
0.000419642
0.000420567
0.000421583
0.000422643
0.000423704
0.000424731
0.000425694
0.000426573
0.000427352
0.000428027
0.000428596
0.000429062
0.000429435
0.000429723
0.00042994
0.000430098
0.000430207
0.000430278
0.000430315
0.00043033
0.000430295
0.000430304
0.000429999
0.00077722
0.000525329
0.000467196
0.000449629
0.000445532
0.000447343
0.000451808
0.000457279
0.000462899
0.000468396
0.000473659
0.000478623
0.000483276
0.000487621
0.000491661
0.000495387
0.000498788
0.00050185
0.000504565
0.000506933
0.000508965
0.000510677
0.000512094
0.000513246
0.000514165
0.00051489
0.000515462
0.000515921
0.000516304
0.00051663
0.00051691
0.000517102
0.000517268
0.000517077
0.000517805
0.000917781
0.000598581
0.000532631
0.000519958
0.000523396
0.000532597
0.000543597
0.000554717
0.000565317
0.000575203
0.000584339
0.000592759
0.000600549
0.000607811
0.000614655
0.000621176
0.000627449
0.000633534
0.000639477
0.00064531
0.000651051
0.000656708
0.000662291
0.000667807
0.000673264
0.000678651
0.000683922
0.000689001
0.000693833
0.000698462
0.000703127
0.000708191
0.000714001
0.000720347
0.000726839
0.000816018
0.000538588
0.00048105
0.00046695
0.000466754
0.00047203
0.000479322
0.00048716
0.00049492
0.000502351
0.000509345
0.000515851
0.000521853
0.000527351
0.000532348
0.000536843
0.000540838
0.000544336
0.00054735
0.0005499
0.000552018
0.000553743
0.000555121
0.000556201
0.000557032
0.000557659
0.000558123
0.000558448
0.000558648
0.000558729
0.000558734
0.000558706
0.000558889
0.000559035
0.000560767
0.000779507
0.000586914
0.000499806
0.000467281
0.000452612
0.000445027
0.000440904
0.000438763
0.000437806
0.000437581
0.000437838
0.000438434
0.000439281
0.000440319
0.000441507
0.000442814
0.000444213
0.000445683
0.000447206
0.000448767
0.000450352
0.000451953
0.000453561
0.00045517
0.000456775
0.000458368
0.000459934
0.000461461
0.000462944
0.000464407
0.000465894
0.000467459
0.000469095
0.000470655
0.00047222
0.00168119
0.00120074
0.00109924
0.00119751
0.00138123
0.00159193
0.00180567
0.00201097
0.0022022
0.00237724
0.00253596
0.00267929
0.00280863
0.00292553
0.00303144
0.00312767
0.00321542
0.00329577
0.00336967
0.00343794
0.00350129
0.00356032
0.00361557
0.00366758
0.00371684
0.00376366
0.00380795
0.00384919
0.00388692
0.00392171
0.00395606
0.00399415
0.00403985
0.00409162
0.00414395
0.00166935
0.0011939
0.00110198
0.00120479
0.00138713
0.00159296
0.00179772
0.00199002
0.00216533
0.00232258
0.00246208
0.00258456
0.00269084
0.00278171
0.00285804
0.00292082
0.0029712
0.0030105
0.00304019
0.00306176
0.00307669
0.00308636
0.003092
0.00309467
0.00309524
0.00309443
0.00309279
0.00309077
0.00308869
0.00308675
0.00308505
0.00308336
0.00308198
0.00307928
0.00308196
0.00078094
0.000599054
0.000509549
0.000476142
0.000461366
0.000453735
0.000449624
0.000447416
0.000446336
0.00044593
0.000445929
0.000446155
0.000446468
0.000446755
0.000446927
0.000446925
0.000446713
0.000446275
0.000445617
0.000444758
0.000443724
0.000442547
0.000441259
0.000439891
0.00043847
0.000437022
0.000435565
0.000434119
0.000432694
0.000431301
0.000429934
0.000428614
0.000427268
0.000426184
0.00042433
0.00167412
0.00120689
0.00112546
0.00122539
0.00139419
0.00158316
0.00177047
0.00194408
0.00210018
0.00223827
0.00235873
0.00246219
0.00254927
0.00262068
0.00267736
0.00272052
0.00275162
0.00277238
0.00278456
0.00278988
0.00278993
0.00278608
0.00277944
0.00277094
0.00276128
0.00275106
0.00274078
0.00273087
0.00272168
0.00271334
0.0027057
0.00269804
0.00268983
0.00267874
0.00267076
0.00156061
0.00109008
0.0010173
0.00107824
0.00117573
0.00127784
0.00137329
0.00145807
0.00153157
0.00159453
0.00164772
0.0016917
0.00172694
0.00175388
0.00177312
0.00178538
0.00179158
0.00179268
0.00178972
0.00178365
0.00177531
0.00176542
0.00175455
0.00174313
0.00173151
0.00171997
0.00170876
0.00169808
0.00168808
0.00167877
0.00166993
0.00166099
0.00165178
0.00164023
0.00163295
0.00166914
0.00115022
0.000896707
0.000755925
0.000669861
0.000613836
0.000576614
0.000553337
0.000542819
0.00054637
0.000567043
0.000608816
0.00067575
0.000771597
0.00089984
0.00106326
0.00126264
0.00149577
0.00175745
0.00204038
0.00233644
0.00263787
0.00293802
0.00323177
0.00351554
0.00378717
0.00404554
0.00429038
0.00452189
0.00474061
0.0049473
0.00514296
0.00532901
0.00550645
0.00567801
0.0016781
0.00119681
0.00108557
0.00117244
0.00134698
0.00155234
0.00176407
0.00196788
0.00215608
0.00232627
0.00247777
0.00261065
0.00272519
0.00282195
0.00290173
0.00296568
0.00301529
0.00305234
0.00307873
0.00309635
0.003107
0.00311225
0.00311348
0.0031118
0.00310812
0.00310319
0.00309768
0.00309216
0.00308707
0.00308265
0.00307878
0.0030748
0.00307012
0.00306232
0.00305758
0.000948996
0.000673918
0.000600074
0.000576482
0.000570819
0.000572484
0.000577216
0.000583089
0.000589245
0.000595332
0.000601209
0.000606835
0.000612235
0.000617442
0.000622493
0.000627418
0.000632243
0.000636987
0.000641667
0.000646291
0.000650863
0.000655381
0.000659849
0.000664278
0.000668677
0.000673037
0.0006773
0.000681364
0.000685158
0.000688753
0.000692473
0.000696801
0.000702131
0.000708096
0.000714014
0.000940939
0.00064106
0.000575479
0.000557578
0.000555928
0.000561873
0.000571074
0.000581264
0.000591295
0.000600749
0.000609464
0.000617382
0.000624488
0.000630776
0.000636239
0.000640863
0.00064465
0.000647624
0.000649831
0.000651337
0.000652222
0.000652573
0.000652475
0.000652013
0.000651268
0.00065032
0.00064925
0.000648131
0.000647026
0.000645952
0.000644894
0.00064372
0.000642444
0.00064042
0.000639746
0.00154905
0.00108643
0.00102196
0.00108673
0.00118308
0.00128078
0.00137019
0.00144886
0.00151679
0.00157481
0.00162373
0.00166413
0.00169641
0.00172098
0.00173841
0.00174939
0.00175477
0.00175544
0.00175231
0.00174625
0.00173804
0.00172835
0.00171771
0.00170655
0.0016952
0.00168389
0.00167285
0.00166223
0.0016522
0.00164278
0.00163384
0.00162481
0.0016155
0.0016038
0.00159642
0.00166602
0.00119886
0.00112134
0.00121611
0.00137383
0.00154879
0.00172028
0.00187842
0.00201955
0.00214307
0.00224931
0.00233874
0.00241184
0.00246938
0.00251241
0.00254236
0.00256094
0.00257004
0.00257155
0.00256724
0.00255867
0.00254712
0.00253362
0.00251895
0.00250374
0.00248848
0.00247361
0.00245949
0.00244637
0.0024342
0.00242259
0.00241061
0.00239771
0.00238181
0.00236938
0.000995244
0.000773922
0.000659576
0.000615167
0.000595832
0.000586017
0.000580658
0.000577825
0.00057652
0.000576193
0.000576508
0.000577269
0.000578354
0.000579681
0.000581196
0.000582858
0.000584634
0.000586492
0.000588407
0.000590354
0.000592311
0.000594261
0.000596188
0.000598078
0.000599921
0.000601709
0.000603435
0.000605093
0.000606679
0.000608198
0.000609662
0.000611097
0.000612514
0.000613882
0.000615276
0.00167238
0.00118993
0.00108459
0.00116968
0.0013336
0.00152441
0.00171972
0.00190779
0.00208272
0.00224213
0.00238544
0.00251294
0.00262526
0.00272313
0.00280736
0.00287882
0.00293851
0.00298749
0.00302697
0.00305822
0.00308252
0.00310112
0.00311517
0.00312571
0.0031336
0.0031396
0.00314428
0.00314811
0.00315141
0.00315435
0.0031571
0.00315965
0.00316273
0.00316515
0.00317463
0.0015167
0.00106336
0.00100077
0.00105006
0.00112554
0.00120326
0.001276
0.00134141
0.00139925
0.00145013
0.00149496
0.00153466
0.00157009
0.00160198
0.00163095
0.00165748
0.001682
0.00170484
0.00172629
0.00174657
0.00176586
0.00178429
0.00180198
0.00181908
0.00183572
0.00185195
0.00186758
0.00188221
0.00189548
0.00190764
0.00192009
0.00193513
0.00195486
0.00197826
0.00200197
0.00166881
0.00114258
0.000888032
0.000746919
0.000660624
0.000603666
0.000563776
0.000534503
0.000512197
0.000494667
0.000480535
0.000468898
0.000459143
0.000450839
0.00044368
0.000437439
0.000431947
0.000427079
0.000422737
0.000418853
0.000415374
0.00041227
0.000409526
0.000407148
0.000405163
0.000403622
0.000402607
0.000402237
0.000402676
0.000404146
0.000406939
0.000411434
0.000418111
0.000427566
0.000440036
0.00167099
0.00115188
0.000917814
0.000831226
0.000854313
0.000969995
0.00115247
0.00137633
0.00162433
0.00188358
0.00214388
0.00239797
0.00264144
0.00287185
0.00308794
0.00328924
0.00347571
0.00364764
0.00380547
0.0039498
0.00408134
0.00420099
0.0043097
0.0044085
0.00449847
0.00458068
0.00465618
0.00472589
0.0047906
0.00485098
0.00490771
0.00496157
0.00501383
0.00506457
0.00511888
0.000757028
0.000566301
0.000479765
0.000450197
0.000437131
0.000430338
0.000426758
0.000424902
0.000424027
0.0004237
0.000423639
0.000423627
0.000423503
0.000423148
0.000422489
0.000421497
0.000420178
0.000418563
0.000416696
0.000414632
0.00041242
0.000410109
0.00040774
0.00040535
0.000402967
0.000400617
0.000398314
0.000396066
0.000393867
0.000391704
0.000389557
0.000387461
0.000385378
0.000383793
0.000381492
0.000849944
0.000656353
0.000560672
0.000525419
0.000509622
0.000501341
0.000496903
0.000494615
0.000493575
0.000493211
0.00049316
0.000493167
0.000493038
0.000492636
0.000491881
0.000490744
0.000489236
0.000487393
0.000485268
0.000482919
0.000480405
0.000477778
0.000475085
0.000472362
0.000469641
0.000466951
0.000464312
0.000461741
0.000459242
0.000456804
0.000454387
0.000451988
0.00044952
0.00044747
0.000444722
0.00160901
0.00116324
0.00112667
0.00123679
0.00138168
0.00152428
0.00165348
0.00176635
0.00186415
0.00194868
0.00202162
0.0020841
0.00213693
0.00218069
0.00221598
0.00224344
0.00226381
0.00227792
0.00228667
0.002291
0.00229181
0.00228993
0.00228607
0.00228084
0.00227475
0.00226818
0.00226144
0.00225479
0.00224841
0.0022424
0.00223676
0.00223116
0.00222573
0.00221871
0.00221676
0.00167133
0.00117738
0.00104584
0.00110819
0.00126118
0.00145012
0.00165071
0.00184906
0.00203685
0.00220999
0.00236702
0.00250805
0.00263383
0.00274518
0.00284289
0.00292774
0.00300057
0.00306232
0.00311403
0.00315685
0.00319193
0.00322046
0.00324353
0.00326217
0.00327729
0.00328971
0.0033002
0.00330943
0.00331797
0.00332617
0.00333416
0.00334156
0.00334822
0.00335199
0.00335959
0.00158407
0.00110066
0.00101055
0.00106332
0.00116339
0.00127582
0.00138636
0.00148875
0.0015807
0.00166194
0.00173317
0.00179535
0.00184937
0.00189598
0.00193578
0.00196923
0.00199684
0.00201913
0.0020367
0.00205016
0.00206014
0.00206725
0.00207205
0.00207504
0.00207664
0.00207728
0.00207731
0.00207709
0.0020769
0.0020769
0.00207705
0.00207692
0.00207632
0.00207319
0.00207314
0.000913877
0.000607885
0.000542879
0.000528123
0.00052927
0.00053662
0.000546216
0.000556246
0.000565952
0.000575074
0.000583555
0.000591425
0.000598769
0.000605669
0.000612212
0.000618475
0.000624526
0.000630416
0.000636188
0.00064187
0.00064748
0.00065303
0.000658535
0.000664017
0.000669492
0.000674942
0.000680298
0.000685445
0.000690317
0.000695028
0.000699981
0.00070573
0.000712645
0.000720316
0.000727256
0.000819485
0.000548745
0.000486515
0.000469612
0.000468018
0.000472553
0.000479448
0.000486996
0.000494467
0.00050159
0.000508285
0.000514564
0.000520475
0.000526071
0.000531413
0.000536559
0.000541556
0.000546445
0.000551255
0.000556007
0.000560713
0.000565381
0.000570022
0.000574653
0.000579286
0.000583906
0.000588453
0.000592827
0.000596971
0.000600986
0.000605214
0.000610132
0.000616051
0.000622612
0.000628553
0.00166884
0.00114373
0.000889433
0.000748432
0.000662154
0.000605182
0.000565277
0.000535996
0.000513695
0.0004962
0.000482156
0.000470698
0.000461275
0.000453556
0.000447376
0.000442717
0.000439702
0.000438598
0.000439827
0.000443975
0.000451806
0.000464265
0.000482502
0.000507911
0.000542199
0.000587451
0.000646113
0.000720825
0.000814134
0.000928158
0.0010643
0.00122313
0.00140435
0.00160691
0.0018259
0.00165997
0.00118268
0.00109751
0.00119322
0.00135645
0.00153823
0.00171799
0.0018865
0.00204015
0.00217832
0.00230176
0.0024119
0.00251037
0.00259877
0.00267843
0.00275052
0.00281603
0.00287581
0.00293056
0.0029809
0.00302737
0.0030704
0.00311039
0.00314772
0.00318277
0.00321582
0.00324688
0.00327566
0.00330181
0.00332547
0.00334815
0.00337266
0.00340241
0.00343723
0.00347738
0.000807824
0.000612512
0.000524622
0.000491515
0.00047647
0.000468629
0.000464344
0.000462114
0.000461128
0.000460915
0.000461207
0.000461848
0.000462745
0.000463839
0.000465086
0.000466453
0.000467914
0.000469445
0.000471027
0.000472642
0.000474276
0.000475917
0.000477556
0.000479186
0.000480802
0.000482393
0.000483947
0.000485451
0.000486901
0.000488319
0.000489751
0.000491251
0.00049282
0.000494314
0.000495849
0.00167285
0.00118177
0.00104208
0.00110017
0.00126008
0.00146314
0.00168137
0.00189793
0.0021017
0.00228562
0.00244473
0.0025767
0.00268162
0.00276081
0.00281665
0.0028522
0.00287087
0.00287601
0.00287073
0.00285772
0.00283917
0.00281683
0.00279205
0.00276583
0.00273893
0.00271197
0.00268555
0.00266031
0.0026366
0.00261401
0.00259092
0.00256443
0.00253197
0.00249303
0.00245637
0.000923837
0.000614978
0.000548783
0.000534403
0.000535684
0.000542792
0.000551977
0.000561585
0.000570929
0.000579759
0.000587999
0.000595665
0.000602811
0.00060952
0.000615882
0.000621973
0.000627858
0.000633588
0.000639202
0.000644729
0.000650184
0.000655577
0.000660917
0.000666218
0.000671487
0.000676706
0.000681819
0.000686737
0.000691412
0.00069593
0.000700596
0.00070583
0.000711922
0.000718544
0.000724713
0.00166897
0.0011463
0.000892393
0.000751693
0.000666232
0.000611694
0.000577605
0.000560374
0.000560591
0.000581585
0.00062793
0.000703812
0.000812174
0.000954872
0.00113235
0.00134247
0.00158007
0.00183783
0.00210799
0.00238368
0.00265961
0.0029321
0.00319875
0.00345807
0.00370917
0.00395154
0.00418492
0.00440912
0.00462403
0.00482982
0.00502739
0.00521865
0.00540622
0.00559174
0.00577357
0.000943863
0.000618874
0.000552029
0.000539646
0.000543265
0.000552593
0.000563757
0.000575079
0.000585898
0.000596008
0.000605366
0.000614009
0.000622009
0.000629475
0.000636515
0.000643225
0.000649682
0.000655948
0.000662069
0.00066808
0.000673998
0.000679836
0.000685603
0.000691313
0.000696973
0.000702569
0.000708046
0.00071332
0.000718336
0.000723165
0.000728094
0.000733532
0.000739811
0.000746646
0.000753285
0.000841293
0.00064189
0.000552257
0.000518191
0.0005027
0.00049468
0.000490349
0.000488134
0.00048719
0.000487034
0.000487394
0.00048811
0.000489089
0.000490267
0.000491604
0.000493063
0.000494619
0.000496247
0.000497929
0.000499648
0.000501388
0.000503138
0.00050489
0.000506636
0.00050837
0.000510085
0.000511765
0.000513393
0.000514963
0.000516495
0.000518039
0.000519665
0.000521392
0.000523078
0.000524841
0.00166787
0.0012027
0.0011265
0.00122361
0.00138384
0.00156048
0.00173279
0.00189148
0.00203321
0.00215715
0.00226348
0.00235261
0.00242517
0.00248207
0.00252455
0.00255412
0.0025725
0.00258158
0.0025832
0.00257907
0.0025707
0.00255936
0.00254606
0.00253161
0.00251661
0.00250151
0.00248667
0.00247244
0.00245907
0.00244663
0.00243489
0.00242291
0.00241005
0.0023938
0.00238128
0.000763669
0.000580778
0.000494521
0.000461691
0.000447012
0.000439471
0.000435403
0.000433311
0.0004324
0.000432225
0.000432539
0.000433189
0.000434078
0.000435145
0.000436347
0.000437648
0.000439019
0.000440434
0.000441871
0.000443309
0.000444731
0.000446126
0.000447483
0.000448795
0.00045006
0.000451271
0.000452424
0.000453514
0.000454537
0.000455508
0.000456455
0.000457424
0.000458416
0.000459414
0.000460264
0.00166931
0.00115123
0.000898245
0.000759107
0.000677688
0.000632538
0.000617251
0.000633004
0.000684001
0.000773608
0.000902695
0.00107028
0.00127327
0.00150533
0.00175738
0.00201971
0.00228401
0.00254423
0.00279654
0.00303863
0.00326906
0.00348708
0.00369236
0.00388488
0.00406492
0.00423301
0.00438992
0.0045366
0.00467409
0.00480345
0.00492564
0.00504141
0.00515146
0.0052554
0.00535576
0.000892565
0.000687661
0.000583434
0.0005432
0.000525069
0.000515582
0.000510381
0.000507626
0.000506342
0.000505966
0.000506179
0.000506799
0.000507705
0.000508819
0.000510079
0.000511435
0.00051284
0.000514255
0.000515642
0.000516974
0.000518229
0.000519392
0.000520453
0.000521411
0.000522266
0.000523025
0.000523696
0.000524289
0.000524812
0.000525278
0.00052569
0.000526066
0.000526391
0.000526729
0.000526885
0.000876112
0.000622867
0.000556099
0.000535181
0.000529733
0.000530798
0.000534599
0.00053952
0.000544714
0.000549753
0.000554422
0.000558575
0.000562098
0.000564903
0.000566938
0.000568189
0.000568679
0.000568468
0.000567641
0.000566295
0.000564532
0.000562447
0.000560128
0.000557649
0.000555076
0.000552464
0.000549869
0.000547337
0.000544902
0.000542571
0.000540322
0.000538064
0.000535795
0.000533111
0.000531268
0.00167611
0.00118771
0.00107385
0.00115769
0.00132888
0.0015316
0.00174124
0.00194471
0.00213526
0.00231021
0.00246916
0.00261297
0.00274292
0.00286046
0.00296702
0.00306389
0.00315229
0.00323332
0.00330796
0.00337707
0.00344138
0.0035015
0.00355798
0.00361139
0.00366221
0.00371077
0.00375694
0.00380019
0.00384006
0.00387715
0.00391403
0.00395493
0.00400362
0.00405829
0.00411326
0.00133744
0.000892875
0.000849113
0.000909342
0.000984296
0.00105387
0.00111437
0.00116597
0.00120937
0.00124645
0.00127831
0.00130556
0.00132854
0.00134746
0.00136251
0.00137393
0.00138201
0.00138708
0.00138954
0.00138983
0.00138837
0.00138555
0.00138173
0.00137723
0.00137229
0.00136713
0.0013619
0.00135675
0.00135176
0.00134699
0.00134245
0.0013379
0.00133355
0.00132805
0.00132641
0.00124299
0.000816504
0.000771784
0.000815451
0.000871611
0.000924583
0.000970981
0.00101051
0.00104365
0.00107195
0.00109623
0.00111693
0.00113422
0.00114824
0.0011591
0.00116697
0.0011721
0.00117476
0.00117531
0.0011741
0.00117149
0.00116781
0.00116336
0.0011584
0.00115313
0.00114771
0.00114229
0.00113697
0.00113185
0.00112696
0.0011223
0.00111763
0.00111312
0.00110745
0.00110527
0.00166319
0.00118087
0.00107971
0.00115498
0.00130087
0.00147162
0.00164571
0.00181223
0.00196616
0.0021059
0.00223163
0.00234434
0.00244526
0.00253567
0.00261671
0.00268935
0.00275436
0.0028124
0.00286406
0.0029099
0.00295044
0.00298623
0.00301777
0.00304557
0.00307015
0.00309199
0.0031116
0.00312941
0.00314578
0.00316098
0.00317523
0.00318863
0.00320177
0.00321368
0.00323084
0.000707397
0.000530021
0.000451592
0.000422942
0.000410088
0.000403369
0.000399714
0.000397814
0.000396979
0.00039682
0.000397114
0.000397717
0.000398541
0.000399525
0.000400628
0.000401812
0.000403047
0.000404305
0.000405563
0.0004068
0.000408002
0.000409156
0.000410254
0.000411292
0.000412268
0.000413181
0.000414031
0.000414817
0.000415539
0.000416211
0.000416853
0.000417504
0.00041816
0.000418849
0.000419285
0.00166989
0.00118278
0.00106866
0.00113973
0.00128876
0.00146739
0.00165378
0.00183542
0.00200551
0.00216118
0.0023018
0.00242799
0.0025408
0.00264135
0.00273062
0.0028095
0.00287872
0.00293901
0.0029911
0.00303577
0.00307384
0.0031061
0.00313337
0.00315642
0.00317598
0.00319273
0.00320733
0.00322035
0.00323231
0.00324353
0.00325421
0.0032642
0.00327369
0.003281
0.0032935
0.00159344
0.00113093
0.00106901
0.00113841
0.00124253
0.00134993
0.00145041
0.00154077
0.00162064
0.00169087
0.00175268
0.00180732
0.00185595
0.00189956
0.00193897
0.00197488
0.00200785
0.00203836
0.00206683
0.00209359
0.00211889
0.00214295
0.00216594
0.00218808
0.00220955
0.00223044
0.00225056
0.00226945
0.0022867
0.00230257
0.00231867
0.00233771
0.00236225
0.00239118
0.00242101
0.00166887
0.00114471
0.000890541
0.000749577
0.000663289
0.000606294
0.000566368
0.000537074
0.000514775
0.000497307
0.000483334
0.000472024
0.000462875
0.000455634
0.000450246
0.000446853
0.000445788
0.000447598
0.000453063
0.00046322
0.000479396
0.000503257
0.000536902
0.000582973
0.000644745
0.000726065
0.000831059
0.000963611
0.00112675
0.00132208
0.00154945
0.00180689
0.00209081
0.0023966
0.00271559
0.00167711
0.00119902
0.00109297
0.00118214
0.00135526
0.00155864
0.00176812
0.00196944
0.00215477
0.0023199
0.00246323
0.00258416
0.0026829
0.00276046
0.00281847
0.00285908
0.00288478
0.00289818
0.00290178
0.0028979
0.00288852
0.00287526
0.00285942
0.002842
0.00282376
0.00280527
0.00278703
0.00276947
0.00275293
0.00273748
0.00272265
0.00270712
0.0026896
0.00266796
0.00264855
0.00167675
0.00119811
0.00109395
0.00118802
0.00136601
0.00157076
0.00177811
0.00197526
0.00215547
0.00231622
0.00245627
0.00257522
0.00267302
0.0027503
0.00280835
0.00284909
0.00287489
0.0028883
0.00289186
0.00288788
0.00287836
0.00286495
0.00284893
0.00283132
0.00281291
0.00279435
0.0027762
0.00275893
0.00274277
0.00272754
0.00271258
0.00269667
0.00267909
0.00265865
0.00264221
0.00142999
0.000949839
0.000875365
0.000919197
0.000990674
0.00106405
0.00113225
0.00119337
0.00124728
0.00129469
0.00133639
0.0013732
0.00140589
0.00143522
0.00146175
0.00148595
0.00150818
0.00152873
0.00154782
0.00156564
0.00158231
0.00159796
0.00161268
0.00162658
0.00163977
0.00165232
0.00166422
0.00167525
0.00168519
0.00169401
0.00170243
0.00171181
0.00172415
0.00173906
0.00175988
0.00166938
0.00115204
0.000899299
0.000759392
0.00067569
0.000625617
0.000601175
0.000602028
0.000632094
0.000696522
0.000799076
0.000941508
0.00112402
0.00134429
0.00159624
0.00187049
0.00215622
0.0024433
0.00272347
0.00299088
0.0032419
0.00347469
0.0036888
0.00388471
0.00406353
0.0042267
0.00437585
0.00451264
0.00463865
0.00475532
0.00486395
0.00496558
0.00506141
0.00515149
0.00523995
0.00167289
0.00120063
0.001108
0.00120117
0.00136827
0.00156098
0.0017574
0.0019449
0.00211674
0.00226881
0.00239938
0.00250773
0.00259407
0.00265949
0.00270582
0.00273546
0.00275107
0.00275535
0.00275087
0.00273988
0.00272427
0.00270556
0.00268489
0.00266314
0.00264096
0.00261885
0.00259728
0.00257671
0.00255744
0.00253932
0.00252141
0.00250176
0.00247856
0.00245028
0.00242455
0.000565896
0.000404427
0.00034167
0.000320249
0.000310624
0.000305562
0.000302782
0.000301321
0.000300669
0.000300539
0.000300754
0.000301206
0.000301826
0.000302563
0.000303378
0.000304238
0.000305117
0.00030599
0.000306838
0.000307644
0.000308398
0.000309091
0.000309722
0.000310289
0.000310795
0.000311245
0.00031164
0.000311986
0.000312286
0.00031255
0.000312792
0.000313036
0.000313278
0.000313564
0.000313691
0.00167099
0.00115684
0.000917035
0.000813405
0.000808013
0.000891798
0.00105025
0.00126051
0.00150215
0.00175796
0.00201307
0.00225587
0.0024784
0.00267647
0.00284876
0.0029959
0.00311963
0.00322214
0.00330577
0.00337285
0.00342568
0.00346642
0.00349708
0.00351948
0.00353525
0.00354583
0.0035525
0.0035564
0.00355853
0.00355957
0.00355973
0.00355844
0.00355484
0.00354737
0.00353992
0.00164097
0.00117798
0.00110459
0.00118887
0.00133071
0.00148982
0.00164679
0.00179198
0.00192101
0.00203251
0.0021255
0.00219969
0.0022556
0.00229441
0.00231786
0.00232813
0.00232761
0.00231871
0.00230362
0.00228419
0.00226189
0.00223781
0.0022128
0.00218754
0.0021626
0.00213852
0.00211571
0.00209427
0.00207366
0.00205257
0.00202916
0.00200202
0.00197249
0.00194509
0.00193265
0.00165656
0.00118799
0.00110606
0.0011972
0.00135296
0.00152798
0.00170164
0.00186363
0.00200912
0.00213556
0.00224124
0.00232608
0.00239068
0.00243631
0.00246493
0.00247899
0.00248112
0.00247394
0.00245982
0.00244076
0.00241836
0.00239389
0.00236832
0.00234233
0.00231637
0.00229089
0.00226633
0.00224317
0.00222166
0.00220136
0.00218065
0.00215662
0.00212668
0.00208993
0.00205541
0.00166935
0.00115106
0.000898161
0.000759802
0.000680648
0.000640711
0.000635662
0.000668605
0.000744127
0.000863417
0.00102418
0.00122231
0.00145151
0.00170286
0.0019663
0.00223229
0.00249428
0.00274793
0.00299075
0.00322147
0.00343961
0.0036451
0.00383817
0.00401923
0.00418888
0.00434781
0.00449682
0.00463672
0.00476831
0.00489233
0.00500956
0.00512087
0.0052277
0.0053306
0.0054342
0.00167521
0.00117371
0.000995932
0.00101589
0.00116855
0.00138932
0.00163643
0.00188756
0.00212876
0.00235021
0.00254736
0.00271815
0.00286184
0.00297897
0.00307114
0.00314076
0.00319075
0.00322424
0.0032443
0.00325372
0.00325496
0.00325007
0.00324073
0.0032283
0.00321381
0.00319812
0.00318192
0.00316584
0.0031504
0.00313577
0.00312158
0.00310659
0.00308939
0.00306811
0.00304816
0.00167558
0.00117578
0.001006
0.00103469
0.00118616
0.00139462
0.00162458
0.00185794
0.00208244
0.00228965
0.00247532
0.00263678
0.0027727
0.00288308
0.00296921
0.00303329
0.00307818
0.00310697
0.00312271
0.00312818
0.00312584
0.00311772
0.00310547
0.00309039
0.00307356
0.00305587
0.00303808
0.0030208
0.00300436
0.00298856
0.00297266
0.00295537
0.00293599
0.00291407
0.00289635
0.000846871
0.000570604
0.000510349
0.000494884
0.000494107
0.000499318
0.000506796
0.000514866
0.000522776
0.000530317
0.000537432
0.000544105
0.000550366
0.00055628
0.00056191
0.000567299
0.000572481
0.000577478
0.000582304
0.000586963
0.000591455
0.000595779
0.000599935
0.00060393
0.000607776
0.000611473
0.000615
0.000618293
0.000621295
0.000624028
0.000626703
0.000629681
0.00063342
0.000637726
0.000642879
0.000659974
0.000495199
0.000419756
0.000392476
0.00038042
0.000374139
0.000370716
0.000368859
0.000367947
0.000367599
0.000367593
0.000367788
0.000368073
0.000368357
0.000368567
0.000368651
0.000368575
0.000368324
0.000367898
0.000367308
0.000366574
0.00036572
0.00036477
0.00036375
0.000362682
0.000361585
0.000360477
0.000359372
0.00035828
0.000357209
0.000356158
0.000355143
0.000354109
0.000353286
0.000351862
0.00167034
0.00115527
0.000905601
0.0007738
0.000711705
0.000709859
0.000774685
0.000910399
0.00110742
0.00134775
0.00161336
0.00188744
0.00215453
0.00240265
0.00262398
0.00281445
0.00297306
0.00310098
0.00320076
0.00327568
0.00332927
0.00336502
0.00338616
0.0033956
0.00339596
0.00338958
0.00337843
0.00336393
0.0033467
0.0033264
0.00330201
0.00327277
0.00324009
0.00320928
0.00319093
0.00167033
0.00115526
0.000905572
0.000773709
0.000711431
0.000709179
0.000773383
0.000908481
0.00110515
0.00134543
0.00161124
0.00188565
0.00215309
0.00240153
0.00262309
0.00281373
0.00297244
0.00310041
0.00320024
0.00327524
0.00332899
0.00336497
0.0033864
0.00339614
0.00339666
0.00339012
0.00337852
0.00336358
0.00334654
0.00332781
0.00330654
0.00328076
0.00324861
0.0032108
0.00317477
0.00167066
0.00117221
0.00103634
0.00110043
0.00126247
0.00146307
0.0016753
0.00188489
0.00208396
0.00226881
0.00243828
0.00259258
0.00273265
0.00285976
0.00297524
0.00308043
0.00317659
0.00326485
0.00334628
0.00342176
0.00349208
0.00355788
0.00361978
0.00367835
0.00373415
0.00378751
0.00383835
0.00388617
0.00393057
0.00397215
0.00401348
0.00405871
0.00411149
0.00417032
0.0042276
0.000733403
0.000539244
0.000459959
0.000432286
0.00041992
0.000413488
0.000410009
0.000408231
0.00040749
0.000407415
0.00040778
0.000408442
0.000409315
0.000410337
0.000411461
0.000412646
0.00041386
0.000415073
0.00041626
0.0004174
0.000418477
0.000419481
0.000420407
0.000421254
0.000422024
0.000422719
0.000423344
0.000423902
0.000424396
0.00042484
0.00042525
0.000425662
0.000426083
0.000426544
0.000426881
0.00167478
0.00117113
0.000999162
0.00102527
0.00117301
0.00137727
0.00160439
0.00183745
0.00206493
0.00227968
0.00247751
0.00265676
0.00281684
0.00295765
0.00307948
0.0031831
0.00326968
0.00334078
0.00339818
0.00344382
0.00347961
0.00350735
0.00352865
0.00354491
0.00355734
0.00356699
0.00357476
0.00358145
0.00358774
0.00359399
0.00360023
0.00360589
0.00361039
0.00361151
0.00361488
0.000985576
0.00067301
0.000610784
0.000600027
0.000604058
0.000613309
0.000624133
0.000634993
0.000645368
0.000655098
0.000664157
0.000672564
0.000680399
0.000687752
0.00069472
0.000701388
0.00070782
0.000714061
0.000720143
0.000726084
0.000731886
0.000737549
0.000743065
0.000748429
0.000753641
0.000758699
0.00076359
0.000768279
0.000772724
0.000776914
0.000780944
0.000784994
0.000789427
0.00079407
0.000800024
0.00063569
0.000470862
0.000397763
0.000371089
0.000358975
0.000352629
0.000349268
0.000347598
0.000346922
0.000346825
0.000347077
0.000347537
0.000348105
0.000348704
0.000349272
0.000349759
0.000350129
0.000350361
0.000350445
0.000350384
0.000350187
0.000349869
0.000349449
0.000348945
0.000348376
0.000347762
0.000347117
0.000346457
0.000345791
0.000345128
0.000344462
0.000343803
0.000343105
0.000342539
0.0003415
0.00132036
0.000855746
0.00078507
0.000818916
0.000875731
0.000934012
0.000988112
0.00103654
0.00107929
0.00111694
0.00115012
0.00117949
0.00120559
0.00122908
0.00125043
0.00127007
0.00128832
0.00130546
0.00132172
0.00133724
0.00135214
0.00136652
0.00138043
0.00139394
0.00140711
0.00141996
0.00143241
0.0014443
0.00145547
0.00146599
0.00147641
0.00148768
0.00150082
0.00151562
0.0015312
0.00101941
0.000710162
0.000642741
0.000629274
0.000631582
0.00063933
0.000648781
0.00065843
0.000667752
0.000676605
0.000684912
0.000692686
0.000699978
0.000706862
0.000713419
0.000719718
0.000725811
0.000731731
0.000737501
0.000743128
0.000748613
0.000753948
0.000759125
0.000764136
0.00076898
0.000773657
0.00077816
0.000782465
0.000786541
0.000790377
0.000794045
0.000797683
0.000801598
0.000805639
0.000810909
0.000859873
0.000563526
0.00050054
0.000486495
0.000487445
0.00049407
0.000502746
0.000511824
0.000520607
0.000528859
0.000536542
0.000543693
0.00055037
0.000556655
0.000562619
0.000568331
0.000573848
0.000579217
0.000584476
0.000589652
0.000594761
0.000599816
0.000604831
0.000609826
0.000614818
0.000619797
0.000624698
0.000629411
0.000633862
0.000638147
0.000642638
0.000647878
0.00065426
0.00066145
0.000668125
0.000819033
0.000565547
0.000504335
0.000486543
0.000483652
0.000486807
0.000492346
0.000498628
0.00050499
0.000511187
0.000517115
0.000522727
0.000528032
0.000533074
0.0005379
0.000542537
0.000547009
0.000551329
0.0005555
0.000559525
0.000563399
0.000567117
0.00057068
0.00057409
0.000577357
0.000580486
0.000583458
0.000586228
0.00058875
0.000591038
0.000593258
0.000595697
0.000598752
0.000602231
0.000606739
0.0016732
0.0011674
0.0010064
0.00104801
0.00120659
0.0014168
0.00164506
0.00187462
0.00209596
0.00230401
0.00249661
0.0026733
0.00283464
0.0029817
0.00311578
0.0032382
0.00335028
0.00345325
0.00354825
0.00363627
0.00371818
0.00379473
0.0038666
0.00393446
0.00399894
0.00406043
0.00411889
0.00417385
0.0042249
0.0042727
0.00431998
0.00437118
0.00443022
0.00449542
0.00455919
0.00165596
0.00118344
0.0010997
0.00117995
0.00132009
0.00147799
0.00163491
0.00178234
0.00191702
0.00203817
0.00214613
0.00224162
0.00232552
0.00239863
0.00246173
0.00251558
0.00256092
0.00259853
0.00262924
0.00265391
0.00267342
0.00268865
0.00270041
0.00270943
0.00271637
0.00272178
0.00272609
0.00272965
0.00273266
0.00273523
0.00273748
0.00273951
0.0027422
0.0027446
0.00275425
0.00167062
0.00115561
0.000911351
0.000797099
0.000773163
0.000834295
0.000974044
0.00117216
0.00140641
0.00165895
0.00191457
0.00216135
0.00239112
0.00259909
0.00278302
0.00294245
0.00307811
0.00319148
0.00328454
0.00335955
0.0034189
0.00346494
0.00349989
0.00352577
0.00354441
0.00355744
0.00356631
0.0035723
0.00357641
0.00357922
0.00358078
0.00358053
0.00357797
0.00357221
0.00356792
0.00145978
0.00098971
0.000922163
0.000976677
0.00106176
0.00114878
0.00122924
0.00130094
0.001364
0.00141925
0.00146776
0.00151052
0.00154839
0.00158222
0.00161274
0.00164057
0.00166621
0.00169004
0.00171238
0.00173346
0.00175346
0.00177249
0.00179065
0.00180803
0.00182472
0.00184077
0.00185618
0.00187082
0.00188455
0.00189733
0.00190956
0.00192211
0.00193625
0.00195201
0.00197079
0.000824835
0.000627704
0.00053234
0.000495579
0.000479332
0.000471152
0.000466791
0.000464578
0.000463637
0.000463473
0.000463811
0.0004645
0.000465444
0.000466581
0.000467869
0.000469277
0.000470781
0.000472362
0.000474004
0.000475692
0.000477415
0.000479163
0.00048093
0.00048271
0.000484497
0.000486282
0.000488053
0.000489795
0.000491505
0.000493207
0.000494945
0.000496767
0.000498677
0.000500482
0.000502495
0.00167382
0.00116864
0.000996451
0.00102077
0.00116456
0.00136507
0.00158906
0.00181957
0.0020457
0.00226064
0.00246071
0.00264425
0.00281077
0.00296053
0.00309411
0.00321229
0.00331595
0.00340607
0.00348377
0.00355027
0.00360687
0.00365494
0.00369578
0.00373063
0.00376062
0.00378675
0.00380986
0.00383057
0.00384932
0.00386641
0.00388224
0.00389734
0.00391315
0.00392958
0.00395339
0.000520721
0.000370278
0.000313019
0.000293366
0.000284522
0.000279887
0.000277356
0.000276031
0.000275447
0.000275338
0.000275543
0.000275965
0.000276538
0.000277213
0.000277955
0.00027873
0.000279514
0.000280283
0.000281019
0.000281709
0.000282343
0.000282916
0.000283425
0.000283872
0.000284261
0.000284597
0.000284883
0.000285124
0.000285325
0.000285495
0.000285643
0.000285794
0.00028594
0.000286145
0.000286173
0.00167228
0.00115647
0.000943762
0.000903163
0.000990292
0.00116457
0.00138719
0.00163459
0.00189165
0.00214726
0.00239392
0.00262737
0.00284562
0.00304797
0.00323455
0.00340588
0.00356264
0.00370564
0.00383575
0.0039539
0.00406107
0.00415823
0.00424635
0.00432641
0.00439936
0.00446611
0.00452738
0.00458364
0.00463512
0.00468223
0.00472613
0.00476904
0.00481426
0.00486294
0.00491804
0.00167252
0.00117735
0.00105139
0.00112336
0.00128614
0.00148358
0.0016905
0.00189307
0.00208399
0.00226016
0.00242086
0.00256663
0.00269864
0.00281824
0.00292676
0.00302552
0.0031157
0.00319843
0.00327468
0.00334534
0.00341114
0.00347269
0.00353058
0.00358537
0.00363758
0.00368751
0.00373506
0.00377969
0.00382093
0.0038594
0.00389777
0.00394032
0.00399079
0.00404733
0.00410342
0.00167063
0.00115583
0.000909515
0.000788098
0.000748277
0.000782718
0.000889714
0.00105743
0.00126842
0.00150705
0.00175875
0.00200952
0.00224759
0.00246456
0.00265535
0.00281767
0.00295141
0.00305802
0.00313996
0.00320024
0.00324204
0.00326844
0.00328231
0.00328621
0.00328245
0.00327313
0.00326
0.00324433
0.00322663
0.0032065
0.00318282
0.00315468
0.0031231
0.00309281
0.00307378
0.00167058
0.00115567
0.000909169
0.00078719
0.00074618
0.000778815
0.000883951
0.00105041
0.00126094
0.00149986
0.00175239
0.00200419
0.00224323
0.00246097
0.00265231
0.00281499
0.00294894
0.00305572
0.00313785
0.00319839
0.00324057
0.00326748
0.00328196
0.00328651
0.00328327
0.00327418
0.00326096
0.00324515
0.00322784
0.00320928
0.00318853
0.00316346
0.00313212
0.00309511
0.00306001
0.000877277
0.000590374
0.00052705
0.000511634
0.000511898
0.0005182
0.000526723
0.000535722
0.000544426
0.000552596
0.000560228
0.000567356
0.000574043
0.000580364
0.00058639
0.000592183
0.000597795
0.000603266
0.000608632
0.000613916
0.000619135
0.000624296
0.000629412
0.0006345
0.000639577
0.000644634
0.000649608
0.000654387
0.000658886
0.000663183
0.000667645
0.00067282
0.000679178
0.00068632
0.000693512
0.000767573
0.000520205
0.000460842
0.000443241
0.000440143
0.00044291
0.000448029
0.0004539
0.000459808
0.000465507
0.000470938
0.000476092
0.000480995
0.000485687
0.00049021
0.000494598
0.00049888
0.000503083
0.000507224
0.000511317
0.000515369
0.000519383
0.000523365
0.000527326
0.000531278
0.00053521
0.000539072
0.000542773
0.000546252
0.000549576
0.000553034
0.000557056
0.00056198
0.000567496
0.000572668
0.000694978
0.000467917
0.00041356
0.000397378
0.000394614
0.000397169
0.000401748
0.000406972
0.000412264
0.000417387
0.000422267
0.000426894
0.000431273
0.000435443
0.00043945
0.000443331
0.000447122
0.000450843
0.000454511
0.000458135
0.000461716
0.000465251
0.000468738
0.000472173
0.000475556
0.00047888
0.000482124
0.000485249
0.000488221
0.00049105
0.000493838
0.00049676
0.000500028
0.000503556
0.000507362
0.000673838
0.000501489
0.000425939
0.000397442
0.000384771
0.000378351
0.000374908
0.000373153
0.00037241
0.000372299
0.000372601
0.00037319
0.000373982
0.000374926
0.000375987
0.000377142
0.000378372
0.000379661
0.000380993
0.000382356
0.000383738
0.000385131
0.000386524
0.00038791
0.000389282
0.000390635
0.000391959
0.000393247
0.000394497
0.000395713
0.000396912
0.000398118
0.000399331
0.000400496
0.000401763
0.000817906
0.000628001
0.000533341
0.000498115
0.000482863
0.000475006
0.000470681
0.000468326
0.000467153
0.000466709
0.000466733
0.000467053
0.000467538
0.000468084
0.000468604
0.00046903
0.000469312
0.000469421
0.000469342
0.000469079
0.000468644
0.000468058
0.000467344
0.000466528
0.000465635
0.000464689
0.000463708
0.000462711
0.000461712
0.000460722
0.000459743
0.000458794
0.000457836
0.000457058
0.000455863
0.00167462
0.0011731
0.00101186
0.00105
0.00120208
0.00140505
0.00162812
0.00185469
0.00207378
0.00227912
0.0024675
0.00263789
0.00279016
0.00292461
0.00304168
0.00314214
0.00322701
0.00329763
0.00335551
0.00340232
0.00343972
0.00346933
0.00349261
0.00351088
0.00352528
0.0035368
0.00354635
0.00355471
0.00356252
0.00357016
0.0035777
0.0035846
0.00359041
0.0035929
0.00359809
0.000661331
0.00048934
0.000416862
0.000392131
0.000380991
0.000375141
0.000372069
0.000370487
0.000369755
0.000369513
0.000369514
0.000369576
0.000369556
0.000369352
0.000368897
0.000368164
0.000367151
0.000365883
0.000364394
0.000362729
0.000360931
0.00035904
0.000357092
0.000355118
0.000353144
0.000351192
0.000349278
0.000347409
0.000345586
0.000343798
0.00034203
0.000340299
0.000338559
0.000337188
0.000335153
0.000721292
0.00054558
0.000465938
0.000437278
0.00042428
0.000417383
0.000413662
0.000411733
0.000410833
0.000410518
0.00041049
0.000410537
0.000410497
0.000410255
0.00040974
0.000408922
0.000407803
0.000406407
0.000404774
0.000402949
0.000400979
0.000398908
0.000396773
0.000394606
0.000392435
0.000390283
0.000388168
0.000386104
0.000384096
0.000382139
0.000380205
0.000378296
0.000376335
0.000374719
0.000372421
0.00166967
0.00115292
0.000901451
0.000766702
0.000696438
0.000675168
0.000703052
0.000784024
0.000917151
0.00109565
0.00131036
0.00155059
0.00180448
0.00206154
0.00231347
0.0025548
0.00278215
0.00299357
0.00318812
0.00336561
0.00352639
0.00367128
0.00380137
0.00391799
0.00402259
0.00411662
0.00420158
0.00427892
0.00434999
0.00441598
0.00447779
0.00453585
0.00459034
0.00464006
0.00468816
0.000661723
0.000485558
0.000413669
0.000388317
0.000376995
0.000371138
0.000367984
0.000366378
0.000365714
0.000365649
0.000365977
0.000366572
0.000367351
0.00036825
0.00036922
0.00037022
0.000371217
0.000372181
0.000373091
0.000373928
0.000374683
0.00037535
0.000375929
0.000376423
0.000376839
0.000377184
0.000377466
0.000377692
0.000377868
0.000378004
0.000378111
0.000378219
0.000378325
0.000378506
0.000378515
0.00138541
0.000924602
0.000861123
0.000902589
0.000965319
0.0010285
0.00108631
0.00113749
0.00118241
0.00122185
0.00125662
0.00128747
0.00131501
0.00133977
0.00136221
0.00138266
0.00140138
0.00141857
0.00143435
0.00144884
0.00146214
0.00147433
0.00148549
0.00149569
0.00150502
0.00151359
0.0015215
0.00152883
0.00153567
0.00154204
0.00154801
0.00155362
0.00155943
0.00156449
0.0015755
0.000590568
0.000413944
0.000368731
0.000354649
0.000350995
0.000351401
0.000353539
0.00035633
0.000359268
0.0003621
0.000364623
0.000366678
0.000368138
0.000368929
0.000369029
0.000368467
0.000367305
0.00036563
0.000363539
0.000361131
0.000358496
0.000355712
0.000352842
0.000349939
0.000347043
0.000344189
0.00034141
0.000338732
0.000336166
0.000333691
0.000331245
0.000328715
0.000326081
0.000323264
0.000321085
0.000556046
0.000371143
0.000326319
0.00031204
0.000308179
0.000308445
0.000310328
0.000312816
0.000315447
0.000317992
0.000320275
0.000322148
0.000323498
0.000324254
0.000324394
0.000323937
0.00032294
0.000321479
0.000319645
0.000317527
0.000315207
0.000312755
0.000310231
0.000307681
0.000305146
0.000302661
0.000300255
0.000297946
0.000295731
0.000293578
0.000291435
0.000289234
0.000287002
0.000284722
0.000282953
0.00166905
0.0011477
0.000894056
0.00075365
0.000668948
0.00061625
0.000585989
0.000575755
0.000587332
0.000624661
0.000691832
0.000791795
0.000926376
0.00109621
0.00129955
0.00153153
0.0017848
0.00205125
0.00232346
0.00259552
0.00286303
0.0031231
0.00337399
0.00361483
0.00384538
0.00406585
0.00427676
0.00447877
0.0046725
0.00485858
0.00503777
0.00521103
0.00537966
0.00554474
0.00570722
0.000726591
0.000542048
0.000463164
0.000434743
0.000422063
0.000415492
0.000411953
0.000410155
0.000409412
0.000409337
0.000409698
0.000410355
0.000411208
0.000412187
0.000413234
0.000414303
0.000415356
0.000416361
0.000417292
0.000418133
0.000418873
0.000419508
0.000420041
0.000420476
0.000420824
0.000421094
0.000421296
0.000421439
0.00042153
0.000421581
0.000421601
0.00042162
0.000421639
0.000421741
0.000421687
0.0016696
0.00114838
0.000898272
0.000770516
0.000717048
0.000727981
0.00080618
0.000949924
0.00114806
0.00138689
0.00165341
0.00193485
0.00222027
0.00250167
0.00277397
0.00303411
0.00328037
0.00351229
0.00372991
0.00393357
0.00412385
0.00430142
0.00446705
0.00462157
0.00476588
0.00490088
0.00502736
0.00514584
0.00525665
0.00536031
0.00545822
0.00555306
0.00564847
0.00574626
0.0058475
0.000774624
0.000517402
0.000461537
0.000445316
0.000442478
0.00044574
0.000451675
0.000458477
0.000465328
0.000471905
0.000478093
0.000483833
0.000489117
0.000493948
0.000498325
0.000502241
0.000505684
0.000508652
0.000511149
0.000513195
0.00051482
0.000516061
0.000516963
0.00051757
0.000517932
0.0005181
0.000518126
0.000518062
0.000517951
0.000517813
0.000517651
0.000517399
0.000517094
0.000516332
0.000516473
0.000865776
0.000664171
0.000566247
0.000528276
0.000511421
0.000502904
0.000498372
0.000496089
0.000495134
0.000494989
0.000495367
0.000496111
0.000497122
0.000498338
0.000499714
0.000501218
0.000502823
0.000504506
0.00050625
0.00050804
0.000509862
0.000511706
0.000513565
0.000515432
0.000517302
0.000519167
0.000521011
0.000522819
0.000524584
0.000526328
0.000528101
0.000529964
0.000531928
0.000533817
0.000535809
0.000712105
0.000535027
0.000456067
0.000426229
0.000412803
0.000405914
0.000402203
0.000400307
0.000399491
0.000399334
0.00039961
0.00040019
0.000400994
0.000401969
0.000403079
0.000404295
0.000405594
0.000406957
0.000408368
0.000409814
0.000411283
0.000412767
0.000414259
0.000415754
0.000417247
0.00041873
0.000420192
0.000421619
0.000423009
0.000424381
0.000425777
0.000427245
0.000428779
0.00043025
0.000431694
0.00101342
0.000678048
0.000638382
0.0006503
0.000671258
0.00069379
0.000715508
0.000735216
0.000752651
0.000767811
0.000780549
0.000790691
0.000798095
0.000802727
0.000804703
0.000804259
0.0008017
0.000797387
0.000791697
0.000784979
0.000777542
0.000769645
0.000761494
0.000753248
0.000745031
0.00073695
0.000729101
0.000721578
0.000714437
0.000707612
0.000700899
0.0006938
0.000686242
0.000677205
0.000671413
0.000764526
0.000501434
0.000452869
0.000444226
0.000447309
0.000454583
0.000462932
0.00047116
0.000478802
0.000485664
0.000491573
0.000496358
0.000499892
0.000502117
0.000503049
0.00050277
0.000501418
0.000499164
0.000496191
0.000492678
0.000488784
0.000484643
0.000480363
0.000476033
0.000471723
0.000467498
0.000463412
0.000459502
0.000455775
0.00045218
0.000448627
0.000444953
0.000441228
0.000437059
0.00043456
0.00163014
0.00116988
0.00111136
0.001201
0.00133717
0.00148144
0.00161929
0.00174571
0.00185949
0.00196096
0.00205102
0.00213095
0.00220207
0.00226555
0.00232237
0.00237336
0.00241918
0.00246038
0.00249742
0.00253071
0.00256062
0.0025875
0.00261169
0.00263353
0.00265334
0.00267144
0.002688
0.00270303
0.00271641
0.00272817
0.00273896
0.00275014
0.00276411
0.0027808
0.00280613
0.00167339
0.00116588
0.000999285
0.00103201
0.00117947
0.001378
0.00159687
0.00182059
0.00203921
0.00224665
0.00243983
0.00261768
0.00278042
0.00292894
0.00306445
0.00318833
0.0033019
0.00340638
0.00350288
0.00359235
0.00367567
0.00375355
0.00382666
0.00389561
0.00396097
0.00402307
0.00408189
0.00413712
0.00418856
0.00423702
0.00428492
0.00433588
0.00439273
0.00445348
0.00451165
0.00166954
0.00115305
0.000900622
0.000761167
0.000678696
0.000631623
0.000613425
0.000625609
0.000673491
0.000761937
0.000892612
0.00106454
0.00127492
0.00151746
0.00178244
0.00205834
0.00233404
0.00260047
0.00285117
0.00308228
0.00329212
0.00348059
0.00364866
0.00379796
0.00393042
0.00404813
0.00415314
0.00424744
0.00433289
0.00441111
0.00448339
0.00455054
0.00461306
0.00467008
0.00472466
0.0016653
0.00119279
0.00111474
0.00121623
0.00138254
0.00156657
0.00174924
0.0019219
0.00208096
0.00222534
0.00235524
0.0024718
0.00257634
0.00267019
0.00275448
0.00283022
0.0028983
0.00295944
0.0030143
0.00306346
0.00310749
0.00314694
0.00318232
0.00321414
0.0032429
0.00326905
0.0032929
0.00331454
0.00333391
0.00335111
0.00336696
0.00338313
0.0034023
0.00342486
0.00345465
0.00166921
0.00114806
0.000895025
0.000757005
0.000679074
0.000642211
0.000644
0.000690128
0.000786664
0.000933766
0.00112608
0.00135606
0.00161462
0.00189139
0.00217652
0.00246199
0.00274196
0.00301254
0.00327144
0.00351742
0.00374992
0.00396893
0.00417479
0.0043681
0.00454971
0.00472064
0.00488182
0.00503398
0.00517768
0.00531354
0.00544274
0.00556745
0.00569074
0.0058146
0.00594057
0.00158501
0.00111485
0.0010451
0.00111495
0.00122392
0.00133703
0.0014426
0.00153703
0.00162051
0.00169404
0.00175893
0.00181641
0.00186756
0.00191334
0.00195453
0.00199181
0.00202567
0.00205651
0.00208464
0.00211033
0.0021338
0.00215523
0.00217481
0.00219269
0.00220906
0.00222409
0.00223797
0.00225085
0.00226283
0.00227397
0.00228441
0.00229429
0.00230441
0.00231388
0.00233043
0.000670427
0.00050198
0.000427693
0.000401174
0.000389086
0.000382627
0.000379115
0.000377289
0.000376423
0.000376109
0.000376077
0.000376128
0.000376116
0.000375935
0.000375518
0.000374833
0.000373881
0.000372679
0.00037126
0.000369665
0.000367933
0.000366105
0.000364215
0.000362292
0.000360361
0.000358444
0.000356557
0.000354714
0.000352919
0.000351168
0.000349442
0.000347745
0.00034601
0.000344598
0.000342543
0.000716989
0.000535114
0.000457482
0.000430538
0.000418421
0.00041209
0.000408776
0.000407102
0.000406362
0.000406159
0.000406225
0.000406358
0.000406407
0.00040626
0.000405846
0.00040513
0.000404111
0.000402812
0.000401272
0.000399536
0.00039765
0.000395659
0.000393602
0.000391512
0.000389419
0.000387345
0.000385308
0.00038332
0.000381381
0.000379484
0.000377611
0.00037578
0.000373935
0.000372451
0.00037027
0.000559125
0.000410716
0.000347727
0.000325878
0.000316024
0.000310816
0.000308038
0.000306598
0.000305923
0.000305693
0.0003057
0.000305788
0.000305839
0.000305765
0.000305508
0.000305038
0.00030435
0.000303456
0.000302382
0.00030116
0.000299823
0.000298403
0.00029693
0.000295428
0.000293919
0.000292421
0.000290947
0.000289506
0.000288099
0.000286725
0.000285371
0.000284053
0.000282722
0.000281669
0.00028002
0.000586168
0.000436618
0.000369876
0.000345895
0.000334932
0.000329033
0.000325792
0.00032407
0.000323217
0.000322869
0.000322789
0.000322809
0.000322801
0.000322671
0.000322358
0.00032183
0.000321083
0.000320128
0.000318988
0.000317696
0.000316286
0.000314788
0.000313233
0.000311646
0.000310048
0.000308458
0.00030689
0.000305355
0.000303859
0.000302401
0.000300965
0.00029956
0.00029813
0.000296977
0.000295244
0.00129941
0.000874139
0.000819523
0.00084751
0.000891686
0.000937175
0.000980036
0.00101889
0.00105335
0.00108382
0.00111084
0.0011349
0.0011565
0.0011761
0.00119407
0.0012107
0.00122623
0.00124086
0.00125473
0.00126794
0.0012806
0.00129274
0.00130442
0.00131572
0.00132669
0.00133737
0.00134766
0.00135729
0.00136604
0.00137397
0.00138189
0.00139115
0.00140341
0.00141788
0.00143556
0.001617
0.00116311
0.0011171
0.0012243
0.00137225
0.00152091
0.00165746
0.0017785
0.00188439
0.00197663
0.00205672
0.00212582
0.00218481
0.00223438
0.00227516
0.00230782
0.00233309
0.00235178
0.00236479
0.00237303
0.00237741
0.00237878
0.00237788
0.00237536
0.00237175
0.00236748
0.00236288
0.00235823
0.00235372
0.00234944
0.00234544
0.00234143
0.00233777
0.00233254
0.00233377
0.0016689
0.00114521
0.000891272
0.000750373
0.000664097
0.000607247
0.000567825
0.000539776
0.000520116
0.000507726
0.000502839
0.000506816
0.000521956
0.000551215
0.000597832
0.000665075
0.000756224
0.000874364
0.00102158
0.00119793
0.00140097
0.00162617
0.0018678
0.00212006
0.00237783
0.00263713
0.00289512
0.00314983
0.00339995
0.00364462
0.00388354
0.00411713
0.00434651
0.00457273
0.00479416
0.00128464
0.00085136
0.00079353
0.000823135
0.000870692
0.000919623
0.000965387
0.00100657
0.00104313
0.00107552
0.00110424
0.00112974
0.00115252
0.00117306
0.00119177
0.00120893
0.00122478
0.00123948
0.00125316
0.00126594
0.00127789
0.00128906
0.00129952
0.00130934
0.00131858
0.00132732
0.00133555
0.00134314
0.00134995
0.00135596
0.00136163
0.00136783
0.00137603
0.00138587
0.00140049
0.000802583
0.000543468
0.000493788
0.000482349
0.00048243
0.000487573
0.0004947
0.000502201
0.000509207
0.000515406
0.000520546
0.000524404
0.000526801
0.000527662
0.000527032
0.000525045
0.0005219
0.000517821
0.000513034
0.000507745
0.000502138
0.000496353
0.000490498
0.000484654
0.000478888
0.000473265
0.000467854
0.000462712
0.000457844
0.00045313
0.0004483
0.000442956
0.000436961
0.00043044
0.000425366
0.00072592
0.000495423
0.000445884
0.000432329
0.000430886
0.000434502
0.000439893
0.000445648
0.000451147
0.000456009
0.000460031
0.000463024
0.000464839
0.000465403
0.000464739
0.000462948
0.000460187
0.000456641
0.000452493
0.000447922
0.000443075
0.000438074
0.000433017
0.000427985
0.000423055
0.00041829
0.000413734
0.000409379
0.000405136
0.000400831
0.000396273
0.000391388
0.000386533
0.000382334
0.000380455
0.00167148
0.00119978
0.00111529
0.00120864
0.00136636
0.00154331
0.00172
0.00188587
0.00203659
0.00217137
0.00229047
0.00239457
0.00248437
0.00256058
0.00262393
0.00267526
0.00271561
0.00274623
0.00276847
0.00278373
0.00279333
0.0027985
0.0028003
0.00279961
0.0027972
0.00279368
0.00278961
0.00278551
0.00278178
0.00277862
0.00277595
0.00277311
0.00276958
0.00276286
0.00275913
0.00167435
0.00116242
0.000966552
0.000956507
0.00107829
0.00127874
0.0015172
0.00177117
0.00202646
0.00227382
0.00250791
0.00272632
0.00292848
0.00311478
0.00328606
0.00344339
0.0035879
0.00372077
0.00384311
0.003956
0.00406039
0.00415716
0.0042471
0.00433096
0.00440947
0.00448319
0.00455236
0.0046168
0.00467622
0.00473109
0.00478355
0.00483748
0.00489714
0.00496254
0.00503055
0.00133783
0.000887839
0.000829323
0.000870072
0.000930446
0.000991359
0.00104798
0.0010988
0.00114358
0.00118288
0.00121752
0.00124824
0.0012757
0.00130047
0.00132303
0.00134377
0.00136304
0.00138111
0.0013982
0.0014145
0.00143015
0.00144525
0.00145989
0.00147419
0.00148826
0.00150213
0.00151563
0.00152845
0.00154028
0.00155132
0.00156268
0.00157616
0.00159345
0.00161387
0.00163395
0.00087199
0.000572989
0.000518256
0.00051289
0.000520342
0.000531298
0.000542492
0.000552905
0.000562253
0.000570583
0.000578032
0.000584638
0.000590367
0.000595167
0.000599002
0.000601862
0.00060377
0.000604783
0.000604988
0.00060449
0.000603408
0.000601861
0.000599961
0.000597809
0.000595491
0.00059308
0.000590637
0.00058821
0.000585837
0.000583531
0.0005813
0.000579072
0.000576947
0.000574448
0.000573391
0.000895739
0.000589372
0.000532692
0.000526854
0.000534276
0.000545407
0.000556879
0.000567588
0.000577267
0.000585995
0.000593819
0.000600794
0.000606901
0.000612096
0.000616348
0.000619648
0.000622014
0.000623495
0.000624168
0.000624131
0.000623496
0.000622376
0.00062088
0.000619108
0.000617148
0.000615072
0.000612942
0.000610807
0.000608706
0.00060665
0.000604653
0.000602649
0.000600777
0.000598534
0.000598064
0.0016696
0.00115128
0.000900621
0.000769832
0.000708654
0.000703819
0.000755679
0.000864611
0.00102547
0.0012303
0.00147011
0.00173401
0.00200999
0.00228706
0.00255666
0.00281287
0.00305211
0.00327274
0.00347452
0.00365792
0.00382447
0.00397582
0.00411363
0.0042395
0.00435489
0.00446118
0.00455962
0.00465137
0.0047375
0.00481892
0.00489636
0.00497025
0.00504102
0.00510792
0.00517409
0.0012481
0.000805911
0.000750205
0.000783994
0.000835911
0.000888339
0.000936325
0.000978978
0.00101657
0.00104967
0.00107887
0.00110472
0.00112774
0.00114837
0.00116699
0.00118386
0.0011992
0.00121316
0.00122586
0.0012374
0.00124788
0.00125737
0.00126598
0.00127379
0.00128091
0.00128744
0.00129342
0.00129885
0.00130367
0.00130783
0.00131162
0.00131552
0.00132075
0.00132674
0.00133887
0.00166952
0.0011529
0.000900458
0.00076195
0.00068206
0.000640631
0.000633135
0.000662851
0.000735156
0.000852744
0.00101435
0.001216
0.00145116
0.00171058
0.00198361
0.00225995
0.00253092
0.00278999
0.00303277
0.00325674
0.00346094
0.00364555
0.00381158
0.00396052
0.00409413
0.00421425
0.00432268
0.00442114
0.00451119
0.00459419
0.0046713
0.00474332
0.00481118
0.00487441
0.00493756
0.0016697
0.00114754
0.000897766
0.000770955
0.000719603
0.000734266
0.00081695
0.000963529
0.00116096
0.00139544
0.00165519
0.00192947
0.00220891
0.00248632
0.00275665
0.00301672
0.00326468
0.00349976
0.00372185
0.00393123
0.00412845
0.00431419
0.00448921
0.00465432
0.00481036
0.00495808
0.00509792
0.00522999
0.00535425
0.00547129
0.00558321
0.00569371
0.00580691
0.00592326
0.00603938
0.000759199
0.000510271
0.000453485
0.000436934
0.00043391
0.000436475
0.000441322
0.000446963
0.000452774
0.000458499
0.000463989
0.000469157
0.00047396
0.00047837
0.000482363
0.000485921
0.000489033
0.000491695
0.000493915
0.000495715
0.000497126
0.000498187
0.000498945
0.000499446
0.000499738
0.000499863
0.000499859
0.00049975
0.000499552
0.000499272
0.000498942
0.000498592
0.000498391
0.000498181
0.000498952
0.00167311
0.00115983
0.000959932
0.00094274
0.00105544
0.00124741
0.00147918
0.00172839
0.00198067
0.00222633
0.00245965
0.00267795
0.00288039
0.00306708
0.00323861
0.00339584
0.00353965
0.00367101
0.00379084
0.00390009
0.00399966
0.00409045
0.00417329
0.00424899
0.00431841
0.00438229
0.00444118
0.00449535
0.00454488
0.00459007
0.00463224
0.004674
0.00471892
0.0047683
0.00482288
0.00137288
0.000927871
0.000875775
0.000920088
0.000983754
0.00104695
0.00110474
0.00115631
0.00120188
0.00124208
0.00127751
0.00130884
0.00133669
0.00136168
0.00138425
0.00140478
0.00142353
0.00144073
0.00145652
0.00147103
0.00148438
0.00149665
0.00150793
0.00151834
0.00152796
0.00153692
0.00154524
0.00155287
0.00155969
0.00156568
0.0015712
0.00157698
0.0015846
0.00159338
0.00161022
0.00167006
0.00115017
0.000905012
0.000790397
0.000764459
0.000819733
0.000949661
0.0011369
0.00136325
0.00161516
0.00188125
0.00215165
0.00241866
0.00267678
0.00292238
0.00315323
0.00336812
0.00356652
0.00374853
0.00391466
0.0040658
0.00420308
0.0043278
0.00444134
0.00454506
0.00464026
0.00472809
0.00480945
0.00488503
0.00495544
0.00502166
0.0050852
0.00514856
0.00521286
0.00528256
0.0016749
0.00117957
0.0010438
0.0011074
0.00126929
0.00147029
0.00168393
0.0018961
0.00209868
0.00228746
0.00246093
0.00261909
0.00276276
0.00289331
0.00301211
0.00312046
0.00321958
0.00331053
0.00339423
0.00347143
0.00354279
0.00360885
0.00367009
0.00372697
0.00377991
0.00382932
0.00387551
0.00391864
0.00395873
0.00399592
0.00403089
0.00406495
0.00410012
0.00413695
0.0041781
0.000761763
0.000522356
0.000467831
0.000451954
0.00044895
0.000451371
0.00045601
0.000461447
0.000467086
0.000472654
0.000477999
0.000483022
0.000487677
0.000491926
0.000495741
0.0004991
0.000501991
0.000504412
0.000506374
0.000507904
0.000509038
0.00050982
0.000510302
0.000510533
0.000510563
0.000510437
0.000510193
0.000509858
0.000509451
0.000508976
0.000508463
0.000507928
0.000507539
0.00050709
0.000507781
0.000710917
0.000536167
0.00045666
0.000427131
0.000413729
0.000406674
0.000402807
0.00040076
0.000399818
0.000399578
0.000399798
0.000400324
0.000401045
0.000401879
0.000402759
0.00040363
0.000404449
0.000405181
0.000405806
0.000406309
0.000406687
0.000406944
0.000407089
0.000407134
0.000407093
0.000406981
0.00040681
0.000406595
0.000406343
0.000406067
0.000405775
0.000405492
0.000405193
0.00040503
0.000404443
0.00140618
0.00094555
0.000888242
0.0009443
0.00102627
0.00110818
0.00118282
0.00124888
0.00130685
0.00135769
0.00140236
0.00144175
0.00147662
0.00150765
0.00153535
0.00156013
0.00158233
0.00160219
0.00161993
0.00163573
0.00164978
0.00166226
0.00167334
0.00168319
0.00169201
0.00169996
0.00170715
0.00171361
0.00171931
0.00172421
0.00172861
0.00173305
0.00173888
0.00174572
0.00175918
0.0012442
0.000824446
0.000771849
0.000801526
0.000845599
0.00089019
0.000931609
0.00096879
0.00100185
0.00103118
0.00105712
0.00107999
0.00110003
0.00111744
0.00113239
0.00114504
0.00115552
0.001164
0.00117067
0.00117573
0.00117939
0.00118188
0.00118342
0.00118421
0.00118443
0.00118424
0.00118376
0.00118309
0.00118227
0.00118132
0.00118028
0.00117914
0.0011784
0.00117726
0.00118046
0.00166902
0.00114658
0.000892865
0.000752513
0.000668045
0.000615944
0.000587008
0.000579426
0.000595748
0.000640525
0.000717801
0.000829712
0.00097684
0.00115836
0.00137113
0.00160936
0.00186565
0.00213262
0.00240399
0.00267502
0.00294239
0.00320385
0.00345791
0.00370361
0.00394042
0.00416812
0.00438661
0.00459588
0.00479589
0.00498695
0.0051701
0.00534749
0.00552201
0.00569534
0.00586627
0.00166904
0.00114714
0.000893523
0.000753236
0.000668895
0.000617108
0.000588865
0.000582679
0.000601597
0.000650814
0.000734961
0.00085644
0.00101565
0.00121094
0.00143761
0.00168817
0.00195392
0.0022272
0.00250189
0.00277355
0.00303909
0.0032965
0.00354453
0.00378256
0.0040104
0.00422825
0.00443646
0.00463544
0.0048255
0.0050071
0.00518132
0.00535014
0.00551637
0.00568191
0.00584684
0.00130445
0.000895141
0.000838446
0.000857603
0.000893594
0.000932546
0.000970142
0.00100465
0.00103559
0.00106313
0.00108765
0.0011096
0.00112944
0.00114753
0.00116421
0.00117972
0.00119429
0.00120808
0.00122123
0.00123385
0.00124601
0.00125776
0.00126916
0.00128026
0.00129115
0.00130183
0.00131215
0.00132184
0.00133067
0.0013388
0.00134717
0.00135725
0.00137045
0.00138587
0.00140205
0.00166892
0.00114565
0.000891663
0.000750752
0.000664504
0.000607761
0.000568615
0.000541169
0.000522691
0.000512436
0.000511139
0.000520732
0.000544043
0.000584366
0.000645073
0.000729508
0.000840961
0.00098213
0.00115405
0.00135527
0.00158178
0.00182777
0.00208673
0.00235253
0.00262015
0.00288597
0.0031476
0.00340361
0.00365315
0.00389581
0.00413169
0.00436163
0.00458713
0.00480954
0.0050277
0.00167205
0.0011577
0.000936011
0.000877513
0.000946371
0.0011119
0.00133371
0.00158293
0.00184248
0.00210045
0.00234842
0.00258085
0.00279437
0.002987
0.00315775
0.00330691
0.00343542
0.00354478
0.00363692
0.00371397
0.00377809
0.00383136
0.00387566
0.0039127
0.00394394
0.00397067
0.00399405
0.00401509
0.00403463
0.00405327
0.00407121
0.00408811
0.00410352
0.00411554
0.00412874
0.00166892
0.00114575
0.000891662
0.000750706
0.00066448
0.000607872
0.000569088
0.00054243
0.000525491
0.00051802
0.000521431
0.000538464
0.000572702
0.000627921
0.000707634
0.000814998
0.000952512
0.00112108
0.00131914
0.0015426
0.0017857
0.0020422
0.00230634
0.00257346
0.00284002
0.00310355
0.00336229
0.00361503
0.00386088
0.00409929
0.00433027
0.00455457
0.00477363
0.0049887
0.00519857
0.00166917
0.00115006
0.000896734
0.000756549
0.000672312
0.000620803
0.000593149
0.000587877
0.000607785
0.000657445
0.000740817
0.000860151
0.00101625
0.00120798
0.00143097
0.00167764
0.00193902
0.00220684
0.00247476
0.00273861
0.00299561
0.0032441
0.00348304
0.00371179
0.00392996
0.00413744
0.0043344
0.00452125
0.00469855
0.00486698
0.00502725
0.00518005
0.00532618
0.0054657
0.00560091
0.00166947
0.00115206
0.000899651
0.00076197
0.000684356
0.000647743
0.000648904
0.000691759
0.000780467
0.000914836
0.00109081
0.00130209
0.00153987
0.00179363
0.00205328
0.0023109
0.00256106
0.00280017
0.00302636
0.00323851
0.00343605
0.00361888
0.00378732
0.003942
0.00408385
0.00421395
0.00433353
0.00444388
0.00454629
0.00464196
0.0047319
0.00481674
0.00489696
0.00497173
0.00504399
0.00167074
0.00115648
0.00091269
0.000799168
0.000775411
0.000834664
0.000970304
0.00116434
0.00139594
0.00164655
0.00189968
0.00214196
0.00236484
0.00256425
0.00273864
0.00288794
0.00301298
0.00311526
0.00319674
0.00325974
0.0033067
0.0033401
0.00336226
0.00337529
0.00338107
0.00338125
0.00337732
0.00337059
0.00336219
0.00335274
0.0033421
0.00332913
0.00331226
0.00329022
0.00326753
0.0016707
0.00115624
0.000911249
0.000794407
0.000763816
0.000812251
0.000934824
0.00111579
0.00133551
0.0015767
0.00182381
0.00206392
0.00228876
0.00249347
0.00267532
0.00283304
0.00296647
0.0030764
0.00316445
0.00323282
0.00328401
0.00332063
0.00334519
0.00335999
0.00336712
0.00336846
0.00336566
0.00336008
0.00335266
0.00334373
0.00333291
0.00331933
0.00330263
0.00328349
0.00326786
0.0016537
0.00118941
0.00112246
0.00122186
0.00137672
0.00154219
0.00170076
0.00184607
0.00197648
0.00209224
0.00219425
0.00228348
0.00236088
0.00242724
0.00248329
0.0025298
0.00256757
0.00259748
0.00262048
0.00263759
0.00264979
0.00265804
0.00266322
0.00266609
0.0026673
0.00266738
0.00266676
0.00266576
0.00266461
0.00266342
0.00266229
0.00266107
0.00266034
0.00265854
0.00266381
0.0016707
0.00115605
0.000910928
0.000792785
0.000759336
0.000802983
0.000918965
0.00109209
0.00130421
0.00154002
0.00178547
0.00202771
0.00225646
0.00246472
0.00264836
0.00280554
0.00293609
0.00304122
0.00312309
0.00318442
0.00322813
0.00325709
0.00327399
0.00328117
0.00328072
0.00327448
0.0032641
0.00325105
0.00323646
0.00322077
0.00320334
0.00318235
0.0031558
0.00312331
0.00309084
0.00167076
0.00115621
0.00091114
0.00079307
0.000759653
0.000803136
0.000918768
0.00109146
0.00130293
0.00153763
0.00178168
0.00202275
0.00225092
0.0024592
0.00264338
0.00280138
0.00293279
0.00303867
0.00312104
0.00318257
0.00322618
0.00325476
0.00327105
0.00327751
0.00327637
0.00326963
0.00325905
0.00324595
0.00323103
0.00321414
0.00319438
0.00317068
0.00314333
0.00311535
0.00309504
0.00105926
0.000706622
0.000647282
0.000641408
0.000650408
0.000664512
0.000680063
0.000695375
0.000709713
0.000722878
0.000734911
0.000745937
0.000756113
0.000765594
0.000774518
0.00078299
0.000791103
0.000798926
0.000806511
0.000813895
0.000821098
0.000828132
0.000835013
0.000841766
0.00084842
0.000854965
0.000861307
0.000867274
0.000872736
0.000877809
0.000883069
0.000889373
0.00089757
0.000906839
0.000917188
0.00167061
0.00118318
0.00107218
0.00115701
0.00132497
0.00152162
0.0017248
0.00192301
0.00210998
0.00228283
0.00244069
0.00258389
0.00271329
0.00282998
0.00293503
0.00302941
0.00311404
0.00318972
0.00325721
0.00331722
0.0033705
0.00341775
0.00345969
0.003497
0.00353036
0.00356038
0.00358754
0.00361209
0.0036341
0.00365376
0.00367182
0.00368982
0.0037103
0.00373384
0.00376423
0.00167023
0.00115539
0.000904632
0.000769543
0.000698638
0.000677087
0.00070623
0.000791615
0.00093331
0.00112436
0.00135494
0.00161277
0.00188251
0.0021482
0.00239648
0.00261831
0.00280908
0.00296773
0.00309564
0.00319566
0.00327129
0.00332625
0.00336411
0.00338812
0.00340117
0.00340585
0.00340437
0.00339851
0.00338946
0.00337758
0.00336251
0.00334351
0.00332072
0.00329633
0.00327697
0.00167021
0.00115534
0.000904554
0.000769433
0.000698481
0.000676891
0.000706022
0.000791373
0.000932912
0.00112375
0.00135415
0.00161172
0.00188097
0.00214587
0.00239314
0.00261393
0.00280384
0.00296197
0.00308977
0.00319011
0.00326643
0.00332238
0.00336145
0.00338676
0.00340108
0.00340681
0.00340609
0.00340076
0.00339233
0.00338168
0.00336873
0.00335233
0.00333092
0.00330387
0.00327547
0.00167558
0.00117092
0.00101042
0.00105406
0.0012148
0.00142599
0.00165559
0.00188784
0.00211306
0.00232569
0.00252309
0.00270458
0.00287056
0.00302208
0.00316039
0.00328682
0.00340263
0.00350904
0.00360718
0.00369806
0.00378255
0.00386142
0.00393538
0.0040051
0.00407121
0.00413413
0.00419381
0.00424977
0.00430164
0.00435012
0.00439802
0.00444983
0.00450947
0.00457494
0.00463974
0.00137757
0.000939742
0.000882885
0.000914023
0.000963461
0.00101463
0.00106291
0.0011067
0.00114562
0.00118001
0.00121042
0.00123748
0.00126176
0.00128377
0.00130391
0.00132252
0.00133988
0.0013562
0.00137167
0.0013864
0.00140052
0.00141407
0.00142714
0.0014398
0.00145215
0.00146419
0.0014758
0.00148666
0.0014965
0.00150547
0.00151461
0.00152558
0.00154014
0.00155726
0.00157672
0.00166889
0.0011449
0.000890852
0.000749918
0.000663618
0.000606657
0.000566911
0.000538112
0.000516923
0.000501672
0.000491799
0.000487623
0.000490241
0.000501451
0.000523607
0.000559405
0.000611719
0.000683612
0.000778302
0.000898671
0.00104636
0.00122097
0.00141995
0.00163911
0.0018735
0.00211829
0.00236927
0.00262305
0.002877
0.00312914
0.00337814
0.00362346
0.00386526
0.00410398
0.00433742
0.000716467
0.000479527
0.000421462
0.000403853
0.000400559
0.00040292
0.000407446
0.000412671
0.000417996
0.000423179
0.000428114
0.000432794
0.000437224
0.000441444
0.000445498
0.000449428
0.000453266
0.000457036
0.000460754
0.00046443
0.000468066
0.000471662
0.000475213
0.000478719
0.00048218
0.000485588
0.000488918
0.000492128
0.000495185
0.000498101
0.000500993
0.000504052
0.000507486
0.00051121
0.000515095
0.00162766
0.0011637
0.00110082
0.00119206
0.00133134
0.00147956
0.00162203
0.00175319
0.00187157
0.00197729
0.00207133
0.00215478
0.00222869
0.00229405
0.00235171
0.00240241
0.00244677
0.00248536
0.00251872
0.00254738
0.00257188
0.00259275
0.00261053
0.00262571
0.00263877
0.00265013
0.00266013
0.00266897
0.00267676
0.00268352
0.00268955
0.00269536
0.00270239
0.00271048
0.00272564
0.00167064
0.00115113
0.000912989
0.000817165
0.000826513
0.000929806
0.00110684
0.00133168
0.00158524
0.00185377
0.00212618
0.0023941
0.00265195
0.00289633
0.00312541
0.00333838
0.00353501
0.00371561
0.00388071
0.00403113
0.00416784
0.00429192
0.00440455
0.00450693
0.00460028
0.00468575
0.00476436
0.00483685
0.00490374
0.00496559
0.00502347
0.00507931
0.00513608
0.00519499
0.00526057
0.00161732
0.00117855
0.00113864
0.00123491
0.00136384
0.00149293
0.00161079
0.00171527
0.00180645
0.00188479
0.0019506
0.0020041
0.00204561
0.00207575
0.00209551
0.00210613
0.00210903
0.00210568
0.00209748
0.0020857
0.00207144
0.00205557
0.00203876
0.00202154
0.00200427
0.00198726
0.00197075
0.00195503
0.00194028
0.00192644
0.00191301
0.00189872
0.0018827
0.0018628
0.00184701
0.00162177
0.00116907
0.00111613
0.00120478
0.0013326
0.00146473
0.00158783
0.00169733
0.00179322
0.00187597
0.00194586
0.00200313
0.00204809
0.00208129
0.00210364
0.00211632
0.00212079
0.00211856
0.00211114
0.0020999
0.00208598
0.00207032
0.00205363
0.00203647
0.00201925
0.00200235
0.00198609
0.00197072
0.00195636
0.00194275
0.00192932
0.00191504
0.00189954
0.00188148
0.00186856
0.00121301
0.000792186
0.000727652
0.000744872
0.000780199
0.000818392
0.000855023
0.000888484
0.000918396
0.00094497
0.000968597
0.000989706
0.0010087
0.00102596
0.00104179
0.0010565
0.0010703
0.00108338
0.00109589
0.00110794
0.00111961
0.00113097
0.00114208
0.00115299
0.00116378
0.00117443
0.0011848
0.00119467
0.00120389
0.00121268
0.00122186
0.00123264
0.00124595
0.001261
0.00127493
0.000751311
0.000500946
0.000446219
0.000430546
0.000427835
0.00043085
0.00043637
0.000442691
0.00044904
0.000455153
0.000460929
0.000466316
0.000471309
0.000475918
0.000480151
0.000484004
0.000487469
0.000490538
0.000493209
0.000495492
0.000497403
0.000498968
0.000500219
0.000501192
0.000501924
0.000502461
0.000502848
0.000503131
0.000503349
0.000503523
0.000503658
0.000503698
0.000503717
0.000503275
0.000504154
0.00120539
0.000781318
0.000717376
0.000736146
0.000772097
0.000810157
0.000846315
0.000879235
0.000908669
0.000934861
0.000958124
0.000978904
0.000997608
0.00101459
0.00103019
0.00104468
0.00105827
0.00107115
0.00108347
0.00109534
0.00110683
0.00111801
0.00112893
0.00113965
0.00115022
0.00116063
0.00117075
0.00118038
0.0011894
0.00119801
0.00120696
0.0012173
0.0012298
0.0012438
0.00125652
0.00167214
0.00115986
0.000936249
0.000873117
0.000936396
0.00109988
0.00132438
0.00157819
0.00184051
0.00209699
0.00233825
0.00255779
0.00275299
0.0029227
0.00306695
0.00318705
0.00328514
0.00336382
0.0034258
0.00347374
0.00351008
0.00353703
0.0035565
0.00357014
0.00357934
0.00358526
0.00358887
0.00359101
0.00359237
0.00359346
0.00359448
0.00359504
0.00359468
0.00359166
0.00359051
0.00167025
0.00115155
0.000908022
0.000797645
0.00077961
0.000845567
0.000986018
0.00118258
0.00141773
0.00167737
0.0019489
0.00222162
0.00248755
0.00274128
0.00297945
0.0032001
0.00340234
0.00358602
0.00375167
0.00390028
0.00403322
0.00415207
0.00425847
0.00435407
0.00444042
0.00451894
0.00459087
0.00465723
0.00471879
0.00477619
0.00483016
0.00488167
0.00493254
0.00498333
0.00503945
0.001669
0.00114733
0.000893617
0.000752845
0.000666975
0.000611405
0.000575135
0.000553776
0.000546925
0.000557032
0.000588482
0.00064631
0.000734881
0.000857407
0.00101578
0.00120962
0.00143521
0.00168542
0.00195169
0.00222588
0.00250132
0.00277331
0.00303885
0.00329626
0.00354475
0.00378423
0.00401522
0.00423819
0.00445355
0.0046617
0.00486329
0.00505956
0.00525243
0.00544352
0.00563327
0.000722982
0.000495976
0.000440496
0.000424259
0.000421162
0.000423064
0.000426913
0.00043147
0.000436215
0.000440913
0.00044545
0.000449771
0.000453876
0.000457792
0.000461542
0.000465142
0.000468601
0.000471921
0.000475099
0.000478131
0.000481009
0.000483731
0.000486295
0.000488707
0.000490976
0.00049311
0.000495107
0.000496947
0.000498606
0.00050009
0.000501497
0.000502992
0.000504876
0.000506964
0.000510202
0.00156538
0.00107859
0.000996208
0.00105951
0.00116635
0.00127953
0.00138657
0.00148359
0.00156991
0.00164618
0.00171347
0.00177295
0.00182572
0.00187286
0.00191531
0.00195389
0.00198924
0.00202194
0.00205244
0.00208111
0.00210821
0.00213398
0.0021586
0.00218225
0.00220507
0.00222715
0.00224836
0.00226844
0.00228718
0.0023048
0.00232238
0.00234169
0.00236431
0.00238959
0.00241499
0.00167113
0.00115186
0.000919611
0.000837307
0.000867317
0.000990713
0.00117945
0.00140809
0.00166014
0.00192322
0.00218739
0.0024455
0.0026929
0.00292673
0.00314591
0.00334995
0.00353884
0.00371304
0.00387317
0.00402003
0.00415457
0.00427773
0.00439048
0.00449381
0.00458872
0.00467618
0.00475699
0.00483166
0.00490053
0.00496405
0.00502354
0.0050814
0.00514108
0.00520402
0.00527223
0.00110068
0.000722619
0.000671592
0.000684739
0.000711164
0.000741167
0.000771066
0.000798539
0.000823304
0.000845384
0.000864981
0.000882322
0.00089765
0.000911173
0.000923043
0.000933363
0.000942218
0.000949691
0.000955872
0.000960873
0.000964817
0.000967836
0.000970058
0.000971612
0.000972622
0.00097321
0.000973507
0.000973634
0.0009737
0.000973758
0.000973819
0.000973698
0.000973536
0.000972045
0.000974017
0.000977586
0.000635363
0.000581056
0.000577706
0.000588241
0.000603847
0.000619963
0.000635157
0.000648775
0.000660492
0.000670101
0.000677365
0.000682142
0.000684413
0.000684305
0.00068206
0.00067801
0.00067252
0.000665945
0.00065861
0.000650786
0.000642685
0.000634474
0.000626295
0.00061827
0.000610511
0.000603102
0.000596053
0.000589248
0.000582408
0.000575193
0.000567351
0.000559369
0.000551773
0.000548465
0.00137161
0.000913357
0.0008443
0.000868647
0.000912667
0.000959314
0.00100366
0.00104371
0.00107926
0.00111071
0.00113861
0.0011635
0.0011859
0.00120626
0.00122495
0.00124226
0.00125845
0.00127373
0.00128825
0.00130216
0.00131554
0.00132847
0.00134101
0.00135324
0.00136527
0.00137709
0.00138855
0.00139935
0.00140921
0.0014183
0.00142765
0.00143895
0.00145375
0.00147129
0.00148886
0.000729302
0.00051043
0.000452313
0.0004338
0.000429144
0.000430162
0.000433279
0.00043711
0.000441032
0.00044468
0.000447804
0.000450187
0.000451672
0.000452179
0.000451701
0.0004503
0.000448091
0.000445216
0.000441823
0.000438054
0.000434033
0.000429863
0.000425626
0.000421391
0.000417219
0.000413165
0.000409267
0.000405533
0.000401921
0.000398322
0.000394605
0.000390688
0.000386741
0.000383105
0.00038083
0.000940247
0.000633276
0.00057899
0.000571639
0.0005767
0.000586576
0.000597927
0.000609172
0.000619528
0.000628628
0.000636236
0.000642096
0.000646007
0.000647891
0.000647815
0.00064596
0.000642578
0.000637961
0.000632396
0.000626151
0.000619457
0.000612499
0.000605422
0.000598342
0.000591345
0.000584508
0.000577908
0.000571615
0.000565651
0.000559906
0.00055412
0.00054785
0.000540944
0.000533239
0.000527391
0.001223
0.000792051
0.000735241
0.00075693
0.000794842
0.000835608
0.000873395
0.000907047
0.000936243
0.000961
0.000981257
0.000996843
0.0010077
0.00101396
0.00101596
0.00101419
0.00100928
0.00100189
0.000992643
0.000982098
0.000970714
0.000958846
0.000946767
0.000934698
0.000922834
0.000911358
0.000900425
0.00089009
0.000880215
0.000870371
0.000859953
0.000848359
0.000836081
0.000823591
0.000817571
0.00167092
0.00115641
0.000916203
0.000811589
0.000806301
0.000892758
0.00105533
0.00126807
0.00150921
0.00176215
0.00201252
0.00224832
0.00246119
0.00264705
0.00280432
0.00293328
0.00303554
0.0031136
0.00317041
0.00320911
0.00323271
0.00324403
0.00324554
0.00323935
0.0032273
0.003211
0.00319195
0.00317146
0.00315037
0.00312859
0.00310468
0.00307604
0.00304056
0.00299942
0.00296192
0.00167095
0.00115649
0.000916473
0.000812502
0.000808669
0.000897361
0.0010622
0.00127655
0.0015185
0.00177155
0.00202153
0.00225668
0.00246871
0.00265369
0.0028101
0.00293827
0.00303984
0.0031173
0.00317359
0.0032118
0.00323493
0.00324574
0.00324675
0.00324015
0.00322792
0.00321181
0.00319326
0.00317317
0.00315165
0.00312785
0.0031003
0.00306809
0.00303302
0.00300138
0.00298522
0.000702634
0.000499011
0.000445799
0.000429309
0.000425383
0.000426409
0.000429314
0.000432779
0.000436309
0.000439716
0.000442886
0.000445723
0.000448127
0.000450015
0.000451334
0.000452063
0.000452214
0.000451824
0.000450954
0.000449677
0.000448071
0.000446211
0.000444169
0.000442005
0.000439773
0.000437516
0.00043527
0.000433066
0.000430928
0.000428862
0.000426861
0.00042487
0.000422892
0.000420751
0.000418963
0.00167643
0.00118085
0.00103321
0.00108868
0.0012533
0.00146232
0.00168663
0.00191042
0.00212337
0.0023204
0.00249907
0.00265861
0.00279887
0.00292011
0.00302289
0.00310818
0.00317738
0.00323219
0.00327453
0.00330636
0.00332959
0.00334597
0.00335701
0.00336402
0.00336809
0.00337012
0.00337093
0.00337121
0.00337152
0.00337218
0.00337314
0.00337376
0.00337345
0.00336989
0.00336882
0.00128738
0.0008529
0.00079038
0.00081238
0.000851489
0.000893507
0.000933268
0.00096884
0.000999859
0.00102655
0.00104908
0.00106753
0.00108193
0.00109237
0.00109906
0.00110232
0.00110256
0.00110027
0.00109595
0.00109008
0.0010831
0.00107537
0.00106718
0.00105876
0.00105029
0.00104193
0.00103382
0.00102607
0.00101875
0.00101182
0.00100514
0.000998297
0.000991343
0.000982852
0.000978113
0.00128123
0.000868735
0.000818115
0.000847761
0.000890837
0.000934293
0.000974529
0.00101021
0.00104124
0.00106788
0.00109035
0.00110873
0.00112306
0.00113341
0.00114
0.00114316
0.0011433
0.00114089
0.00113643
0.00113038
0.00112318
0.00111519
0.00110672
0.001098
0.00108922
0.00108053
0.00107204
0.00106386
0.00105609
0.00104872
0.00104163
0.00103438
0.00102692
0.00101784
0.00101194
0.00166888
0.00114483
0.000890739
0.000749802
0.000663508
0.000606517
0.000566638
0.000537494
0.000515553
0.000498829
0.000486273
0.000477495
0.000472637
0.000472339
0.000477721
0.000490358
0.000512225
0.000545632
0.0005932
0.000657878
0.000742842
0.000851078
0.000984721
0.00114446
0.00132927
0.00153656
0.00176259
0.00200311
0.00225386
0.00251098
0.00277144
0.00303333
0.00329571
0.00355826
0.00381868
0.00166945
0.00114956
0.000898029
0.000764178
0.000696307
0.000679674
0.000715012
0.000805676
0.000949047
0.00113727
0.00136147
0.00161209
0.0018789
0.00215228
0.00242442
0.00268955
0.00294363
0.00318404
0.00340933
0.00361901
0.00381338
0.00399311
0.00415941
0.00431354
0.00445676
0.00459029
0.00471522
0.00483248
0.0049428
0.00504682
0.00514541
0.00523989
0.00533242
0.00542426
0.00551913
0.000750579
0.000490608
0.000444627
0.000436544
0.000439615
0.000447019
0.000455645
0.000464131
0.000471857
0.000478522
0.000483945
0.000487965
0.000490448
0.000491345
0.000490712
0.0004887
0.000485519
0.0004814
0.000476582
0.000471275
0.000465656
0.000459867
0.000454021
0.000448215
0.000442536
0.000437062
0.000431844
0.000426865
0.000422011
0.000417054
0.000411756
0.000406026
0.000400346
0.00039547
0.000393727
0.000755201
0.000493975
0.000448224
0.000439633
0.000441899
0.000448732
0.000457131
0.000465598
0.000473383
0.00048015
0.000485703
0.000489843
0.000492418
0.00049338
0.000492793
0.00049081
0.000487647
0.000483539
0.000478721
0.000473415
0.000467802
0.000462025
0.000456187
0.000450371
0.000444643
0.000439069
0.000433719
0.000428652
0.000423865
0.000419222
0.000414425
0.000409048
0.000402966
0.000396327
0.000391394
0.00164867
0.00116512
0.00107588
0.00115758
0.0013014
0.00146254
0.00162181
0.00177077
0.00190635
0.00202808
0.00213675
0.00223361
0.00232005
0.00239751
0.00246726
0.00253049
0.00258819
0.00264122
0.00269031
0.00273603
0.00277887
0.00281919
0.00285734
0.00289362
0.00292829
0.00296152
0.00299322
0.0030231
0.00305093
0.00307706
0.00310293
0.00313082
0.00316281
0.00319802
0.00323292
0.001341
0.000874093
0.000803182
0.00083876
0.000897255
0.000956825
0.00101202
0.00106146
0.00110515
0.00114367
0.00117768
0.00120781
0.00123466
0.00125882
0.00128079
0.00130099
0.00131977
0.0013374
0.0013541
0.00137006
0.00138538
0.00140016
0.00141449
0.00142842
0.00144204
0.00145536
0.00146826
0.00148056
0.00149209
0.00150298
0.00151394
0.00152611
0.00154049
0.00155667
0.00157275
0.00167484
0.00118806
0.0010595
0.00112868
0.00129319
0.00149556
0.00170996
0.00192096
0.00211853
0.00229633
0.00245038
0.00257826
0.00268016
0.00275733
0.00281201
0.00284708
0.00286579
0.00287137
0.0028668
0.0028547
0.00283719
0.00281594
0.00279233
0.00276736
0.00274176
0.00271612
0.00269101
0.00266701
0.00264449
0.00262316
0.00260172
0.00257756
0.00254821
0.00251245
0.00247819
0.000919378
0.000647895
0.000591439
0.000578293
0.000578125
0.000583436
0.000590834
0.000598667
0.000606228
0.000613194
0.000619335
0.000624473
0.000628453
0.000631177
0.000632626
0.000632846
0.000631941
0.000630054
0.000627351
0.000624002
0.00062017
0.000616
0.000611614
0.000607114
0.000602582
0.000598082
0.000593674
0.000589405
0.000585313
0.000581389
0.000577581
0.00057372
0.000569793
0.000565349
0.000562172
0.000977353
0.000677089
0.000609712
0.000594156
0.000594562
0.000601356
0.000610304
0.000619571
0.000628379
0.000636405
0.000643427
0.00064924
0.000653696
0.000656709
0.000658272
0.000658455
0.00065739
0.000655254
0.000652246
0.000648563
0.000644389
0.000639882
0.000635171
0.000630362
0.000625543
0.000620787
0.000616163
0.000611718
0.000607477
0.000603405
0.000599429
0.000595382
0.000591302
0.000586719
0.000583725
0.00166986
0.00115216
0.000903413
0.0007779
0.0007289
0.000747058
0.000833466
0.000983541
0.00118514
0.00142474
0.00168886
0.0019641
0.0022385
0.00250295
0.00275168
0.00298146
0.00319069
0.00337953
0.003549
0.00370055
0.00383589
0.00395683
0.00406511
0.00416236
0.00425011
0.00432976
0.00440259
0.00446982
0.00453253
0.00459161
0.00464771
0.00470107
0.00475179
0.00479871
0.00484515
0.00167179
0.00115866
0.000928965
0.000850536
0.00088874
0.00102248
0.00121886
0.00144977
0.00169681
0.00194508
0.00218221
0.00240047
0.002595
0.00276351
0.00290575
0.00302292
0.00311707
0.00319076
0.00324672
0.00328768
0.0033162
0.00333462
0.00334502
0.00334916
0.00334859
0.00334466
0.00333853
0.0033312
0.00332335
0.00331517
0.00330629
0.00329574
0.00328291
0.00326737
0.00325454
0.00167217
0.00116031
0.000936288
0.000870294
0.000926794
0.00107815
0.00128722
0.00152627
0.00177738
0.00202599
0.0022607
0.00247434
0.0026625
0.00282348
0.00295762
0.00306666
0.00315313
0.00321989
0.00326984
0.00330572
0.00333005
0.00334506
0.00335268
0.00335457
0.00335211
0.00334648
0.0033387
0.0033297
0.00332025
0.00331075
0.00330099
0.0032899
0.0032761
0.00325802
0.00324037
0.000656236
0.000446789
0.000393523
0.000374841
0.000368841
0.000368498
0.000370694
0.000373931
0.000377523
0.000381114
0.000384547
0.000387718
0.000390553
0.000392994
0.000394997
0.000396535
0.000397602
0.000398215
0.000398408
0.000398229
0.000397734
0.000396979
0.000396018
0.000394901
0.000393674
0.000392382
0.000391066
0.000389763
0.0003885
0.000387281
0.000386088
0.000384851
0.000383549
0.000381945
0.000380623
0.00167319
0.001159
0.000953191
0.000926036
0.0010275
0.00120748
0.0014257
0.00166167
0.00190315
0.00214123
0.00236992
0.00258586
0.00278765
0.00297503
0.00314837
0.00330834
0.00345579
0.00359151
0.00371632
0.00383096
0.00393616
0.00403261
0.004121
0.004202
0.00427635
0.00434477
0.00440794
0.00446642
0.00452064
0.00457099
0.00461809
0.00466293
0.00470718
0.00475125
0.00480019
0.00167701
0.00118291
0.00103308
0.00108471
0.00125021
0.00146582
0.00169849
0.00193021
0.00214968
0.00235129
0.00253246
0.00269205
0.00282964
0.00294551
0.00304055
0.0031162
0.00317442
0.0032175
0.00324785
0.00326786
0.00327971
0.00328529
0.00328622
0.00328379
0.00327908
0.00327295
0.00326614
0.00325929
0.00325288
0.00324716
0.00324197
0.00323659
0.00323031
0.00322106
0.00321371
0.00167117
0.00118334
0.00106771
0.00114156
0.00129679
0.00148199
0.00167438
0.00186138
0.00203594
0.00219516
0.00233824
0.00246562
0.00257815
0.00267669
0.00276199
0.00283484
0.00289612
0.00294684
0.00298813
0.00302119
0.00304725
0.00306748
0.00308299
0.00309474
0.0031036
0.00311034
0.00311564
0.00312013
0.00312432
0.0031285
0.00313269
0.00313642
0.00313936
0.00313926
0.00314254
0.00113673
0.000754381
0.000698471
0.000705958
0.000726478
0.000749141
0.000770959
0.000790975
0.000809051
0.000825378
0.000840148
0.000853552
0.000865804
0.000877106
0.000887646
0.000897576
0.000907013
0.000916041
0.000924717
0.000933075
0.000941132
0.000948892
0.000956355
0.000963522
0.000970401
0.000977002
0.00098333
0.000989361
0.000995059
0.0010004
0.00100548
0.00101046
0.00101587
0.00102129
0.0010298
0.00144231
0.000974586
0.000907253
0.000948333
0.00101315
0.00107964
0.00114093
0.00119505
0.00124191
0.001282
0.00131567
0.00134303
0.00136424
0.00137954
0.0013893
0.00139409
0.00139458
0.00139152
0.00138567
0.00137773
0.00136831
0.00135792
0.00134696
0.00133573
0.00132449
0.00131343
0.00130275
0.0012926
0.00128307
0.00127405
0.00126528
0.00125613
0.00124662
0.00123498
0.00122844
0.00140554
0.00096737
0.000916356
0.000963194
0.00102679
0.00108933
0.0011463
0.00119622
0.00123933
0.00127614
0.00130694
0.00133188
0.00135105
0.00136467
0.00137312
0.00137693
0.00137674
0.00137324
0.00136712
0.00135902
0.00134953
0.0013391
0.00132813
0.00131691
0.00130566
0.00129456
0.00128375
0.0012734
0.0012636
0.00125435
0.00124542
0.00123617
0.00122637
0.0012142
0.00120596
0.000611456
0.000398188
0.000352627
0.000341304
0.00034145
0.000345621
0.000351012
0.000356607
0.000362038
0.000367176
0.00037198
0.000376456
0.000380626
0.000384519
0.000388159
0.000391563
0.000394742
0.000397698
0.000400433
0.000402948
0.000405247
0.000407336
0.000409228
0.000410936
0.00041248
0.000413878
0.000415143
0.000416273
0.000417261
0.000418109
0.00041888
0.000419671
0.000420733
0.00042189
0.000424325
0.00166967
0.00115175
0.000901137
0.000770401
0.000709649
0.000706239
0.000760959
0.000873846
0.00103875
0.00124683
0.00148869
0.00175362
0.00203004
0.00230728
0.00257684
0.00283271
0.00307129
0.00329094
0.00349149
0.0036737
0.00383889
0.00398864
0.00412461
0.00424844
0.00436166
0.00446567
0.00456174
0.00465099
0.00473435
0.0048126
0.00488647
0.00495669
0.0050245
0.00509002
0.00515836
0.00166934
0.00114901
0.000896819
0.000760969
0.000688232
0.000661842
0.000681124
0.000750762
0.000872279
0.00104151
0.0012517
0.00149467
0.00176034
0.00203806
0.00231844
0.00259442
0.00286106
0.00311521
0.00335509
0.0035799
0.00378959
0.00398462
0.00416588
0.00433448
0.00449163
0.00463855
0.00477638
0.00490605
0.00502827
0.00514371
0.00525333
0.00535873
0.00546236
0.00556582
0.00567192
0.00167035
0.00114979
0.000907643
0.000801796
0.000792685
0.000872019
0.0010272
0.00123612
0.00147966
0.00174388
0.00201729
0.00229067
0.00255718
0.00281242
0.00305422
0.00328136
0.00349331
0.00369031
0.00387292
0.00404185
0.00419796
0.00434211
0.00447522
0.00459821
0.00471206
0.00481772
0.00491595
0.00500726
0.00509195
0.00517053
0.00524437
0.00531609
0.00538928
0.00546562
0.00554624
0.00166887
0.00114456
0.000890402
0.000749439
0.000663143
0.000606152
0.000566264
0.000537089
0.000515078
0.000498216
0.000485408
0.000476201
0.000470656
0.000469314
0.000473186
0.000483745
0.000502871
0.000532765
0.000575894
0.000634994
0.000713044
0.000812978
0.000937073
0.0010863
0.00125998
0.00145582
0.00167035
0.0018995
0.0021391
0.00238541
0.00263537
0.00288695
0.00313903
0.00339106
0.00364034
0.00165406
0.00117427
0.00107748
0.00114526
0.00127751
0.00143282
0.00159092
0.00174109
0.00187812
0.00200093
0.00210978
0.00220547
0.0022889
0.00236089
0.00242214
0.00247333
0.00251524
0.00254877
0.00257492
0.00259474
0.00260927
0.0026195
0.00262633
0.00263053
0.00263279
0.00263369
0.00263379
0.00263357
0.00263342
0.00263356
0.00263394
0.002634
0.00263334
0.0026297
0.00262878
0.00121598
0.000775771
0.000710581
0.000735312
0.000779811
0.000826333
0.000869874
0.000908959
0.000943516
0.000973973
0.00100079
0.00102459
0.00104582
0.00106497
0.00108245
0.00109859
0.00111368
0.00112791
0.00114146
0.00115445
0.00116696
0.00117906
0.00119078
0.00120218
0.00121328
0.00122411
0.00123462
0.00124467
0.00125412
0.00126298
0.00127165
0.00128086
0.00129153
0.00130356
0.00131704
0.000844176
0.000578846
0.000526291
0.00051401
0.00051385
0.000518951
0.000526135
0.000533791
0.000540978
0.000547377
0.00055271
0.000556744
0.000559285
0.000560251
0.000559679
0.000557705
0.000554528
0.00055038
0.000545487
0.000540064
0.000534301
0.000528347
0.000522313
0.000516286
0.000510336
0.000504528
0.000498931
0.000493604
0.000488553
0.000483669
0.000478693
0.000473237
0.000467155
0.000460538
0.00045528
0.000604143
0.000445916
0.000378065
0.000354598
0.000343858
0.00033814
0.000335077
0.000333499
0.000332763
0.00033249
0.000332416
0.00033235
0.00033215
0.000331722
0.000331017
0.000330021
0.000328752
0.000327245
0.000325543
0.000323691
0.000321735
0.000319713
0.000317657
0.000315591
0.000313539
0.000311519
0.000309547
0.000307631
0.000305766
0.000303934
0.0003021
0.000300269
0.000298399
0.000296943
0.000295026
0.000604495
0.000445792
0.000378071
0.000354885
0.000344337
0.000338745
0.000335749
0.000334196
0.000333457
0.000333171
0.00033308
0.000332997
0.000332783
0.000332346
0.000331634
0.000330634
0.000329361
0.000327852
0.000326149
0.000324295
0.000322336
0.00032031
0.000318251
0.000316186
0.000314139
0.000312127
0.000310159
0.000308236
0.000306343
0.000304467
0.000302595
0.000300783
0.000299043
0.000297836
0.000296205
0.000630095
0.000404056
0.000355259
0.000342781
0.00034227
0.000346186
0.000351543
0.000357205
0.000362756
0.000368046
0.000373023
0.000377673
0.000382007
0.000386033
0.000389761
0.000393197
0.000396344
0.000399201
0.000401769
0.000404055
0.000406068
0.000407825
0.000409346
0.000410657
0.000411784
0.000412755
0.000413591
0.000414301
0.00041489
0.000415359
0.000415752
0.000416141
0.000416715
0.000417382
0.000418812
0.00167535
0.00117891
0.0010191
0.00105845
0.00121624
0.00143011
0.00166601
0.00190399
0.00213091
0.00233801
0.00252057
0.00267647
0.00280497
0.00290706
0.00298472
0.00304063
0.00307793
0.00309987
0.00310954
0.00310972
0.00310277
0.00309059
0.00307479
0.00305661
0.00303696
0.0030166
0.0029962
0.00297636
0.00295752
0.00293967
0.00292204
0.00290279
0.00288007
0.00285231
0.00282583
0.00166046
0.00117272
0.00106776
0.00113989
0.00128463
0.00145572
0.00163092
0.00179888
0.00195445
0.00209596
0.00222351
0.00233805
0.00244088
0.0025334
0.00261697
0.00269281
0.00276199
0.00282551
0.0028842
0.00293875
0.00298972
0.00303761
0.00308282
0.00312576
0.00316678
0.00320603
0.00324338
0.00327844
0.00331099
0.00334173
0.00337274
0.00340703
0.00344676
0.00348987
0.00353001
0.0016705
0.00115563
0.00090935
0.000788613
0.000750345
0.00078772
0.000899119
0.00107185
0.00128665
0.0015259
0.00177423
0.00201871
0.00224992
0.00246265
0.00265407
0.00282279
0.0029685
0.00309178
0.00319391
0.00327669
0.00334227
0.00339297
0.00343106
0.0034587
0.00347787
0.00349032
0.00349763
0.00350122
0.0035023
0.0035017
0.00349966
0.00349551
0.00348821
0.0034764
0.00346384
0.00167046
0.00115539
0.000908518
0.000786165
0.000744605
0.000776662
0.000881641
0.00104834
0.00125818
0.00149402
0.00174099
0.00198637
0.00222094
0.00243861
0.00263548
0.0028093
0.00295919
0.00308547
0.00318938
0.00327294
0.00333852
0.00338868
0.00342591
0.00345254
0.0034707
0.00348229
0.00348901
0.00349231
0.00349328
0.00349251
0.00348995
0.00348499
0.00347719
0.00346639
0.00345748
0.00166886
0.00114447
0.000890219
0.000749211
0.000662906
0.000605906
0.000565992
0.000536749
0.000514589
0.000497432
0.000484087
0.000473959
0.000466916
0.000463247
0.000463657
0.000469278
0.000481644
0.000502643
0.00053444
0.000579459
0.00064042
0.000720293
0.00082195
0.00094752
0.00109776
0.00127178
0.00146711
0.00168023
0.0019071
0.00214376
0.00238676
0.00263348
0.00288217
0.00313167
0.00337831
0.000669081
0.000448687
0.000401677
0.000389599
0.0003884
0.000391324
0.00039576
0.000400603
0.000405323
0.000409676
0.00041345
0.00041646
0.000418568
0.000419693
0.000419835
0.000419054
0.000417455
0.000415172
0.000412347
0.000409115
0.000405602
0.000401912
0.000398128
0.000394317
0.00039053
0.000386812
0.000383204
0.000379741
0.000376438
0.000373254
0.000370091
0.000366773
0.000363258
0.000359452
0.000356475
0.00070799
0.000479409
0.000426799
0.000411984
0.000409669
0.00041228
0.000416592
0.000421333
0.00042599
0.000430308
0.00043407
0.000437079
0.000439185
0.000440306
0.000440426
0.000439597
0.000437923
0.000435536
0.000432584
0.000429209
0.00042554
0.000421683
0.000417728
0.000413746
0.000409797
0.000405935
0.000402205
0.000398633
0.000395209
0.000391874
0.000388532
0.000385069
0.000381537
0.000377919
0.00037526
0.00155434
0.00110011
0.00104614
0.00112487
0.00123834
0.00135551
0.00146523
0.00156326
0.00164819
0.00171993
0.00177852
0.00182415
0.00185727
0.00187866
0.00188949
0.00189119
0.00188551
0.00187412
0.00185854
0.00184009
0.0018198
0.00179844
0.0017766
0.00175475
0.00173334
0.00171275
0.0016933
0.001675
0.00165738
0.00163925
0.00161907
0.00159569
0.00157055
0.00154747
0.00153811
0.00167129
0.00115754
0.000923238
0.000833255
0.000852589
0.000966746
0.00115024
0.00137549
0.00162217
0.00187385
0.00211663
0.00233973
0.00253658
0.00270478
0.00284414
0.00295597
0.00304257
0.00310681
0.00315179
0.00318062
0.0031962
0.00320113
0.00319767
0.00318774
0.00317296
0.00315473
0.00313439
0.00311314
0.00309173
0.00306999
0.00304643
0.00301834
0.00298344
0.00294261
0.0029052
0.00167145
0.00115802
0.000924909
0.000838039
0.000863014
0.000983973
0.00117304
0.00140166
0.00164958
0.00190079
0.00214198
0.00236293
0.00255733
0.00272305
0.00286003
0.00296966
0.0030543
0.0031168
0.00316025
0.00318768
0.00320198
0.00320569
0.00320109
0.00319017
0.00317464
0.00315611
0.00313588
0.00311477
0.00309282
0.0030691
0.00304204
0.00301047
0.00297583
0.00294383
0.00292631
0.00167004
0.00117275
0.00104238
0.0011108
0.00127354
0.00147199
0.00167923
0.00188143
0.0020716
0.00224681
0.00240638
0.00255083
0.00268133
0.00279928
0.00290613
0.00300331
0.0030921
0.00317364
0.00324892
0.00331875
0.00338382
0.00344471
0.00350192
0.00355592
0.00360712
0.00365579
0.00370195
0.00374534
0.00378579
0.00382374
0.00386087
0.00389988
0.00394321
0.00398997
0.00403609
0.000835364
0.000574868
0.000516563
0.000500488
0.00049883
0.000503226
0.000509707
0.000516586
0.000523167
0.000529019
0.000533886
0.000537533
0.000539787
0.000540569
0.000539906
0.000537915
0.000534779
0.000530716
0.000525941
0.000520662
0.000515056
0.000509264
0.000503399
0.000497557
0.000491824
0.000486277
0.000480969
0.000475898
0.000470974
0.000466004
0.000460769
0.000455156
0.000449528
0.000444505
0.000442034
0.00167685
0.00118674
0.00104772
0.0011108
0.00127852
0.00148747
0.00170905
0.00192772
0.00213329
0.00232
0.00248445
0.00262467
0.00273991
0.00283066
0.00289851
0.00294591
0.00297582
0.00299135
0.00299551
0.00299096
0.00297999
0.00296447
0.00294585
0.00292527
0.00290368
0.00288184
0.00286043
0.00283995
0.00282053
0.00280174
0.00278253
0.00276144
0.00273794
0.00271237
0.00269282
0.00167481
0.00117324
0.000994908
0.00101042
0.00115411
0.00136475
0.00160371
0.00184956
0.00208795
0.00230883
0.00250564
0.00267475
0.0028149
0.00292676
0.00301234
0.00307453
0.00311669
0.0031423
0.00315464
0.00315663
0.00315079
0.00313916
0.0031234
0.00310482
0.00308441
0.00306303
0.00304141
0.00302024
0.00300003
0.00298072
0.00296137
0.00293989
0.00291419
0.00288288
0.00285308
0.00166937
0.00115032
0.000897949
0.000761925
0.000688721
0.000661209
0.000678111
0.000743539
0.000859301
0.0010226
0.00122836
0.00146963
0.0017366
0.00201766
0.00230167
0.0025798
0.00284609
0.00309709
0.00333122
0.00354781
0.00374771
0.00393215
0.0041025
0.00426015
0.00440646
0.0045427
0.00467005
0.00478963
0.00490244
0.00500936
0.00511114
0.0052084
0.00530189
0.00539146
0.00548036
0.00165246
0.00118221
0.00111239
0.00121251
0.0013701
0.0015415
0.0017092
0.00186586
0.00200892
0.00213799
0.00225366
0.00235708
0.00244948
0.00253212
0.00260607
0.00267224
0.00273142
0.00278428
0.00283141
0.00287336
0.00291065
0.00294379
0.00297327
0.00299957
0.00302316
0.00304447
0.00306379
0.00308125
0.00309683
0.00311061
0.00312326
0.00313609
0.0031515
0.00316947
0.00319628
0.00163647
0.00115517
0.00106982
0.00114645
0.00128004
0.00142788
0.00157242
0.00170655
0.00182792
0.00193644
0.00203301
0.0021189
0.00219546
0.002264
0.00232575
0.00238173
0.00243284
0.00247988
0.00252348
0.00256418
0.00260239
0.00263847
0.00267271
0.00270542
0.00273683
0.00276705
0.00279592
0.00282308
0.00284832
0.00287215
0.00289628
0.00292324
0.0029549
0.00298962
0.00302216
0.00166946
0.00114849
0.000897231
0.000764988
0.000701044
0.000692222
0.000740227
0.000847081
0.00100733
0.00121146
0.0014502
0.00171394
0.00199234
0.00227555
0.00255605
0.00282838
0.00308898
0.00333585
0.00356804
0.00378531
0.0039879
0.00417634
0.00435143
0.00451412
0.00466548
0.00480663
0.00493862
0.00506224
0.0051781
0.00528684
0.00538969
0.00548881
0.0055873
0.00568695
0.00578997
0.00076856
0.000542894
0.000486027
0.000467267
0.000462474
0.000463588
0.000467278
0.000472003
0.000477024
0.000482021
0.000486875
0.000491534
0.000496006
0.000500318
0.000504502
0.000508582
0.000512578
0.000516504
0.000520369
0.000524175
0.000527919
0.000531598
0.00053521
0.000538762
0.000542259
0.000545692
0.000549014
0.000552149
0.000555041
0.000557751
0.00056054
0.000563792
0.000567861
0.000572373
0.000577152
0.00166896
0.00114659
0.000892839
0.00075202
0.000665961
0.000609812
0.00057214
0.000547827
0.000535358
0.000535703
0.000551679
0.000587184
0.000646233
0.000732258
0.000848009
0.000995359
0.00117432
0.00138224
0.00161396
0.00186296
0.00212259
0.00238706
0.00265187
0.00291381
0.0031708
0.00342159
0.00366559
0.00390256
0.00413246
0.00435542
0.00457197
0.00478333
0.00499136
0.00519765
0.00540176
0.00167322
0.00116214
0.000953439
0.000920617
0.00102113
0.00120993
0.0014435
0.00169627
0.0019525
0.00220113
0.00243487
0.0026495
0.00284309
0.00301456
0.00316363
0.00329098
0.00339794
0.00348639
0.00355851
0.00361663
0.00366302
0.00369979
0.00372882
0.00375176
0.00376997
0.00378467
0.00379689
0.00380755
0.00381739
0.00382689
0.00383619
0.00384482
0.00385225
0.00385646
0.00386233
0.00115894
0.000756646
0.000702057
0.00071525
0.000742353
0.000772951
0.000803136
0.000831106
0.000856115
0.000878139
0.000897396
0.000914061
0.000928251
0.000940059
0.000949582
0.000956923
0.000962227
0.000965687
0.000967531
0.000968007
0.000967361
0.000965826
0.000963609
0.00096089
0.000957829
0.000954571
0.000951257
0.000948017
0.000944953
0.000942087
0.000939365
0.000936485
0.000933437
0.000928784
0.000927098
0.00117438
0.00077344
0.000728488
0.000758209
0.000799607
0.000840178
0.000876427
0.00090777
0.0009343
0.000957037
0.000976517
0.000993018
0.00100663
0.00101741
0.00102544
0.00103087
0.00103391
0.00103484
0.00103396
0.00103159
0.00102805
0.00102364
0.00101862
0.0010132
0.00100755
0.00100183
0.000996151
0.000990605
0.000985278
0.000980192
0.000975335
0.000970464
0.000965712
0.000959753
0.000957175
0.00128639
0.000866892
0.000828248
0.000874152
0.000933107
0.000991442
0.00104487
0.00109191
0.00113221
0.00116564
0.00119246
0.00121284
0.00122679
0.00123456
0.00123664
0.0012338
0.00122689
0.00121679
0.00120427
0.00119013
0.00117497
0.00115926
0.00114331
0.00112743
0.00111189
0.00109694
0.00108278
0.0010694
0.00105647
0.00104319
0.00102854
0.00101181
0.000994131
0.000977932
0.000971576
0.00123653
0.000823617
0.000781964
0.000818239
0.000867783
0.000918419
0.000965808
0.00100801
0.0010443
0.00107452
0.00109887
0.00111731
0.00112983
0.00113667
0.0011383
0.00113542
0.00112882
0.00111929
0.00110762
0.00109449
0.00108046
0.00106592
0.00105117
0.00103644
0.00102188
0.0010077
0.000994098
0.000981295
0.000969357
0.000957937
0.000946091
0.000932252
0.000915456
0.000895436
0.000878732
0.00166882
0.00114308
0.000888719
0.000747689
0.000661409
0.000604445
0.000564547
0.000535267
0.000512955
0.000495424
0.000481302
0.000469689
0.000459987
0.000451785
0.000444809
0.000438884
0.000433922
0.000429909
0.000426911
0.00042508
0.000424662
0.000426011
0.000429597
0.000436015
0.000445999
0.000460431
0.000480379
0.000507145
0.000542325
0.000587815
0.000645737
0.000718266
0.000807348
0.0009144
0.00103734
0.00167306
0.00116362
0.000961173
0.000939119
0.00104859
0.00123979
0.00147191
0.00172193
0.00197469
0.00221908
0.00244869
0.0026598
0.00285023
0.00301904
0.00316614
0.00329222
0.00339855
0.0034869
0.00355933
0.00361804
0.00366522
0.00370291
0.00373301
0.00375714
0.00377669
0.00379284
0.00380654
0.00381856
0.0038295
0.0038398
0.00384973
0.00385923
0.00386864
0.00387662
0.00388946
0.00166581
0.0012114
0.00115234
0.00125515
0.00140992
0.00157484
0.00173285
0.00187703
0.0020051
0.00211651
0.00221131
0.00228979
0.00235243
0.00240011
0.0024341
0.00245595
0.00246746
0.00247048
0.00246681
0.00245812
0.00244581
0.00243105
0.00241478
0.00239768
0.00238029
0.002363
0.00234615
0.00233005
0.00231494
0.00230081
0.00228727
0.00227318
0.00225767
0.00223841
0.00222301
0.00166131
0.00120101
0.00113688
0.00123407
0.00138389
0.00154461
0.00169901
0.0018395
0.00196402
0.00207244
0.00216493
0.00224187
0.00230367
0.00235104
0.00238501
0.00240699
0.00241867
0.00242188
0.00241841
0.00240992
0.00239785
0.00238334
0.00236731
0.00235047
0.00233334
0.00231637
0.00229997
0.00228444
0.00226996
0.00225637
0.00224314
0.00222925
0.00221424
0.00219641
0.00218311
0.00167489
0.00117249
0.000994017
0.00100986
0.00115223
0.00135903
0.00159304
0.00183455
0.00207052
0.00229249
0.00249553
0.00267686
0.00283536
0.00297092
0.00308419
0.00317655
0.00324997
0.00330678
0.00334944
0.00338042
0.00340199
0.00341618
0.00342474
0.00342914
0.00343056
0.00342998
0.00342816
0.00342573
0.00342321
0.00342092
0.003419
0.00341706
0.00341488
0.00341058
0.00340959
0.00167426
0.00117561
0.00101991
0.00106669
0.0012287
0.00144106
0.00167136
0.00190227
0.00212378
0.00233026
0.002519
0.00268897
0.00283995
0.00297224
0.00308645
0.00318349
0.00326456
0.00333113
0.00338486
0.00342752
0.0034609
0.00348671
0.00350651
0.00352166
0.00353332
0.00354247
0.00354988
0.00355616
0.00356177
0.00356699
0.00357204
0.00357686
0.00358196
0.00358604
0.00359616
0.00166887
0.00114458
0.000890438
0.000749489
0.000663203
0.000606213
0.000566304
0.000537055
0.000514865
0.00049762
0.000484074
0.000473525
0.000465669
0.00046052
0.000458387
0.000459871
0.00046586
0.00047754
0.000496386
0.000524185
0.000563089
0.000615673
0.000684863
0.000773638
0.000884501
0.00101895
0.00117719
0.00135809
0.00155955
0.00177904
0.00201394
0.00226196
0.00252135
0.00279072
0.00306626
0.00166938
0.00115203
0.000899334
0.000759162
0.000674585
0.000622444
0.000593852
0.000587465
0.000606547
0.000656556
0.00074242
0.000866895
0.00103092
0.00123361
0.001471
0.00173545
0.00201682
0.00230445
0.00258875
0.00286242
0.00312054
0.00336037
0.0035809
0.0037823
0.00396556
0.00413214
0.00428375
0.00442222
0.00454935
0.00466684
0.00477615
0.00487835
0.00497429
0.00506344
0.00514877
0.00167112
0.00115325
0.000922839
0.000845169
0.000883554
0.00101703
0.00121457
0.00144957
0.00170508
0.00196847
0.00222988
0.00248247
0.00272201
0.00294616
0.00315381
0.00334459
0.00351861
0.00367631
0.00381841
0.00394586
0.00405981
0.00416155
0.00425244
0.00433384
0.00440707
0.00447337
0.0045338
0.00458918
0.00464011
0.00468709
0.00473096
0.00477306
0.00481574
0.00485988
0.00491073
0.00132809
0.000872291
0.000806697
0.000833323
0.000878628
0.000926434
0.000971857
0.001013
0.00104931
0.00108093
0.00110827
0.00113163
0.00115123
0.00116725
0.00117988
0.00118931
0.00119582
0.00119974
0.00120145
0.00120132
0.00119974
0.00119704
0.0011935
0.00118939
0.00118491
0.00118024
0.00117556
0.00117103
0.00116679
0.00116285
0.00115916
0.00115534
0.00115133
0.00114534
0.00114298
0.00167308
0.00116626
0.000968476
0.000952292
0.00106557
0.00125687
0.00148687
0.00173213
0.00197588
0.0022057
0.00241266
0.00259095
0.00273894
0.00285721
0.00294778
0.00301367
0.00305837
0.00308548
0.0030984
0.00310018
0.00309343
0.00308031
0.00306256
0.00304156
0.0030184
0.00299401
0.00296926
0.002945
0.00292174
0.00289917
0.00287577
0.00284873
0.00281548
0.00277581
0.00273838
0.00167398
0.00117
0.000982012
0.000982363
0.00111131
0.00131054
0.00154144
0.00178284
0.00201989
0.0022417
0.00244075
0.00261195
0.00275346
0.00286593
0.00295133
0.00301265
0.00305332
0.0030769
0.00308676
0.00308589
0.00307684
0.00306171
0.00304217
0.00301968
0.00299544
0.0029705
0.00294574
0.00292165
0.00289809
0.00287399
0.00284764
0.00281746
0.00278417
0.00275197
0.00273235
0.0015944
0.00111281
0.0010317
0.00109935
0.00121444
0.00133813
0.00145615
0.00156361
0.00165942
0.00174416
0.00181903
0.00188536
0.00194438
0.00199722
0.00204485
0.00208812
0.00212774
0.00216431
0.00219835
0.00223029
0.00226044
0.00228906
0.00231641
0.00234274
0.00236828
0.00239311
0.00241704
0.00243961
0.00246044
0.00247994
0.00249987
0.00252308
0.00255193
0.00258529
0.00261719
0.00164201
0.00118973
0.00113218
0.00122653
0.00136917
0.0015217
0.00166793
0.00180075
0.00191847
0.00202048
0.00210654
0.00217654
0.00223083
0.00227029
0.00229628
0.00231055
0.00231503
0.00231169
0.00230238
0.00228872
0.00227208
0.00225353
0.00223389
0.00221377
0.0021936
0.00217373
0.00215452
0.0021363
0.00211932
0.00210338
0.00208764
0.00207027
0.00204976
0.0020243
0.00200253
0.00165568
0.00120344
0.00114646
0.00124664
0.00139783
0.00156017
0.00171609
0.00185797
0.00198399
0.00209363
0.0021866
0.00226285
0.00232264
0.00236672
0.00239637
0.00241331
0.00241958
0.00241727
0.00240839
0.00239471
0.00237772
0.00235858
0.0023382
0.00231723
0.00229623
0.00227566
0.00225595
0.00223739
0.00221999
0.00220329
0.00218629
0.00216762
0.00214693
0.00212392
0.0021076
0.00119815
0.00080077
0.000759863
0.000787348
0.000825377
0.000864546
0.000901578
0.000934857
0.00096346
0.000987597
0.00100717
0.00102207
0.00103221
0.0010377
0.00103888
0.00103628
0.00103055
0.00102235
0.00101229
0.00100094
0.000988772
0.000976154
0.000963347
0.000950551
0.000937913
0.000925582
0.000913729
0.00090252
0.000892016
0.000881954
0.000871631
0.000859847
0.000845923
0.000829505
0.000816066
0.0013456
0.000911314
0.000865769
0.00091153
0.000971439
0.00103057
0.00108481
0.00113282
0.00117391
0.0012087
0.0012372
0.00125933
0.00127507
0.00128464
0.00128857
0.00128757
0.00128248
0.00127416
0.00126342
0.00125098
0.00123744
0.00122324
0.00120876
0.00119423
0.00117985
0.0011658
0.00115227
0.00113944
0.00112741
0.00111594
0.00110433
0.00109128
0.00107604
0.00105773
0.00104329
0.00167024
0.00115514
0.000904735
0.000770334
0.000701509
0.000685184
0.000725332
0.000829641
0.000997221
0.00121692
0.00147337
0.00174917
0.00202614
0.00228863
0.00252576
0.00273157
0.00290412
0.00304425
0.00315452
0.00323838
0.0032996
0.00334186
0.00336857
0.00338275
0.00338702
0.00338368
0.00337478
0.00336213
0.00334705
0.00333006
0.0033105
0.00328652
0.00325629
0.00322029
0.00318532
0.00167025
0.00115518
0.000904821
0.000770534
0.000701991
0.000686208
0.000727143
0.000832259
0.00100038
0.00122022
0.00147643
0.00175178
0.00202826
0.0022904
0.00252736
0.00273317
0.00290581
0.00304605
0.00315636
0.00324016
0.00330115
0.00334302
0.00336922
0.00338284
0.00338665
0.00338312
0.00337432
0.00336181
0.00334638
0.00332791
0.00330551
0.00327842
0.00324764
0.00321773
0.00319816
0.00166929
0.00114686
0.000894426
0.000759119
0.000687712
0.000663616
0.000686154
0.000759468
0.000884396
0.00105647
0.00126887
0.00151349
0.00178075
0.00206063
0.00234435
0.00262528
0.00289889
0.00316251
0.00341471
0.00365491
0.00388307
0.00409946
0.00430458
0.00449909
0.00468371
0.00485913
0.00502581
0.0051839
0.00533344
0.005475
0.00561049
0.00574333
0.0058773
0.00601307
0.00614686
0.00102078
0.000686151
0.000633269
0.000632389
0.000645033
0.000661828
0.000679478
0.000696482
0.000712205
0.000726528
0.000739547
0.000751408
0.000762298
0.000772398
0.000781862
0.000790812
0.000799348
0.000807548
0.000815469
0.000823151
0.000830616
0.000837878
0.000844954
0.000851871
0.000858659
0.000865311
0.000871739
0.000877769
0.000883265
0.00088833
0.000893539
0.000899763
0.000907923
0.000917231
0.000927825
0.000621293
0.000408545
0.000366071
0.000355873
0.000355721
0.000359601
0.000364922
0.000370485
0.000375716
0.000380298
0.00038405
0.000386819
0.000388485
0.000389001
0.000388404
0.0003868
0.000384339
0.000381193
0.000377533
0.000373519
0.000369283
0.000364926
0.000360527
0.000356147
0.000351838
0.000347653
0.000343648
0.000339863
0.00033628
0.000332764
0.000329054
0.000324834
0.000320068
0.000315115
0.000311679
0.000622039
0.00040891
0.000366573
0.000356563
0.000356571
0.000360567
0.000365963
0.000371579
0.000376847
0.000381454
0.000385223
0.000388002
0.000389673
0.000390189
0.000389587
0.000387972
0.000385497
0.000382334
0.000378653
0.00037461
0.000370339
0.000365941
0.000361503
0.0003571
0.000352801
0.000348665
0.00034472
0.00034094
0.000337215
0.00033336
0.000329205
0.000324752
0.000320474
0.00031716
0.000316423
0.00166909
0.00114708
0.000893556
0.000754044
0.000671925
0.000625248
0.000607228
0.000619044
0.000665634
0.000751658
0.000878912
0.00104659
0.00125186
0.00148912
0.00175036
0.00202652
0.00230916
0.00259157
0.00286901
0.00313844
0.00339812
0.00364714
0.00388518
0.00411226
0.00432866
0.00453478
0.00473105
0.00491777
0.00509516
0.00526369
0.00542464
0.00558047
0.00573438
0.00588809
0.00604104
0.00154822
0.00109739
0.00104818
0.00112947
0.00123949
0.00134699
0.00144327
0.00152695
0.00159838
0.0016593
0.00171117
0.00175484
0.00179082
0.00181951
0.00184139
0.00185701
0.00186705
0.00187227
0.00187347
0.00187144
0.00186694
0.00186062
0.00185306
0.0018447
0.00183591
0.00182698
0.00181812
0.00180954
0.00180138
0.00179371
0.00178649
0.00177929
0.00177213
0.00176295
0.00175874
0.0016693
0.00114824
0.000895859
0.000760162
0.000687982
0.000662774
0.000684258
0.000757549
0.000884257
0.00105967
0.00127612
0.00152449
0.00179426
0.00207467
0.00235677
0.00263417
0.0029027
0.0031598
0.00340401
0.00363458
0.00385104
0.00405376
0.00424329
0.00442032
0.00458575
0.00474054
0.00488568
0.00502209
0.0051506
0.00527195
0.00538703
0.00549706
0.00560372
0.0057081
0.00581263
0.00166919
0.00114853
0.000895527
0.000756657
0.000676224
0.000633612
0.000624001
0.000650856
0.000720345
0.000835805
0.000995788
0.00119597
0.00143009
0.00168958
0.00196449
0.00224568
0.00252576
0.0027993
0.00306267
0.0033137
0.00355126
0.00377509
0.00398551
0.00418326
0.00436928
0.00454463
0.00471036
0.00486733
0.00501624
0.00515772
0.00529272
0.00542282
0.00555045
0.00567732
0.00580555
0.00160011
0.00112419
0.00105103
0.00112171
0.00123488
0.00135456
0.00146817
0.00157126
0.00166308
0.00174432
0.00181601
0.00187939
0.00193564
0.00198593
0.00203117
0.00207209
0.00210931
0.00214332
0.0021745
0.0022032
0.00222969
0.00225419
0.00227692
0.00229809
0.0023179
0.00233654
0.00235402
0.00237013
0.00238459
0.00239742
0.00240954
0.00242279
0.00243981
0.00246041
0.00248794
0.000560187
0.000376129
0.000332771
0.00031995
0.000317086
0.000318267
0.000321099
0.000324465
0.000327807
0.000330828
0.000333346
0.000335203
0.000336283
0.00033653
0.000335956
0.000334631
0.000332661
0.000330171
0.000327287
0.000324128
0.000320795
0.000317366
0.000313901
0.000310448
0.000307047
0.000303738
0.000300565
0.000297556
0.000294698
0.000291893
0.000288959
0.000285677
0.000282017
0.000278296
0.00027557
0.000561225
0.000376614
0.000333488
0.000321024
0.000318478
0.000319896
0.000322874
0.000326329
0.000329731
0.000332788
0.000335324
0.000337191
0.000338274
0.000338516
0.00033793
0.000336584
0.000334587
0.000332065
0.000329142
0.000325939
0.000322556
0.000319074
0.000315557
0.000312065
0.000308649
0.000305354
0.000302204
0.000299179
0.000296203
0.000293146
0.000289889
0.000286439
0.000283125
0.000280548
0.000279684
0.0016699
0.00114747
0.000901163
0.000784559
0.000754139
0.000801685
0.000922477
0.0011021
0.00132368
0.00157364
0.00184018
0.00211305
0.00238435
0.00264864
0.0029025
0.003144
0.00337227
0.00358719
0.0037891
0.00397864
0.00415661
0.00432383
0.00448118
0.00462956
0.00476987
0.00490284
0.00502886
0.00514791
0.00525992
0.00536562
0.00546741
0.00556936
0.00567543
0.00578522
0.0058923
0.00162446
0.00116433
0.00111047
0.00121317
0.00136128
0.00151551
0.00166214
0.0017964
0.00191724
0.00202513
0.00212112
0.00220637
0.00228194
0.00234906
0.00240865
0.00246146
0.00250814
0.00254923
0.00258525
0.00261668
0.00264403
0.00266776
0.00268837
0.00270632
0.00272205
0.00273595
0.00274835
0.0027594
0.00276916
0.00277766
0.0027853
0.00279289
0.00280213
0.0028131
0.00283081
0.00166884
0.00114383
0.000889538
0.000748523
0.000662233
0.000605251
0.000565335
0.000536041
0.000513727
0.000496217
0.000482159
0.000470695
0.000461292
0.000453652
0.00044768
0.00044347
0.000441329
0.000441793
0.00044566
0.000454004
0.000468175
0.000489776
0.000520641
0.000562845
0.000618746
0.000690941
0.000782026
0.000894165
0.00102862
0.00118544
0.00136345
0.00156044
0.00177357
0.00199972
0.00223223
0.00167256
0.00116144
0.000941373
0.000883915
0.000951503
0.00111127
0.00132399
0.00156267
0.00180976
0.00205118
0.00227684
0.00248038
0.00265799
0.00280829
0.0029318
0.0030303
0.00310634
0.00316282
0.0032027
0.00322881
0.00324377
0.00324988
0.00324913
0.00324319
0.0032335
0.00322131
0.00320771
0.00319357
0.00317938
0.00316509
0.00314996
0.00313281
0.00311308
0.00309109
0.00307344
0.00167286
0.00116315
0.00094995
0.00090545
0.000988207
0.00115821
0.00137565
0.00161609
0.00186317
0.00210339
0.00232691
0.00252695
0.00269976
0.00284434
0.00296168
0.00305399
0.00312418
0.00317537
0.00321065
0.0032329
0.0032447
0.00324827
0.00324551
0.00323799
0.00322699
0.0032136
0.00319877
0.00318337
0.00316808
0.00315312
0.00313794
0.00312094
0.00310031
0.00307462
0.00304953
0.00167526
0.00117098
0.000987839
0.000997948
0.00113909
0.00134958
0.00158924
0.00183723
0.00207983
0.00230833
0.00251845
0.00270763
0.00287462
0.00301907
0.00314135
0.00324259
0.00332453
0.00338932
0.00343937
0.00347709
0.00350477
0.00352447
0.00353797
0.00354678
0.00355214
0.0035551
0.00355654
0.00355725
0.00355785
0.0035587
0.00355979
0.00356053
0.00356032
0.003557
0.0035559
0.00165551
0.001172
0.00107797
0.00115838
0.00130606
0.00147461
0.00164305
0.00180177
0.00194696
0.00207785
0.00219511
0.0023
0.00239394
0.00247833
0.00255448
0.00262356
0.00268659
0.00274448
0.002798
0.0028478
0.00289439
0.00293824
0.00297976
0.00301934
0.00305734
0.00309394
0.00312893
0.0031618
0.00319218
0.00322071
0.00324975
0.00328284
0.00332275
0.00336761
0.00340969
0.00131414
0.000866454
0.000808568
0.000843592
0.000897431
0.000953186
0.00100482
0.00105022
0.00108939
0.00112227
0.00114891
0.00116927
0.00118338
0.00119151
0.00119417
0.00119205
0.00118601
0.00117689
0.00116552
0.00115259
0.00113868
0.00112422
0.00110953
0.00109489
0.00108055
0.00106674
0.00105365
0.00104131
0.00102946
0.0010174
0.00100425
0.000989271
0.000973328
0.000958076
0.000951678
0.00148784
0.00104192
0.00099007
0.0010511
0.00113723
0.00122514
0.00130714
0.00137982
0.0014426
0.00149547
0.00153841
0.00157159
0.00159522
0.00160984
0.00161632
0.0016158
0.00160958
0.00159892
0.00158499
0.00156878
0.00155115
0.00153272
0.00151395
0.00149517
0.00147661
0.00145852
0.00144114
0.00142478
0.00140957
0.00139512
0.0013803
0.00136307
0.00134197
0.00131624
0.00129393
0.00138428
0.000929708
0.000864049
0.000899639
0.000958134
0.0010205
0.00108021
0.00113443
0.00118216
0.00122384
0.00126008
0.00129139
0.00131816
0.00134069
0.00135924
0.00137405
0.00138539
0.00139362
0.00139911
0.0014023
0.00140358
0.00140334
0.00140193
0.00139964
0.00139674
0.00139346
0.00139002
0.00138664
0.00138349
0.00138062
0.00137795
0.00137507
0.00137181
0.00136642
0.00136362
0.000800513
0.000565461
0.000504029
0.000483468
0.00047762
0.000477888
0.000480847
0.00048495
0.000489449
0.000493991
0.000498443
0.000502751
0.000506912
0.000510949
0.000514884
0.000518737
0.000522526
0.000526262
0.000529952
0.000533597
0.000537195
0.000540741
0.000544234
0.000547681
0.000551085
0.000554437
0.000557688
0.000560763
0.000563609
0.000566291
0.000569071
0.000572323
0.000576377
0.00058082
0.00058555
0.00167477
0.00119646
0.00109095
0.0011786
0.00134848
0.00154761
0.0017528
0.00195067
0.00213333
0.002296
0.00243603
0.00255207
0.00264421
0.00271369
0.00276257
0.00279352
0.00280947
0.0028134
0.00280807
0.00279587
0.00277882
0.00275849
0.00273611
0.00271259
0.0026886
0.00266469
0.00264135
0.00261909
0.00259824
0.00257859
0.00255902
0.00253728
0.00251124
0.00247941
0.00244969
0.00167633
0.00120106
0.00110073
0.00119217
0.00136393
0.00156329
0.0017668
0.00196176
0.00214102
0.00230075
0.00243877
0.00255394
0.00264613
0.00271617
0.00276581
0.00279751
0.0028141
0.00281853
0.00281353
0.00280155
0.00278461
0.0027643
0.00274187
0.00271826
0.00269425
0.00267051
0.0026476
0.0026259
0.00260537
0.00258534
0.00256456
0.00254147
0.00251587
0.00248879
0.00246964
0.00166908
0.0011465
0.000893008
0.000753796
0.000672562
0.000627867
0.00061362
0.000631602
0.000686609
0.000781877
0.000917094
0.00108982
0.00129627
0.00153059
0.00178527
0.00205255
0.00232558
0.00259897
0.0028687
0.00313195
0.00338687
0.00363241
0.00386806
0.0040937
0.00430942
0.00451551
0.00471249
0.00490106
0.00508197
0.00525557
0.00542154
0.00557895
0.00572734
0.00586791
0.0060056
0.00167389
0.0011589
0.000950125
0.000918914
0.00102159
0.00121318
0.0014501
0.00170716
0.0019698
0.00222802
0.00247518
0.00270795
0.00292504
0.00312631
0.00331227
0.00348383
0.00364208
0.00378815
0.00392319
0.00404831
0.00416456
0.0042729
0.00437413
0.00446888
0.00455768
0.00464114
0.00472004
0.00479534
0.00486778
0.00493731
0.00500266
0.00506185
0.00511425
0.00516219
0.00521654
0.00110524
0.0007382
0.000686753
0.000692482
0.000710173
0.000731501
0.000752979
0.000773031
0.000790992
0.000806742
0.000820253
0.000831457
0.000840308
0.00084679
0.000850966
0.000852981
0.000853054
0.000851456
0.000848484
0.000844438
0.000839592
0.000834188
0.000828425
0.000822464
0.000816426
0.00081041
0.000804504
0.000798794
0.000793373
0.000788295
0.000783574
0.000778962
0.000774441
0.000768387
0.000765129
0.00162523
0.00114829
0.00106802
0.00114252
0.0012707
0.00141234
0.00155046
0.00167793
0.00179251
0.00189438
0.00198476
0.002065
0.00213651
0.00220059
0.00225836
0.00231077
0.00235863
0.00240262
0.00244337
0.0024814
0.00251718
0.00255106
0.00258329
0.00261401
0.00264335
0.0026715
0.0026989
0.00272603
0.00275314
0.00277969
0.00280426
0.00282505
0.00284189
0.00285755
0.00288034
0.00102583
0.000661068
0.000607604
0.000612266
0.000629473
0.000649975
0.000670389
0.000689312
0.0007065
0.000722018
0.000736036
0.000748747
0.000760337
0.000770978
0.000780815
0.000789961
0.000798487
0.00080644
0.000813844
0.000820718
0.000827078
0.000832942
0.000838327
0.000843257
0.00084776
0.000851873
0.000855644
0.000859144
0.000862455
0.000865643
0.000868751
0.00087164
0.000874404
0.000876009
0.000880095
0.00167174
0.00115319
0.000934255
0.000883276
0.00095964
0.00112837
0.00135023
0.00159899
0.00185851
0.00211736
0.00236787
0.00260557
0.00282832
0.00303555
0.00322756
0.00340517
0.00356943
0.0037215
0.00386253
0.00399365
0.00411591
0.00423027
0.00433754
0.00443839
0.00453342
0.00462331
0.00470893
0.00479119
0.00487063
0.00494687
0.00501836
0.00508314
0.00514108
0.00519583
0.00525747
0.00166884
0.00114407
0.000889674
0.000748591
0.000662281
0.000605292
0.000565372
0.000536073
0.000513745
0.0004962
0.00048206
0.000470431
0.000460714
0.000452511
0.00044557
0.000439761
0.000435074
0.000431622
0.000429665
0.000429633
0.000432157
0.000438085
0.000448492
0.000464671
0.000488122
0.000520564
0.000563997
0.00062081
0.000693834
0.000786257
0.000901337
0.00104203
0.0012105
0.00140769
0.00163017
0.00167517
0.001169
0.000996234
0.001021
0.00116681
0.00137002
0.00159602
0.0018276
0.00205436
0.00227006
0.00247146
0.00265761
0.00282872
0.00298561
0.00312935
0.00326109
0.00338195
0.00349294
0.00359498
0.00368886
0.00377529
0.00385491
0.00392829
0.00399593
0.00405833
0.004116
0.00416954
0.00421963
0.00426692
0.00431182
0.00435425
0.00439343
0.0044287
0.00445909
0.00449106
0.0016689
0.00114554
0.000891288
0.000750242
0.000663892
0.000606891
0.0005671
0.00053825
0.00051702
0.000501797
0.000492153
0.000488647
0.000492744
0.000506702
0.000533302
0.000575467
0.000636024
0.000717771
0.000823554
0.000955793
0.00111562
0.00130223
0.00151288
0.00174326
0.00198834
0.00224301
0.00250275
0.00276398
0.00302415
0.0032816
0.00353529
0.00378447
0.00402843
0.00426645
0.00449669
0.00156877
0.00110884
0.00104682
0.00111857
0.00122602
0.00133787
0.00144304
0.00153757
0.00162007
0.00169042
0.00174842
0.00179424
0.00182818
0.00185093
0.00186359
0.00186757
0.00186441
0.00185566
0.00184273
0.00182681
0.00180897
0.00179002
0.00177056
0.00175104
0.0017317
0.00171265
0.0016939
0.00167553
0.00165783
0.0016415
0.00162757
0.00161687
0.00160948
0.00160113
0.00159011
0.00160331
0.00114268
0.0010813
0.00115694
0.00127148
0.00139133
0.00150367
0.0016042
0.0016918
0.00176659
0.00182857
0.00187778
0.00191452
0.00193944
0.00195363
0.00195851
0.00195571
0.00194688
0.00193356
0.00191709
0.00189859
0.00187888
0.00185858
0.00183814
0.00181785
0.00179799
0.00177889
0.00176087
0.00174419
0.00172865
0.00171334
0.00169632
0.00167579
0.00164953
0.00162499
0.00151283
0.00107193
0.00103197
0.00111013
0.00121052
0.00130826
0.00139633
0.00147291
0.00153901
0.00159537
0.00164229
0.00167985
0.00170825
0.00172789
0.00173953
0.00174414
0.00174286
0.00173684
0.00172719
0.0017149
0.00170081
0.00168562
0.00166984
0.00165388
0.00163798
0.00162228
0.00160686
0.00159178
0.00157722
0.00156362
0.00155166
0.00154191
0.00153481
0.0015272
0.00152095
0.00153841
0.00108524
0.00103417
0.0011079
0.00121051
0.00131391
0.00140809
0.00149047
0.00156189
0.00162304
0.00167416
0.00171539
0.00174693
0.00176919
0.0017829
0.00178903
0.00178876
0.00178334
0.00177397
0.00176174
0.00174756
0.00173217
0.00171614
0.00169985
0.00168361
0.00166764
0.00165217
0.00163744
0.00162371
0.00161102
0.00159906
0.00158676
0.00157305
0.00155501
0.00153853
0.000833454
0.000579787
0.000515907
0.000496791
0.000492841
0.000495012
0.000499633
0.000505035
0.000510577
0.000516038
0.000521315
0.000526371
0.000531208
0.000535843
0.000540299
0.000544593
0.00054873
0.000552708
0.000556517
0.000560146
0.000563584
0.000566825
0.000569861
0.000572693
0.000575323
0.000577761
0.000580026
0.000582149
0.000584166
0.000586104
0.00058797
0.000589689
0.000591285
0.000592326
0.000594322
0.00167277
0.00116209
0.000965369
0.00095261
0.00106895
0.00126174
0.00149126
0.0017353
0.00197986
0.00221588
0.0024381
0.00264399
0.00283264
0.00300393
0.00315816
0.00329579
0.00341746
0.00352403
0.00361654
0.00369626
0.00376454
0.00382283
0.00387258
0.00391513
0.00395176
0.00398359
0.00401166
0.00403693
0.00406031
0.00408261
0.00410438
0.00412553
0.00414556
0.00416171
0.00417742
0.00167375
0.00117364
0.00102272
0.00106927
0.00122041
0.00141673
0.00163003
0.00184479
0.00205156
0.00224535
0.00242409
0.00258747
0.00273609
0.00287094
0.00299316
0.00310378
0.00320372
0.00329378
0.0033747
0.00344721
0.00351201
0.0035698
0.00362129
0.00366718
0.00370814
0.00374486
0.00377801
0.00380831
0.00383646
0.00386308
0.00388854
0.00391259
0.00393491
0.00395339
0.00397355
0.00166963
0.00119789
0.00111888
0.00122154
0.00138946
0.00157364
0.0017546
0.00192401
0.00207885
0.00221838
0.00234353
0.00245558
0.00255596
0.00264617
0.00272755
0.00280134
0.00286864
0.00293031
0.00298706
0.00303948
0.00308804
0.00313313
0.00317508
0.00321414
0.00325052
0.0032845
0.0033164
0.00334666
0.00337564
0.00340349
0.00342986
0.00345382
0.00347475
0.0034919
0.00351204
0.00158179
0.00111086
0.00103293
0.00109414
0.00119811
0.0013105
0.0014189
0.00151821
0.00160689
0.00168515
0.00175387
0.00181409
0.00186682
0.00191291
0.00195301
0.00198762
0.00201718
0.00204211
0.00206283
0.00207981
0.00209351
0.00210441
0.00211297
0.00211961
0.00212471
0.00212861
0.00213164
0.00213413
0.00213643
0.00213886
0.00214163
0.00214447
0.00214715
0.00214684
0.00214999
0.000621077
0.000410682
0.00036056
0.000346193
0.000343604
0.000345385
0.00034877
0.000352708
0.00035677
0.000360766
0.000364608
0.000368262
0.000371728
0.000375023
0.000378163
0.000381157
0.000384009
0.000386718
0.000389277
0.000391683
0.000393933
0.000396027
0.000397969
0.000399761
0.000401407
0.000402916
0.000404305
0.000405605
0.000406847
0.000408047
0.000409188
0.000410184
0.000411043
0.00041154
0.000412876
0.00167245
0.00115825
0.000961871
0.000951075
0.00106793
0.0012586
0.00148523
0.00172754
0.00197249
0.0022111
0.00243787
0.00265003
0.00284665
0.00302793
0.0031947
0.00334805
0.00348921
0.00361939
0.0037398
0.00385152
0.0039556
0.00405291
0.0041442
0.00423004
0.00431096
0.00438758
0.00446072
0.00453127
0.00459973
0.00466559
0.0047271
0.00478215
0.00483066
0.00487657
0.00493064
0.00110241
0.000719543
0.000664278
0.000672863
0.000694026
0.000717425
0.00073994
0.000760294
0.000778582
0.000795009
0.000809844
0.000823319
0.000835638
0.000846995
0.000857567
0.000867502
0.000876906
0.000885855
0.000894397
0.000902561
0.000910364
0.000917813
0.000924908
0.000931648
0.000938032
0.000944074
0.000949809
0.000955299
0.000960614
0.00096578
0.000970763
0.00097533
0.000979519
0.000982442
0.000988029
0.00167312
0.0011753
0.00101592
0.00105851
0.00121892
0.00143075
0.00166099
0.00189205
0.00211202
0.0023127
0.00248791
0.00263456
0.00275228
0.00284224
0.00290685
0.00294936
0.00297336
0.00298243
0.00297986
0.00296854
0.00295086
0.00292877
0.00290379
0.00287702
0.0028492
0.00282074
0.00279187
0.00276294
0.00273476
0.0027088
0.00268716
0.00267141
0.00266088
0.00264901
0.00262577
0.0016734
0.00117595
0.00101764
0.00106279
0.00122643
0.00144063
0.00167201
0.0019034
0.0021233
0.00232376
0.00249887
0.0026455
0.00276324
0.00285325
0.00291791
0.00296045
0.00298445
0.0029935
0.0029909
0.00297954
0.00296182
0.00293961
0.00291437
0.00288724
0.00285906
0.00283061
0.00280267
0.00277597
0.00275082
0.00272656
0.00270104
0.00267079
0.00263304
0.0025885
0.00254834
0.00140059
0.000963562
0.000923194
0.000982716
0.00105999
0.00113652
0.00120671
0.00126865
0.00132192
0.00136626
0.00140194
0.00142919
0.00144817
0.00145927
0.00146321
0.00146096
0.00145365
0.00144235
0.00142812
0.00141193
0.00139454
0.0013765
0.00135819
0.0013399
0.00132185
0.00130427
0.00128746
0.0012717
0.00125708
0.00124311
0.00122849
0.00121106
0.00118941
0.00116336
0.00114118
0.00133374
0.000894687
0.000848051
0.000895049
0.000959285
0.00102413
0.00108421
0.00113747
0.00118329
0.00122142
0.00125207
0.00127534
0.00129135
0.00130045
0.00130326
0.00130065
0.00129359
0.00128303
0.00126993
0.00125511
0.00123923
0.00122279
0.00120618
0.00118965
0.00117333
0.00115725
0.00114136
0.00112574
0.00111072
0.00109703
0.00108573
0.00107749
0.001072
0.00106485
0.00105285
0.00166901
0.00114637
0.000892572
0.000752305
0.000668208
0.00061703
0.000590013
0.000585975
0.000608171
0.000661622
0.000750349
0.000876114
0.00103894
0.00123702
0.00146572
0.00171786
0.00198522
0.00226025
0.00253691
0.0028108
0.00307896
0.00333951
0.00359133
0.00383382
0.00406675
0.00429015
0.00450433
0.00470984
0.0049073
0.00509711
0.00527905
0.0054524
0.00561663
0.00577255
0.00592386
0.000893048
0.000609261
0.000553991
0.000542697
0.000544173
0.000550923
0.000559599
0.000568575
0.000576952
0.000584381
0.000590583
0.000595316
0.000598378
0.000599688
0.000599294
0.00059735
0.000594077
0.000589728
0.000584555
0.000578792
0.000572646
0.000566288
0.000559848
0.000553423
0.000547071
0.000540822
0.000534691
0.000528714
0.000522984
0.000517667
0.00051298
0.000509013
0.000505648
0.000501708
0.00049687
0.00167283
0.00116289
0.000968648
0.000958345
0.00107491
0.0012668
0.00149639
0.00174122
0.00198633
0.00222214
0.00244331
0.00264734
0.00283325
0.00300083
0.00315026
0.00328202
0.00339687
0.00349589
0.0035804
0.0036519
0.003712
0.00376232
0.00380445
0.00383982
0.00386974
0.00389535
0.00391767
0.00393765
0.00395619
0.00397405
0.00399175
0.00400907
0.00402528
0.00403733
0.00404788
0.0010345
0.000814923
0.000697114
0.000651515
0.000631413
0.000621099
0.000615566
0.000612631
0.00061121
0.000610689
0.000610696
0.000610982
0.000611354
0.000611657
0.000611778
0.00061164
0.0006112
0.000610446
0.000609389
0.000608058
0.000606494
0.000604742
0.000602846
0.000600849
0.000598787
0.000596693
0.000594593
0.000592509
0.000590462
0.000588473
0.000586554
0.000584741
0.000582956
0.00058148
0.000579123
0.00084057
0.00064245
0.000544565
0.000506709
0.000490009
0.000481597
0.000477102
0.000474812
0.000473828
0.000473639
0.000473967
0.000474655
0.000475606
0.000476756
0.000478062
0.000479491
0.000481018
0.000482623
0.000484289
0.000486003
0.000487754
0.00048953
0.000491323
0.000493123
0.000494925
0.000496728
0.000498534
0.000500342
0.00050214
0.000503902
0.000505591
0.000507196
0.000508758
0.000510295
0.00051241
0.0014711
0.00102816
0.000977031
0.00103048
0.00110432
0.00117771
0.00124492
0.00130434
0.00135574
0.00139976
0.00143701
0.00146794
0.00149284
0.00151201
0.0015258
0.00153467
0.00153919
0.00154001
0.00153781
0.00153326
0.00152695
0.0015194
0.00151104
0.00150221
0.00149315
0.00148407
0.00147513
0.00146649
0.00145836
0.00145086
0.00144406
0.0014376
0.00143134
0.0014224
0.00141759
0.00167353
0.00116377
0.000980924
0.000990273
0.00112301
0.00132014
0.00154668
0.00178411
0.0020202
0.00224698
0.00246005
0.00265756
0.00283945
0.00300646
0.00315959
0.00330009
0.00342925
0.00354826
0.00365818
0.0037599
0.00385423
0.00394186
0.00402336
0.00409924
0.00416995
0.00423599
0.00429795
0.0043565
0.00441221
0.00446527
0.00451521
0.00456093
0.00460172
0.00463776
0.00467545
0.00148738
0.00104334
0.000998856
0.00106647
0.00115758
0.00124936
0.00133435
0.00140986
0.00147513
0.00152965
0.00157376
0.00160766
0.00163162
0.00164615
0.00165219
0.00165091
0.00164368
0.00163181
0.00161656
0.00159903
0.00158007
0.0015603
0.00154016
0.00152001
0.00150013
0.00148077
0.00146228
0.00144501
0.00142905
0.00141381
0.00139768
0.00137808
0.00135324
0.00132327
0.00129748
0.00146305
0.00101455
0.000965988
0.00102816
0.00111358
0.00119999
0.00128006
0.00135115
0.00141249
0.00146369
0.00150505
0.00153674
0.001559
0.00157236
0.00157767
0.00157607
0.00156884
0.00155723
0.00154242
0.00152544
0.00150711
0.00148807
0.00146875
0.00144951
0.00143053
0.0014118
0.00139327
0.00137501
0.00135745
0.00134153
0.00132861
0.0013196
0.00131402
0.00130658
0.00129225
0.0016689
0.00114589
0.0008917
0.000750675
0.000664331
0.000607314
0.000567465
0.00053846
0.000516873
0.000500898
0.000489783
0.000483585
0.000483073
0.000489683
0.000505418
0.000532688
0.000574103
0.000632375
0.000710326
0.000810774
0.000936028
0.0010872
0.00126376
0.00146351
0.00168301
0.00191812
0.00216463
0.0024188
0.00267765
0.00293905
0.00320161
0.00346435
0.00372647
0.00398696
0.00424329
0.00145276
0.00103109
0.00099028
0.00104847
0.00112359
0.00119631
0.00126097
0.00131725
0.00136543
0.00140646
0.00144116
0.00147002
0.00149329
0.0015112
0.00152406
0.00153231
0.00153644
0.00153706
0.00153477
0.00153019
0.00152387
0.00151632
0.00150794
0.00149908
0.00149
0.00148088
0.00147184
0.001463
0.00145443
0.0014463
0.00143887
0.0014323
0.00142726
0.00142178
0.00142138
0.00160886
0.00113782
0.00106266
0.00113324
0.00124874
0.00137259
0.00149137
0.00160011
0.0016974
0.00178364
0.00185985
0.00192727
0.00198706
0.00204022
0.00208762
0.00212989
0.00216754
0.00220098
0.00223056
0.0022566
0.00227945
0.00229943
0.00231685
0.00233204
0.0023453
0.00235693
0.00236723
0.00237651
0.00238514
0.00239343
0.00240159
0.00240942
0.00241682
0.00242175
0.00242936
0.00103234
0.000666257
0.000613269
0.000623311
0.000647848
0.000675302
0.000701941
0.000726405
0.000748369
0.000767918
0.000785383
0.000801078
0.00081526
0.000828214
0.000840192
0.000851402
0.000862012
0.000872146
0.0008819
0.000891348
0.000900535
0.000909489
0.000918215
0.000926702
0.000934945
0.000942962
0.000950813
0.000958582
0.000966303
0.000973854
0.000980941
0.000987107
0.00099227
0.000996564
0.00100242
0.000919869
0.000721889
0.000616429
0.000575549
0.00055726
0.000547724
0.000542585
0.00053988
0.000538569
0.000538071
0.000538024
0.000538175
0.000538335
0.00053836
0.000538152
0.000537651
0.000536834
0.000535708
0.000534297
0.000532641
0.000530785
0.000528777
0.00052666
0.000524472
0.000522248
0.000520015
0.000517795
0.000515607
0.00051347
0.000511406
0.000509423
0.000507556
0.000505712
0.000504167
0.00050172
0.000988549
0.000773219
0.000657517
0.000613445
0.000594033
0.000584049
0.000578779
0.000576098
0.00057489
0.000574541
0.000574667
0.000574992
0.000575308
0.00057546
0.000575337
0.000574877
0.000574055
0.000572881
0.000571388
0.000569623
0.000567638
0.000565488
0.000563222
0.000560882
0.000558506
0.000556126
0.000553767
0.000551453
0.000549199
0.000547013
0.00054488
0.000542805
0.000540676
0.000538841
0.000536045
0.00160151
0.00115473
0.00110798
0.00119066
0.00130745
0.00142664
0.00153821
0.00163921
0.00172925
0.00180899
0.00187937
0.00194154
0.0019967
0.00204596
0.00209016
0.00213001
0.00216606
0.00219875
0.00222843
0.00225541
0.00227996
0.00230235
0.00232279
0.00234148
0.00235857
0.00237419
0.00238859
0.00240209
0.00241507
0.00242772
0.00243986
0.00245066
0.0024598
0.00246588
0.00247841
0.00167094
0.00115055
0.000918651
0.000839204
0.000875488
0.00100955
0.00121286
0.00145692
0.00172157
0.0019922
0.00225842
0.00251381
0.00275511
0.00298108
0.00319166
0.00338744
0.00356936
0.00373848
0.00389586
0.00404254
0.00417952
0.00430768
0.00442781
0.00454059
0.00464663
0.00474662
0.00484133
0.00493158
0.00501796
0.00510037
0.00517782
0.00524889
0.00531334
0.00537331
0.00543757
0.00167227
0.00115833
0.000962911
0.000954351
0.00107384
0.00126567
0.00149139
0.00173101
0.0019719
0.00220546
0.00242667
0.00263306
0.00282397
0.00299979
0.00316141
0.00331005
0.00344697
0.00357338
0.0036904
0.00379902
0.00390011
0.00399444
0.00408262
0.00416519
0.00424263
0.00431547
0.00438434
0.00444995
0.00451276
0.00457264
0.00462871
0.00467961
0.00472495
0.00476634
0.00481146
0.00164735
0.00116401
0.001075
0.00115841
0.00130483
0.00146878
0.00163051
0.00178139
0.00191835
0.00204105
0.00215035
0.00224759
0.00233424
0.00241179
0.00248157
0.00254481
0.00260249
0.00265548
0.00270449
0.00275009
0.00279279
0.00283296
0.00287087
0.00290672
0.00294068
0.00297299
0.00300397
0.00303401
0.00306331
0.0030916
0.00311796
0.00314114
0.00316074
0.00317808
0.00319918
0.00167145
0.00115484
0.000927176
0.000855485
0.000903031
0.00104712
0.00125542
0.00150022
0.00176305
0.00203033
0.00229222
0.00254246
0.00277768
0.00299629
0.00319773
0.00338194
0.00354911
0.0036997
0.00383443
0.00395426
0.00406039
0.00415415
0.00423699
0.00431032
0.00437551
0.00443387
0.00448656
0.00453474
0.00457949
0.00462176
0.00466229
0.00470115
0.00473817
0.00477098
0.00480439
0.00165963
0.00118691
0.00109935
0.00119221
0.00135431
0.001538
0.0017217
0.00189422
0.00204999
0.00218586
0.00229972
0.00239141
0.00246146
0.0025112
0.00254272
0.00255864
0.00256181
0.00255502
0.00254078
0.00252124
0.00249815
0.00247288
0.00244646
0.00241961
0.00239274
0.00236601
0.00233949
0.0023133
0.002288
0.00226483
0.00224561
0.00223178
0.00222302
0.00221326
0.00219451
0.00165939
0.00118938
0.00110611
0.0011981
0.00135673
0.00153734
0.00171869
0.00188932
0.0020434
0.00217798
0.00229106
0.00238223
0.0024519
0.00250136
0.00253268
0.00254842
0.00255142
0.00254448
0.00253012
0.00251052
0.00248742
0.00246213
0.00243556
0.00240846
0.00238137
0.00235476
0.00232918
0.00230515
0.00228287
0.00226164
0.00223947
0.00221305
0.00217983
0.00213991
0.00210413
0.00166896
0.00114644
0.000892381
0.000751423
0.000665253
0.000608929
0.000570961
0.000546234
0.000533383
0.000533827
0.000551225
0.000590644
0.000657162
0.000754579
0.00088519
0.00104998
0.00124799
0.00147559
0.00172677
0.00199424
0.00227081
0.00255034
0.00282814
0.00310098
0.00336688
0.00362471
0.00387397
0.00411465
0.004347
0.00457137
0.00478794
0.00499662
0.00519712
0.00538936
0.00557436
0.00166975
0.0011476
0.000899746
0.000779063
0.000740189
0.000774129
0.000878509
0.00104263
0.00125135
0.00149162
0.00175194
0.00202183
0.00229285
0.0025589
0.00281602
0.00306181
0.00329509
0.0035155
0.00372312
0.00391852
0.00410237
0.0042754
0.00443836
0.00459192
0.00473675
0.00487355
0.00500317
0.00512649
0.00524424
0.00535657
0.00546281
0.00556176
0.00565305
0.00573847
0.0058258
0.00167618
0.0011858
0.00104959
0.00112565
0.00131658
0.00154973
0.00179077
0.00202407
0.00224199
0.00244097
0.00261969
0.00277782
0.00291555
0.00303338
0.0031322
0.00321321
0.00327797
0.00332834
0.00336634
0.003394
0.00341328
0.00342597
0.00343363
0.00343759
0.00343893
0.00343851
0.00343698
0.00343483
0.00343247
0.00343031
0.00342884
0.00342847
0.00343009
0.00343198
0.00344002
0.00166304
0.00119596
0.00111687
0.00121127
0.0013704
0.00154661
0.0017185
0.00187615
0.00201625
0.0021387
0.00224414
0.00233335
0.00240706
0.002466
0.00251115
0.00254378
0.00256541
0.00257774
0.00258252
0.00258141
0.00257591
0.00256727
0.00255652
0.00254447
0.00253171
0.00251869
0.0025058
0.00249338
0.00248181
0.00247135
0.00246209
0.00245345
0.00244462
0.00243222
0.00242025
0.00132025
0.000874283
0.000808884
0.000837201
0.000886158
0.000938552
0.000988767
0.00103465
0.00107554
0.00111151
0.00114302
0.00117055
0.00119456
0.00121542
0.00123343
0.00124879
0.00126167
0.00127227
0.00128079
0.00128745
0.0012925
0.00129617
0.00129869
0.00130029
0.00130115
0.00130144
0.00130136
0.00130106
0.00130077
0.00130064
0.0013008
0.00130099
0.00130114
0.00129893
0.00130038
0.00167397
0.001189
0.00108151
0.00117307
0.00135001
0.00155422
0.001762
0.0019621
0.00214898
0.00232032
0.00247554
0.00261575
0.00274225
0.00285643
0.00295948
0.00305256
0.00313665
0.00321259
0.00328114
0.00334297
0.00339875
0.00344913
0.0034947
0.00353597
0.00357338
0.00360738
0.00363848
0.00366731
0.00369458
0.00372071
0.00374556
0.00376815
0.00378771
0.00380337
0.00382182
0.00166913
0.00114759
0.000894153
0.00075554
0.000675893
0.000634512
0.000626106
0.000652713
0.000718316
0.000824959
0.000972216
0.00115835
0.00137968
0.00162954
0.00189896
0.00217861
0.00246043
0.00273848
0.00300888
0.00326935
0.00351869
0.00375637
0.00398228
0.00419655
0.00439951
0.00459165
0.00477364
0.00494626
0.00511044
0.00526702
0.00541643
0.00555858
0.00569323
0.00582042
0.00594273
0.00166972
0.0011495
0.000900595
0.000775272
0.000726292
0.00074329
0.000825973
0.000968908
0.00116064
0.00138951
0.00164445
0.00191437
0.0021894
0.00246185
0.00272623
0.00297897
0.0032178
0.00344139
0.00364915
0.00384099
0.00401737
0.0041792
0.00432752
0.00446352
0.0045885
0.00470374
0.0048105
0.00491003
0.00500355
0.00509216
0.00517666
0.00525723
0.00533371
0.0054048
0.00547364
0.00165828
0.0011984
0.00113065
0.00122993
0.00138698
0.00155515
0.00171528
0.00186024
0.00198819
0.00209947
0.00219493
0.00227538
0.0023415
0.00239409
0.00243413
0.00246283
0.00248161
0.00249199
0.00249553
0.0024937
0.00248784
0.00247909
0.00246842
0.00245656
0.00244408
0.0024314
0.00241877
0.0024064
0.00239446
0.00238322
0.00237312
0.00236461
0.0023585
0.00235278
0.00235176
0.00162534
0.00115505
0.00108606
0.00117284
0.00130883
0.00145282
0.0015895
0.00171371
0.00182454
0.00192261
0.00200927
0.00208572
0.00215357
0.00221419
0.00226869
0.00231812
0.00236327
0.00240481
0.0024433
0.00247915
0.00251271
0.00254425
0.00257395
0.00260195
0.00262837
0.00265335
0.00267713
0.00270002
0.00272228
0.00274385
0.00276422
0.00278239
0.00279775
0.0028102
0.002825
0.00161709
0.00116016
0.00109787
0.00117584
0.00129384
0.00141691
0.00153183
0.00163472
0.00172456
0.00180222
0.00186869
0.00192482
0.0019712
0.00200841
0.00203707
0.0020579
0.00207179
0.00207971
0.00208272
0.00208181
0.00207793
0.00207188
0.00206433
0.00205582
0.00204677
0.00203748
0.00202824
0.00201929
0.00201092
0.00200337
0.00199675
0.00199064
0.00198469
0.00197553
0.00196981
0.00141208
0.000935316
0.000860904
0.000901011
0.000968313
0.00103801
0.00110307
0.00116145
0.00121295
0.00125821
0.00129807
0.00133337
0.00136486
0.00139318
0.00141888
0.00144246
0.00146431
0.00148473
0.00150401
0.00152235
0.00153995
0.00155692
0.00157336
0.00158927
0.0016047
0.00161976
0.00163467
0.00164966
0.00166476
0.00167952
0.00169297
0.0017041
0.00171298
0.00172191
0.00173507
0.00166925
0.00115112
0.000898031
0.000757487
0.000671903
0.000617154
0.000582826
0.000565332
0.000565265
0.000586022
0.000632464
0.000709383
0.000820607
0.000969024
0.00115612
0.0013805
0.00163701
0.00191732
0.0022116
0.00251021
0.00280499
0.0030898
0.00336062
0.00361522
0.00385277
0.00407341
0.00427797
0.00446766
0.00464396
0.00480847
0.00496278
0.00510825
0.00524594
0.00537531
0.00549794
0.00167382
0.00116299
0.000981673
0.000998136
0.0011426
0.00134961
0.0015813
0.0018202
0.00205578
0.00228128
0.00249295
0.00268923
0.00286995
0.00303575
0.0031877
0.00332699
0.00345488
0.00357259
0.00368129
0.00378204
0.00387584
0.00396352
0.00404578
0.00412312
0.00419602
0.00426504
0.00433097
0.0043947
0.00445671
0.00451642
0.00457203
0.00462134
0.00466432
0.00470499
0.00475539
0.000952107
0.000733326
0.000622305
0.000580882
0.000562599
0.00055322
0.00054831
0.000545891
0.000544924
0.000544805
0.00054519
0.000545857
0.000546646
0.000547429
0.000548108
0.000548607
0.000548877
0.000548895
0.000548657
0.000548179
0.000547484
0.000546606
0.000545577
0.000544432
0.000543201
0.000541914
0.000540598
0.000539275
0.000537965
0.000536683
0.000535423
0.00053419
0.000532889
0.000531758
0.00052976
0.00167069
0.00114996
0.000914495
0.000826202
0.000847685
0.000964315
0.00115179
0.00138294
0.00163834
0.00190402
0.00216959
0.00242796
0.00267491
0.00290828
0.00312729
0.00333207
0.0035232
0.00370151
0.00386786
0.00402316
0.00416827
0.00430402
0.00443114
0.0045503
0.00466211
0.00476723
0.00486643
0.00496055
0.00505025
0.00513564
0.00521607
0.00529029
0.0053579
0.00542016
0.00548516
0.00166892
0.00114613
0.000892142
0.000751205
0.000664888
0.000607859
0.000567932
0.000538715
0.000516647
0.000499686
0.000486697
0.000477154
0.000471007
0.000468632
0.000470819
0.000478771
0.000494087
0.00051873
0.000555025
0.000605711
0.00067403
0.000763662
0.000878362
0.00102137
0.00119481
0.00139927
0.00163365
0.0018952
0.00217987
0.00248283
0.00279897
0.00312337
0.00345146
0.00377909
0.00410056
0.00163323
0.00115404
0.00107278
0.00115305
0.00128924
0.00143888
0.00158449
0.00171906
0.00184039
0.00194862
0.00204483
0.00213043
0.00220684
0.00227535
0.00233712
0.00239316
0.00244434
0.0024914
0.002535
0.0025757
0.00261398
0.00265021
0.00268464
0.00271745
0.00274879
0.00277891
0.00280825
0.00283728
0.00286616
0.00289427
0.00292009
0.0029419
0.0029597
0.00297682
0.00300086
0.00167216
0.00115502
0.000935645
0.000881923
0.000952654
0.00111407
0.00132901
0.00157225
0.00182767
0.00208378
0.00233258
0.00256924
0.00279156
0.00299891
0.00319145
0.00336989
0.00353513
0.00368814
0.00382985
0.00396111
0.00408272
0.00419542
0.00429988
0.00439672
0.00448655
0.00457001
0.00464782
0.00472081
0.00478975
0.00485511
0.00491678
0.00497396
0.00502596
0.00507232
0.00511915
0.000899348
0.00064097
0.000578386
0.000559797
0.000555861
0.000558361
0.000563504
0.000569644
0.000575883
0.000581801
0.00058717
0.000591813
0.000595599
0.000598431
0.000600263
0.000601103
0.000601006
0.00060007
0.000598416
0.000596177
0.000593486
0.000590461
0.00058721
0.000583817
0.000580356
0.000576882
0.000573449
0.000570108
0.00056691
0.00056389
0.000561052
0.000558283
0.000555543
0.000552132
0.000549656
0.000945481
0.000734834
0.00062375
0.000579206
0.000559405
0.000549397
0.000544013
0.000541222
0.000539978
0.000539685
0.000540011
0.000540757
0.000541806
0.000543084
0.000544539
0.000546138
0.000547851
0.000549657
0.000551538
0.000553476
0.000555459
0.000557474
0.000559507
0.000561551
0.000563597
0.000565644
0.00056769
0.000569732
0.000571753
0.000573722
0.000575607
0.000577405
0.000579167
0.000580923
0.00058327
0.00167144
0.00115179
0.0009182
0.000833424
0.000861216
0.000986376
0.0011825
0.00142176
0.00168501
0.00195832
0.00223119
0.00249643
0.00274973
0.00298886
0.00321292
0.00342188
0.00361616
0.00379658
0.00396409
0.00411973
0.00426454
0.0043995
0.00452549
0.00464323
0.00475337
0.00485657
0.00495366
0.00504568
0.00513354
0.0052175
0.00529675
0.00536964
0.0054354
0.00549552
0.00555953
0.00166997
0.00115494
0.00090376
0.000769465
0.000700449
0.000682452
0.000717166
0.000809229
0.000956629
0.00115047
0.00137928
0.00163042
0.00189093
0.00214918
0.00239602
0.002625
0.00283212
0.00301547
0.00317479
0.00331104
0.00342601
0.00352197
0.00360136
0.00366664
0.00372011
0.00376386
0.0037998
0.00382964
0.00385494
0.00387705
0.00389698
0.00391502
0.00393086
0.00394242
0.00395133
0.00166905
0.00114841
0.00089479
0.000754078
0.000668296
0.000612909
0.000576988
0.000556184
0.000550062
0.000560859
0.000592468
0.000649181
0.000734623
0.000851521
0.00100154
0.00118427
0.00139621
0.00163116
0.00188135
0.00213992
0.00240164
0.00266262
0.00292049
0.00317393
0.00342213
0.0036646
0.00390095
0.00413096
0.00435457
0.00457181
0.00478275
0.00498733
0.00518527
0.00537568
0.00555845
0.00155619
0.00106838
0.000985295
0.00104748
0.00115319
0.00126533
0.00137125
0.001467
0.00155199
0.00162692
0.00169291
0.00175109
0.00180259
0.0018485
0.00188981
0.00192734
0.00196174
0.00199355
0.00202322
0.0020511
0.00207748
0.00210255
0.00212647
0.0021493
0.00217114
0.0021921
0.00221241
0.00223233
0.00225197
0.00227103
0.00228875
0.0023041
0.00231681
0.00232799
0.00234253
0.0016086
0.00114873
0.00108972
0.00117006
0.00128746
0.00140674
0.00151693
0.00161493
0.00170143
0.00177747
0.00184454
0.00190399
0.00195694
0.00200437
0.00204716
0.00208603
0.00212153
0.00215414
0.00218419
0.00221196
0.00223769
0.00226155
0.0022837
0.00230426
0.00232335
0.00234109
0.00235767
0.00237332
0.00238831
0.00240279
0.0024167
0.00242955
0.00244114
0.00244979
0.00246363
0.00166918
0.00114768
0.000894539
0.000756321
0.000677727
0.000639023
0.000636579
0.000674727
0.000759308
0.000892356
0.00107106
0.00128973
0.00154016
0.00181209
0.00209516
0.00238072
0.00266245
0.00293621
0.00319952
0.00345103
0.00369013
0.00391671
0.00413098
0.00433332
0.00452428
0.00470452
0.00487489
0.00503641
0.00519021
0.00533719
0.0054777
0.00561134
0.00573763
0.00585668
0.00597327
0.00144197
0.00098959
0.000935079
0.000986341
0.00106003
0.00113388
0.0012019
0.00126273
0.0013165
0.0013639
0.00140568
0.00144256
0.00147533
0.00150469
0.00153121
0.00155533
0.00157739
0.00159765
0.00161629
0.00163349
0.00164939
0.00166411
0.00167777
0.00169043
0.00170215
0.00171299
0.00172309
0.00173267
0.001742
0.00175116
0.00175994
0.00176764
0.00177404
0.00177804
0.00178746
0.00166888
0.00114506
0.000890863
0.000749855
0.000663544
0.000606532
0.000566592
0.000537288
0.000514987
0.000497532
0.000483602
0.000472393
0.000463452
0.000456601
0.000451911
0.000449698
0.000450542
0.000455305
0.000465131
0.000481434
0.000505884
0.000540416
0.000587304
0.000649254
0.000729393
0.000831061
0.000957436
0.00111111
0.00129371
0.00150568
0.00174609
0.00201268
0.00230191
0.00260918
0.00292647
0.00127096
0.000836525
0.00077956
0.000808645
0.000852892
0.000897917
0.00094007
0.000978117
0.00101185
0.00104166
0.00106807
0.00109158
0.00111263
0.00113161
0.0011488
0.00116445
0.00117872
0.0011917
0.0012035
0.00121417
0.00122379
0.00123243
0.00124017
0.00124709
0.00125325
0.00125877
0.00126372
0.00126825
0.0012725
0.00127659
0.00128063
0.00128444
0.00128807
0.00129012
0.00129523
0.00107438
0.0007007
0.00066334
0.000687691
0.000721096
0.000754485
0.000785171
0.000812442
0.000836157
0.000856467
0.000873321
0.000886635
0.000896312
0.000902375
0.000905031
0.00090463
0.000901592
0.000896402
0.000889559
0.000881509
0.000872638
0.000863268
0.000853647
0.000843964
0.000834342
0.000824853
0.000815538
0.000806448
0.0007977
0.000789523
0.000782258
0.00077609
0.00077118
0.000765449
0.000760613
0.00123243
0.000840664
0.000775892
0.000781335
0.000804279
0.000831779
0.000859386
0.00088516
0.000908536
0.000929542
0.000948417
0.000965462
0.000980986
0.000995264
0.00100853
0.00102097
0.00103274
0.00104394
0.0010547
0.00106509
0.00107519
0.00108504
0.00109466
0.00110401
0.00111308
0.00112192
0.00113063
0.0011394
0.0011483
0.00115709
0.00116521
0.00117191
0.00117717
0.00118199
0.00118965
0.000750194
0.000508166
0.000456834
0.000443934
0.000442878
0.000446466
0.000451804
0.00045755
0.000463114
0.000468217
0.000472607
0.000476072
0.000478447
0.000479643
0.000479663
0.000478586
0.000476544
0.000473697
0.00047022
0.000466275
0.000462011
0.000457554
0.000453003
0.000448434
0.000443898
0.000439424
0.000435035
0.00043076
0.000426656
0.000422822
0.000419383
0.000416386
0.000413779
0.000410822
0.000407521
0.00167608
0.00118579
0.00104785
0.00111128
0.00128167
0.00149614
0.00172297
0.001945
0.00215263
0.00234111
0.00250843
0.00265395
0.00277725
0.00287907
0.0029605
0.00302318
0.00306923
0.00310105
0.00312113
0.00313187
0.0031354
0.00313358
0.00312791
0.00311961
0.00310961
0.00309863
0.00308727
0.00307608
0.00306557
0.00305618
0.00304806
0.00304056
0.00303252
0.00302051
0.003007
0.00167118
0.0011552
0.000922963
0.0008404
0.000872341
0.00100203
0.00120135
0.00144202
0.00170364
0.00197141
0.00223443
0.00248531
0.00271919
0.0029336
0.00312738
0.00330022
0.00345257
0.00358546
0.00370042
0.00379926
0.00388396
0.00395653
0.00401887
0.00407275
0.00411973
0.00416115
0.00419816
0.00423174
0.00426273
0.00429193
0.00432008
0.00434766
0.00437533
0.00440186
0.00443173
0.00166925
0.00115131
0.000898112
0.000757597
0.000672211
0.000617987
0.000584791
0.000569411
0.000572812
0.000598505
0.000650934
0.000734057
0.000850987
0.00100428
0.0011952
0.00142237
0.00168037
0.00196088
0.00225429
0.00255131
0.00284408
0.00312676
0.00339553
0.00364829
0.0038843
0.00410374
0.00430743
0.00449654
0.00467246
0.00483667
0.00499066
0.0051358
0.00527344
0.00540362
0.00552928
0.00161289
0.00114166
0.00107142
0.00114966
0.00127428
0.00140707
0.0015337
0.00164887
0.00175139
0.00184193
0.00192184
0.00199259
0.00205554
0.00211192
0.00216275
0.00220889
0.00225107
0.0022899
0.00232593
0.00235961
0.00239136
0.00242148
0.00245019
0.00247758
0.00250374
0.00252886
0.00255329
0.0025775
0.00260174
0.00262554
0.00264758
0.00266617
0.00268113
0.0026948
0.00271522
0.00158132
0.0011294
0.00107716
0.00115096
0.00125537
0.00136131
0.00145999
0.00154875
0.00162729
0.00169636
0.00175696
0.0018105
0.00185813
0.00190083
0.00193943
0.00197456
0.00200677
0.0020365
0.00206409
0.00208986
0.00211407
0.00213693
0.00215858
0.00217909
0.00219848
0.00221685
0.00223442
0.00225158
0.00226865
0.00228548
0.00230129
0.00231473
0.00232526
0.00233354
0.00234672
0.00167279
0.00117257
0.00102275
0.00107706
0.00124182
0.00145116
0.00167495
0.00189869
0.00211394
0.00231599
0.00250275
0.00267367
0.00282907
0.00296971
0.0030965
0.00321039
0.0033123
0.0034031
0.00348365
0.00355481
0.0036175
0.00367266
0.00372122
0.00376406
0.00380199
0.00383573
0.00386602
0.0038936
0.00391924
0.00394356
0.00396682
0.00398859
0.00400856
0.00402523
0.00404503
0.00165985
0.00119263
0.00112068
0.00121337
0.00136172
0.00152275
0.00167892
0.00182281
0.00195282
0.00206917
0.00217303
0.00226577
0.00234875
0.00242324
0.00249039
0.00255114
0.00260628
0.00265645
0.00270217
0.00274389
0.00278199
0.00281679
0.0028486
0.00287768
0.00290428
0.00292867
0.00295117
0.00297214
0.00299198
0.00301098
0.00302921
0.00304617
0.00306157
0.00307355
0.00308973
0.00166883
0.00114338
0.000889002
0.00074796
0.000661673
0.000604702
0.000564799
0.000535515
0.000513203
0.000495679
0.000481574
0.000470001
0.000460375
0.000452311
0.000445574
0.000440048
0.000435726
0.000432712
0.00043123
0.000431638
0.000434447
0.000440333
0.000450152
0.000464949
0.000485986
0.000514788
0.000553213
0.000603495
0.000668184
0.000749922
0.00085107
0.000973319
0.00111728
0.0012822
0.00146275
0.00116932
0.000779999
0.000740647
0.000766984
0.000803921
0.000842404
0.000878964
0.000911767
0.000940105
0.00096381
0.000982968
0.000997486
0.00100728
0.00101246
0.00101338
0.00101056
0.00100463
0.00099626
0.000986026
0.000974519
0.000962225
0.000949515
0.000936665
0.00092387
0.000911231
0.000898782
0.000886525
0.000874516
0.000862979
0.000852388
0.000843409
0.00083643
0.000831244
0.000824732
0.000815397
0.00111292
0.000739126
0.000696196
0.000715496
0.000746689
0.000780141
0.000811681
0.000839836
0.000864278
0.000884765
0.000901277
0.000913715
0.000921994
0.000926186
0.000926569
0.000923588
0.000917802
0.000909801
0.000900138
0.000889344
0.000877851
0.000865982
0.000853971
0.000841989
0.000830174
0.000818665
0.00080763
0.000797235
0.00078753
0.000778245
0.000768677
0.000757665
0.000744553
0.00072899
0.000716264
0.00167325
0.00116276
0.000970189
0.000963853
0.00108376
0.00127508
0.00150098
0.00174128
0.00198249
0.00221561
0.00243546
0.00263963
0.00282749
0.00299935
0.00315593
0.00329801
0.00342637
0.00354177
0.00364501
0.00373696
0.00381852
0.00389068
0.00395445
0.00401085
0.00406086
0.00410545
0.00414554
0.00418204
0.00421586
0.00424778
0.00427835
0.00430746
0.00433481
0.00435806
0.00438242
0.00110616
0.000722461
0.000665243
0.000672277
0.000692922
0.000716562
0.000739686
0.000760643
0.000779498
0.000796444
0.000811732
0.000825599
0.000838258
0.000849903
0.000860706
0.000870807
0.000880303
0.000889259
0.000897715
0.000905696
0.000913217
0.000920291
0.000926927
0.000933134
0.000938927
0.000944329
0.000949383
0.000954156
0.000958728
0.000963151
0.000967439
0.000971407
0.000975145
0.000977594
0.000983035
0.00166894
0.00114618
0.000892252
0.000751385
0.000665264
0.000608906
0.000570692
0.000545199
0.000530414
0.000526572
0.000535551
0.000560318
0.000604268
0.000670694
0.000762715
0.00088331
0.00103469
0.00121718
0.00142845
0.00166375
0.00191684
0.0021811
0.00245053
0.00272032
0.00298694
0.0032481
0.00350249
0.00374961
0.0039895
0.00422243
0.00444863
0.00466801
0.00488026
0.00508529
0.00528348
0.00167518
0.00117071
0.00100341
0.00103652
0.00119026
0.00139854
0.00162616
0.00185613
0.00207888
0.00228921
0.00248474
0.00266486
0.00282997
0.00298093
0.00311883
0.00324473
0.00335964
0.00346444
0.00355995
0.00364691
0.00372601
0.0037979
0.00386321
0.00392256
0.00397653
0.00402574
0.00407084
0.00411256
0.00415161
0.00418856
0.00422363
0.00425637
0.00428632
0.00431175
0.0043392
0.00166572
0.00117776
0.00107375
0.00115764
0.00131779
0.00150347
0.00169184
0.00187139
0.00203704
0.0021874
0.00232288
0.00244464
0.00255413
0.00265279
0.00274201
0.00282301
0.00289689
0.00296464
0.00302712
0.00308512
0.00313932
0.00319027
0.00323838
0.00328391
0.0033271
0.00336831
0.00340809
0.00344712
0.00348571
0.00352324
0.00355799
0.00358784
0.00361261
0.00363582
0.00366763
0.00166915
0.00114913
0.000895845
0.000755753
0.000671855
0.00062123
0.000595583
0.00059445
0.000622014
0.000684117
0.000785085
0.000926253
0.00110639
0.00132163
0.00156502
0.00182746
0.00209966
0.00237363
0.00264348
0.00290538
0.00315721
0.00339802
0.00362767
0.00384647
0.00405495
0.00425372
0.00444341
0.00462471
0.00479838
0.00496519
0.00512574
0.00528028
0.00542881
0.00557075
0.00570783
0.00164494
0.00116437
0.00107204
0.00113859
0.00126349
0.00140655
0.00154958
0.00168393
0.00180595
0.00191493
0.00201136
0.00209625
0.00217072
0.00223569
0.00229192
0.00234003
0.00238064
0.00241439
0.00244196
0.00246411
0.00248158
0.00249513
0.00250546
0.00251321
0.00251895
0.00252316
0.00252631
0.00252883
0.00253119
0.00253381
0.00253692
0.00254017
0.00254305
0.00254238
0.00254354
0.000910619
0.000615938
0.000557075
0.00054538
0.00054789
0.000555751
0.000565367
0.00057517
0.000584602
0.000593478
0.000601763
0.000609472
0.000616664
0.000623423
0.000629836
0.000635982
0.00064192
0.000647694
0.000653334
0.000658858
0.000664275
0.000669583
0.000674773
0.00067983
0.000684744
0.000689516
0.000694169
0.000698741
0.000703254
0.00070766
0.000711833
0.000715548
0.000718757
0.000721396
0.000724802
0.00166897
0.00114731
0.000893537
0.000752658
0.000666328
0.000609305
0.000569482
0.00054058
0.000519228
0.000503699
0.000493337
0.000488317
0.000489545
0.000498594
0.000517624
0.000549247
0.000596434
0.000662549
0.000751426
0.000867111
0.00101316
0.00119175
0.00140306
0.00164507
0.00191379
0.00220392
0.00250946
0.00282441
0.00314349
0.00346238
0.00377783
0.00408749
0.00438959
0.00468243
0.00496357
0.00166904
0.00114705
0.000893239
0.00075306
0.000669324
0.000619113
0.000594273
0.000594532
0.00062413
0.000688529
0.000791155
0.000932477
0.0011111
0.00132368
0.00156415
0.00182434
0.00209579
0.00237133
0.00264573
0.00291548
0.00317834
0.00343285
0.00367801
0.00391321
0.00413817
0.00435294
0.00455786
0.00475355
0.0049407
0.00511996
0.00529158
0.00545537
0.00561099
0.00575872
0.00590109
0.00166959
0.00114796
0.000898047
0.000771448
0.000719971
0.000732844
0.000810539
0.000949025
0.00113749
0.00136425
0.00161809
0.00188774
0.00216315
0.00243675
0.00270353
0.00296048
0.00320595
0.00343908
0.0036596
0.00386761
0.00406349
0.00424779
0.00442112
0.00458409
0.00473736
0.00488161
0.00501763
0.00514622
0.00526828
0.00538436
0.0054944
0.00559775
0.00569395
0.00578346
0.00587155
0.00160678
0.0011441
0.00108416
0.001167
0.00128918
0.00141462
0.00153163
0.00163686
0.0017302
0.00181243
0.00188498
0.00194908
0.0020059
0.00205663
0.00210236
0.00214393
0.00218199
0.00221708
0.00224965
0.00228002
0.00230848
0.00233523
0.00236041
0.00238412
0.00240646
0.00242753
0.00244754
0.00246675
0.00248538
0.00250347
0.00252066
0.00253612
0.00254936
0.00255975
0.00257319
0.000887694
0.000603342
0.00054417
0.000530265
0.00053044
0.000536538
0.000544839
0.000553697
0.000562292
0.000570267
0.000577493
0.000583892
0.000589399
0.000593964
0.000597562
0.00060019
0.000601883
0.000602709
0.000602763
0.000602159
0.000601011
0.000599434
0.000597532
0.000595395
0.0005931
0.000590715
0.000588304
0.00058593
0.000583661
0.00058154
0.000579576
0.000577631
0.000575625
0.00057274
0.000570668
0.00167676
0.00118728
0.00105341
0.00112567
0.0013039
0.00152156
0.00174804
0.0019678
0.00217224
0.0023568
0.00251952
0.00266
0.00277795
0.00287388
0.00294896
0.00300501
0.00304436
0.00306962
0.00308342
0.00308823
0.00308623
0.00307927
0.00306885
0.00305614
0.00304202
0.00302717
0.00301217
0.00299756
0.00298384
0.0029714
0.00296026
0.00294957
0.00293795
0.00292194
0.0029044
0.00165953
0.00120229
0.00113902
0.0012313
0.00137366
0.00152723
0.0016757
0.0018115
0.00193197
0.0020378
0.00212989
0.0022091
0.00227613
0.00233164
0.00237634
0.00241104
0.00243675
0.00245461
0.00246585
0.0024717
0.00247331
0.0024717
0.00246776
0.0024622
0.00245558
0.00244835
0.00244091
0.0024336
0.00242683
0.0024209
0.002416
0.00241165
0.00240722
0.00239917
0.00239307
0.00162297
0.00114928
0.00106651
0.00113048
0.00124395
0.00137041
0.00149447
0.00160891
0.00171118
0.00180133
0.00188019
0.00194862
0.00200739
0.00205713
0.00209841
0.0021318
0.00215795
0.00217764
0.00219175
0.00220115
0.00220671
0.00220925
0.00220948
0.00220801
0.00220534
0.00220189
0.00219802
0.00219411
0.00219052
0.00218758
0.00218543
0.00218359
0.00218135
0.00217556
0.00216995
0.00164851
0.00116703
0.00107936
0.00116375
0.00131139
0.00147723
0.00164161
0.00179566
0.00193597
0.00206209
0.00217488
0.00227569
0.00236594
0.00244704
0.00252022
0.00258662
0.0026472
0.00270282
0.00275421
0.00280205
0.00284689
0.00288919
0.00292927
0.00296734
0.00300358
0.0030383
0.00307196
0.00310516
0.00313812
0.00317024
0.00319988
0.00322513
0.00324582
0.00326534
0.0032922
0.0016727
0.00115987
0.000949323
0.00091335
0.00101035
0.00119816
0.00143338
0.00168889
0.00194852
0.00220166
0.00244162
0.0026646
0.00286854
0.00305246
0.00321602
0.00335958
0.00348395
0.00359045
0.00368073
0.00375663
0.00382009
0.00387303
0.00391722
0.00395429
0.00398565
0.00401254
0.00403604
0.00405715
0.0040768
0.00409581
0.00411466
0.00413308
0.00415028
0.00416291
0.0041747
0.001674
0.0011928
0.00108087
0.00117098
0.00135188
0.00156243
0.0017768
0.00198179
0.00216995
0.00233705
0.00248029
0.00259821
0.00269095
0.00275977
0.00280686
0.00283511
0.00284771
0.00284788
0.00283857
0.00282234
0.00280128
0.00277702
0.00275078
0.00272345
0.00269571
0.00266816
0.0026414
0.00261602
0.00259235
0.00256997
0.00254726
0.00252126
0.00248925
0.0024502
0.00241287
0.00167027
0.00115537
0.000908128
0.00078603
0.00074413
0.000773635
0.000872459
0.0010309
0.00123437
0.00146854
0.00171874
0.00197072
0.00221285
0.00243782
0.00264186
0.00282401
0.00298463
0.00312458
0.00324507
0.00334754
0.00343367
0.00350529
0.00356431
0.00361261
0.00365199
0.00368406
0.00371023
0.00373173
0.00374962
0.00376495
0.00377889
0.00379262
0.00380748
0.00382309
0.00384089
0.00166944
0.00117781
0.00106215
0.00114316
0.00130988
0.00150617
0.00170792
0.00190298
0.0020853
0.00225251
0.00240436
0.00254162
0.00266554
0.00277752
0.00287897
0.0029712
0.00305541
0.00313268
0.00320397
0.00327013
0.00333189
0.00338987
0.00344451
0.00349616
0.0035451
0.00359178
0.0036368
0.00368082
0.00372409
0.00376584
0.00380427
0.00383737
0.00386525
0.0038922
0.00392804
0.00157789
0.00110885
0.00103241
0.00109124
0.00118999
0.00129634
0.00139864
0.00149212
0.00157512
0.00164841
0.00171296
0.00176979
0.00181989
0.00186413
0.00190317
0.00193753
0.00196763
0.0019938
0.00201637
0.00203568
0.00205207
0.00206588
0.00207746
0.00208715
0.00209525
0.00210205
0.00210785
0.00211295
0.00211766
0.00212228
0.00212705
0.00213173
0.00213625
0.00213813
0.0021442
0.000890749
0.000576731
0.000528818
0.000525782
0.000535101
0.000548875
0.000563025
0.000576248
0.000588127
0.00059846
0.000607041
0.00061364
0.000618111
0.000620417
0.000620646
0.000618991
0.000615724
0.000611155
0.000605593
0.000599324
0.000592593
0.000585596
0.000578483
0.000571364
0.000564323
0.000557438
0.000550796
0.000544479
0.000538537
0.000532897
0.000527321
0.000521321
0.000514632
0.000506557
0.000500103
0.00167057
0.00115537
0.000911083
0.000796813
0.000771312
0.000827377
0.000958326
0.00114716
0.0013748
0.00162498
0.00188316
0.002137
0.00237741
0.00259861
0.00279755
0.00297322
0.00312596
0.00325702
0.0033682
0.00346155
0.00353928
0.00360356
0.00365646
0.00369989
0.00373556
0.00376496
0.00378943
0.00381021
0.00382842
0.00384508
0.00386091
0.00387597
0.00388972
0.00389958
0.00390738
0.00167012
0.00114816
0.000904318
0.000794816
0.000778173
0.000845502
0.000986958
0.0011839
0.00141861
0.00167698
0.00194673
0.00221789
0.00248344
0.00273901
0.00298218
0.00321189
0.00342793
0.00363062
0.00382053
0.00399848
0.00416534
0.004322
0.0044693
0.00460796
0.00473868
0.00486221
0.00497942
0.00509124
0.00519832
0.00530062
0.00539713
0.00548638
0.00556816
0.00564503
0.00572556
0.00167416
0.00116757
0.00097128
0.000957106
0.00107269
0.00126582
0.00149708
0.00174411
0.00199181
0.0022292
0.00244912
0.00264723
0.00282107
0.00296985
0.00309399
0.00319495
0.00327493
0.00333655
0.00338262
0.00341588
0.00343884
0.00345375
0.00346249
0.00346662
0.0034674
0.00346584
0.0034628
0.00345903
0.00345525
0.00345206
0.00344975
0.00344788
0.00344538
0.00343903
0.0034309
0.000756539
0.000509268
0.000457798
0.000446807
0.000448182
0.000453734
0.000460293
0.00046675
0.000472739
0.000478164
0.000483049
0.000487357
0.00049102
0.000493971
0.000496168
0.000497602
0.000498296
0.0004983
0.000497693
0.000496564
0.00049501
0.000493128
0.000491005
0.000488718
0.000486332
0.000483898
0.000481457
0.000479041
0.000476681
0.000474418
0.000472305
0.000470364
0.000468711
0.000466917
0.000466028
0.00167106
0.00117146
0.00103282
0.00109938
0.00127025
0.00148032
0.00169937
0.00191288
0.00211368
0.00229877
0.00246747
0.00262034
0.0027586
0.00288372
0.00299723
0.00310058
0.00319506
0.00328183
0.00336192
0.00343616
0.00350529
0.00356988
0.00363041
0.00368724
0.00374068
0.00379112
0.00383905
0.00388503
0.0039294
0.00397193
0.00401168
0.00404721
0.00407806
0.00410561
0.00413674
0.00112289
0.000798592
0.000744298
0.000742775
0.000753664
0.000768768
0.000784384
0.000799196
0.000812623
0.000824562
0.000834966
0.000843766
0.000850855
0.00085616
0.000859679
0.000861479
0.00086169
0.000860492
0.0008581
0.000854736
0.00085062
0.000845953
0.000840913
0.000835645
0.000830269
0.000824871
0.000819515
0.000814252
0.000809139
0.000804256
0.000799735
0.000795637
0.000792256
0.000788536
0.000787346
0.00167063
0.00115292
0.000914929
0.000818531
0.0008254
0.000923541
0.00109444
0.0013144
0.00156437
0.00182931
0.00209718
0.00235933
0.00261004
0.00284579
0.00306439
0.00326461
0.00344591
0.00360845
0.003753
0.00388073
0.00399319
0.00409212
0.00417928
0.00425638
0.00432499
0.00438653
0.00444229
0.00449345
0.00454116
0.0045864
0.00462997
0.00467202
0.00471227
0.00474833
0.00478313
0.00103099
0.000708492
0.000644888
0.000633685
0.000638136
0.000648527
0.00066105
0.000673877
0.00068612
0.000697544
0.000708138
0.000717943
0.000727065
0.00073563
0.000743746
0.000751498
0.000758955
0.000766166
0.000773167
0.000779985
0.000786641
0.000793147
0.000799496
0.000805666
0.000811635
0.000817407
0.000823042
0.00082864
0.000834263
0.000839819
0.00084502
0.000849421
0.000853028
0.000855921
0.000861409
0.000837932
0.000586744
0.000524634
0.000507036
0.000503929
0.000506264
0.000510675
0.000515788
0.000521022
0.000526196
0.000531211
0.000536028
0.000540651
0.000545102
0.000549413
0.000553611
0.000557713
0.000561728
0.000565657
0.000569496
0.000573235
0.000576865
0.000580374
0.00058375
0.000586984
0.000590076
0.000593039
0.000595895
0.00059867
0.000601363
0.000603939
0.000606285
0.000608391
0.000609983
0.000612371
0.00153243
0.00107259
0.00101738
0.00108799
0.00119043
0.00129376
0.00138886
0.0014738
0.00154885
0.00161495
0.00167313
0.00172445
0.00176992
0.00181044
0.00184671
0.00187929
0.00190863
0.00193507
0.0019589
0.00198035
0.00199966
0.00201706
0.00203275
0.00204691
0.0020597
0.00207127
0.0020818
0.00209159
0.00210093
0.00211003
0.0021188
0.00212666
0.00213342
0.0021376
0.00214718
0.00164669
0.00118106
0.0011111
0.00119829
0.0013395
0.00149424
0.00164542
0.00178589
0.00191321
0.00202723
0.00212862
0.00221866
0.00229891
0.00237077
0.00243533
0.00249354
0.00254616
0.00259382
0.00263705
0.0026763
0.002712
0.00274454
0.00277427
0.00280147
0.00282635
0.00284913
0.00287015
0.00288986
0.00290876
0.00292711
0.00294462
0.00296025
0.00297332
0.00298293
0.00299672
0.000884416
0.000681918
0.000578545
0.000538375
0.000520244
0.000510879
0.000505965
0.000503553
0.000502596
0.00050249
0.000502903
0.000503638
0.000504565
0.000505588
0.000506628
0.000507619
0.00050851
0.00050926
0.000509847
0.00051026
0.000510499
0.000510575
0.000510503
0.000510302
0.000509992
0.000509596
0.000509136
0.000508633
0.000508104
0.000507567
0.000507018
0.000506463
0.000505839
0.00050527
0.000504215
0.00166954
0.00114885
0.000898359
0.000768566
0.000709929
0.000710179
0.000770201
0.000889274
0.00106002
0.00127269
0.00151747
0.00178365
0.00206048
0.0023388
0.00261184
0.00287516
0.00312607
0.00336306
0.00358541
0.00379289
0.00398563
0.00416422
0.00432945
0.00448228
0.00462378
0.00475505
0.00487728
0.00499166
0.0050994
0.00520154
0.00529881
0.00539129
0.00547874
0.00556021
0.00563848
0.000963669
0.000754468
0.000643596
0.000601085
0.00058209
0.000572134
0.000566764
0.000563958
0.000562611
0.000562107
0.00056206
0.000562198
0.000562317
0.000562262
0.000561932
0.00056127
0.000560256
0.000558904
0.000557246
0.000555329
0.000553205
0.000550925
0.000548537
0.000546083
0.000543598
0.00054111
0.000538642
0.000536216
0.000533849
0.000531567
0.00052938
0.000527322
0.000525289
0.000523573
0.000520827
0.000950595
0.000738697
0.000625819
0.000583701
0.000565251
0.0005557
0.000550643
0.000548049
0.000546852
0.000546468
0.000546531
0.00054677
0.000546986
0.000547028
0.000546793
0.000546221
0.000545296
0.000544029
0.000542456
0.000540624
0.000538588
0.000536398
0.000534104
0.000531745
0.000529359
0.000526974
0.000524617
0.000522307
0.00052006
0.00051788
0.000515751
0.000513676
0.000511544
0.000509714
0.00050694
0.000956851
0.000654767
0.000590355
0.000576346
0.000578005
0.00058555
0.000595122
0.000605059
0.00061471
0.000623856
0.000632425
0.000640399
0.000647825
0.000654794
0.000661382
0.000667642
0.000673615
0.000679323
0.000684778
0.000689985
0.000694951
0.000699681
0.000704175
0.000708429
0.000712437
0.000716207
0.00071977
0.000723192
0.000726538
0.000729812
0.00073292
0.000735621
0.000737874
0.000739438
0.000742324
0.00167142
0.00117732
0.00105163
0.00113063
0.00130727
0.00151766
0.0017337
0.00194231
0.00213728
0.00231612
0.00247849
0.00262515
0.00275746
0.00287698
0.00298529
0.00308384
0.0031738
0.00325636
0.00333249
0.00340298
0.00346849
0.00352957
0.00358665
0.00364007
0.00369014
0.00373718
0.00378167
0.00382412
0.00386495
0.00390409
0.00394083
0.00397389
0.00400261
0.00402753
0.00405516
0.00114266
0.000764228
0.000712628
0.000721198
0.000741118
0.000763896
0.000786488
0.000807558
0.00082646
0.000843072
0.000857421
0.000869512
0.000879333
0.000886884
0.000892223
0.000895466
0.000896798
0.000896453
0.000894702
0.000891819
0.000888067
0.00088368
0.00087886
0.000873767
0.000868533
0.00086326
0.000858043
0.000852975
0.000848156
0.000843659
0.000839522
0.000835522
0.000831654
0.000826204
0.000823573
0.00108313
0.000708862
0.000648588
0.000647312
0.00065982
0.000676772
0.000694587
0.00071168
0.000727335
0.0007413
0.000753559
0.000764114
0.000772947
0.000780051
0.00078545
0.000789204
0.000791425
0.00079227
0.000791926
0.000790597
0.000788484
0.000785771
0.000782622
0.000779176
0.000775545
0.000771823
0.000768099
0.000764461
0.000761004
0.000757794
0.000754861
0.000752001
0.000749153
0.000744899
0.000742648
0.00166887
0.00114486
0.000890485
0.0007494
0.000663066
0.000606046
0.000566101
0.000536792
0.000514489
0.000497045
0.00048316
0.000472079
0.000463448
0.000457262
0.00045388
0.000454051
0.000458944
0.000470129
0.0004895
0.000519134
0.000561178
0.00061786
0.00069159
0.000784912
0.000900146
0.00103888
0.00120154
0.00138735
0.00159439
0.00181996
0.00206091
0.00231397
0.00257592
0.00284365
0.00311238
0.00107797
0.000706116
0.000655111
0.00066359
0.000685412
0.000709991
0.000733956
0.000756171
0.000776364
0.0007946
0.000811036
0.000825841
0.000839252
0.000851514
0.000862831
0.00087335
0.000883182
0.000892402
0.000901061
0.000909197
0.00091684
0.000924021
0.000930763
0.000937079
0.000942973
0.000948465
0.00095361
0.000958515
0.000963296
0.00096799
0.00097249
0.00097642
0.000979773
0.000981771
0.000986983
0.0016696
0.0011537
0.000901244
0.000762453
0.000681854
0.000638896
0.000628442
0.000653238
0.000718754
0.000828649
0.000983172
0.00118018
0.00141485
0.00167854
0.00195934
0.00224437
0.00252213
0.00278396
0.00302441
0.00324091
0.00343305
0.00360192
0.00374949
0.00387811
0.00399031
0.00408849
0.00417487
0.00425143
0.00431993
0.00438194
0.00443894
0.00449231
0.00454361
0.00459282
0.00464319
0.00093382
0.000586718
0.000539109
0.000544147
0.000561312
0.000581233
0.000600635
0.000618633
0.000635008
0.000649809
0.00066315
0.000675179
0.000686085
0.000696055
0.000705244
0.000713765
0.000721701
0.000729107
0.000736017
0.000742456
0.000748447
0.000754016
0.000759186
0.000763974
0.000768395
0.00077247
0.000776246
0.000779804
0.000783238
0.000786596
0.000789831
0.000792676
0.000795194
0.000796534
0.000801016
0.00154007
0.00106745
0.000997316
0.00105904
0.00115464
0.00125301
0.00134474
0.00142711
0.00149992
0.00156397
0.00162038
0.00167023
0.00171449
0.00175398
0.00178939
0.00182125
0.00184997
0.00187586
0.00189915
0.00192007
0.00193883
0.00195562
0.00197062
0.00198401
0.00199599
0.00200672
0.00201641
0.00202529
0.00203363
0.00204165
0.0020495
0.00205696
0.002064
0.00206874
0.00207726
0.000912109
0.000699755
0.00059708
0.000558208
0.000540927
0.000532073
0.00052732
0.000524889
0.00052385
0.000523685
0.000524102
0.000524917
0.000526013
0.000527316
0.000528775
0.000530347
0.000531995
0.000533687
0.000535395
0.000537093
0.000538764
0.000540391
0.000541962
0.000543469
0.000544905
0.000546269
0.000547566
0.000548802
0.000549983
0.000551107
0.000552155
0.000553115
0.000553965
0.00055477
0.000555458
0.00153847
0.00106808
0.000994352
0.00104369
0.00112534
0.00121216
0.0012948
0.00136968
0.0014357
0.00149324
0.00154308
0.00158589
0.00162217
0.00165235
0.00167682
0.00169596
0.00171025
0.00172023
0.00172651
0.00172971
0.00173044
0.00172925
0.00172662
0.00172296
0.0017186
0.00171382
0.00170887
0.00170399
0.00169947
0.00169554
0.00169229
0.00168928
0.00168604
0.00167951
0.00167522
0.00159928
0.00115368
0.00110308
0.00117531
0.00127881
0.00138486
0.00148423
0.00157395
0.0016535
0.00172357
0.00178523
0.00183974
0.00188826
0.00193176
0.00197109
0.0020069
0.00203975
0.0020701
0.00209833
0.00212475
0.00214967
0.00217328
0.00219574
0.00221708
0.00223735
0.00225664
0.00227524
0.00229355
0.00231187
0.00232993
0.00234672
0.00236073
0.00237156
0.00238047
0.00239508
0.00167176
0.00115353
0.000933288
0.000879324
0.000951973
0.00111767
0.00133735
0.00158452
0.00184291
0.00210087
0.00235051
0.00258726
0.00280912
0.00301556
0.00320689
0.00338406
0.00354814
0.00370023
0.00384137
0.00397252
0.00409457
0.0042083
0.00431438
0.00441344
0.00450601
0.00459271
0.00467423
0.00475136
0.00482475
0.00489455
0.00496021
0.00502054
0.00507496
0.00512418
0.00517571
0.00167251
0.001164
0.000959731
0.000932976
0.00103694
0.00122381
0.00145285
0.00169952
0.00194668
0.00218125
0.00239365
0.00257732
0.00273028
0.00285299
0.00294741
0.00301654
0.00306387
0.00309301
0.00310739
0.00311011
0.00310386
0.00309091
0.0030731
0.00305187
0.00302825
0.00300292
0.00297636
0.00294913
0.00292212
0.00289685
0.00287536
0.00285925
0.00284804
0.0028359
0.00281322
0.00167295
0.00116556
0.000965143
0.000946106
0.00105924
0.00125233
0.00148365
0.00172967
0.0019744
0.00220571
0.00241481
0.00259552
0.00274577
0.00286605
0.00295831
0.0030255
0.00307112
0.00309873
0.00311178
0.00311334
0.00310609
0.00309222
0.00307349
0.00305135
0.00302687
0.00300112
0.00297506
0.00294956
0.00292513
0.00290137
0.00287653
0.00284754
0.00281175
0.00276936
0.00272971
0.00163961
0.00116234
0.00108293
0.00117044
0.00131595
0.0014751
0.00162956
0.00177205
0.00190043
0.00201481
0.0021163
0.00220626
0.00228624
0.00235769
0.00242187
0.00248002
0.00253311
0.0025819
0.00262705
0.00266906
0.00270838
0.00274533
0.00278015
0.00281302
0.00284409
0.00287353
0.00290164
0.00292879
0.00295524
0.00298084
0.00300489
0.00302619
0.00304414
0.00305919
0.00307701
0.0016718
0.00115879
0.000929793
0.000853952
0.000897236
0.00103943
0.00124779
0.00149278
0.00175382
0.00201495
0.00226414
0.00249334
0.00269783
0.00287553
0.00302633
0.00315153
0.00325334
0.00333444
0.00339772
0.003446
0.00348191
0.00350783
0.00352582
0.00353762
0.00354468
0.00354823
0.00354931
0.00354885
0.00354773
0.00354668
0.00354605
0.00354541
0.00354371
0.00353791
0.00353018
0.00164521
0.00116393
0.00107557
0.0011537
0.00129253
0.00144793
0.00160101
0.00174381
0.00187349
0.00198978
0.00209353
0.00218604
0.00226871
0.00234287
0.00240974
0.00247039
0.00252577
0.00257665
0.00262376
0.00266768
0.00270893
0.00274789
0.00278485
0.00281998
0.00285349
0.00288569
0.00291705
0.00294801
0.0029786
0.00300799
0.00303456
0.00305675
0.0030751
0.00309379
0.00312098
0.000911061
0.000614665
0.000554496
0.000541814
0.000542796
0.00054938
0.000558081
0.000567291
0.000576264
0.000584733
0.000592639
0.000599986
0.000606826
0.000613214
0.000619198
0.000624808
0.000630056
0.000634944
0.000639465
0.000643618
0.000647403
0.000650829
0.000653909
0.000656663
0.000659113
0.000661292
0.000663239
0.000665002
0.000666643
0.00066821
0.000669738
0.000671149
0.000672469
0.00067308
0.000674857
0.00166922
0.00114784
0.000894983
0.000757745
0.000681511
0.000647418
0.000652273
0.000699182
0.000790669
0.000925509
0.00110036
0.00131096
0.00155101
0.00181207
0.00208515
0.00236225
0.00263716
0.00290547
0.00316432
0.00341196
0.00364741
0.00387035
0.00408087
0.00427929
0.00446615
0.00464214
0.00480811
0.00496503
0.00511395
0.00525578
0.00539108
0.00551987
0.00564191
0.00575691
0.00586786
0.00167201
0.00118437
0.00106797
0.00114143
0.00129686
0.00148285
0.00167683
0.00186635
0.0020447
0.00220882
0.00235774
0.00249151
0.00261069
0.00271602
0.00280835
0.00288854
0.00295748
0.0030161
0.00306539
0.00310642
0.00314026
0.00316802
0.00319073
0.00320937
0.00322478
0.00323768
0.00324867
0.00325831
0.0032671
0.00327553
0.00328398
0.00329249
0.00330127
0.00330839
0.00331984
0.00167283
0.0011623
0.000969661
0.0009648
0.00108907
0.00128512
0.00151388
0.00175566
0.00199826
0.00223334
0.00245581
0.00266295
0.00285363
0.0030277
0.0031855
0.00332768
0.00345499
0.00356828
0.00366851
0.00375671
0.00383406
0.00390177
0.00396109
0.00401319
0.00405919
0.00410005
0.0041367
0.00417003
0.00420092
0.00423011
0.00425807
0.00428465
0.00430973
0.00433175
0.00435662
0.00166891
0.00114596
0.000891945
0.000751011
0.000664697
0.000607669
0.000567734
0.000538486
0.000516349
0.000499255
0.000486034
0.000476111
0.000469374
0.000466118
0.000467046
0.000473262
0.000486279
0.000507989
0.000540657
0.00058697
0.000650133
0.000733874
0.00084216
0.000978612
0.00114581
0.00134476
0.00157462
0.00183276
0.00211512
0.00241676
0.00273239
0.0030569
0.00338555
0.003714
0.00403642
0.000667524
0.000493462
0.000417688
0.000391764
0.000379964
0.000373689
0.000370325
0.000368586
0.00036777
0.000367468
0.000367382
0.000367301
0.000367071
0.000366588
0.000365797
0.000364684
0.000363268
0.000361589
0.000359694
0.000357635
0.00035546
0.000353216
0.000350936
0.000348645
0.000346365
0.000344112
0.000341899
0.000339745
0.000337671
0.000335704
0.000333847
0.000332104
0.000330311
0.000328688
0.000325919
0.000667533
0.000493363
0.000417647
0.000391826
0.000380097
0.000373867
0.000370528
0.000368798
0.000367981
0.000367676
0.000367585
0.000367499
0.000367264
0.000366778
0.000365984
0.000364869
0.000363452
0.000361772
0.000359877
0.000357817
0.000355642
0.000353395
0.000351112
0.000348819
0.000346541
0.0003443
0.000342112
0.000339986
0.000337917
0.000335883
0.000333845
0.000331809
0.000329732
0.000328118
0.000326016
0.000992555
0.000619134
0.00056725
0.000579549
0.000607185
0.000637686
0.000666694
0.000692934
0.00071634
0.000737096
0.000755586
0.00077214
0.000787021
0.000800457
0.000812631
0.000823681
0.000833706
0.00084278
0.000850961
0.000858303
0.000864863
0.000870707
0.000875904
0.000880518
0.00088461
0.000888238
0.000891475
0.000894425
0.000897204
0.000899901
0.000902526
0.000904874
0.000906925
0.000907929
0.00091082
0.000684591
0.000511246
0.000434258
0.000407619
0.00039561
0.000389292
0.000385922
0.000384183
0.00038336
0.000383039
0.000382937
0.000382847
0.000382612
0.000382126
0.00038133
0.000380208
0.000378777
0.000377073
0.000375149
0.000373052
0.000370833
0.000368537
0.000366199
0.000363849
0.000361514
0.000359215
0.000356971
0.000354791
0.000352671
0.000350592
0.000348511
0.000346426
0.000344282
0.000342573
0.000340334
0.000680769
0.000509557
0.000432706
0.000405662
0.000393342
0.000386816
0.00038333
0.000381547
0.000380728
0.000380428
0.000380357
0.000380296
0.000380086
0.000379619
0.000378839
0.000377729
0.000376308
0.000374615
0.000372698
0.000370612
0.000368405
0.000366122
0.000363798
0.000361463
0.000359139
0.00035684
0.000354582
0.000352381
0.000350259
0.000348243
0.000346343
0.000344566
0.000342755
0.000341125
0.000338347
0.00128862
0.000841526
0.000774656
0.000801086
0.000847881
0.000896936
0.000943191
0.000984982
0.00102205
0.00105477
0.00108372
0.00110948
0.00113255
0.00115341
0.00117249
0.00119011
0.00120657
0.00122208
0.00123683
0.00125098
0.00126465
0.00127794
0.00129087
0.00130345
0.00131571
0.00132774
0.0013397
0.00135177
0.00136392
0.00137577
0.00138651
0.00139539
0.00140255
0.00140996
0.0014209
0.00129095
0.000837147
0.00076892
0.000797183
0.000845229
0.000894431
0.000940273
0.000981537
0.00101815
0.00105052
0.00107919
0.0011047
0.00112753
0.00114816
0.00116701
0.00118442
0.00120067
0.00121598
0.00123055
0.00124453
0.00125803
0.00127113
0.00128385
0.00129622
0.00130826
0.00132003
0.00133168
0.00134334
0.00135497
0.00136623
0.00137647
0.00138505
0.00139218
0.00139935
0.0014095
0.00167677
0.00119154
0.00108051
0.0011675
0.00133981
0.00154001
0.00174435
0.00194112
0.00212482
0.00229322
0.00244637
0.00258512
0.00271067
0.00282437
0.00292753
0.00302133
0.0031068
0.00318482
0.00325615
0.00332141
0.00338119
0.00343597
0.00348619
0.00353225
0.00357452
0.0036134
0.00364934
0.00368288
0.00371455
0.00374472
0.0037734
0.00379995
0.00382383
0.00384352
0.00386592
0.00150322
0.00102121
0.000942518
0.00099263
0.00107632
0.00116348
0.00124513
0.00131867
0.00138379
0.00144114
0.00149169
0.00153641
0.00157621
0.00161185
0.00164409
0.00167353
0.00170067
0.00172592
0.00174962
0.00177205
0.00179346
0.00181399
0.00183376
0.0018528
0.0018712
0.00188909
0.00190674
0.00192438
0.001942
0.00195902
0.0019744
0.0019871
0.00199742
0.00200802
0.00202362
0.000909856
0.00070222
0.000598037
0.000557652
0.000539609
0.000530331
0.00052529
0.000522666
0.0005215
0.000521232
0.000521551
0.000522276
0.000523292
0.00052453
0.000525941
0.000527483
0.000529125
0.000530838
0.000532597
0.000534381
0.000536173
0.000537958
0.000539723
0.000541456
0.000543149
0.000544798
0.000546406
0.000547976
0.000549506
0.000550982
0.000552375
0.000553667
0.000554861
0.000555989
0.000557314
0.000751575
0.000498284
0.000446504
0.000431899
0.000429636
0.000433033
0.000438827
0.000445438
0.000452038
0.000458274
0.000464033
0.000469254
0.000473891
0.000477913
0.000481296
0.000484024
0.000486098
0.000487547
0.000488417
0.00048877
0.000488679
0.000488219
0.00048746
0.00048647
0.000485308
0.00048403
0.000482689
0.000481342
0.000480045
0.000478836
0.000477721
0.000476586
0.000475347
0.000473381
0.00047191
0.00149786
0.00101676
0.000941229
0.000993756
0.00107829
0.00116524
0.00124625
0.00131908
0.00138355
0.00144035
0.00149041
0.0015347
0.00157412
0.00160945
0.00164142
0.00167061
0.00169753
0.00172258
0.00174609
0.00176836
0.00178961
0.00180999
0.0018296
0.00184849
0.00186673
0.00188446
0.00190193
0.00191937
0.00193674
0.00195349
0.0019686
0.00198108
0.00199125
0.00200165
0.0020167
0.00166917
0.00114676
0.000893634
0.000756494
0.000680795
0.000648092
0.000656087
0.000709196
0.000811041
0.000960422
0.00115283
0.00138198
0.00163933
0.00191468
0.00219819
0.00248194
0.00276038
0.00303002
0.00328895
0.00353631
0.00377188
0.00399587
0.00420871
0.00441089
0.00460295
0.00478553
0.00495942
0.00512555
0.00528473
0.00543727
0.00558268
0.00571982
0.00584819
0.00596936
0.00608928
0.00126332
0.00083087
0.000777546
0.000816491
0.000870301
0.000921715
0.000967125
0.00100638
0.00104026
0.00106968
0.00109528
0.00111748
0.00113656
0.00115269
0.00116601
0.00117667
0.00118484
0.00119073
0.00119461
0.00119675
0.00119743
0.00119695
0.00119556
0.00119352
0.00119101
0.0011882
0.00118522
0.00118217
0.00117916
0.00117631
0.00117375
0.0011715
0.00116993
0.00116769
0.00116903
0.00167742
0.00117423
0.00101175
0.00105364
0.00121792
0.00143688
0.00167575
0.00191792
0.00215325
0.00237584
0.00258266
0.002773
0.00294733
0.00310666
0.00325224
0.00338535
0.0035073
0.00361933
0.00372257
0.00381809
0.00390685
0.00398968
0.00406723
0.00414002
0.00420844
0.00427301
0.00433444
0.00439362
0.00445111
0.00450656
0.00455838
0.00460437
0.00464414
0.00468068
0.00472616
0.00166042
0.0011848
0.00109858
0.00118527
0.00133529
0.00150419
0.00167273
0.00183194
0.00197822
0.00211056
0.00222927
0.00233512
0.00242906
0.00251205
0.00258497
0.00264865
0.00270387
0.00275134
0.00279181
0.00282601
0.00285472
0.00287871
0.00289874
0.00291549
0.00292959
0.00294156
0.00295188
0.00296099
0.00296935
0.00297738
0.00298537
0.0029932
0.00300098
0.00300675
0.00301691
0.0016701
0.00115534
0.000904154
0.000768258
0.000695273
0.000669173
0.000689986
0.000762873
0.000889163
0.00106389
0.00127927
0.00152579
0.00179038
0.00205811
0.00231502
0.00255045
0.00275787
0.00293457
0.00308076
0.00319855
0.0032911
0.00336194
0.00341463
0.00345242
0.00347822
0.00349455
0.00350363
0.00350738
0.00350748
0.00350518
0.00350105
0.00349473
0.00348506
0.00347029
0.00345209
0.0016701
0.00115533
0.000904246
0.000768658
0.000696342
0.000671419
0.00069379
0.000767922
0.000894166
0.00106711
0.00127926
0.0015215
0.00178137
0.00204442
0.0022973
0.00252979
0.00273554
0.00291185
0.00305875
0.00317808
0.00327274
0.00334602
0.00340127
0.00344164
0.00346994
0.00348856
0.0034995
0.00350443
0.00350487
0.00350236
0.00349864
0.00349552
0.00349441
0.00349464
0.00349418
0.00149801
0.00103118
0.000964767
0.00101937
0.00110278
0.00118857
0.00126874
0.00134083
0.00140481
0.00146131
0.00151103
0.00155463
0.00159271
0.00162577
0.00165422
0.00167843
0.00169876
0.00171554
0.00172915
0.00173994
0.00174832
0.00175467
0.00175936
0.00176273
0.00176508
0.00176666
0.00176767
0.00176831
0.0017688
0.00176932
0.00177008
0.00177101
0.00177238
0.00177241
0.00177679
0.00166982
0.00115457
0.000902607
0.000765193
0.000688237
0.000653302
0.000657668
0.000705266
0.000799613
0.000939929
0.00112238
0.0013414
0.0015886
0.00185255
0.00212068
0.0023814
0.00262581
0.0028482
0.0030457
0.00321771
0.00336524
0.0034903
0.00359541
0.00368329
0.00375661
0.00381781
0.00386906
0.00391226
0.00394905
0.00398094
0.00400941
0.00403593
0.00406209
0.00408802
0.00411543
0.00166904
0.00114887
0.00089514
0.00075425
0.000667918
0.000611042
0.000571725
0.000544043
0.000525207
0.00051439
0.00051221
0.000520481
0.000541977
0.000580103
0.000638587
0.000721535
0.000833115
0.000977152
0.00115603
0.00136964
0.00161511
0.0018872
0.00217919
0.00248396
0.00279481
0.003106
0.00341308
0.00371288
0.00400335
0.00428344
0.00455274
0.00481121
0.00505893
0.00529549
0.00552105
0.00167066
0.00115074
0.000911889
0.000814494
0.00082099
0.00092044
0.00109366
0.00131482
0.00156399
0.00182691
0.00209269
0.00235362
0.00260489
0.00284378
0.0030688
0.00327933
0.00347537
0.00365723
0.00382536
0.00398034
0.00412284
0.00425362
0.00437352
0.00448342
0.00458423
0.00467691
0.00476246
0.00484194
0.00491639
0.00498667
0.00505322
0.00511578
0.00517387
0.00522639
0.00527781
0.00167109
0.00115436
0.000921695
0.00083727
0.000863794
0.000983443
0.00116945
0.00139636
0.00164694
0.00190808
0.00216919
0.00242235
0.00266172
0.00288394
0.00308709
0.0032702
0.00343306
0.00357646
0.00370173
0.00381051
0.00390469
0.0039862
0.0040569
0.00411854
0.00417267
0.00422069
0.00426382
0.0043032
0.0043399
0.00437487
0.00440879
0.00444165
0.00447293
0.00449984
0.00452478
0.00166904
0.0011485
0.000894755
0.000753975
0.000668107
0.000612547
0.000576289
0.000554889
0.000547794
0.000557132
0.000586747
0.000640991
0.000723656
0.000837697
0.000985054
0.00116538
0.00137533
0.00160872
0.00185804
0.00211623
0.00237789
0.00263923
0.00289798
0.00315289
0.00340321
0.0036484
0.00388801
0.00412172
0.00434935
0.00457085
0.00478618
0.00499512
0.00519728
0.00539187
0.00557942
0.000836881
0.000639199
0.000542271
0.000505672
0.000489481
0.000481042
0.000476359
0.000473853
0.000472648
0.000472271
0.000472445
0.00047301
0.000473861
0.000474927
0.000476157
0.000477512
0.000478957
0.000480461
0.000481998
0.000483542
0.000485074
0.000486577
0.000488036
0.000489443
0.000490788
0.00049207
0.000493289
0.000494447
0.000495548
0.000496592
0.000497572
0.000498487
0.000499311
0.000500084
0.000500658
0.00167027
0.00121306
0.00114818
0.00125546
0.0014217
0.00160347
0.00178166
0.00194705
0.0020959
0.00222632
0.00233764
0.00242967
0.00250279
0.00255799
0.00259683
0.00262132
0.00263369
0.00263623
0.00263112
0.00262033
0.00260551
0.00258801
0.00256887
0.0025489
0.00252863
0.00250841
0.0024884
0.00246878
0.00244982
0.00243212
0.00241664
0.00240427
0.00239558
0.00238728
0.00237937
0.00167169
0.00120701
0.00113113
0.0012345
0.00140296
0.00158954
0.0017737
0.00194466
0.00209877
0.0022346
0.00235137
0.00244884
0.00252717
0.00258706
0.00262987
0.0026575
0.00267221
0.00267639
0.00267236
0.00266221
0.00264771
0.0026303
0.00261109
0.00259089
0.00257029
0.00254976
0.00252972
0.00251059
0.00249277
0.00247642
0.00246116
0.00244559
0.00242796
0.00240487
0.00238121
0.00117117
0.000769317
0.000712816
0.000730453
0.000763613
0.000799254
0.000833379
0.000864328
0.000891957
0.000916598
0.00093859
0.000958254
0.000975943
0.00099202
0.00100678
0.00102045
0.00103319
0.00104513
0.00105637
0.00106698
0.00107701
0.00108652
0.00109554
0.00110407
0.00111212
0.00111969
0.00112688
0.00113382
0.00114067
0.00114742
0.00115383
0.00115936
0.00116389
0.00116695
0.00117331
0.00161529
0.00117097
0.00112494
0.00121422
0.00133875
0.00146654
0.0015857
0.00169244
0.00178598
0.00186623
0.00193317
0.00198681
0.00202744
0.00205577
0.00207298
0.00208053
0.00208009
0.0020733
0.00206171
0.00204669
0.00202936
0.00201063
0.00199118
0.00197152
0.00195196
0.00193266
0.00191366
0.00189505
0.00187711
0.00186047
0.00184613
0.00183492
0.00182714
0.00181878
0.0018095
0.00161428
0.00116556
0.00111409
0.00120015
0.00132476
0.00145386
0.00157399
0.00168109
0.00177465
0.00185492
0.00192196
0.00197588
0.00201698
0.00204588
0.00206363
0.00207162
0.00207147
0.00206485
0.00205334
0.00203834
0.00202102
0.00200227
0.00198278
0.00196303
0.00194335
0.00192404
0.00190539
0.00188772
0.00187132
0.00185615
0.00184159
0.00182607
0.00180799
0.00178442
0.00176198
0.000981082
0.000645796
0.000584574
0.000578143
0.000585952
0.000598665
0.00061286
0.000626881
0.00064001
0.000652061
0.000663107
0.000673261
0.000682647
0.000691393
0.000699621
0.000707435
0.00071492
0.000722146
0.000729175
0.000736056
0.000742831
0.000749523
0.000756134
0.000762651
0.000769067
0.000775407
0.000781749
0.000788181
0.000794716
0.000801166
0.000807147
0.000812237
0.0008165
0.000820791
0.000826901
0.00084067
0.000640891
0.000543629
0.000507051
0.000490735
0.0004822
0.000477503
0.000474998
0.000473811
0.000473451
0.000473645
0.000474231
0.000475102
0.000476186
0.000477429
0.000478789
0.000480228
0.000481712
0.000483211
0.0004847
0.000486157
0.000487565
0.000488911
0.000490187
0.000491388
0.000492512
0.000493564
0.000494548
0.00049547
0.000496337
0.000497142
0.000497889
0.000498546
0.000499164
0.000499513
0.00112147
0.000731672
0.000679003
0.000691228
0.000716858
0.000746543
0.000776261
0.000804095
0.000829056
0.000851076
0.000870453
0.000887369
0.000901952
0.000914298
0.00092449
0.000932606
0.000938759
0.000943109
0.000945853
0.000947213
0.000947416
0.000946685
0.000945225
0.000943215
0.00094081
0.000938145
0.000935352
0.000932568
0.000929943
0.000927584
0.000925523
0.00092348
0.000921185
0.000917041
0.000913515
0.00151498
0.00103155
0.000954083
0.00101251
0.00110835
0.00120816
0.00130132
0.00138481
0.00145847
0.00152314
0.00157993
0.00162978
0.0016739
0.00171327
0.00174875
0.00178105
0.00181072
0.00183822
0.00186393
0.00188814
0.00191108
0.00193292
0.00195375
0.00197365
0.00199266
0.00201088
0.00202848
0.00204569
0.00206264
0.00207917
0.00209468
0.00210824
0.00211947
0.00212879
0.00214053
0.00166894
0.00114672
0.000892741
0.000751794
0.0006655
0.000608654
0.000569276
0.000541326
0.000521821
0.00050961
0.000504827
0.000508636
0.000523018
0.000550538
0.000594075
0.000656704
0.000741705
0.000852343
0.000991093
0.00115867
0.0013535
0.00157187
0.00180869
0.0020585
0.00231627
0.00257798
0.00284082
0.00310306
0.00336384
0.00362274
0.00387952
0.00413382
0.00438497
0.00463195
0.00487271
0.00087504
0.000673426
0.000571712
0.000531539
0.000513755
0.000504804
0.000500016
0.000497561
0.000496496
0.000496289
0.000496638
0.000497367
0.000498368
0.000499571
0.000500932
0.000502418
0.000504006
0.000505675
0.000507408
0.000509191
0.00051101
0.000512854
0.000514712
0.000516572
0.00051843
0.00052028
0.000522122
0.000523951
0.000525755
0.000527511
0.000529191
0.000530787
0.000532335
0.000533843
0.000535875
0.000848258
0.000647139
0.000549634
0.000511684
0.000494779
0.000486235
0.000481664
0.000479331
0.000478327
0.000478137
0.000478474
0.000479174
0.000480138
0.000481301
0.000482619
0.000484063
0.000485606
0.000487231
0.00048892
0.000490661
0.000492441
0.000494249
0.000496076
0.000497912
0.000499753
0.000501596
0.000503444
0.000505293
0.000507128
0.000508923
0.000510643
0.00051228
0.000513885
0.00051548
0.000517681
0.00166991
0.00114813
0.000899961
0.000777743
0.00073635
0.000768356
0.000874043
0.00104378
0.00126074
0.00151014
0.00177993
0.00205952
0.00234021
0.00261561
0.00288143
0.00313512
0.00337527
0.00360167
0.00381454
0.00401439
0.00420195
0.00437803
0.00454344
0.0046989
0.0048451
0.00498275
0.00511273
0.0052361
0.00535381
0.00546625
0.00557279
0.00567202
0.00576334
0.00584825
0.00593556
0.00166974
0.00115414
0.000902044
0.000764196
0.000686169
0.000649106
0.000650083
0.000693494
0.000783901
0.000921341
0.00110198
0.00131971
0.00156575
0.00182859
0.00209596
0.00235701
0.00260351
0.00283016
0.00303418
0.0032148
0.0033727
0.00350946
0.00362719
0.0037282
0.00381482
0.00388927
0.0039536
0.00400972
0.00405936
0.0041041
0.00414524
0.00418347
0.0042189
0.00424977
0.00427752
0.000828248
0.000630061
0.000534354
0.000497343
0.000481036
0.000472841
0.000468468
0.000466243
0.000465299
0.000465149
0.000465519
0.000466246
0.000467223
0.000468386
0.000469693
0.000471115
0.000472631
0.00047422
0.000475866
0.000477555
0.000479275
0.000481013
0.000482758
0.000484501
0.000486234
0.000487953
0.000489656
0.000491339
0.000492994
0.000494603
0.000496141
0.000497598
0.000498996
0.000500331
0.000502059
0.000670824
0.000461275
0.000408313
0.000391572
0.000387406
0.000388342
0.000391172
0.000394612
0.000398139
0.000401464
0.000404363
0.000406636
0.000408135
0.000408777
0.000408547
0.000407489
0.000405695
0.000403286
0.000400392
0.000397142
0.000393648
0.000390006
0.000386291
0.000382562
0.000378863
0.000375236
0.000371722
0.00036836
0.000365172
0.00036213
0.000359139
0.000356012
0.000352619
0.000348807
0.000345315
0.000889572
0.000602744
0.000548164
0.000538073
0.000540491
0.000547831
0.000556848
0.000565971
0.000574496
0.000582115
0.00058856
0.000593578
0.000596977
0.000598664
0.000598676
0.000597148
0.000594284
0.000590324
0.000585512
0.000580078
0.000574228
0.000568132
0.000561926
0.000555709
0.000549548
0.000543479
0.000537524
0.000531721
0.000526152
0.000520965
0.000516354
0.000512397
0.000509041
0.000505132
0.000500859
0.00095245
0.000751678
0.000642738
0.000600098
0.000581115
0.000571306
0.000566023
0.000563217
0.00056184
0.000561312
0.000561274
0.000561483
0.000561754
0.000561939
0.000561935
0.000561672
0.000561116
0.00056026
0.00055912
0.000557728
0.000556123
0.000554349
0.00055245
0.000550464
0.000548425
0.000546363
0.000544302
0.000542263
0.000540263
0.000538325
0.000536456
0.000534694
0.000532957
0.00053152
0.00052922
0.000842827
0.000512202
0.000461906
0.000460788
0.000472335
0.000487617
0.000502987
0.000517398
0.000530579
0.000542528
0.000553339
0.000563138
0.000572055
0.000580217
0.00058773
0.000594668
0.000601087
0.000607021
0.000612491
0.000617516
0.000622117
0.000626317
0.000630145
0.000633625
0.000636779
0.000639635
0.000642233
0.000644643
0.000646941
0.000649178
0.000651336
0.000653236
0.000654915
0.00065572
0.00065856
0.000875459
0.000678364
0.000574021
0.000534578
0.000517028
0.000507906
0.000503012
0.000500471
0.000499292
0.000498916
0.000499005
0.000499322
0.000499689
0.000499968
0.000500059
0.000499897
0.00049945
0.000498715
0.00049771
0.000496469
0.000495031
0.000493438
0.000491731
0.000489946
0.000488116
0.000486269
0.000484427
0.000482612
0.000480837
0.000479114
0.00047743
0.000475796
0.000474111
0.000472684
0.000470342
0.00166285
0.00118701
0.00110424
0.00119561
0.00134998
0.00152278
0.00169477
0.00185677
0.00200499
0.00213858
0.00225804
0.00236445
0.0024596
0.00254501
0.00262198
0.00269152
0.00275454
0.00281176
0.00286384
0.00291133
0.00295475
0.00299456
0.00303115
0.00306483
0.00309582
0.00312438
0.0031509
0.00317592
0.00319999
0.00322332
0.00324544
0.00326507
0.00328142
0.00329406
0.00331128
0.0014963
0.00103201
0.000971845
0.00103409
0.00112585
0.0012191
0.0013056
0.0013832
0.00145192
0.00151249
0.00156587
0.00161291
0.0016544
0.00169101
0.00172326
0.00175161
0.00177642
0.001798
0.00181665
0.00183266
0.0018463
0.00185789
0.00186771
0.00187604
0.00188313
0.00188918
0.00189442
0.00189905
0.00190333
0.00190747
0.00191162
0.00191557
0.00191936
0.00192142
0.00192721
0.000961268
0.00064608
0.000579144
0.000565666
0.000568347
0.000577136
0.000588104
0.000599393
0.000610202
0.000620255
0.000629582
0.000638247
0.000646337
0.000653948
0.000661172
0.000668087
0.000674758
0.000681236
0.000687568
0.000693792
0.000699938
0.000706025
0.00071205
0.000717998
0.000723857
0.000729647
0.000735435
0.000741302
0.000747264
0.000753159
0.000758647
0.000763341
0.000767274
0.00077118
0.00077656
0.00164289
0.00116957
0.00108993
0.00116981
0.00130476
0.00145311
0.00159737
0.00173068
0.00185103
0.00195854
0.00205423
0.00213941
0.00221537
0.0022833
0.00234425
0.00239907
0.00244844
0.0024929
0.00253291
0.00256888
0.00260117
0.00263013
0.00265608
0.00267936
0.00270025
0.00271906
0.00273613
0.00275182
0.00276652
0.00278058
0.00279416
0.00280699
0.0028189
0.00282785
0.00284061
0.00167157
0.0011541
0.000928386
0.000860978
0.000913716
0.00105944
0.00126304
0.00149873
0.00175072
0.00200726
0.00225947
0.0025014
0.00273015
0.00294422
0.00314303
0.00332654
0.00349499
0.00364876
0.00378841
0.00391462
0.00402827
0.00413035
0.00422196
0.00430422
0.00437827
0.00444522
0.00450615
0.00456214
0.00461425
0.00466339
0.00471018
0.00475456
0.00479624
0.00483321
0.00487055
0.00167635
0.00118259
0.00105042
0.00112243
0.00129804
0.00151361
0.0017395
0.00196081
0.00216968
0.00236263
0.00253877
0.00269861
0.00284342
0.00297467
0.0030938
0.00320214
0.00330092
0.00339122
0.003474
0.00355016
0.00362051
0.00368574
0.00374641
0.00380294
0.00385565
0.00390493
0.00395138
0.00399576
0.00403869
0.0040801
0.00411886
0.00415307
0.00418198
0.00420722
0.00423847
0.00167406
0.00116778
0.000972659
0.000963208
0.00108561
0.00128315
0.00151441
0.00175761
0.00199838
0.00222606
0.00243436
0.00261934
0.00277879
0.00291212
0.00302011
0.00310466
0.00316841
0.00321432
0.00324544
0.00326462
0.00327444
0.0032771
0.00327443
0.00326789
0.00325866
0.00324767
0.00323572
0.00322354
0.00321182
0.00320104
0.00319125
0.00318156
0.00317044
0.00315468
0.00313681
0.000993867
0.000676304
0.000615954
0.000608543
0.000615012
0.000625964
0.000637906
0.000649347
0.000660028
0.000669905
0.000678948
0.000687134
0.000694432
0.000700802
0.000706213
0.00071065
0.000714121
0.000716664
0.000718343
0.000719246
0.000719475
0.00071914
0.000718354
0.000717218
0.000715825
0.000714253
0.000712566
0.000710824
0.000709083
0.000707403
0.000705855
0.000704434
0.000703284
0.000701766
0.000701639
0.000927806
0.000724335
0.000616137
0.000574271
0.000555791
0.000546182
0.000540876
0.000537988
0.00053655
0.000536034
0.000536123
0.000536605
0.000537331
0.000538181
0.000539058
0.000539884
0.000540599
0.000541162
0.000541547
0.000541746
0.000541761
0.000541607
0.000541303
0.000540871
0.000540336
0.00053972
0.000539046
0.000538332
0.000537598
0.000536861
0.000536128
0.000535424
0.000534701
0.000534131
0.000533029
0.00167136
0.00115801
0.000922144
0.000827781
0.000838048
0.000939693
0.00111191
0.00133029
0.00157521
0.00182961
0.00207815
0.00230892
0.00251468
0.00269246
0.00284202
0.00296467
0.00306258
0.00313835
0.00319476
0.00323465
0.00326072
0.00327551
0.00328127
0.00327995
0.00327315
0.00326215
0.00324795
0.00323141
0.00321351
0.00319554
0.00317923
0.00316623
0.00315714
0.00314907
0.0031367
0.00167138
0.00115792
0.000920742
0.000823607
0.000829889
0.000928317
0.00109955
0.00131801
0.00156262
0.00181577
0.00206278
0.00229268
0.00249864
0.0026776
0.002829
0.0029538
0.00305386
0.00313154
0.0031895
0.00323052
0.00325733
0.00327251
0.00327835
0.00327684
0.00326969
0.00325838
0.00324428
0.00322859
0.00321232
0.00319593
0.00317898
0.00315983
0.00313637
0.00310691
0.00307565
0.00166893
0.00114628
0.000892282
0.000751349
0.000665037
0.000608074
0.000568367
0.000539692
0.000518782
0.000504075
0.000495173
0.000492606
0.000497718
0.000512547
0.000539623
0.000581746
0.000641867
0.000723108
0.000828564
0.000960653
0.00112027
0.00130635
0.00151594
0.00174489
0.00198865
0.00224296
0.00250427
0.00276997
0.0030383
0.00330808
0.00357839
0.00384824
0.00411639
0.00438135
0.00464043
0.00167234
0.00117783
0.00102947
0.00108129
0.00124183
0.00144905
0.00167287
0.00189591
0.00210661
0.00229742
0.00246285
0.00260032
0.00270981
0.00279263
0.00285121
0.00288874
0.00290874
0.00291469
0.00290977
0.00289676
0.00287795
0.00285519
0.0028299
0.00280315
0.00277559
0.00274759
0.00271931
0.00269107
0.00266358
0.00263826
0.00261715
0.00260188
0.00259202
0.00258131
0.00256012
0.00167361
0.00118239
0.00104372
0.0011104
0.00128412
0.00149875
0.00172453
0.00194587
0.0021529
0.00233933
0.00250083
0.00263478
0.00274124
0.00282148
0.00287786
0.00291349
0.00293184
0.00293636
0.00293022
0.00291618
0.00289648
0.00287287
0.00284674
0.00281912
0.00279078
0.00276242
0.00273476
0.00270849
0.00268392
0.00266046
0.00263605
0.00260724
0.00257108
0.00252753
0.00248717
0.0016645
0.00120938
0.00115229
0.00127107
0.00144738
0.00163303
0.00180961
0.00197015
0.00211227
0.00223663
0.00234442
0.00243652
0.00251363
0.00257652
0.00262613
0.00266357
0.00269021
0.00270754
0.00271713
0.00272051
0.00271911
0.00271415
0.0027067
0.00269762
0.00268755
0.00267701
0.00266633
0.00265576
0.00264551
0.00263587
0.00262726
0.00262008
0.00261513
0.00261066
0.00261104
0.00103749
0.000651796
0.00060156
0.000618652
0.000650764
0.000685104
0.000717519
0.000746787
0.000772854
0.000796016
0.000816634
0.000835035
0.000851511
0.000866296
0.000879584
0.000891523
0.000902225
0.000911776
0.000920251
0.000927722
0.000934268
0.000939976
0.000944941
0.00094925
0.000952987
0.000956229
0.000959059
0.000961588
0.000963936
0.000966209
0.00096845
0.000970482
0.000972336
0.000973079
0.000975993
0.00167323
0.00116563
0.000996681
0.00102651
0.00117378
0.00137563
0.00159992
0.0018301
0.00205556
0.00226986
0.00246975
0.00265413
0.00282318
0.00297774
0.003119
0.00324825
0.0033668
0.00347587
0.0035766
0.00367001
0.00375704
0.00383847
0.00391493
0.0039869
0.00405486
0.00411934
0.0041811
0.0042409
0.00429907
0.00435495
0.00440673
0.00445243
0.00449218
0.00453031
0.00457722
0.00167215
0.00115912
0.000934083
0.000865747
0.000918019
0.00106522
0.00127253
0.00151262
0.0017679
0.00202485
0.00227285
0.00250445
0.00271494
0.0029018
0.00306421
0.00320272
0.00331883
0.0034147
0.0034928
0.00355567
0.00360579
0.00364543
0.0036766
0.00370105
0.00372025
0.00373543
0.00374765
0.00375787
0.00376698
0.00377577
0.00378474
0.00379369
0.00380185
0.00380615
0.00380891
0.00108371
0.000707181
0.000658728
0.000673428
0.000700147
0.000729459
0.00075828
0.000784789
0.000808452
0.000829522
0.000848295
0.000865012
0.000879921
0.000893242
0.000905143
0.000915736
0.000925101
0.000933301
0.000940396
0.000946456
0.000951565
0.000955816
0.000959307
0.000962138
0.000964407
0.000966212
0.000967654
0.000968851
0.000969937
0.000971028
0.000972215
0.000973337
0.000974431
0.000973952
0.000976293
0.000806999
0.000611751
0.000517352
0.000481864
0.000465895
0.000457499
0.000452876
0.000450402
0.000449222
0.000448852
0.000449019
0.000449563
0.000450378
0.000451393
0.000452555
0.00045382
0.000455148
0.000456504
0.000457857
0.000459181
0.000460457
0.000461667
0.000462803
0.000463857
0.000464828
0.000465718
0.000466533
0.00046728
0.000467967
0.000468601
0.000469182
0.000469714
0.000470164
0.000470594
0.000470757
0.00125986
0.000824752
0.000765087
0.000795875
0.000844928
0.00089521
0.00094215
0.000984242
0.00102123
0.00105383
0.0010826
0.00110812
0.00113094
0.00115156
0.00117037
0.00118769
0.00120376
0.00121878
0.00123288
0.00124619
0.00125881
0.00127082
0.00128226
0.00129315
0.00130348
0.00131327
0.00132264
0.00133177
0.00134084
0.0013498
0.00135829
0.00136557
0.00137141
0.00137574
0.00138348
0.0016733
0.00116382
0.000969916
0.000963971
0.00108844
0.00128527
0.00151511
0.001758
0.00200094
0.00223498
0.00245462
0.00265688
0.00284015
0.0030042
0.00314922
0.0032758
0.00338487
0.0034777
0.00355583
0.00362098
0.00367494
0.00371948
0.0037563
0.0037869
0.0038126
0.00383452
0.00385358
0.00387055
0.00388612
0.00390092
0.00391552
0.00393024
0.00394557
0.00395983
0.00397838
0.00166355
0.00120478
0.00114403
0.00126267
0.00144168
0.00163215
0.00181467
0.00198134
0.00212979
0.0022604
0.00237433
0.00247258
0.00255597
0.00262527
0.00268138
0.00272531
0.00275829
0.0027817
0.002797
0.00280567
0.00280911
0.00280857
0.00280514
0.0027997
0.00279299
0.00278555
0.00277776
0.00276993
0.0027623
0.00275515
0.00274889
0.00274384
0.00274083
0.00273805
0.00274086
0.00143359
0.000964949
0.000899235
0.000946816
0.00101937
0.0010928
0.00116072
0.00122122
0.0012743
0.00132076
0.00136159
0.00139772
0.00142994
0.00145894
0.00148529
0.00150946
0.00153182
0.00155269
0.00157232
0.00159097
0.0016088
0.00162598
0.00164258
0.0016586
0.00167407
0.00168906
0.00170378
0.00171852
0.00173342
0.00174818
0.00176188
0.00177338
0.0017825
0.00179075
0.00180327
0.00155285
0.00109701
0.00104916
0.00113832
0.00125794
0.00137463
0.00147919
0.0015699
0.00164737
0.00171355
0.0017702
0.00181833
0.00185854
0.00189128
0.00191703
0.00193632
0.00194979
0.00195818
0.00196225
0.00196282
0.00196062
0.00195635
0.00195061
0.00194388
0.00193657
0.00192896
0.00192127
0.00191367
0.00190628
0.0018993
0.001893
0.0018876
0.00188375
0.00187971
0.00188083
0.00125721
0.000806634
0.00074296
0.000772776
0.000821096
0.00087067
0.000917145
0.000959043
0.000996125
0.00102881
0.00105771
0.00108343
0.00110649
0.00112735
0.00114641
0.00116401
0.00118041
0.00119584
0.00121049
0.00122452
0.00123807
0.00125123
0.00126404
0.0012765
0.00128864
0.00130051
0.0013123
0.0013242
0.00133626
0.00134814
0.00135906
0.00136816
0.00137542
0.0013826
0.00139309
0.00166939
0.00114771
0.000895762
0.000762052
0.000694395
0.000677786
0.000712801
0.000802831
0.00094577
0.0011344
0.00136041
0.0016147
0.00188721
0.00216834
0.00245019
0.00272702
0.00299501
0.00325183
0.0034963
0.00372804
0.00394711
0.00415392
0.00434898
0.0045329
0.00470626
0.00486975
0.00502419
0.00517059
0.00531
0.00544307
0.00556973
0.0056891
0.00580058
0.00590488
0.00600847
0.00167028
0.00115334
0.000908332
0.000793155
0.000766299
0.000820923
0.000951621
0.0011422
0.00137398
0.00163137
0.00190041
0.002169
0.00242759
0.00266964
0.00289184
0.00309263
0.00327183
0.00343028
0.00356946
0.00369126
0.00379766
0.00389063
0.00397203
0.00404356
0.00410679
0.0041631
0.00421374
0.00425988
0.00430263
0.00434301
0.0043818
0.0044192
0.00445482
0.00448613
0.00451482
0.00167597
0.00118075
0.00102327
0.00106549
0.00122411
0.00143499
0.00166519
0.00189694
0.00211811
0.00232067
0.00249948
0.00265148
0.00277562
0.00287261
0.00294446
0.00299407
0.00302482
0.00304015
0.00304333
0.00303723
0.00302429
0.00300647
0.00298531
0.00296198
0.00293738
0.00291226
0.00288734
0.00286329
0.00284061
0.00281923
0.0027981
0.00277489
0.00274705
0.00271257
0.0026776
0.00167379
0.00116815
0.0009735
0.00096315
0.00108308
0.00127906
0.00151093
0.001756
0.00199873
0.00222754
0.00243402
0.00261287
0.00276224
0.00288245
0.00297533
0.00304377
0.00309115
0.00312099
0.0031366
0.00314102
0.00313682
0.00312617
0.00311087
0.00309231
0.00307151
0.00304923
0.00302596
0.00300215
0.00297845
0.00295596
0.00293626
0.00292087
0.00291013
0.00290014
0.00288512
0.00166963
0.00114727
0.000897951
0.00077328
0.000726269
0.0007473
0.000836512
0.000987495
0.00118728
0.00142321
0.00168359
0.00195728
0.0022347
0.00250878
0.00277477
0.00302977
0.00327226
0.00350163
0.00371791
0.00392155
0.00411325
0.00429381
0.00446403
0.00462468
0.00477646
0.00492016
0.00505669
0.00518705
0.00531203
0.00543168
0.00554509
0.00565076
0.0057483
0.00584015
0.00593432
0.00167774
0.00117548
0.00101382
0.00105242
0.00120902
0.00142033
0.00165402
0.00189316
0.00212699
0.00234899
0.00255582
0.00274648
0.00292127
0.00308114
0.0032272
0.00336074
0.00348305
0.00359528
0.00369855
0.00379388
0.00388221
0.00396437
0.00404101
0.00411265
0.00417968
0.00424261
0.00430213
0.00435915
0.0044143
0.00446737
0.00451694
0.0045609
0.00459866
0.00463278
0.00467401
0.000889893
0.000602728
0.000543038
0.000531975
0.000534802
0.000542197
0.000550724
0.000559116
0.000567009
0.000574341
0.000581056
0.000587148
0.000592578
0.000597294
0.000601253
0.000604434
0.000606839
0.000608494
0.000609451
0.000609785
0.00060958
0.000608929
0.000607922
0.000606647
0.000605176
0.000603575
0.000601894
0.000600181
0.00059848
0.000596839
0.000595315
0.000593912
0.000592755
0.000591332
0.000591122
0.000920943
0.000713951
0.000607199
0.00056455
0.000545562
0.000535977
0.000530842
0.000528204
0.000527051
0.00052681
0.000527161
0.000527915
0.000528958
0.000530222
0.000531657
0.000533228
0.000534911
0.000536683
0.000538527
0.000540428
0.000542372
0.000544346
0.00054634
0.000548345
0.000550352
0.000552362
0.000554373
0.000556382
0.000558374
0.000560318
0.000562179
0.00056395
0.000565682
0.000567408
0.000569742
0.00167161
0.00115775
0.000928137
0.000849738
0.000886032
0.00101695
0.00121368
0.00144964
0.00170521
0.00196487
0.00221688
0.00245307
0.00266853
0.00286054
0.00302802
0.0031718
0.00329348
0.00339517
0.00347928
0.00354821
0.0036043
0.00364969
0.00368633
0.00371595
0.00374003
0.00375982
0.00377633
0.00379041
0.00380278
0.00381412
0.00382519
0.00383675
0.00384981
0.00386335
0.00388072
0.00088146
0.000588936
0.000529409
0.000516854
0.000518755
0.000526285
0.000535807
0.000545648
0.00055507
0.00056391
0.000572139
0.000579782
0.000586901
0.000593588
0.000599925
0.000605971
0.000611775
0.000617368
0.000622773
0.000628004
0.000633073
0.000637986
0.000642741
0.000647323
0.000651719
0.00065593
0.000659994
0.000663979
0.00066794
0.00067184
0.000675516
0.000678673
0.000681279
0.000683309
0.000687147
0.00167387
0.00116894
0.00100194
0.00103366
0.00118282
0.00138619
0.00161189
0.00184395
0.00207191
0.00228906
0.00249186
0.0026791
0.00285078
0.00300752
0.00315017
0.00327968
0.00339698
0.00350296
0.00359845
0.00368431
0.00376141
0.00383064
0.00389284
0.0039488
0.00399924
0.00404483
0.0040863
0.00412449
0.00416026
0.00419423
0.0042265
0.00425631
0.00428294
0.00430541
0.00433007
0.00100777
0.000678548
0.000615031
0.000604384
0.000608156
0.000617531
0.000628983
0.000640781
0.00065206
0.000662559
0.000672263
0.000681179
0.000689406
0.000697021
0.000704084
0.000710633
0.000716685
0.000722246
0.000727313
0.000731891
0.000735992
0.000739634
0.000742843
0.000745653
0.000748101
0.00075023
0.000752092
0.000753751
0.000755279
0.000756741
0.000758183
0.000759517
0.000760773
0.000761187
0.000763165
0.00123805
0.000814695
0.000756288
0.000782876
0.000826878
0.000872449
0.000915318
0.000953942
0.000988
0.00101793
0.00104442
0.00106802
0.00108922
0.00110845
0.00112609
0.00114242
0.00115768
0.00117207
0.00118576
0.00119889
0.00121159
0.00122392
0.00123594
0.00124765
0.00125902
0.00127013
0.00128111
0.00129218
0.0013034
0.00131452
0.00132485
0.00133355
0.00134054
0.00134708
0.00135655
0.000833265
0.000635277
0.000541037
0.000507741
0.000493086
0.00048555
0.000481587
0.00047957
0.00047865
0.000478316
0.000478247
0.000478202
0.000477999
0.000477508
0.000476653
0.000475407
0.000473784
0.000471825
0.000469585
0.000467127
0.000464512
0.000461792
0.000459014
0.000456216
0.000453429
0.00045068
0.000447991
0.000445379
0.000442844
0.000440369
0.000437907
0.000435446
0.000432894
0.000430767
0.000427885
0.000818238
0.000630107
0.000537409
0.000503413
0.00048812
0.000480089
0.000475794
0.000473601
0.000472614
0.000472259
0.000472188
0.000472152
0.000471962
0.000471485
0.000470647
0.000469425
0.000467834
0.000465914
0.000463722
0.000461318
0.00045876
0.000456101
0.000453385
0.000450648
0.000447917
0.000445212
0.000442551
0.000439952
0.000437439
0.000435043
0.000432778
0.000430664
0.000428541
0.000426658
0.000423532
0.00167167
0.00115884
0.000929582
0.000850972
0.000887407
0.00101783
0.00121139
0.00144114
0.00168813
0.00193665
0.0021735
0.00238877
0.0025768
0.00273594
0.00286658
0.00297048
0.00305022
0.00310878
0.00314924
0.00317462
0.00318772
0.00319104
0.00318676
0.00317669
0.00316224
0.00314447
0.0031242
0.0031022
0.00307947
0.00305751
0.00303827
0.00302342
0.00301294
0.00300231
0.00298342
0.00167199
0.00115995
0.000933498
0.000861085
0.000906563
0.00104531
0.00124412
0.00147624
0.00172325
0.00196979
0.00220338
0.00241485
0.00259888
0.00275408
0.00288102
0.00298153
0.0030582
0.003114
0.00315202
0.00317524
0.00318643
0.00318805
0.00318219
0.00317064
0.00315483
0.00313611
0.00311569
0.00309468
0.00307385
0.00305327
0.00303181
0.0030071
0.00297666
0.00293972
0.0029028
0.00160013
0.00112915
0.00105461
0.0011224
0.00123305
0.00135043
0.00146089
0.00155953
0.00164551
0.00171944
0.00178193
0.00183345
0.00187441
0.00190535
0.00192701
0.00194033
0.00194647
0.00194667
0.00194218
0.00193417
0.00192365
0.00191145
0.00189823
0.0018845
0.00187061
0.00185683
0.0018434
0.00183057
0.00181859
0.00180761
0.00179758
0.00178778
0.00177751
0.00176356
0.00175123
0.000756821
0.000568924
0.000483857
0.00045181
0.000437627
0.00043046
0.000426622
0.000424658
0.000423822
0.000423692
0.000424025
0.000424681
0.000425567
0.000426624
0.000427815
0.000429112
0.000430493
0.000431938
0.000433431
0.000434957
0.000436503
0.000438056
0.000439605
0.000441141
0.000442655
0.000444144
0.000445604
0.000447034
0.00044843
0.000449781
0.000451066
0.000452277
0.000453412
0.000454484
0.000455757
0.00167457
0.00117639
0.00103435
0.00109715
0.00126712
0.00147961
0.0017046
0.00192698
0.00213838
0.00233471
0.00251456
0.00267822
0.00282679
0.00296159
0.00308377
0.00319468
0.0032954
0.0033869
0.00347003
0.0035456
0.00361437
0.00367706
0.00373431
0.00378664
0.00383453
0.00387844
0.00391893
0.00395675
0.00399265
0.00402706
0.00405967
0.00408923
0.00411481
0.00413594
0.00416031
0.00159253
0.00112835
0.00105924
0.00113061
0.00124198
0.00135802
0.00146621
0.00156251
0.00164636
0.00171827
0.00177884
0.00182854
0.0018678
0.00189719
0.00191752
0.0019298
0.00193516
0.00193483
0.00193
0.00192177
0.0019111
0.0018988
0.00188552
0.00187175
0.00185785
0.00184404
0.00183049
0.00181727
0.00180454
0.00179255
0.00178178
0.00177263
0.00176579
0.00175885
0.00175585
0.00166904
0.00114868
0.000895044
0.000754192
0.000667876
0.000611
0.000571655
0.000543891
0.000524879
0.000513728
0.000510984
0.000518385
0.000538638
0.000575079
0.00063133
0.000711189
0.000818672
0.00095763
0.00113091
0.00133883
0.00157894
0.00184635
0.00213455
0.00243645
0.00274527
0.0030552
0.00336165
0.00366132
0.00395208
0.00423278
0.00450293
0.00476247
0.00501142
0.00524924
0.0054756
0.000883797
0.000683564
0.000582626
0.00054314
0.000525241
0.000515819
0.000510664
0.00050798
0.000506789
0.000506491
0.00050676
0.000507412
0.000508329
0.000509432
0.000510658
0.000511952
0.000513269
0.000514564
0.000515803
0.000516958
0.00051801
0.00051895
0.000519772
0.000520478
0.000521075
0.000521571
0.00052198
0.000522317
0.000522596
0.000522829
0.000523022
0.000523179
0.000523268
0.000523338
0.000523183
0.00121675
0.000809482
0.000767783
0.000801197
0.000845312
0.000888819
0.000928676
0.000963759
0.000994027
0.00101974
0.0010409
0.00105739
0.00106916
0.00107633
0.00107921
0.00107832
0.00107426
0.00106766
0.00105912
0.0010492
0.00103836
0.00102699
0.00101537
0.00100373
0.000992194
0.00098082
0.000969639
0.000958707
0.000948191
0.000938434
0.000929944
0.000923018
0.000917739
0.000911369
0.000904884
0.00120214
0.000785018
0.000736236
0.000761671
0.000801092
0.000841994
0.000879477
0.000912386
0.000940882
0.000965169
0.000985199
0.00100083
0.00101201
0.00101881
0.00102153
0.00102061
0.00101661
0.00101014
0.00100179
0.00099211
0.00098155
0.000970474
0.000959154
0.000947786
0.000936516
0.000925474
0.000914805
0.000904667
0.000895185
0.000886301
0.000877671
0.000868435
0.000857963
0.000844523
0.000833225
0.00167234
0.00117784
0.00104349
0.00110767
0.00126837
0.00146691
0.00167755
0.00188658
0.00208607
0.0022719
0.00244241
0.0025973
0.00273697
0.00286216
0.00297374
0.00307262
0.00315969
0.00323585
0.00330201
0.00335911
0.00340816
0.00345019
0.00348621
0.00351718
0.00354396
0.00356731
0.0035879
0.00360642
0.0036235
0.00363973
0.00365548
0.00367059
0.00368504
0.00369703
0.00371259
0.00160258
0.00114579
0.00108829
0.00117587
0.00130667
0.00144507
0.0015769
0.00169626
0.00180097
0.00189003
0.00196314
0.00202062
0.00206291
0.00209098
0.0021063
0.00211071
0.00210626
0.00209495
0.00207863
0.00205886
0.00203691
0.00201365
0.00198978
0.00196578
0.00194201
0.00191884
0.00189668
0.00187597
0.00185685
0.00183866
0.00181954
0.00179649
0.00176724
0.00173175
0.0017004
0.00158702
0.00112637
0.00106486
0.00114503
0.00126702
0.00139594
0.00151818
0.00162834
0.00172464
0.00180611
0.00187269
0.0019247
0.00196265
0.00198743
0.00200043
0.0020034
0.00199822
0.00198675
0.00197066
0.00195139
0.00193011
0.0019077
0.00188482
0.00186195
0.00183934
0.00181703
0.00179498
0.00177325
0.0017523
0.00173319
0.00171751
0.00170647
0.00169978
0.00169177
0.00167635
0.00132417
0.000893457
0.000846863
0.00088704
0.000940866
0.000994739
0.00104474
0.00108923
0.00112739
0.00115967
0.00118595
0.00120619
0.00122033
0.00122857
0.00123142
0.00122956
0.0012238
0.00121498
0.00120386
0.00119114
0.00117739
0.00116308
0.00114855
0.00113406
0.00111974
0.00110563
0.00109176
0.00107816
0.00106508
0.001053
0.00104264
0.00103447
0.00102844
0.00102117
0.00101172
0.001448
0.000971932
0.000902805
0.000948268
0.0010202
0.00109501
0.00116423
0.00122538
0.00127822
0.00132284
0.00135935
0.00138768
0.00140796
0.00142058
0.00142621
0.00142578
0.00142034
0.00141101
0.0013988
0.00138461
0.00136917
0.00135304
0.00133661
0.00132016
0.00130392
0.00128806
0.00127284
0.00125852
0.00124524
0.00123276
0.00122022
0.00120599
0.00118876
0.00116704
0.00114797
0.00166964
0.00115022
0.000900086
0.000770702
0.000713376
0.000716942
0.000783326
0.000911409
0.00109132
0.00131096
0.00155912
0.00182482
0.00209779
0.00236957
0.00263384
0.00288613
0.0031236
0.00334471
0.00354891
0.00373644
0.00390812
0.00406509
0.00420873
0.00434045
0.00446161
0.00457349
0.00467728
0.00477413
0.00486516
0.00495141
0.00503372
0.00511242
0.00518778
0.00525878
0.00532973
0.00108731
0.000736892
0.000691774
0.000701294
0.000721104
0.000743355
0.000764609
0.000783864
0.000800767
0.000815554
0.000828363
0.000839227
0.000848095
0.000854919
0.000859714
0.000862561
0.000863605
0.000863046
0.00086112
0.000858077
0.000854163
0.000849605
0.000844601
0.00083932
0.000833895
0.000828427
0.000822989
0.000817641
0.000812441
0.000807475
0.00080288
0.000798726
0.000795314
0.000791613
0.000790048
0.00167229
0.00115798
0.000950166
0.000919219
0.00101805
0.0012007
0.0014267
0.00167327
0.00192647
0.00217631
0.00241612
0.00264209
0.00285242
0.00304653
0.00322456
0.00338701
0.00353455
0.00366797
0.00378811
0.00389591
0.00399241
0.00407872
0.00415593
0.00422512
0.00428729
0.00434338
0.00439432
0.00444109
0.00448468
0.0045259
0.0045651
0.00460185
0.00463573
0.00466547
0.00469774
0.00167111
0.00115588
0.000921956
0.000834533
0.000858838
0.00098031
0.0011723
0.00140637
0.00166246
0.00192549
0.00218377
0.00242912
0.0026562
0.00286185
0.00304459
0.00320445
0.00334248
0.00346038
0.00356021
0.0036442
0.00371457
0.00377344
0.00382276
0.00386429
0.00389957
0.00392991
0.00395639
0.00397993
0.0040013
0.00402124
0.00404052
0.00405982
0.00408003
0.00410021
0.00412401
0.00166885
0.00114404
0.000889627
0.000748556
0.000662251
0.000605264
0.00056535
0.000536066
0.000513774
0.000496308
0.000482331
0.00047101
0.000461845
0.000454586
0.000449191
0.000445824
0.000444862
0.000446917
0.000452856
0.000463816
0.000481198
0.00050668
0.000542241
0.000590203
0.000653214
0.000734046
0.000835202
0.000958446
0.00110445
0.00127268
0.00146144
0.0016682
0.00188979
0.00212269
0.0023606
0.00142643
0.000963626
0.000900903
0.000946669
0.00101393
0.00108065
0.00114126
0.00119438
0.00124086
0.00128159
0.00131751
0.00134942
0.00137794
0.00140365
0.00142702
0.00144843
0.00146819
0.0014865
0.00150354
0.00151942
0.00153425
0.00154808
0.00156099
0.00157302
0.00158423
0.00159467
0.00160444
0.00161367
0.00162254
0.00163114
0.00163947
0.00164718
0.0016543
0.00165922
0.00166935
0.00167454
0.00117676
0.00102987
0.00108232
0.00123722
0.00143442
0.00164759
0.00186196
0.00206806
0.00226076
0.00243758
0.00259761
0.0027408
0.00286759
0.00297865
0.00307482
0.00315707
0.00322652
0.00328443
0.00333217
0.00337115
0.0034028
0.00342845
0.0034493
0.0034664
0.00348065
0.00349276
0.00350337
0.00351305
0.00352233
0.00353169
0.00354127
0.00355144
0.00356025
0.00357358
0.0010485
0.000668294
0.000630742
0.000654297
0.000688037
0.000723297
0.000756582
0.000786352
0.000812045
0.000833466
0.00085061
0.000863432
0.000871897
0.000876127
0.000876451
0.000873362
0.000867455
0.000859331
0.000849577
0.000838713
0.000827169
0.00081527
0.000803273
0.000791354
0.000779596
0.000768003
0.000756565
0.000745352
0.000734635
0.000724956
0.000717027
0.000711184
0.000706978
0.000700946
0.000691032
0.00105842
0.000676032
0.000639067
0.000663992
0.000699001
0.000735286
0.000769395
0.000799861
0.000826162
0.000848052
0.000865569
0.000878676
0.00088734
0.000891685
0.000892043
0.000888916
0.000882911
0.00087465
0.00086473
0.000853684
0.000841944
0.000829815
0.000817548
0.000805319
0.000793275
0.00078157
0.000770395
0.00075992
0.000750157
0.000740713
0.00073068
0.00071871
0.000704181
0.00068741
0.000674592
0.00167699
0.00118913
0.00105881
0.0011317
0.00130546
0.00151788
0.00174058
0.00195775
0.00216022
0.00234307
0.00250416
0.00264259
0.00275855
0.00285285
0.00292683
0.00298239
0.00302184
0.00304767
0.00306234
0.00306823
0.00306744
0.00306174
0.00305259
0.00304117
0.00302835
0.00301478
0.0030009
0.00298704
0.0029735
0.00296069
0.0029493
0.00294001
0.00293375
0.00292866
0.00292698
0.0016671
0.00121819
0.00116682
0.00126612
0.00141264
0.00156878
0.00171937
0.00185816
0.00198317
0.00209457
0.0021935
0.00228143
0.00235988
0.00243022
0.00249364
0.00255115
0.0026036
0.00265172
0.00269614
0.00273741
0.00277601
0.00281232
0.0028466
0.00287901
0.00290965
0.00293874
0.0029667
0.00299411
0.0030213
0.00304788
0.00307245
0.00309315
0.00310964
0.00312414
0.00314609
0.00167085
0.00115094
0.000913792
0.000820598
0.000834158
0.000941997
0.00112209
0.00134758
0.0015988
0.00186173
0.00212588
0.00238404
0.00263179
0.00286679
0.00308801
0.00329516
0.00348849
0.00366845
0.00383562
0.00399062
0.00413413
0.00426685
0.0043895
0.00450281
0.00460753
0.00470446
0.00479446
0.0048785
0.00495752
0.00503222
0.00510285
0.00516893
0.00522992
0.00528502
0.00533942
0.000473467
0.000307607
0.000267367
0.000254825
0.000251798
0.000252364
0.000254286
0.000256695
0.000259261
0.000261833
0.000264341
0.000266753
0.000269057
0.000271247
0.000273321
0.000275274
0.000277102
0.000278798
0.000280356
0.000281774
0.000283052
0.000284194
0.000285209
0.000286105
0.000286891
0.000287579
0.000288183
0.000288725
0.000289228
0.000289705
0.000290155
0.000290539
0.000290847
0.00029098
0.000291342
0.00166229
0.00118247
0.00108706
0.00117522
0.00133584
0.00152094
0.00170958
0.00189102
0.00206009
0.00221455
0.00235444
0.00248038
0.00259326
0.00269415
0.00278405
0.00286389
0.00293448
0.00299659
0.00305097
0.00309832
0.0031394
0.00317498
0.0032058
0.00323256
0.0032559
0.00327638
0.00329454
0.00331094
0.00332616
0.00334068
0.00335472
0.00336794
0.00338011
0.00338964
0.00340231
0.00141612
0.000961168
0.000899573
0.000940504
0.00100168
0.00106384
0.00112203
0.00117459
0.00122105
0.00126193
0.00129799
0.00132989
0.00135826
0.00138361
0.00140634
0.00142678
0.00144512
0.00146154
0.00147617
0.00148914
0.00150056
0.00151059
0.00151935
0.00152699
0.00153364
0.00153945
0.00154456
0.00154915
0.00155343
0.00155756
0.00156169
0.00156565
0.00156946
0.00157137
0.00157666
0.000856256
0.0006567
0.000557444
0.000519052
0.000501594
0.000492537
0.000487755
0.000485383
0.000484417
0.000484284
0.000484664
0.000485368
0.000486272
0.000487287
0.000488338
0.000489364
0.000490313
0.000491146
0.000491837
0.000492373
0.000492749
0.000492973
0.000493055
0.000493012
0.000492862
0.000492624
0.000492318
0.000491965
0.000491581
0.000491182
0.000490767
0.000490344
0.00048985
0.000489409
0.000488464
0.000883476
0.000684244
0.000580272
0.000541064
0.000523623
0.000514589
0.000509782
0.00050732
0.000506222
0.000505929
0.00050611
0.000506538
0.000507046
0.000507501
0.000507801
0.000507879
0.000507696
0.00050724
0.000506522
0.000505568
0.000504412
0.000503093
0.000501649
0.000500114
0.000498521
0.000496896
0.000495266
0.00049365
0.000492064
0.000490522
0.000489014
0.000487552
0.000486035
0.000484747
0.000482501
0.000904513
0.00061883
0.000550583
0.000531575
0.000529188
0.000533536
0.000540558
0.000548406
0.000556269
0.000563824
0.00057096
0.000577663
0.000583977
0.000589964
0.000595687
0.000601204
0.000606565
0.00061181
0.000616972
0.000622077
0.000627143
0.000632174
0.000637167
0.000642111
0.000647006
0.000651874
0.000656763
0.000661714
0.000666692
0.000671528
0.000675952
0.00067974
0.000683053
0.000686644
0.000691657
0.00167178
0.00115332
0.000934513
0.000883348
0.000958371
0.00112433
0.00134319
0.00158962
0.00184751
0.00210503
0.0023541
0.00259007
0.00281083
0.00301589
0.00320569
0.00338114
0.0035434
0.00369364
0.00383303
0.00396266
0.00408355
0.00419661
0.00430259
0.00440213
0.00449585
0.00458439
0.00466858
0.00474921
0.00482675
0.00490077
0.0049699
0.00503249
0.00508861
0.00514172
0.00520101
0.000900618
0.000693057
0.000589145
0.000548802
0.000530973
0.00052197
0.000517156
0.000514708
0.000513659
0.000513461
0.000513817
0.000514557
0.00051558
0.000516818
0.000518224
0.000519764
0.000521409
0.000523138
0.000524931
0.000526774
0.000528654
0.00053056
0.000532481
0.000534408
0.000536334
0.000538257
0.00054018
0.000542104
0.000544017
0.000545894
0.000547692
0.000549394
0.000551031
0.000552628
0.00055477
0.00106524
0.000686402
0.000626475
0.000629056
0.000646282
0.000667562
0.000689187
0.000709488
0.000727803
0.000744286
0.000759159
0.000772649
0.000784982
0.000796369
0.000806989
0.000816988
0.000826482
0.000835567
0.000844326
0.000852828
0.00086113
0.000869267
0.000877248
0.000885055
0.000892673
0.00090013
0.000907521
0.000914979
0.000922552
0.00093005
0.000937009
0.000942855
0.000947571
0.000952017
0.000958424
0.0014148
0.000961363
0.000904293
0.000954668
0.00102494
0.00109341
0.00115525
0.00120976
0.00125755
0.00129945
0.00133614
0.00136816
0.00139593
0.00141975
0.0014399
0.0014566
0.00147011
0.00148071
0.00148871
0.00149444
0.00149824
0.00150046
0.00150143
0.00150144
0.00150073
0.00149952
0.00149798
0.00149626
0.00149449
0.00149284
0.00149148
0.00149039
0.00148993
0.00148851
0.00149111
0.000882988
0.000601742
0.000536481
0.000519243
0.000517577
0.000522037
0.000528901
0.000536499
0.000544101
0.00055142
0.000558328
0.000564817
0.000570919
0.000576695
0.000582212
0.000587529
0.000592692
0.000597741
0.000602707
0.000607616
0.000612483
0.000617311
0.000622096
0.000626829
0.000631507
0.000636152
0.000640804
0.000645492
0.000650184
0.000654722
0.00065887
0.000662433
0.000665561
0.000668917
0.000673616
0.00150493
0.00102259
0.000946822
0.00100228
0.00109259
0.00118665
0.00127485
0.00135424
0.00142442
0.00148613
0.00154045
0.0015885
0.00163128
0.00166964
0.00170432
0.00173595
0.00176505
0.00179206
0.00181734
0.00184122
0.00186396
0.00188575
0.00190671
0.00192689
0.00194635
0.00196524
0.00198382
0.00200245
0.00202121
0.00203961
0.00205647
0.00207044
0.00208146
0.00209207
0.00210764
0.00167029
0.00114937
0.00090624
0.000798243
0.00078485
0.000858172
0.00100809
0.00121424
0.00145686
0.00172081
0.00199375
0.00226604
0.00253116
0.00278532
0.00302649
0.00325397
0.00346775
0.00366818
0.00385577
0.00403113
0.00419494
0.00434789
0.00449066
0.00462394
0.00474838
0.00486472
0.00497375
0.00507635
0.00517338
0.00526539
0.00535238
0.00543369
0.00550882
0.00557773
0.00564632
0.00166659
0.001206
0.00114482
0.00125224
0.00141359
0.00158427
0.00174769
0.00189768
0.00203288
0.00215327
0.00226057
0.0023563
0.00244189
0.00251871
0.002588
0.00265083
0.00270809
0.00276049
0.00280864
0.002853
0.00289398
0.00293191
0.00296704
0.0029996
0.00302979
0.00305785
0.00308406
0.0031088
0.00313244
0.00315517
0.00317683
0.00319667
0.00321419
0.00322805
0.00324565
0.000888919
0.000683302
0.000584058
0.000545722
0.000528445
0.000519532
0.000514695
0.000512189
0.00051109
0.000510858
0.000511197
0.000511925
0.000512937
0.000514164
0.000515558
0.000517083
0.000518706
0.000520401
0.000522145
0.000523919
0.000525706
0.000527491
0.000529263
0.00053101
0.000532723
0.000534398
0.000536039
0.000537648
0.000539223
0.000540747
0.00054219
0.000543528
0.000544767
0.000545942
0.000547391
0.001158
0.000744788
0.00068906
0.000709081
0.000745125
0.000783321
0.000819454
0.000852234
0.000881527
0.000907596
0.000930804
0.000951465
0.000969875
0.00098629
0.00100091
0.00101389
0.00102537
0.00103544
0.0010442
0.00105175
0.00105821
0.00106369
0.00106832
0.00107222
0.0010755
0.00107826
0.00108059
0.00108261
0.00108446
0.00108624
0.00108804
0.00108971
0.00109134
0.00109184
0.00109497
0.00166901
0.0011753
0.00105271
0.00112053
0.0012739
0.001461
0.00165759
0.00185025
0.00203184
0.0021993
0.00235188
0.0024901
0.00261505
0.00272807
0.00283052
0.00292371
0.00300882
0.00308693
0.00315899
0.00322586
0.00328828
0.00334684
0.003402
0.00345409
0.00350343
0.00355049
0.00359589
0.00364024
0.00368367
0.00372528
0.00376325
0.00379576
0.00382338
0.00385085
0.00388803
0.00125144
0.000812551
0.000754879
0.000787021
0.000836031
0.000885761
0.00093226
0.000974145
0.00101118
0.0010438
0.00107263
0.00109829
0.0011213
0.00114212
0.00116116
0.00117874
0.00119512
0.00121054
0.00122517
0.00123919
0.00125273
0.00126588
0.00127868
0.00129113
0.00130325
0.00131509
0.00132685
0.00133873
0.00135079
0.00136268
0.00137361
0.00138266
0.00138981
0.00139683
0.00140707
0.00086954
0.000670374
0.000567969
0.000529766
0.00051288
0.000504159
0.000499542
0.000497211
0.000496215
0.000496005
0.000496262
0.000496778
0.0004974
0.000498008
0.000498507
0.000498829
0.000498929
0.000498789
0.000498411
0.000497811
0.000497015
0.000496054
0.000494962
0.000493769
0.000492506
0.000491198
0.00048987
0.000488544
0.000487234
0.000485956
0.000484701
0.00048348
0.000482199
0.000481101
0.000479149
0.00166928
0.0011492
0.000896717
0.000759289
0.000682374
0.000646994
0.000649982
0.000695098
0.000786151
0.000922857
0.00110174
0.00131771
0.00156339
0.00182924
0.00210519
0.00238243
0.00265427
0.00291613
0.00316518
0.00339984
0.00361963
0.00382485
0.00401631
0.00419501
0.0043621
0.00451872
0.00466603
0.00480516
0.00493723
0.00506329
0.00518416
0.00530021
0.00541138
0.0055166
0.00561768
0.00167408
0.00117179
0.00101768
0.00106907
0.00123652
0.00145277
0.00168456
0.0019155
0.00213633
0.00234233
0.00253171
0.00270453
0.00286177
0.00300475
0.00313476
0.00325306
0.00336082
0.00345906
0.00354872
0.00363069
0.00370577
0.00377471
0.00383812
0.00389655
0.00395044
0.00400022
0.00404647
0.00408998
0.00413149
0.00417132
0.00420891
0.0042428
0.00427205
0.00429683
0.0043253
0.00167395
0.00116738
0.000968552
0.000953066
0.00107271
0.00127611
0.00151917
0.00177576
0.00202901
0.00226803
0.0024865
0.00268018
0.00284767
0.00298891
0.00310485
0.00319736
0.00326899
0.00332263
0.00336122
0.00338753
0.00340406
0.00341298
0.0034161
0.00341496
0.00341075
0.0034044
0.00339664
0.00338798
0.00337892
0.00337006
0.00336222
0.00335632
0.00335337
0.0033521
0.00335349
0.00136648
0.000925648
0.00086716
0.000901981
0.000954467
0.00100833
0.00105925
0.0011055
0.00114631
0.0011822
0.0012139
0.00124195
0.00126687
0.00128907
0.00130891
0.00132661
0.00134235
0.00135627
0.00136849
0.00137912
0.0013883
0.00139616
0.00140286
0.00140853
0.00141332
0.00141737
0.00142083
0.00142386
0.00142667
0.00142941
0.00143223
0.00143496
0.00143762
0.00143835
0.00144264
0.00167311
0.00116027
0.000960486
0.000943133
0.00105342
0.00123841
0.00145935
0.00169607
0.00193582
0.00216985
0.00239281
0.00260188
0.00279605
0.00297536
0.00314027
0.00329148
0.00342973
0.00355576
0.00367031
0.0037741
0.00386792
0.00395255
0.00402882
0.00409756
0.0041596
0.00421577
0.00426695
0.00431402
0.00435788
0.00439928
0.00443862
0.00447563
0.00450986
0.0045394
0.00456984
0.00166919
0.00114693
0.000893839
0.000756197
0.000679133
0.000643731
0.000647298
0.000694352
0.000789186
0.000930928
0.00111469
0.00133423
0.00158196
0.00184894
0.00212629
0.0024065
0.0026839
0.00295459
0.00321615
0.00346719
0.0037071
0.0039358
0.00415347
0.00436045
0.00455714
0.00474405
0.00492188
0.00509149
0.00525376
0.00540914
0.0055573
0.00569726
0.00582851
0.00595233
0.00607488
0.0016689
0.0011455
0.000891487
0.000750562
0.000664263
0.000607293
0.000567522
0.00053866
0.000517327
0.000501777
0.00049132
0.000486065
0.000486797
0.000494905
0.000512271
0.000541151
0.000584087
0.000643919
0.000723801
0.000826915
0.000955796
0.00111156
0.00129346
0.00149892
0.001724
0.00196412
0.00221481
0.0024722
0.00273333
0.00299611
0.00325911
0.00352123
0.00378143
0.00403872
0.00429062
0.000819046
0.000625336
0.000532361
0.000497181
0.000481513
0.000473351
0.000468867
0.0004665
0.000465395
0.000465085
0.000465308
0.000465908
0.000466782
0.000467862
0.000469098
0.000470449
0.000471881
0.000473362
0.000474865
0.000476365
0.000477842
0.00047928
0.000480666
0.000481989
0.000483245
0.000484431
0.000485549
0.000486604
0.0004876
0.000488541
0.000489421
0.00049024
0.000490968
0.000491649
0.000492106
0.00106578
0.000750614
0.00069547
0.000689338
0.000695602
0.000706933
0.000719611
0.000732032
0.000743574
0.000753972
0.000763054
0.000770671
0.000776676
0.000780975
0.00078356
0.000784503
0.000783941
0.000782059
0.000779075
0.00077521
0.000770678
0.000765671
0.000760356
0.000754868
0.000749314
0.000743771
0.000738292
0.000732926
0.000727725
0.000722774
0.0007182
0.000714069
0.000710598
0.000706843
0.000704762
0.00165519
0.00118043
0.00109481
0.00117331
0.00131065
0.00146497
0.00161803
0.00176149
0.00189198
0.00200896
0.00211309
0.00220558
0.00228772
0.0023607
0.0024255
0.00248294
0.00253365
0.00257818
0.00261705
0.00265077
0.00267987
0.00270487
0.00272629
0.00274464
0.0027604
0.002774
0.00278589
0.00279652
0.00280636
0.00281584
0.00282529
0.00283447
0.00284321
0.00284883
0.00285786
0.0015396
0.00105551
0.000977315
0.0010362
0.00113243
0.00123249
0.00132621
0.00141075
0.00148576
0.00155194
0.0016103
0.0016619
0.00170775
0.00174878
0.00178582
0.00181955
0.00185056
0.00187931
0.00190621
0.00193159
0.00195571
0.00197877
0.00200086
0.00202207
0.00204248
0.00206224
0.00208161
0.00210086
0.00211996
0.00213837
0.00215503
0.00216888
0.00218019
0.00219137
0.00220761
0.000773023
0.000507472
0.000448034
0.000432421
0.000431259
0.000435569
0.000441824
0.00044861
0.000455357
0.000461838
0.000467962
0.000473689
0.000479014
0.000483941
0.000488476
0.000492618
0.000496369
0.000499726
0.000502694
0.000505281
0.000507507
0.000509398
0.000510986
0.000512306
0.000513393
0.00051428
0.000515004
0.000515605
0.00051613
0.00051662
0.000517099
0.000517517
0.0005179
0.000517906
0.000518619
0.000938392
0.000655938
0.000591533
0.00057312
0.00057069
0.000574892
0.000581802
0.000589587
0.000597417
0.000604958
0.000612103
0.000618847
0.000625235
0.000631326
0.000637178
0.000642838
0.000648341
0.000653718
0.00065899
0.000664177
0.000669292
0.000674341
0.000679315
0.000684193
0.000688957
0.000693619
0.00069823
0.000702864
0.000707547
0.000712163
0.000716442
0.000720053
0.000723024
0.000725767
0.000730132
0.00118868
0.000764492
0.000715159
0.000743595
0.00078516
0.000827216
0.000865171
0.000898682
0.000927781
0.00095274
0.000973585
0.00099022
0.00100259
0.00101076
0.00101498
0.00101563
0.00101321
0.0010083
0.00100144
0.000993159
0.000983913
0.000974067
0.000963905
0.000953637
0.000943418
0.000933373
0.000923628
0.00091432
0.000905578
0.000897423
0.000889696
0.000881796
0.000873284
0.000862208
0.000853004
0.00167394
0.00117295
0.00102176
0.00107596
0.00124543
0.00146312
0.00169567
0.00192662
0.00214688
0.00235195
0.00254024
0.0027119
0.00286797
0.00300983
0.00313884
0.0032563
0.00336342
0.00346126
0.00355083
0.00363301
0.00370864
0.00377848
0.00384313
0.00390306
0.00395866
0.00401036
0.00405874
0.0041046
0.00414865
0.00419103
0.00423089
0.00426652
0.00429698
0.00432311
0.00435425
0.0016692
0.00115012
0.000896769
0.000756843
0.000673453
0.000623989
0.000600547
0.00060288
0.000634778
0.000700811
0.000803844
0.000944789
0.00112311
0.00133582
0.00157645
0.00183577
0.00210422
0.00237376
0.0026388
0.0028961
0.00314402
0.00338187
0.00360934
0.0038264
0.0040331
0.0042296
0.00441622
0.00459343
0.00476189
0.00492239
0.00507568
0.00522228
0.00536258
0.00549609
0.00562506
0.00166919
0.00114688
0.000893956
0.000757152
0.000682205
0.00065096
0.00066134
0.000717704
0.000823286
0.000976394
0.00117196
0.001403
0.00166038
0.00193387
0.00221418
0.0024941
0.00276869
0.00303485
0.00329077
0.00353556
0.00376895
0.00399102
0.00420203
0.00440236
0.00459244
0.00477282
0.00494425
0.00510758
0.0052636
0.00541272
0.00555467
0.00568858
0.00581406
0.00593227
0.00604896
0.000814367
0.000620591
0.000527649
0.000492445
0.000476637
0.000468375
0.000463861
0.000461479
0.000460373
0.000460067
0.000460295
0.000460897
0.000461769
0.000462842
0.000464064
0.000465391
0.000466785
0.000468214
0.000469647
0.000471058
0.000472427
0.000473737
0.000474978
0.000476142
0.000477225
0.000478229
0.000479157
0.000480018
0.000480818
0.000481564
0.000482254
0.000482891
0.000483443
0.000483962
0.000484229
0.00166634
0.00119147
0.00109942
0.0011951
0.00136379
0.00155572
0.00174936
0.00193297
0.00210008
0.00224683
0.00237064
0.00247097
0.0025482
0.00260366
0.00263955
0.00265866
0.00266401
0.00265858
0.00264504
0.00262572
0.00260248
0.00257679
0.00254975
0.00252214
0.0024944
0.0024667
0.00243908
0.00241175
0.00238535
0.00236132
0.00234167
0.00232792
0.00231945
0.00230945
0.00228849
0.00166668
0.00119127
0.00109785
0.0011922
0.00136027
0.00155258
0.00174748
0.00193283
0.00210188
0.00225059
0.00237635
0.00247843
0.00255716
0.00261386
0.00265074
0.0026706
0.00267651
0.00267146
0.0026582
0.00263906
0.00261594
0.00259025
0.00256305
0.00253512
0.00250706
0.0024794
0.00245274
0.00242767
0.00240439
0.00238212
0.00235865
0.00233042
0.00229467
0.00225199
0.00221402
0.00167396
0.00116748
0.000967887
0.000948734
0.00105903
0.00124703
0.00147272
0.00171387
0.00195455
0.00218326
0.00239205
0.00257567
0.00273137
0.00285871
0.00295899
0.00303471
0.00308899
0.00312517
0.00314649
0.00315594
0.00315614
0.00314932
0.00313729
0.00312153
0.00310317
0.0030832
0.0030625
0.0030419
0.00302209
0.00300328
0.00298482
0.00296483
0.00294092
0.00291068
0.0028786
0.00166913
0.00115001
0.000896566
0.000755796
0.000669668
0.000613434
0.00057572
0.000551449
0.000539148
0.00053984
0.000556443
0.000593123
0.000654432
0.000744656
0.000867658
0.00102654
0.00122251
0.00145363
0.00171473
0.00199831
0.00229585
0.00259921
0.00290145
0.00319731
0.00348312
0.00375666
0.00401682
0.00426334
0.00449658
0.00471732
0.00492657
0.00512531
0.00531438
0.00549343
0.00566345
0.001669
0.00114716
0.000893324
0.000752614
0.000667073
0.000612292
0.000577577
0.000558898
0.000556087
0.000571404
0.00060832
0.00067039
0.000760704
0.000881994
0.0010363
0.00122371
0.00144133
0.00168351
0.00194299
0.00221239
0.00248526
0.00275657
0.00302277
0.0032816
0.00353175
0.00377265
0.00400429
0.00422707
0.00444165
0.00464875
0.00484898
0.00504255
0.00522937
0.00540922
0.0055826
0.00167219
0.0011618
0.000948261
0.00090504
0.000992918
0.00117139
0.00139775
0.00164522
0.00189649
0.00213802
0.00235936
0.00255305
0.00271635
0.00284917
0.00295312
0.00303096
0.00308601
0.0031218
0.00314175
0.003149
0.00314634
0.00313613
0.00312034
0.00310051
0.00307777
0.00305289
0.00302642
0.00299901
0.00297164
0.00294599
0.00292427
0.00290814
0.00289696
0.00288451
0.0028603
0.00167228
0.0011621
0.00094937
0.000908029
0.000998535
0.00117906
0.0014063
0.00165376
0.00190447
0.00214516
0.00236561
0.00255848
0.00272101
0.00285312
0.00295644
0.00303369
0.00308823
0.00312356
0.00314311
0.00315004
0.00314709
0.00313659
0.00312043
0.00310015
0.003077
0.00305209
0.00302651
0.00300123
0.00297677
0.00295265
0.00292698
0.00289656
0.0028588
0.00281461
0.00277442
0.00086795
0.000665584
0.000564584
0.000525046
0.000507606
0.000498844
0.000494165
0.000491773
0.000490746
0.00049056
0.000490923
0.000491661
0.000492668
0.000493872
0.00049523
0.00049671
0.00049829
0.000499948
0.000501668
0.000503436
0.000505239
0.000507063
0.000508899
0.000510735
0.000512565
0.000514384
0.00051619
0.000517981
0.000519745
0.000521463
0.000523106
0.000524664
0.000526165
0.000527605
0.000529525
0.000872591
0.000667037
0.000574202
0.000538796
0.000522757
0.000514509
0.000510091
0.000507856
0.000506923
0.000506794
0.000507193
0.000507959
0.000508995
0.000510237
0.00051164
0.000513171
0.000514801
0.000516505
0.000518266
0.000520068
0.000521896
0.000523738
0.000525585
0.000527423
0.000529247
0.000531053
0.000532846
0.000534628
0.000536393
0.000538115
0.000539749
0.00054127
0.000542696
0.000544083
0.000545902
0.00166882
0.00114311
0.000888587
0.000747475
0.000661176
0.00060421
0.000564313
0.000535036
0.000512726
0.000495193
0.000481061
0.000469425
0.000459674
0.000451378
0.000444235
0.000438026
0.000432593
0.000427831
0.000423675
0.000420103
0.000417138
0.000414854
0.000413386
0.000412945
0.000413831
0.000416456
0.000421359
0.000429233
0.000440943
0.000457566
0.000480426
0.000511163
0.000551782
0.000604656
0.000670724
0.00141954
0.000961666
0.000895815
0.000936771
0.00100129
0.00106856
0.00113196
0.00118899
0.00123937
0.00128364
0.0013225
0.0013566
0.00138657
0.00141293
0.00143608
0.00145631
0.00147384
0.00148889
0.00150163
0.00151229
0.00152109
0.00152826
0.00153403
0.00153862
0.00154224
0.00154507
0.0015473
0.00154915
0.00155086
0.00155263
0.00155464
0.00155665
0.00155864
0.0015582
0.00156193
0.00166985
0.00114928
0.000901633
0.000780415
0.000740775
0.000774621
0.000880564
0.00104807
0.00126123
0.00150647
0.0017722
0.00204791
0.00232479
0.00259607
0.0028571
0.00310484
0.00333764
0.00355489
0.00375652
0.00394284
0.0041145
0.00427239
0.00441754
0.00455104
0.00467401
0.00478756
0.00489282
0.00499103
0.0050834
0.00517099
0.00525432
0.00533315
0.00540712
0.00547561
0.00554416
0.00116226
0.000759215
0.000698236
0.000708153
0.000733829
0.000764402
0.000795086
0.000823994
0.000850133
0.000873324
0.000893763
0.000911669
0.000927232
0.000940596
0.00095187
0.00096114
0.000968511
0.000974119
0.000978136
0.000980754
0.000982181
0.000982622
0.000982272
0.000981304
0.000979872
0.000978116
0.000976168
0.000974172
0.000972281
0.000970611
0.000969209
0.000967805
0.0009662
0.00096269
0.00096066
0.00167014
0.00115089
0.000906096
0.000792753
0.000768935
0.000826649
0.00095837
0.00114681
0.00137429
0.00162695
0.00189291
0.00216223
0.00242761
0.00268387
0.00292761
0.00315688
0.00337028
0.00356704
0.00374704
0.00391061
0.00405862
0.00419228
0.00431298
0.00442217
0.00452127
0.00461166
0.00469463
0.00477145
0.0048433
0.00491128
0.0049762
0.00503828
0.0050974
0.00515172
0.005205
0.00167669
0.00119527
0.00108016
0.00116404
0.00133994
0.0015488
0.00176414
0.00197176
0.00216436
0.00233839
0.00249241
0.00262596
0.00273919
0.00283276
0.00290778
0.00296576
0.0030086
0.00303843
0.00305746
0.00306781
0.00307143
0.00307003
0.00306501
0.00305754
0.0030485
0.00303858
0.00302825
0.00301785
0.00300768
0.00299811
0.00298967
0.00298294
0.00297882
0.00297569
0.00297685
0.00117321
0.00076904
0.000717673
0.000739095
0.000775092
0.000813161
0.000849408
0.000882501
0.000912208
0.000938731
0.000962372
0.000983412
0.00100209
0.00101864
0.00103324
0.00104603
0.00105714
0.00106668
0.00107478
0.00108156
0.00108715
0.0010917
0.00109536
0.00109828
0.00110059
0.0011024
0.00110382
0.00110497
0.00110597
0.00110695
0.00110798
0.00110898
0.00111003
0.00111004
0.00111242
0.00149706
0.00104224
0.00098357
0.001041
0.00112675
0.00121494
0.00129754
0.00137219
0.00143859
0.00149729
0.00154906
0.00159452
0.0016345
0.00166957
0.00170023
0.00172686
0.00174982
0.00176943
0.00178601
0.00179987
0.00181135
0.00182076
0.00182844
0.0018347
0.0018398
0.00184396
0.00184741
0.00185035
0.00185301
0.00185562
0.00185834
0.00186103
0.00186382
0.00186498
0.00187
0.000918761
0.000626005
0.000567335
0.00055527
0.000556604
0.000563242
0.000571823
0.000580817
0.000589644
0.000598061
0.000605942
0.000613208
0.00061982
0.000625747
0.000630965
0.00063546
0.000639231
0.000642293
0.000644679
0.00064644
0.000647638
0.00064835
0.000648652
0.000648622
0.000648329
0.000647836
0.000647198
0.000646469
0.000645704
0.00064496
0.000644288
0.00064366
0.000643177
0.000642257
0.000642574
0.00138581
0.000936527
0.000880514
0.000924107
0.000986337
0.00104777
0.00110385
0.00115359
0.00119737
0.00123586
0.00126984
0.00129994
0.00132682
0.00135105
0.00137311
0.00139341
0.00141228
0.00142998
0.00144669
0.00146255
0.00147768
0.00149214
0.00150597
0.00151917
0.00153177
0.0015438
0.00155536
0.00156657
0.00157757
0.0015883
0.00159851
0.00160763
0.00161541
0.00162137
0.00162985
0.00157031
0.00112618
0.00107266
0.00113546
0.00122695
0.00132072
0.00140852
0.00148769
0.00155783
0.00161957
0.00167394
0.00172205
0.0017649
0.00180338
0.00183823
0.00187005
0.00189932
0.00192645
0.00195178
0.00197561
0.00199819
0.0020197
0.00204026
0.0020599
0.00207864
0.00209657
0.00211398
0.00213126
0.00214864
0.00216576
0.00218157
0.00219461
0.00220461
0.00221318
0.00222735
0.000872801
0.000677881
0.000576373
0.000537693
0.000520422
0.000511489
0.000506741
0.000504316
0.000503238
0.000502951
0.000503122
0.000503522
0.000503979
0.000504356
0.000504555
0.000504509
0.000504183
0.000503573
0.000502694
0.000501576
0.000500257
0.000498779
0.00049718
0.000495498
0.000493765
0.000492008
0.000490251
0.000488516
0.000486818
0.000485169
0.000483561
0.000482004
0.000480397
0.000479023
0.000476729
0.000759709
0.000574636
0.000487902
0.000454393
0.000439435
0.00043186
0.000427803
0.000425731
0.000424839
0.000424669
0.000424968
0.000425591
0.00042645
0.000427488
0.000428666
0.000429955
0.000431334
0.000432786
0.000434295
0.00043585
0.00043744
0.000439055
0.000440687
0.000442327
0.000443971
0.000445618
0.000447269
0.000448922
0.000450564
0.000452171
0.000453711
0.000455178
0.000456615
0.000458041
0.000460022
0.000862863
0.000665491
0.000564886
0.000526228
0.000509305
0.000500583
0.000495741
0.000493136
0.00049188
0.000491487
0.000491666
0.000492246
0.000493118
0.000494211
0.000495474
0.00049687
0.000498365
0.000499932
0.000501544
0.000503181
0.000504822
0.00050645
0.000508052
0.000509614
0.000511129
0.000512591
0.000514
0.000515355
0.000516656
0.000517901
0.000519078
0.000520182
0.000521197
0.00052214
0.000523036
0.000840326
0.000644983
0.000548236
0.000510901
0.000494271
0.00048573
0.000481094
0.000478687
0.000477617
0.000477372
0.000477668
0.000478338
0.000479276
0.000480417
0.000481715
0.000483133
0.000484639
0.000486206
0.000487811
0.000489434
0.000491059
0.00049267
0.000494257
0.000495808
0.000497317
0.00049878
0.000500199
0.000501578
0.000502918
0.000504207
0.000505422
0.000506546
0.000507577
0.000508544
0.000509671
0.00166513
0.00118487
0.00109557
0.00118982
0.00135259
0.00153537
0.00171784
0.00189023
0.00204837
0.00219119
0.00231917
0.00243354
0.00253594
0.00262796
0.00271092
0.00278598
0.00285411
0.00291614
0.00297276
0.0030246
0.00307222
0.00311613
0.00315674
0.00319434
0.00322916
0.00326145
0.00329162
0.00332027
0.00334795
0.0033748
0.00340015
0.0034225
0.00344105
0.00345584
0.00347583
0.00167192
0.00118646
0.00107787
0.00115932
0.00132015
0.00150808
0.00170027
0.00188496
0.00205684
0.00221405
0.00235654
0.00248517
0.00260113
0.00270573
0.00280021
0.00288564
0.00296294
0.00303288
0.00309612
0.00315325
0.00320481
0.00325132
0.00329324
0.00333105
0.00336518
0.00339609
0.00342426
0.00345022
0.00347454
0.00349766
0.0035198
0.00354056
0.0035596
0.00357487
0.00359303
0.000818241
0.00062712
0.000533372
0.000497594
0.000481806
0.000473617
0.000469074
0.000466653
0.0004655
0.000465156
0.000465348
0.000465919
0.000466766
0.000467821
0.000469036
0.000470374
0.000471802
0.000473293
0.00047482
0.000476363
0.000477901
0.000479418
0.000480901
0.000482338
0.000483722
0.000485049
0.000486319
0.000487534
0.000488695
0.000489801
0.000490844
0.000491821
0.000492707
0.000493534
0.000494223
0.00167261
0.00115696
0.000953854
0.000933293
0.00104315
0.00123175
0.00145873
0.0017027
0.00195047
0.00219275
0.00242374
0.00264039
0.00284159
0.0030274
0.00319856
0.00335617
0.00350142
0.00363553
0.0037597
0.00387502
0.00398249
0.00408299
0.00417724
0.00426585
0.00434935
0.00442841
0.00450381
0.00457637
0.00464646
0.0047135
0.0047759
0.00483183
0.00488152
0.00492902
0.00498452
0.00132073
0.00089226
0.000840935
0.000878563
0.000932871
0.000986998
0.00103673
0.00108103
0.0011201
0.00115449
0.00118489
0.00121187
0.00123598
0.00125774
0.00127758
0.0012959
0.00131298
0.00132907
0.00134432
0.00135889
0.00137285
0.00138626
0.00139917
0.00141156
0.00142345
0.00143487
0.00144591
0.0014567
0.00146734
0.00147775
0.00148761
0.00149631
0.0015036
0.00150923
0.00151696
0.00166991
0.00115322
0.000904419
0.000777509
0.000725446
0.000738395
0.000817421
0.000958408
0.00114946
0.00137702
0.00162758
0.00188784
0.00214636
0.00239485
0.00262814
0.00284352
0.00303992
0.00321722
0.00337596
0.00351709
0.00364189
0.00375184
0.00384858
0.00393376
0.00400902
0.00407586
0.00413567
0.00418967
0.00423897
0.00428461
0.00432762
0.00436892
0.0044096
0.00444908
0.00449039
0.00156347
0.00109979
0.00104368
0.00112581
0.00124001
0.00135174
0.00145221
0.00154027
0.00161693
0.00168362
0.00174158
0.00179174
0.00183482
0.00187134
0.00190178
0.00192656
0.00194617
0.00196113
0.001972
0.00197938
0.00198386
0.00198604
0.00198642
0.00198549
0.00198362
0.00198112
0.00197825
0.0019752
0.00197215
0.0019693
0.00196692
0.00196505
0.00196427
0.00196258
0.00196669
0.00160982
0.00113514
0.00106399
0.0011415
0.00126402
0.00139351
0.00151654
0.00162849
0.00172836
0.00181674
0.00189471
0.00196359
0.00202474
0.0020794
0.00212858
0.00217309
0.00221361
0.00225068
0.00228473
0.00231614
0.00234526
0.00237237
0.00239768
0.00242132
0.00244339
0.00246401
0.00248344
0.0025021
0.00252038
0.00253831
0.00255527
0.00256996
0.00258184
0.0025906
0.00260628
0.000868376
0.000669371
0.000568397
0.000528279
0.000510458
0.00050146
0.000496628
0.000494136
0.000493041
0.000492807
0.000493132
0.000493836
0.000494814
0.000495995
0.000497335
0.000498804
0.000500374
0.000502027
0.000503746
0.000505515
0.000507323
0.000509156
0.000511005
0.00051286
0.000514713
0.000516563
0.000518408
0.000520243
0.000522056
0.000523822
0.000525511
0.000527118
0.00052868
0.000530216
0.000532293
0.000771371
0.00058366
0.000495728
0.000461846
0.00044678
0.000439174
0.000435117
0.000433061
0.000432189
0.000432042
0.000432365
0.000433013
0.000433899
0.000434964
0.000436171
0.000437489
0.000438897
0.000440377
0.000441914
0.000443497
0.000445114
0.000446756
0.000448414
0.000450081
0.00045175
0.000453422
0.000455098
0.000456777
0.000458446
0.00046008
0.000461647
0.000463137
0.000464593
0.000466034
0.000468036
0.00167015
0.00115293
0.000906998
0.00078892
0.00075635
0.000802771
0.000924918
0.00110789
0.0013327
0.00158312
0.00184565
0.00210914
0.00236509
0.00260759
0.00283287
0.00303888
0.00322488
0.00339114
0.00353866
0.00366886
0.00378344
0.00388419
0.00397291
0.00405131
0.00412098
0.00418336
0.00423969
0.00429107
0.00433851
0.00438292
0.00442521
0.00446609
0.00450643
0.00454534
0.00458658
0.000853602
0.000536892
0.000501711
0.000511077
0.000529529
0.000550617
0.000571316
0.000590184
0.000606636
0.00062044
0.000631535
0.000639786
0.000645107
0.000647536
0.000647269
0.000644627
0.000640016
0.000633858
0.000626549
0.000618452
0.000609866
0.000601038
0.000592146
0.000583316
0.000574608
0.000566034
0.000557594
0.000549344
0.000541475
0.000534356
0.000528457
0.000523966
0.000520548
0.000515719
0.000508334
0.00087559
0.00055182
0.00051783
0.000530066
0.000551161
0.000574445
0.000596847
0.000617064
0.000634654
0.000649329
0.000661107
0.000669871
0.000675536
0.000678145
0.000677903
0.000675146
0.000670302
0.000663829
0.000656144
0.000647633
0.000638608
0.000629313
0.000619924
0.000610576
0.000601377
0.000592443
0.000583909
0.000575892
0.000568395
0.000561137
0.000553488
0.000544527
0.000533898
0.000521785
0.000512777
0.00167003
0.00115426
0.00090546
0.000778752
0.000726627
0.000738398
0.000814344
0.000950978
0.00113815
0.0013634
0.00161298
0.00187228
0.00212839
0.00237228
0.00259878
0.00280574
0.00299268
0.00315987
0.00330795
0.00343789
0.00355099
0.0036488
0.00373304
0.0038055
0.00386793
0.00392198
0.00396911
0.00401062
0.00404766
0.0040813
0.00411266
0.00414281
0.00417301
0.00420287
0.00423484
0.00166932
0.00114678
0.000894736
0.000761034
0.000693573
0.000677364
0.000712957
0.00080355
0.000946748
0.00113536
0.00136127
0.00161553
0.00188814
0.00216936
0.00245111
0.00272753
0.00299485
0.00325093
0.00349482
0.00372629
0.00394558
0.00415319
0.00434973
0.00453582
0.00471212
0.00487935
0.00503838
0.00519022
0.0053357
0.005475
0.00560736
0.00573144
0.00584682
0.00595575
0.00606535
0.00162769
0.00117135
0.00111388
0.00120668
0.00134597
0.00149487
0.00163805
0.00176875
0.00188419
0.00198276
0.00206411
0.00212836
0.00217598
0.00220801
0.00222609
0.00223224
0.00222871
0.0022177
0.00220119
0.00218088
0.00215813
0.00213394
0.00210901
0.00208389
0.00205897
0.00203465
0.00201138
0.00198961
0.00196951
0.00195034
0.00193006
0.00190546
0.00187417
0.00183654
0.00180356
0.00162233
0.00116653
0.00110933
0.00119925
0.00133416
0.00147786
0.00161546
0.00174059
0.0018508
0.00194463
0.00202184
0.00208261
0.00212744
0.00215734
0.00217387
0.00217901
0.0021749
0.00216361
0.00214708
0.0021269
0.00210441
0.00208061
0.00205622
0.00203178
0.00200754
0.00198355
0.00195978
0.00193634
0.00191378
0.00189333
0.00187679
0.00186548
0.00185885
0.00185047
0.00183265
0.00166882
0.001143
0.000888437
0.000747311
0.000661011
0.000604047
0.000564154
0.000534879
0.000512571
0.000495042
0.000480913
0.000469282
0.000459537
0.000451253
0.000444127
0.000437943
0.000432547
0.000427835
0.000423742
0.000420244
0.000417354
0.000415127
0.000413667
0.000413135
0.000413761
0.000415859
0.000419844
0.000426253
0.000435774
0.000449276
0.000467849
0.000492852
0.000525941
0.000569038
0.000622872
0.00166896
0.00114726
0.000893476
0.000752595
0.00066626
0.000609222
0.000569362
0.000540383
0.000518884
0.000503094
0.000492304
0.000486615
0.000486853
0.000494521
0.000511751
0.000541218
0.000586037
0.000649752
0.000736373
0.000850147
0.000994862
0.0011729
0.00138458
0.00162786
0.00189853
0.002191
0.00249907
0.00281671
0.00313858
0.00346036
0.00377877
0.00409136
0.00439628
0.00469174
0.00497547
0.00072946
0.00054902
0.000467318
0.000436244
0.000421868
0.000414287
0.000410229
0.0004082
0.000407352
0.000407213
0.000407521
0.000408121
0.000408912
0.000409822
0.000410792
0.000411773
0.00041272
0.000413599
0.000414383
0.000415055
0.000415608
0.000416041
0.000416359
0.00041657
0.000416688
0.000416725
0.000416696
0.000416618
0.000416504
0.000416367
0.000416207
0.000416031
0.000415787
0.000415586
0.000414883
0.000807786
0.000536993
0.000474299
0.000457019
0.00045494
0.000458882
0.00046516
0.000472122
0.000479055
0.000485691
0.000491949
0.000497831
0.000503377
0.000508641
0.000513675
0.000518529
0.000523246
0.000527861
0.000532402
0.000536894
0.000541352
0.000545785
0.000550188
0.000554552
0.000558874
0.000563173
0.000567494
0.000571881
0.000576315
0.000580655
0.000584653
0.000588085
0.000591058
0.000594236
0.000598664
0.00144128
0.000979784
0.000922614
0.000984812
0.00107476
0.0011651
0.00124802
0.00132179
0.00138676
0.00144385
0.0014941
0.00153843
0.00157767
0.00161245
0.00164331
0.00167069
0.00169493
0.00171633
0.00173512
0.00175154
0.00176584
0.00177826
0.00178904
0.0017984
0.00180655
0.00181367
0.00181994
0.00182559
0.00183088
0.001836
0.00184104
0.00184571
0.00184991
0.00185232
0.00185739
0.00165411
0.0011959
0.00113067
0.0012227
0.00136735
0.00152527
0.00167919
0.00182137
0.00194841
0.00205861
0.00215126
0.00222607
0.00228342
0.00232432
0.0023504
0.00236371
0.00236647
0.0023609
0.00234904
0.00233268
0.00231328
0.00229201
0.00226974
0.00224713
0.00222457
0.00220224
0.00218022
0.00215859
0.00213769
0.00211832
0.00210176
0.00208913
0.00208074
0.00207221
0.00206061
0.00166546
0.001208
0.00114452
0.00124691
0.00140559
0.00157799
0.00174572
0.00190033
0.00203837
0.00215853
0.00226002
0.00234264
0.00240671
0.00245314
0.00248349
0.00249984
0.00250456
0.00250006
0.00248857
0.00247208
0.00245219
0.00243017
0.00240696
0.00238321
0.0023594
0.00233596
0.0023133
0.00229186
0.00227201
0.00225362
0.00223574
0.00221619
0.00219264
0.00216235
0.00213191
0.00166923
0.00114718
0.000894368
0.000758233
0.000685199
0.000658359
0.000677268
0.000747202
0.000870175
0.00104175
0.00125446
0.00149969
0.00176743
0.00204738
0.0023307
0.00261085
0.00288348
0.00314594
0.00339676
0.00363537
0.00386179
0.00407633
0.00427946
0.00447168
0.00465353
0.00482563
0.00498874
0.00514371
0.00529136
0.0054322
0.00556608
0.0056923
0.00581046
0.00592144
0.00603055
0.00166897
0.00114731
0.000893462
0.000752562
0.000666279
0.000609487
0.000570301
0.000542847
0.000524434
0.000514396
0.000513603
0.000524198
0.000549281
0.000592445
0.000657336
0.000747463
0.000866022
0.00101504
0.00119422
0.00140055
0.00162887
0.00187319
0.00212781
0.00238828
0.00265177
0.00291639
0.00318086
0.0034443
0.00370603
0.00396542
0.00422182
0.00447437
0.00472202
0.0049635
0.00519767
0.00166913
0.00114891
0.000895717
0.000755532
0.000671191
0.000619377
0.000591079
0.000584753
0.000603343
0.00065188
0.000734855
0.000854642
0.00101167
0.00120421
0.00142748
0.0016741
0.00193553
0.00220373
0.00247217
0.00273615
0.00299261
0.00323984
0.00347709
0.00370423
0.00392149
0.00412926
0.00432805
0.00451843
0.00470108
0.00487668
0.00504584
0.00520887
0.00536578
0.00551563
0.00565926
0.00089711
0.000691488
0.000588455
0.000548855
0.000531539
0.000522764
0.000517996
0.000515487
0.000514344
0.000514071
0.00051437
0.000515068
0.000516053
0.000517253
0.000518621
0.00052012
0.000521721
0.0005234
0.000525132
0.000526899
0.000528683
0.000530466
0.000532236
0.000533978
0.000535685
0.000537349
0.000538968
0.000540543
0.000542069
0.00054354
0.000544938
0.000546251
0.000547473
0.000548601
0.000549881
0.00167177
0.00115618
0.000935222
0.000878029
0.000945414
0.00110521
0.00132031
0.00156504
0.00182293
0.00208169
0.00233261
0.0025703
0.00279178
0.00299563
0.0031814
0.00334918
0.00349942
0.00363286
0.00375053
0.00385369
0.00394379
0.00402238
0.00409103
0.00415124
0.00420438
0.00425168
0.00429422
0.00433299
0.00436893
0.00440287
0.00443544
0.00446679
0.00449706
0.00452476
0.00455497
0.00166739
0.00117427
0.00105476
0.00112134
0.0012694
0.00144958
0.00163828
0.00182244
0.00199539
0.00215441
0.00229894
0.00242959
0.00254747
0.00265393
0.0027503
0.00283791
0.0029179
0.00299131
0.00305905
0.00312197
0.00318074
0.00323589
0.00328785
0.00333693
0.00338344
0.00342782
0.00347062
0.00351239
0.00355317
0.00359208
0.00362746
0.00365775
0.00368369
0.00370972
0.00374518
0.00166976
0.00114851
0.000899971
0.000776415
0.000731405
0.00075528
0.000846905
0.000997977
0.00119453
0.00142402
0.00167552
0.00193906
0.00220603
0.00247019
0.00272738
0.00297486
0.00321095
0.00343473
0.00364583
0.00384421
0.00403002
0.00420372
0.00436586
0.00451708
0.0046581
0.00478971
0.00491281
0.0050284
0.00513747
0.00524083
0.00533879
0.00543107
0.00551727
0.00559701
0.0056746
0.00154701
0.00107348
0.00100102
0.00105294
0.00113557
0.00122166
0.00130219
0.00137452
0.001438
0.001493
0.00154029
0.00158051
0.0016141
0.00164146
0.00166296
0.00167905
0.00169026
0.0016972
0.00170054
0.00170096
0.00169908
0.00169548
0.00169064
0.00168495
0.00167873
0.00167224
0.00166569
0.00165932
0.00165338
0.00164807
0.00164349
0.00163922
0.00163492
0.00162745
0.00162307
0.000795258
0.000606546
0.000515472
0.000480548
0.000464974
0.00045698
0.000452656
0.000450426
0.000449448
0.000449244
0.000449549
0.000450206
0.000451115
0.000452212
0.000453454
0.000454805
0.000456233
0.000457714
0.000459224
0.000460743
0.000462255
0.000463746
0.000465206
0.000466626
0.000467998
0.000469321
0.000470596
0.000471829
0.00047302
0.000474161
0.00047523
0.000476218
0.000477114
0.000477967
0.000478866
0.00095327
0.000742909
0.000633093
0.000590755
0.000571941
0.000562136
0.000556742
0.000553835
0.00055243
0.000551977
0.000552148
0.000552726
0.000553557
0.000554524
0.000555529
0.000556495
0.00055736
0.000558082
0.000558633
0.000559001
0.000559185
0.000559199
0.000559057
0.000558783
0.000558398
0.000557926
0.000557387
0.000556802
0.000556189
0.000555567
0.000554943
0.00055434
0.000553711
0.000553219
0.000552206
0.00084432
0.000551402
0.000487577
0.000472505
0.000473284
0.000479949
0.000488575
0.000497526
0.000506172
0.000514304
0.000521873
0.000528891
0.000535412
0.000541523
0.000547313
0.000552854
0.000558207
0.000563416
0.000568517
0.000573535
0.000578485
0.000583371
0.000588188
0.000592925
0.000597576
0.000602149
0.000606672
0.000611179
0.000615667
0.000620046
0.000624141
0.000627735
0.000630841
0.000633712
0.000637587
0.00157022
0.00110477
0.00104575
0.00112302
0.00123525
0.00134927
0.0014552
0.00155034
0.00163444
0.00170841
0.00177339
0.0018307
0.00188156
0.00192707
0.0019681
0.00200535
0.00203941
0.00207074
0.00209971
0.00212665
0.00215184
0.0021755
0.0021978
0.00221883
0.00223862
0.00225725
0.00227497
0.00229216
0.00230915
0.00232593
0.0023418
0.00235542
0.00236625
0.00237426
0.00238859
0.00100384
0.000676084
0.000615337
0.000607097
0.000613681
0.000625773
0.000639625
0.000653455
0.000666466
0.000678483
0.000689551
0.000699742
0.000709175
0.000717985
0.00072629
0.00073418
0.000741727
0.000748981
0.00075598
0.000762749
0.000769312
0.000775681
0.000781855
0.000787816
0.000793544
0.000799043
0.000804368
0.000809616
0.000814859
0.000820038
0.000824906
0.00082905
0.0008324
0.000835028
0.000839565
0.00167099
0.00115033
0.000918931
0.000840044
0.000876081
0.0010074
0.00120541
0.00144377
0.00170412
0.00197234
0.00223786
0.00249391
0.00273681
0.00296495
0.003178
0.00337633
0.00356068
0.00373201
0.00389135
0.0040398
0.00417841
0.00430815
0.00442988
0.00454432
0.00465211
0.00475399
0.00485087
0.00494378
0.00503335
0.00511927
0.00519999
0.00527346
0.00533948
0.00540179
0.00547068
0.00167073
0.00114959
0.000913478
0.000824152
0.000844397
0.000959693
0.00114543
0.00137475
0.00162912
0.00189513
0.00216229
0.00242316
0.00267309
0.00290964
0.00313182
0.00333957
0.00353339
0.00371405
0.00388248
0.00403969
0.00418669
0.00432443
0.00445376
0.0045754
0.00469003
0.0047984
0.00490141
0.00499999
0.00509476
0.00518546
0.00527076
0.00534891
0.00541972
0.0054865
0.00555882
0.00153759
0.00105663
0.000975043
0.00102311
0.00110727
0.0011983
0.00128596
0.00136624
0.00143748
0.00149988
0.00155425
0.00160138
0.00164193
0.00167642
0.0017053
0.00172892
0.0017477
0.0017621
0.00177266
0.00177994
0.00178449
0.00178684
0.00178748
0.00178682
0.00178521
0.00178295
0.00178032
0.00177761
0.00177513
0.00177312
0.00177171
0.00177047
0.00176885
0.00176407
0.0017599
0.000745573
0.000562576
0.000479098
0.000449948
0.000436901
0.000430087
0.000426463
0.000424594
0.000423718
0.00042338
0.000423275
0.000423185
0.000422943
0.000422432
0.000421586
0.000420387
0.000418851
0.000417017
0.00041494
0.000412673
0.000410271
0.000407782
0.000405245
0.000402694
0.000400157
0.000397657
0.000395216
0.000392845
0.000390541
0.000388286
0.000386033
0.000383773
0.000381436
0.000379526
0.000377022
0.00075603
0.000574114
0.000489098
0.000458669
0.000444868
0.000437587
0.000433707
0.00043173
0.000430834
0.000430515
0.000430448
0.000430396
0.000430181
0.000429683
0.000428837
0.000427626
0.000426068
0.000424204
0.00042209
0.000419785
0.000417344
0.000414814
0.000412237
0.000409646
0.000407064
0.00040451
0.000401999
0.000399549
0.000397183
0.000394932
0.00039281
0.000390834
0.000388841
0.000387059
0.000384054
0.000663194
0.000433165
0.000387791
0.000376859
0.000376771
0.000381084
0.000386921
0.00039298
0.000398648
0.000403598
0.000407659
0.000410661
0.00041247
0.000413028
0.000412369
0.000410602
0.000407893
0.00040443
0.0004004
0.000395977
0.000391308
0.000386509
0.000381666
0.000376846
0.000372105
0.000367499
0.00036309
0.000358923
0.000354987
0.00035115
0.000347147
0.000342634
0.000337535
0.000332116
0.000328141
0.000652151
0.000427325
0.00038148
0.0003695
0.000368344
0.00037173
0.000376851
0.000382375
0.000387614
0.000392244
0.000396071
0.000398909
0.00040062
0.000401146
0.00040052
0.000398846
0.00039628
0.000392997
0.000389172
0.000384974
0.000380541
0.000375989
0.000371404
0.000366846
0.00036235
0.000357927
0.000353589
0.000349372
0.000345362
0.000341711
0.000338588
0.000336021
0.000333787
0.000330891
0.000326683
0.00167096
0.00115524
0.000916625
0.000817611
0.000821761
0.000919592
0.00109263
0.00131457
0.00156471
0.00182765
0.00209034
0.00234316
0.0025797
0.00279587
0.00298965
0.00316057
0.0033093
0.0034373
0.0035465
0.00363909
0.0037173
0.00378326
0.00383895
0.00388614
0.00392638
0.00396104
0.00399131
0.00401829
0.00404301
0.0040664
0.00408912
0.00411119
0.00413203
0.00414884
0.00416375
0.00166954
0.00115222
0.000900096
0.000763758
0.000689714
0.000660865
0.000676129
0.000739985
0.000854424
0.00101613
0.00121905
0.00145534
0.00171478
0.00198588
0.00225817
0.0025236
0.00277677
0.0030145
0.00323524
0.0034385
0.00362456
0.00379421
0.00394857
0.00408895
0.00421678
0.00433346
0.00444037
0.00453881
0.00463002
0.00471518
0.00479543
0.00487174
0.00494516
0.00501513
0.0050855
0.00157415
0.00111194
0.0010528
0.00112547
0.00123015
0.00133508
0.0014313
0.00151677
0.00159202
0.00165796
0.00171604
0.00176741
0.00181309
0.00185399
0.00189095
0.00192462
0.00195554
0.00198414
0.00201072
0.00203555
0.00205883
0.00208069
0.00210126
0.00212059
0.00213877
0.00215588
0.00217207
0.00218755
0.00220254
0.00221709
0.00223101
0.00224365
0.0022547
0.00226306
0.00227528
0.00166894
0.00114593
0.000891971
0.000751109
0.000665108
0.000609151
0.00057191
0.000548452
0.000537538
0.00054049
0.000560493
0.000601739
0.000668409
0.000764037
0.000891447
0.00105229
0.00124587
0.00146842
0.00171373
0.00197453
0.00224399
0.00251655
0.0027881
0.00305577
0.00331764
0.00357245
0.00381953
0.00405866
0.00428995
0.00451358
0.00472946
0.00493717
0.00513619
0.00532665
0.00550983
0.000802154
0.000613098
0.000521032
0.000487196
0.000472571
0.000465042
0.000460915
0.000458679
0.000457586
0.000457185
0.000457217
0.000457517
0.000457959
0.000458438
0.000458869
0.000459187
0.000459345
0.000459317
0.000459096
0.000458685
0.000458103
0.000457372
0.000456517
0.000455567
0.000454546
0.000453477
0.00045238
0.000451274
0.000450173
0.000449093
0.000448042
0.000447044
0.000446053
0.000445242
0.00044395
0.000857945
0.000665668
0.000565866
0.00052761
0.000510801
0.000502083
0.000497268
0.000494634
0.000493307
0.000492808
0.000492853
0.00049325
0.00049386
0.000494572
0.000495294
0.000495956
0.000496501
0.000496892
0.000497109
0.000497147
0.000497011
0.000496717
0.000496286
0.000495739
0.000495102
0.000494395
0.00049364
0.000492855
0.000492056
0.00049126
0.000490475
0.000489724
0.000488961
0.000488355
0.000487268
0.000813731
0.000552963
0.000493164
0.000474778
0.000470833
0.00047354
0.000479106
0.000485761
0.000492554
0.000499058
0.000505104
0.000510627
0.000515594
0.000519976
0.000523751
0.000526898
0.000529412
0.000531309
0.000532625
0.000533412
0.000533734
0.000533659
0.000533257
0.000532592
0.000531726
0.000530714
0.000529614
0.000528484
0.000527389
0.000526369
0.000525438
0.00052448
0.000523419
0.000521595
0.000520441
0.00166922
0.00114855
0.000895804
0.000757565
0.000678535
0.000638529
0.000632823
0.000663975
0.000736045
0.00085043
0.00100567
0.00119881
0.00142474
0.00167577
0.00194289
0.00221733
0.00249175
0.00276063
0.00302015
0.00326791
0.00350252
0.00372358
0.00393136
0.00412651
0.00430991
0.00448255
0.00464551
0.00479988
0.00494678
0.00508722
0.00522196
0.00535127
0.00547503
0.00559235
0.00570462
0.00167118
0.0011506
0.000913831
0.000822456
0.000840982
0.000957698
0.00114781
0.00138155
0.00163935
0.00190846
0.00217911
0.00244424
0.00269928
0.00294155
0.00316975
0.00338364
0.00358344
0.00376981
0.00394358
0.00410572
0.0042572
0.00439898
0.00453191
0.0046567
0.00477398
0.00488445
0.00498896
0.00508857
0.0051841
0.0052756
0.00536194
0.00544123
0.00551289
0.00557931
0.00565106
0.00164091
0.00116014
0.0010737
0.00115152
0.0012875
0.00143812
0.00158549
0.00172236
0.00184632
0.00195725
0.00205608
0.00214411
0.00222269
0.00229313
0.00235662
0.00241421
0.00246682
0.0025152
0.00256004
0.0026019
0.00264123
0.00267842
0.00271371
0.00274728
0.00277931
0.00281011
0.00284011
0.00286975
0.00289901
0.00292709
0.00295239
0.00297343
0.00299075
0.00300838
0.00303412
0.00159842
0.00113138
0.00106295
0.00113724
0.00125278
0.00137322
0.00148638
0.00158865
0.00167963
0.00175996
0.00183055
0.00189227
0.00194592
0.00199214
0.00203151
0.00206455
0.0020918
0.0021138
0.00213116
0.00214447
0.00215435
0.00216143
0.00216627
0.00216937
0.00217119
0.00217206
0.00217229
0.00217212
0.00217181
0.00217159
0.00217174
0.00217225
0.00217354
0.0021736
0.00217873
0.000850843
0.000653262
0.000555329
0.000516739
0.000499537
0.000490849
0.000486198
0.000483817
0.000482787
0.000482584
0.000482918
0.000483619
0.000484586
0.000485754
0.000487079
0.00048853
0.000490081
0.000491714
0.000493413
0.000495163
0.000496953
0.000498772
0.000500609
0.000502456
0.000504306
0.000506159
0.000508014
0.00050987
0.000511712
0.000513514
0.000515241
0.000516881
0.000518481
0.000520065
0.000522233
0.00143381
0.000975894
0.000917561
0.000965015
0.00103215
0.00109774
0.0011569
0.00120882
0.0012543
0.00129414
0.0013293
0.00136053
0.00138846
0.00141365
0.0014366
0.0014577
0.00147727
0.00149555
0.00151269
0.00152885
0.0015441
0.00155851
0.00157214
0.001585
0.00159713
0.00160858
0.00161942
0.00162979
0.00163985
0.00164963
0.00165907
0.00166769
0.00167542
0.00168092
0.00169095
0.000856784
0.000661686
0.000561245
0.000521173
0.00050334
0.000494305
0.000489431
0.000486896
0.000485758
0.000485483
0.000485768
0.000486436
0.000487377
0.000488524
0.000489832
0.00049127
0.000492811
0.000494436
0.000496126
0.000497869
0.000499652
0.000501462
0.000503288
0.000505122
0.000506957
0.000508791
0.000510622
0.000512447
0.000514253
0.000516013
0.000517698
0.000519301
0.000520864
0.000522408
0.000524489
0.00166899
0.00114756
0.000893751
0.000752881
0.000666702
0.00061022
0.000571769
0.000545817
0.000530181
0.000524863
0.000531498
0.000552891
0.000592451
0.000653625
0.000739686
0.000853698
0.000997926
0.00117267
0.00137547
0.00160149
0.00184463
0.00209878
0.00235874
0.00262069
0.0028821
0.00314138
0.00339766
0.00365054
0.00389973
0.00414499
0.004386
0.00462234
0.00485333
0.00507792
0.00529498
0.00161781
0.00116071
0.00111315
0.00121609
0.00136065
0.00150844
0.00164682
0.00177217
0.00188416
0.00198361
0.00207173
0.0021498
0.00221906
0.00228068
0.00233558
0.00238455
0.00242821
0.00246709
0.00250163
0.00253226
0.00255937
0.00258336
0.00260462
0.00262349
0.00264027
0.00265524
0.00266872
0.00268109
0.00269276
0.00270404
0.00271493
0.00272485
0.00273356
0.00273942
0.00275063
0.00155701
0.00109758
0.00103514
0.00110595
0.00121426
0.00132826
0.00143594
0.0015325
0.00161658
0.00168755
0.00174536
0.00179036
0.00182295
0.0018439
0.00185444
0.00185608
0.00185049
0.00183931
0.00182404
0.00180586
0.00178592
0.00176501
0.00174372
0.00172246
0.00170146
0.00168078
0.00166038
0.00164033
0.001621
0.00160326
0.00158841
0.00157749
0.0015704
0.00156221
0.00154868
0.00166017
0.00119771
0.00112537
0.0012187
0.00136976
0.00153709
0.00170238
0.00185643
0.00199479
0.00211481
0.00221561
0.00229691
0.00235903
0.00240315
0.00243107
0.00244506
0.00244762
0.0024412
0.00242805
0.00241009
0.0023889
0.00236573
0.00234154
0.00231699
0.00229249
0.00226823
0.00224425
0.00222067
0.00219786
0.00217673
0.0021587
0.00214502
0.00213588
0.00212666
0.00211241
0.00167298
0.00120209
0.00111321
0.00121325
0.00138836
0.00158609
0.00178349
0.00196911
0.00213723
0.00228507
0.0024106
0.00251338
0.0025937
0.00265266
0.00269223
0.00271496
0.00272372
0.00272141
0.00271068
0.00269387
0.00267288
0.00264918
0.00262387
0.00259772
0.00257133
0.00254525
0.00251998
0.00249605
0.00247382
0.00245303
0.00243238
0.00240926
0.00238103
0.00234577
0.00231062
0.00166909
0.0011466
0.000893106
0.000754174
0.000673797
0.00063102
0.00062039
0.000644279
0.000707692
0.000813677
0.000961823
0.00114956
0.00137219
0.00162218
0.00189022
0.0021673
0.00244617
0.00272164
0.00299032
0.00325022
0.00350025
0.00373998
0.00396931
0.00418834
0.00439728
0.00459655
0.00478678
0.00496874
0.00514319
0.00531046
0.00547021
0.00562155
0.00576402
0.00589883
0.00603109
0.000876302
0.000573742
0.000511734
0.000499404
0.000501521
0.000509013
0.000518429
0.000528161
0.000537517
0.00054627
0.000554397
0.000561945
0.000568978
0.000575584
0.000581841
0.000587822
0.000593585
0.00059918
0.000604648
0.000610026
0.000615339
0.000620603
0.000625816
0.000630969
0.000636057
0.000641101
0.000646161
0.000651299
0.000656509
0.000661635
0.000666375
0.000670423
0.000673856
0.000677437
0.000682447
0.00167
0.00114788
0.000901401
0.000784221
0.000752439
0.000797383
0.000914234
0.00108958
0.00130793
0.00155658
0.00182388
0.0020991
0.00237369
0.0026417
0.00289941
0.00314475
0.00337677
0.00359528
0.00380062
0.00399343
0.0041745
0.0043447
0.00450485
0.00465571
0.00479797
0.00493239
0.0050599
0.00518154
0.00529815
0.00540978
0.00551536
0.00561323
0.00570298
0.00578727
0.00587523
0.00166911
0.0011482
0.000894803
0.000754914
0.000671665
0.000622494
0.000599658
0.000603317
0.000637994
0.000709075
0.00081964
0.000969865
0.00115787
0.00137931
0.00162702
0.00189222
0.00216627
0.00244196
0.00271381
0.00297799
0.00323179
0.00347405
0.00370442
0.00392303
0.0041304
0.00432724
0.00451442
0.00469289
0.00486363
0.00502756
0.00518535
0.00533723
0.00548307
0.00562224
0.00575597
0.000815202
0.000618723
0.000527418
0.00049256
0.000477006
0.000469096
0.000464867
0.000462728
0.000461827
0.000461679
0.000462022
0.000462709
0.000463649
0.000464782
0.000466067
0.000467473
0.000468973
0.000470546
0.000472175
0.000473846
0.000475548
0.000477269
0.000479001
0.000480734
0.000482462
0.000484183
0.0004859
0.000487615
0.000489317
0.000490983
0.000492573
0.00049407
0.000495501
0.000496904
0.000498735
0.000859009
0.00066399
0.000564726
0.000527273
0.000510607
0.000502021
0.000497488
0.000495203
0.000494228
0.000494023
0.000494271
0.000494761
0.000495336
0.00049587
0.000496268
0.000496463
0.000496416
0.000496112
0.000495558
0.000494777
0.000493798
0.000492657
0.000491389
0.000490028
0.000488604
0.000487144
0.000485671
0.000484207
0.000482768
0.000481366
0.000479995
0.000478665
0.000477278
0.000476092
0.000474004
0.00107553
0.000691035
0.000634637
0.00063959
0.000657676
0.000679255
0.000700474
0.000719962
0.000737312
0.00075246
0.000765308
0.000775705
0.000783553
0.000788842
0.000791669
0.000792234
0.000790815
0.000787741
0.000783356
0.000777988
0.000771928
0.000765422
0.000758663
0.000751801
0.000744946
0.000738188
0.000731613
0.000725306
0.000719351
0.000713771
0.000708506
0.000703212
0.000697752
0.000690643
0.00068571
0.00099818
0.000692571
0.000634231
0.000625136
0.000629302
0.000638482
0.000649289
0.000660026
0.000670047
0.000679082
0.000686902
0.000693314
0.000698158
0.000701351
0.000702908
0.000702925
0.000701559
0.00069901
0.000695499
0.000691242
0.000686441
0.000681273
0.000675884
0.000670393
0.000664888
0.000659427
0.000654054
0.000648806
0.000643736
0.000638931
0.000634525
0.000630579
0.00062725
0.000623608
0.000621243
0.00116262
0.000752269
0.000698873
0.000722554
0.000761825
0.000802465
0.000840481
0.000874582
0.00090478
0.000931442
0.000955074
0.000976114
0.000994968
0.00101203
0.00102766
0.00104215
0.00105572
0.00106857
0.00108082
0.00109258
0.00110392
0.00111488
0.00112548
0.00113571
0.00114558
0.00115511
0.00116437
0.00117349
0.00118251
0.00119135
0.00119966
0.00120692
0.00121293
0.00121771
0.00122391
0.00166364
0.00119621
0.0011233
0.00122152
0.00138079
0.00155558
0.00172671
0.0018859
0.00203022
0.00215944
0.00227455
0.00237705
0.0024686
0.00255071
0.00262471
0.0026917
0.00275266
0.00280837
0.00285953
0.00290673
0.00295052
0.00299134
0.00302953
0.0030653
0.0030988
0.00313027
0.0031601
0.00318891
0.00321716
0.00324471
0.00327049
0.0032927
0.00331062
0.00332549
0.00334595
0.00154449
0.00106154
0.00098106
0.00103831
0.00113511
0.00123726
0.00133358
0.00142059
0.00149774
0.00156573
0.00162565
0.00167865
0.00172579
0.00176799
0.00180606
0.00184074
0.0018726
0.00190213
0.00192975
0.00195578
0.00198052
0.00200417
0.00202686
0.00204866
0.00206965
0.00209002
0.00211006
0.00213011
0.00215017
0.0021696
0.00218714
0.00220152
0.00221296
0.00222458
0.00224219
0.00167318
0.00116246
0.000966
0.000956244
0.00107719
0.00127137
0.00149882
0.00173986
0.0019819
0.0022161
0.00243687
0.00264121
0.00282763
0.00299581
0.00314597
0.00327863
0.00339458
0.00349488
0.00358083
0.00365389
0.00371567
0.00376779
0.00381183
0.00384924
0.00388132
0.00390917
0.00393372
0.00395581
0.00397617
0.00399549
0.00401435
0.00403294
0.00405162
0.00406862
0.00408962
0.000609904
0.000447235
0.000381731
0.000358544
0.000348111
0.000342659
0.000339712
0.000338204
0.000337572
0.000337499
0.000337797
0.000338349
0.00033908
0.000339939
0.000340889
0.000341897
0.000342935
0.000343978
0.000345007
0.000346003
0.000346953
0.000347849
0.000348685
0.000349458
0.000350168
0.000350818
0.000351413
0.00035196
0.000352467
0.000352937
0.000353365
0.000353748
0.000354065
0.000354377
0.000354539
0.000871374
0.000562203
0.000513974
0.000509053
0.000516365
0.000528168
0.000540639
0.000552365
0.000562974
0.000572305
0.000580161
0.00058632
0.000590623
0.00059301
0.00059353
0.000592333
0.000589643
0.000585726
0.000580855
0.000575288
0.000569252
0.000562932
0.000556472
0.000549981
0.000543542
0.000537227
0.000531113
0.000525278
0.000519778
0.00051458
0.000509525
0.000504221
0.000498436
0.000491351
0.000485498
0.00168111
0.00120583
0.00111643
0.00122178
0.00140429
0.00160934
0.00181483
0.00201034
0.00219106
0.00235549
0.00250391
0.00263747
0.00275771
0.00286619
0.00296434
0.00305345
0.00313469
0.00320909
0.00327757
0.00334095
0.00339996
0.00345518
0.00350707
0.00355592
0.00360198
0.00364559
0.00368734
0.00372797
0.0037679
0.00380666
0.0038426
0.00387356
0.00389925
0.00392259
0.00395525
0.00166881
0.00121209
0.00115271
0.00125372
0.00140805
0.0015745
0.00173605
0.00188553
0.00202056
0.00214115
0.00224838
0.00234377
0.00242891
0.00250526
0.00257407
0.00263641
0.0026932
0.00274521
0.0027931
0.00283745
0.00287877
0.00291749
0.00295389
0.00298816
0.00302041
0.00305087
0.00307997
0.00310832
0.00313635
0.00316374
0.00318917
0.00321068
0.00322772
0.00324222
0.00326355
0.000696067
0.000514552
0.000436851
0.000409219
0.000396827
0.000390326
0.000386779
0.000384927
0.00038411
0.000383952
0.000384233
0.000384816
0.000385614
0.000386569
0.000387636
0.000388779
0.000389966
0.00039117
0.000392367
0.000393537
0.000394664
0.000395738
0.000396751
0.000397699
0.00039858
0.000399397
0.000400153
0.000400858
0.000401516
0.000402131
0.000402692
0.000403201
0.00040363
0.000404056
0.000404261
0.00157521
0.00111466
0.00105058
0.00112042
0.0012271
0.00133911
0.00144509
0.00154032
0.00162325
0.00169391
0.00175201
0.00179763
0.00183107
0.00185304
0.00186472
0.00186758
0.00186322
0.00185326
0.00183914
0.00182212
0.00180323
0.0017833
0.00176292
0.00174253
0.00172236
0.00170249
0.00168291
0.0016637
0.00164516
0.00162806
0.00161359
0.00160269
0.00159547
0.0015874
0.00157567
0.00162433
0.0011678
0.001109
0.00119023
0.00131311
0.00144376
0.00156815
0.00168037
0.0017783
0.00186206
0.00193163
0.00198679
0.00202787
0.00205566
0.00207145
0.00207688
0.00207381
0.00206411
0.0020495
0.00203147
0.00201125
0.00198974
0.00196759
0.00194531
0.00192321
0.00190159
0.00188083
0.00186131
0.00184326
0.00182638
0.00180943
0.00179003
0.00176608
0.00173587
0.0017076
0.00167029
0.00114951
0.000905752
0.000795612
0.000777708
0.000844282
0.000987238
0.00118848
0.00142938
0.00169488
0.00197197
0.00225047
0.00252309
0.00278519
0.00303418
0.00326882
0.00348873
0.00369417
0.00388577
0.00406432
0.00423071
0.00438584
0.00453056
0.00466564
0.00479176
0.00490966
0.0050202
0.00512442
0.00522335
0.00531759
0.00540686
0.00549
0.00556623
0.00563619
0.00570743
0.00167335
0.00118566
0.00106616
0.00113719
0.00129215
0.00147997
0.00167742
0.0018704
0.00205091
0.00221586
0.00236419
0.00249601
0.00261182
0.00271222
0.00279787
0.00286957
0.00292837
0.00297554
0.00301249
0.00304072
0.00306171
0.00307685
0.0030874
0.00309443
0.00309885
0.00310142
0.00310279
0.0031036
0.00310444
0.00310583
0.00310801
0.00311045
0.00311221
0.00310963
0.00310705
0.00165558
0.00120945
0.00115981
0.00125035
0.00138217
0.0015208
0.00165299
0.00177375
0.00188174
0.00197747
0.00206217
0.00213727
0.00220418
0.00226415
0.00231825
0.00236736
0.00241224
0.00245353
0.00249178
0.00252747
0.00256101
0.00259272
0.00262284
0.00265144
0.00267863
0.00270457
0.00272966
0.00275445
0.00277921
0.00280349
0.00282591
0.00284461
0.00285933
0.00287235
0.00289289
0.000830944
0.000640833
0.000544331
0.000507905
0.000492029
0.000483827
0.000479304
0.000476828
0.000475579
0.0004751
0.000475126
0.000475473
0.000476009
0.000476627
0.000477238
0.000477773
0.00047818
0.000478426
0.000478493
0.000478379
0.000478095
0.000477657
0.000477087
0.000476411
0.00047565
0.000474829
0.000473966
0.000473081
0.000472188
0.000471305
0.000470438
0.000469611
0.000468781
0.000468111
0.000466999
0.00166882
0.00114303
0.000888615
0.000747572
0.000661293
0.000604333
0.00056444
0.000535164
0.000512855
0.000495326
0.000481199
0.000469575
0.000459844
0.000451585
0.000444504
0.000438394
0.000433119
0.000428595
0.000424792
0.000421727
0.000419471
0.000418153
0.000417974
0.000419216
0.000422259
0.000427599
0.000435876
0.0004479
0.000464697
0.00048757
0.000518175
0.000558583
0.000611275
0.000679011
0.00076243
0.000835463
0.000583934
0.00052044
0.000501788
0.000498096
0.000500229
0.00050464
0.000509767
0.000515023
0.000520208
0.000525238
0.00053008
0.000534734
0.000539215
0.000543549
0.000547756
0.000551849
0.00055583
0.000559693
0.00056343
0.00056703
0.000570484
0.000573781
0.000576913
0.000579877
0.000582674
0.00058532
0.00058784
0.000590265
0.000592607
0.000594856
0.00059692
0.000598807
0.000600159
0.000602413
0.000971286
0.000674674
0.000618959
0.000611243
0.000616094
0.000625496
0.000636332
0.00064699
0.00065688
0.000665791
0.000673474
0.000679707
0.00068431
0.000687193
0.000688372
0.000687957
0.000686121
0.000683083
0.00067908
0.000674341
0.000669077
0.00066347
0.000657668
0.000651787
0.000645913
0.000640102
0.00063439
0.000628815
0.000623438
0.000618361
0.000613732
0.000609628
0.000606151
0.000602353
0.000599245
0.000838049
0.000643403
0.000547889
0.000511735
0.000495471
0.000486949
0.00048227
0.000479766
0.000478582
0.000478238
0.000478443
0.000479009
0.000479804
0.000480726
0.000481692
0.000482636
0.000483505
0.00048426
0.000484875
0.000485337
0.000485645
0.000485805
0.000485831
0.000485738
0.000485545
0.00048527
0.000484933
0.00048455
0.000484137
0.000483711
0.000483276
0.000482852
0.000482392
0.000482052
0.000481181
0.00132913
0.000892686
0.000836504
0.000870277
0.000920432
0.000970097
0.00101541
0.00105556
0.00109095
0.00112225
0.00114998
0.00117461
0.0011967
0.00121669
0.00123498
0.00125191
0.00126771
0.00128259
0.00129669
0.00131011
0.00132292
0.00133516
0.00134687
0.00135804
0.00136868
0.00137882
0.00138854
0.00139794
0.00140712
0.00141609
0.00142467
0.00143239
0.00143909
0.00144405
0.00145197
0.00140797
0.000967839
0.000925995
0.000987295
0.00106557
0.00114131
0.00120969
0.00126921
0.00132035
0.00136367
0.00139949
0.00142782
0.00144876
0.00146261
0.00146996
0.00147163
0.00146853
0.00146163
0.00145184
0.00143996
0.00142669
0.00141258
0.00139807
0.00138346
0.00136896
0.00135465
0.00134057
0.00132679
0.0013135
0.00130115
0.00129042
0.00128183
0.00127566
0.00126865
0.00126175
0.00141997
0.000971456
0.00091963
0.000972323
0.001046
0.00111977
0.00118626
0.00124398
0.00129373
0.00133608
0.00137117
0.00139903
0.00141973
0.00143354
0.00144097
0.00144277
0.00143982
0.00143305
0.00142339
0.00141166
0.00139854
0.0013846
0.00137023
0.00135574
0.00134133
0.0013272
0.00131353
0.00130054
0.00128843
0.00127719
0.00126646
0.00125517
0.00124238
0.00122557
0.0012105
0.000790092
0.000605216
0.000516287
0.000483986
0.000469383
0.000461697
0.000457598
0.00045551
0.000454564
0.000454226
0.000454156
0.00045411
0.000453904
0.000453411
0.00045256
0.000451331
0.000449741
0.000447832
0.000445661
0.000443286
0.000440765
0.000438149
0.00043548
0.000432794
0.000430115
0.000427464
0.000424856
0.00042231
0.000419849
0.000417505
0.000415293
0.000413233
0.000411165
0.000409326
0.000406245
0.000726659
0.000550098
0.000468619
0.000439948
0.000427174
0.000420538
0.000417016
0.000415198
0.00041435
0.000414021
0.000413923
0.000413846
0.000413629
0.000413158
0.000412367
0.000411236
0.000409777
0.000408028
0.000406037
0.00040386
0.000401549
0.00039915
0.000396703
0.00039424
0.000391789
0.000389373
0.000387011
0.000384717
0.00038249
0.000380312
0.000378141
0.000375967
0.000373714
0.000371858
0.000369378
0.00136196
0.000936261
0.000895351
0.000948156
0.00101451
0.00107802
0.00113523
0.00118471
0.00122725
0.00126352
0.00129375
0.001318
0.00133633
0.00134893
0.00135622
0.00135879
0.00135732
0.00135254
0.00134519
0.00133593
0.00132534
0.0013139
0.00130198
0.0012899
0.00127783
0.00126591
0.00125421
0.00124279
0.00123176
0.00122138
0.00121207
0.00120412
0.00119801
0.00119129
0.0011874
0.00142909
0.000962293
0.00090008
0.000946019
0.00101352
0.00108108
0.00114259
0.0011968
0.00124374
0.00128391
0.00131752
0.00134466
0.00136539
0.00137996
0.00138876
0.00139239
0.0013916
0.0013872
0.00137997
0.00137068
0.00135995
0.00134832
0.00133619
0.00132386
0.00131154
0.00129941
0.00128763
0.00127638
0.00126585
0.00125609
0.00124698
0.0012378
0.00122798
0.00121484
0.00120396
0.00167313
0.00115649
0.000942345
0.000901667
0.000994725
0.0011823
0.0014203
0.00168074
0.00194783
0.00221117
0.00246399
0.00270262
0.00292553
0.0031324
0.00332382
0.00350058
0.00366387
0.00381484
0.00395468
0.00408452
0.00420543
0.00431838
0.00442418
0.00452348
0.00461684
0.0047049
0.0047885
0.00486863
0.00494598
0.00502029
0.00509006
0.00515313
0.0052091
0.00526111
0.00532086
0.00166996
0.00115482
0.000903463
0.000766799
0.000691778
0.000661317
0.000674302
0.000735464
0.000846969
0.00100524
0.00120401
0.0014358
0.00169045
0.0019549
0.00221595
0.00246246
0.0026867
0.0028844
0.00305426
0.00319706
0.00331489
0.00341058
0.00348717
0.00354767
0.00359489
0.00363128
0.00365897
0.00367975
0.00369518
0.00370678
0.00371615
0.00372494
0.0037347
0.00374525
0.00375656
0.00166992
0.00115487
0.000903351
0.000766487
0.00069118
0.000660558
0.000674334
0.000738923
0.000858271
0.00102916
0.00124386
0.00149224
0.0017612
0.00203577
0.00230194
0.00254892
0.00276996
0.00296198
0.00312475
0.00325989
0.00337011
0.00345859
0.00352859
0.00358321
0.00362522
0.00365711
0.00368103
0.0036989
0.00371242
0.00372297
0.00373146
0.003738
0.00374192
0.00374121
0.00373722
0.000829597
0.000550052
0.000496069
0.000488021
0.000492733
0.00050128
0.000510407
0.000519035
0.00052683
0.00053381
0.000540062
0.000545596
0.000550357
0.000554282
0.000557331
0.000559491
0.000560785
0.000561269
0.000561026
0.000560158
0.000558774
0.000556986
0.000554894
0.000552591
0.000550152
0.000547641
0.000545105
0.000542586
0.00054012
0.000537753
0.000535547
0.000533522
0.000531814
0.000529926
0.000529123
0.00162285
0.00114125
0.00105588
0.00112829
0.00125494
0.00139393
0.00152872
0.00165307
0.00176509
0.00186493
0.00195359
0.00203234
0.00210249
0.00216529
0.00222187
0.0022732
0.00232011
0.00236331
0.00240339
0.00244087
0.00247617
0.00250959
0.00254136
0.00257162
0.00260053
0.00262836
0.00265551
0.00268232
0.00270878
0.00273411
0.00275692
0.00277588
0.00279154
0.00280753
0.00283044
0.00104235
0.000705921
0.00064556
0.000640557
0.000649199
0.000662101
0.000675935
0.00068932
0.000701859
0.000713453
0.000724057
0.000733649
0.000742217
0.00074975
0.000756241
0.000761693
0.000766127
0.000769585
0.000772134
0.000773857
0.000774856
0.000775242
0.000775125
0.000774611
0.000773795
0.000772757
0.000771567
0.000770291
0.000768992
0.000767738
0.000766605
0.000765569
0.000764817
0.000763508
0.000764469
0.00167943
0.00119642
0.00108949
0.00118082
0.00136003
0.0015694
0.0017836
0.00199
0.00218246
0.00235868
0.00251844
0.00266267
0.00279281
0.0029104
0.00301688
0.00311359
0.00320172
0.00328232
0.00335633
0.00342458
0.00348782
0.00354671
0.00360172
0.00365319
0.0037014
0.00374671
0.00378971
0.00383117
0.00387162
0.00391077
0.00394715
0.00397865
0.00400474
0.00402781
0.00405846
0.000812513
0.000617004
0.000523859
0.000489373
0.000474016
0.000466036
0.000461681
0.000459396
0.000458361
0.00045812
0.00045841
0.000459064
0.000459976
0.000461081
0.000462328
0.000463676
0.000465091
0.000466542
0.000468003
0.000469451
0.000470868
0.00047224
0.000473557
0.000474811
0.000475998
0.000477119
0.000478177
0.000479179
0.000480129
0.000481028
0.000481859
0.000482619
0.000483284
0.000483927
0.0004844
0.00140832
0.000946078
0.000881596
0.000917552
0.000972413
0.00102822
0.00108017
0.00112658
0.00116707
0.00120201
0.00123186
0.001257
0.00127764
0.001294
0.00130631
0.00131488
0.00132006
0.00132231
0.0013221
0.00131993
0.00131623
0.00131141
0.00130581
0.0012997
0.00129331
0.0012868
0.00128032
0.00127404
0.00126812
0.00126271
0.00125787
0.00125328
0.00124882
0.00124182
0.00123856
0.00155163
0.00107141
0.000997535
0.00106211
0.00116563
0.00127444
0.00137736
0.00147058
0.00155335
0.00162634
0.00169071
0.00174771
0.00179844
0.00184391
0.00188495
0.0019223
0.00195656
0.00198824
0.00201779
0.00204558
0.00207194
0.00209711
0.00212124
0.0021444
0.00216666
0.00218819
0.00220931
0.0022304
0.00225164
0.00227249
0.00229169
0.00230769
0.00232033
0.00233223
0.00234984
0.00166525
0.00119887
0.00112929
0.00122668
0.001382
0.00155188
0.00171785
0.00187177
0.00201092
0.0021353
0.00224606
0.00234474
0.0024329
0.00251203
0.0025834
0.00264811
0.0027071
0.0027612
0.00281114
0.00285755
0.00290098
0.00294188
0.00298056
0.0030172
0.00305195
0.00308506
0.00311702
0.00314845
0.00317968
0.00321019
0.00323839
0.00326225
0.0032815
0.00329895
0.00332478
0.00157696
0.00111921
0.0010625
0.00113923
0.00125142
0.00136789
0.00147716
0.00157484
0.00165925
0.00173084
0.00178962
0.00183564
0.00186924
0.00189116
0.00190255
0.00190486
0.00189975
0.00188888
0.00187379
0.00185579
0.00183596
0.00181508
0.00179372
0.00177229
0.00175109
0.00173041
0.00171059
0.00169201
0.00167483
0.00165861
0.00164199
0.00162253
0.00159833
0.00156843
0.00154141
0.000803157
0.000614093
0.000521206
0.000485638
0.000469572
0.000461251
0.000456879
0.00045474
0.000453902
0.000453821
0.000454196
0.000454851
0.000455665
0.000456548
0.00045743
0.000458248
0.000458957
0.000459523
0.000459928
0.000460166
0.000460241
0.000460165
0.000459955
0.000459631
0.000459213
0.000458721
0.000458177
0.0004576
0.000457006
0.00045641
0.00045581
0.000455208
0.000454547
0.000453941
0.000452929
0.000905182
0.000596193
0.000534746
0.000523759
0.000526844
0.00053515
0.000545334
0.000555788
0.000565798
0.000575135
0.000583792
0.000591826
0.000599309
0.000606333
0.000612983
0.000619336
0.000625454
0.000631389
0.000637186
0.000642882
0.000648508
0.000654078
0.000659594
0.000665041
0.000670415
0.000675738
0.000681072
0.000686489
0.000691989
0.000697408
0.000702424
0.000706698
0.000710295
0.000714006
0.000719165
0.00167022
0.00114822
0.000905669
0.000799497
0.000789602
0.000867502
0.00102136
0.00122992
0.00147406
0.00173917
0.00201308
0.00228628
0.00255223
0.00280698
0.00304849
0.00327594
0.00348926
0.00368889
0.00387556
0.00405017
0.00421368
0.00436705
0.00451117
0.00464681
0.00477468
0.00489558
0.00501044
0.00512032
0.00522592
0.00532708
0.00542246
0.00551023
0.00559014
0.0056655
0.00574581
0.00167291
0.00117159
0.00102704
0.00108412
0.00124478
0.00144669
0.00166131
0.00187411
0.00207701
0.00226595
0.00243944
0.00259749
0.00274095
0.00287108
0.00298922
0.00309686
0.00319529
0.00328571
0.00336918
0.00344659
0.00351874
0.00358627
0.00364968
0.00370937
0.00376571
0.00381918
0.00387039
0.00391992
0.00396791
0.00401366
0.00405563
0.00409229
0.00412412
0.004155
0.00419387
0.00166895
0.00114646
0.000892538
0.000751625
0.000665464
0.000609089
0.000570921
0.000545621
0.00053135
0.000528644
0.000539814
0.000568337
0.000618068
0.000692593
0.000795109
0.000928411
0.00109411
0.00129142
0.00151658
0.00176339
0.00202458
0.00229318
0.00256349
0.00283144
0.00309443
0.00335102
0.00360054
0.00384283
0.00407805
0.00430648
0.00452833
0.00474359
0.00495204
0.00515351
0.00534818
0.0016722
0.00115567
0.000940276
0.00089577
0.000981789
0.00116182
0.00139477
0.00165248
0.00191757
0.00217869
0.00242897
0.00266493
0.00288516
0.0030894
0.00327807
0.00345188
0.00361167
0.00375845
0.00389321
0.00401692
0.00413057
0.00423509
0.00433131
0.00441992
0.00450163
0.0045771
0.00464712
0.00471264
0.00477465
0.00483368
0.00488945
0.0049407
0.0049865
0.00502704
0.00506958
0.00101752
0.00068975
0.000622177
0.00060989
0.000613962
0.000624193
0.000636597
0.000649278
0.000661429
0.000672776
0.000683263
0.000692955
0.000701954
0.000710374
0.000718331
0.000725927
0.000733245
0.00074035
0.000747299
0.000754135
0.000760887
0.000767567
0.000774174
0.000780697
0.000787137
0.000793529
0.000799945
0.00080644
0.000812966
0.000819286
0.000825021
0.000829853
0.000834024
0.00083855
0.000845141
0.00101621
0.000686505
0.00062011
0.000608853
0.00061352
0.000624123
0.000636763
0.000649611
0.0006619
0.00067337
0.000683959
0.000693736
0.00070281
0.000711294
0.000719308
0.000726953
0.000734314
0.000741456
0.000748437
0.0007553
0.000762075
0.000768773
0.000775393
0.000781923
0.000788365
0.000794755
0.000801159
0.00080763
0.00081412
0.000820393
0.000826079
0.00083087
0.000834998
0.00083948
0.00084582
0.00166901
0.00118694
0.00109
0.00118504
0.00135726
0.00155224
0.00174707
0.0019314
0.002101
0.00225467
0.00239289
0.00251683
0.00262797
0.00272783
0.00281803
0.00289992
0.0029746
0.00304307
0.00310614
0.00316447
0.00321863
0.00326905
0.00331608
0.00336
0.00340106
0.00343954
0.00347582
0.00351039
0.00354364
0.0035756
0.0036057
0.00363275
0.00365597
0.0036753
0.00369658
0.0016716
0.00115191
0.000924456
0.000855197
0.000907669
0.00105808
0.00127159
0.00151924
0.00178296
0.00205021
0.00231213
0.00256322
0.00280056
0.00302293
0.00323021
0.00342287
0.00360172
0.00376777
0.00392207
0.00406571
0.00419975
0.00432517
0.0044428
0.00455333
0.00465738
0.00475565
0.00484904
0.00493856
0.0050249
0.00510778
0.00518565
0.00525641
0.00531977
0.00537921
0.00544569
0.00167224
0.00115564
0.000939016
0.000892002
0.000975555
0.00115524
0.0013897
0.00164956
0.00191695
0.00218044
0.00243316
0.00267158
0.00289424
0.00310091
0.00329201
0.0034683
0.00363067
0.00378017
0.00391787
0.00404481
0.00416201
0.00427042
0.00437087
0.00446403
0.00455051
0.00463093
0.00470604
0.0047768
0.00484412
0.0049084
0.00496907
0.00502465
0.00507421
0.00511842
0.00516585
0.00166936
0.00114696
0.000895212
0.000762736
0.00069814
0.000687211
0.000730573
0.000830222
0.000982292
0.00117899
0.00141168
0.00167048
0.00194476
0.00222485
0.00250325
0.00277483
0.0030365
0.00328657
0.00352431
0.00374965
0.00396291
0.00416465
0.0043555
0.0045361
0.00470707
0.00486914
0.00502314
0.00517003
0.00531058
0.005445
0.00557264
0.00569227
0.00580352
0.00590831
0.00601377
0.000739194
0.000557944
0.000474339
0.000445209
0.000432362
0.000425735
0.000422248
0.000420462
0.000419639
0.000419339
0.000419284
0.000419262
0.000419112
0.00041872
0.000418015
0.000416974
0.000415604
0.00041394
0.000412029
0.000409924
0.000407678
0.000405337
0.000402943
0.000400528
0.000398121
0.000395745
0.000393419
0.000391159
0.000388965
0.000386826
0.000384704
0.000382592
0.000380399
0.000378573
0.000376014
0.000843764
0.000651886
0.000556196
0.00052091
0.000505106
0.000496826
0.000492394
0.000490121
0.000489098
0.000488738
0.000488676
0.000488661
0.000488497
0.000488048
0.000487237
0.000486039
0.000484465
0.000482556
0.000480367
0.000477957
0.000475386
0.000472708
0.000469969
0.000467205
0.000464444
0.000461708
0.000459014
0.000456382
0.000453832
0.000451397
0.000449093
0.000446947
0.000444808
0.00044293
0.000439837
0.000953009
0.000740792
0.000629798
0.000586381
0.000566867
0.000556657
0.000551063
0.000548116
0.000546767
0.000546388
0.000546632
0.000547303
0.000548271
0.000549452
0.000550779
0.000552197
0.000553656
0.000555112
0.000556525
0.000557866
0.000559112
0.000560248
0.000561269
0.000562172
0.000562961
0.000563645
0.000564234
0.000564743
0.000565185
0.000565575
0.000565917
0.000566216
0.000566444
0.000566635
0.000566657
0.00167328
0.00116971
0.00101825
0.00106722
0.00122114
0.00141886
0.00163264
0.00184759
0.00205461
0.0022488
0.00242809
0.00259215
0.0027416
0.00287754
0.00300126
0.00311413
0.00321744
0.00331237
0.00339999
0.00348125
0.003557
0.00362793
0.00369456
0.00375734
0.00381666
0.00387305
0.00392721
0.0039798
0.00403095
0.0040798
0.00412453
0.00416336
0.00419696
0.00423015
0.00427358
0.00166902
0.00114656
0.00089273
0.000752405
0.00066815
0.000616581
0.000588736
0.000583172
0.000602924
0.000652997
0.000737655
0.000858951
0.00101707
0.00121038
0.00143464
0.00168323
0.00194842
0.00222294
0.00250075
0.00277728
0.00304921
0.0033142
0.0035707
0.00381772
0.00405474
0.00428164
0.00449879
0.00470679
0.00490628
0.00509773
0.00528113
0.00545598
0.0056219
0.00577947
0.00593213
0.000833623
0.000594893
0.000530398
0.000508996
0.000502905
0.000503417
0.000506718
0.000511111
0.000515755
0.000520251
0.000524352
0.000527859
0.000530629
0.000532561
0.000533611
0.000533788
0.000533151
0.000531793
0.000529829
0.000527382
0.00052457
0.0005215
0.000518263
0.000514933
0.000511568
0.000508218
0.000504928
0.000501739
0.000498691
0.000495804
0.000493065
0.000490363
0.000487636
0.000484397
0.000481777
0.000715762
0.000540989
0.000462568
0.000432828
0.000419269
0.000412195
0.00040832
0.000406292
0.000405384
0.000405171
0.000405414
0.000405971
0.000406759
0.000407721
0.000408821
0.000410028
0.000411316
0.000412664
0.000414056
0.000415474
0.000416908
0.000418344
0.000419774
0.000421188
0.00042258
0.000423948
0.000425294
0.000426618
0.000427917
0.000429172
0.000430357
0.000431459
0.000432493
0.000433502
0.000434781
0.00166082
0.00118081
0.00109118
0.00117606
0.00132774
0.00150096
0.00167471
0.00183867
0.00198863
0.00212377
0.00224478
0.00235303
0.00245004
0.00253728
0.00261604
0.00268748
0.0027526
0.00281231
0.00286738
0.00291853
0.00296636
0.00301137
0.00305391
0.0030942
0.00313243
0.00316889
0.00320411
0.00323874
0.0032731
0.00330662
0.00333759
0.00336391
0.00338535
0.00340515
0.00343378
0.00071139
0.000533433
0.000455006
0.000426231
0.000413219
0.000406374
0.000402645
0.000400706
0.000399851
0.000399681
0.00039996
0.000400539
0.000401311
0.000402199
0.000403139
0.000404079
0.000404978
0.000405803
0.00040653
0.000407145
0.000407643
0.000408024
0.000408295
0.000408466
0.000408549
0.000408558
0.000408507
0.00040841
0.000408279
0.000408127
0.000407958
0.000407784
0.000407567
0.000407421
0.000406896
0.000950906
0.000641125
0.000576618
0.000561176
0.000561754
0.000569429
0.000579972
0.000591254
0.000602241
0.000612516
0.000621936
0.000630471
0.000638141
0.000644977
0.000650997
0.000656205
0.000660613
0.00066424
0.000667124
0.000669319
0.000670893
0.000671923
0.000672489
0.000672668
0.000672533
0.000672158
0.000671615
0.000670984
0.000670353
0.000669788
0.000669327
0.000668822
0.000668248
0.000666521
0.000666626
0.00160989
0.00114124
0.00106601
0.00113429
0.00124941
0.001375
0.00149657
0.00160821
0.0017087
0.00179824
0.00187756
0.0019475
0.00200895
0.00206267
0.00210933
0.00214953
0.00218383
0.00221276
0.00223687
0.00225671
0.00227284
0.00228584
0.00229623
0.00230453
0.00231117
0.00231652
0.00232089
0.00232459
0.00232792
0.00233118
0.00233462
0.00233815
0.00234197
0.00234416
0.00235072
0.00167113
0.00117906
0.00105101
0.0011146
0.00126573
0.00145124
0.00164774
0.00184168
0.0020251
0.00219415
0.00234739
0.0024853
0.00260871
0.00271855
0.00281568
0.00290089
0.00297493
0.00303862
0.00309284
0.00313856
0.00317678
0.00320852
0.00323479
0.00325653
0.00327458
0.00328972
0.00330265
0.00331404
0.00332458
0.00333484
0.00334521
0.00335541
0.00336487
0.00337061
0.00337712
0.00136223
0.000908877
0.000858367
0.000917388
0.000994163
0.00106629
0.00112938
0.0011834
0.00122944
0.00126897
0.00130305
0.00133233
0.0013572
0.00137794
0.00139477
0.00140793
0.00141771
0.00142443
0.0014285
0.0014303
0.00143026
0.00142878
0.0014262
0.00142285
0.00141898
0.0014148
0.00141047
0.00140611
0.00140183
0.00139778
0.00139414
0.00139096
0.00138873
0.00138586
0.00138737
0.00102793
0.000673021
0.000627608
0.00063927
0.000662213
0.000687478
0.000711958
0.000734555
0.000755086
0.00077361
0.000790243
0.000805078
0.000818254
0.000829876
0.000840032
0.000848798
0.000856249
0.000862465
0.000867536
0.000871565
0.000874671
0.000876979
0.000878617
0.000879707
0.00088036
0.00088067
0.000880722
0.000880607
0.000880415
0.000880243
0.000880175
0.000880136
0.000880314
0.000879569
0.000881686
0.000726743
0.000503192
0.000444634
0.00042544
0.000420004
0.000420262
0.000422979
0.000426678
0.000430712
0.000434797
0.000438804
0.00044268
0.00044641
0.000449997
0.000453448
0.000456766
0.000459945
0.000462973
0.000465838
0.000468527
0.000471031
0.000473345
0.000475469
0.000477407
0.000479166
0.00048076
0.000482209
0.000483541
0.000484787
0.000485976
0.000487119
0.000488167
0.000489131
0.000489671
0.000490852
0.00121099
0.000772603
0.000709034
0.000733365
0.000775992
0.000820482
0.000862406
0.000900263
0.000933802
0.000963386
0.000989573
0.0010129
0.00103385
0.00105283
0.0010702
0.00108626
0.00110126
0.00111542
0.00112889
0.00114182
0.00115433
0.0011665
0.00117836
0.00118992
0.00120119
0.00121223
0.00122322
0.00123432
0.00124557
0.00125664
0.00126679
0.00127519
0.00128188
0.00128857
0.00129833
0.000694927
0.000525
0.000444554
0.000414075
0.000400246
0.000392959
0.000388946
0.000386806
0.000385791
0.000385478
0.000385626
0.000386095
0.000386794
0.000387661
0.000388648
0.000389717
0.000390833
0.000391965
0.000393084
0.00039417
0.000395204
0.000396174
0.000397072
0.000397894
0.000398641
0.000399315
0.000399922
0.00040047
0.000400967
0.000401422
0.000401832
0.000402205
0.000402508
0.000402805
0.000402874
0.00154635
0.00107828
0.00101125
0.00107536
0.00117516
0.00127887
0.00137626
0.00146415
0.00154216
0.00161103
0.00167177
0.00172537
0.0017729
0.00181537
0.00185359
0.00188817
0.00191964
0.00194839
0.00197474
0.00199895
0.00202126
0.00204189
0.002061
0.00207871
0.0020951
0.00211028
0.00212445
0.00213792
0.00215103
0.00216389
0.00217615
0.00218686
0.00219559
0.00220154
0.00221262
0.00108091
0.000690392
0.000632305
0.000644693
0.000672934
0.000704071
0.000734156
0.000761689
0.000786304
0.000808187
0.000827677
0.000845142
0.000860924
0.000875315
0.000888575
0.000900932
0.000912565
0.000923621
0.000934222
0.000944473
0.000954452
0.000964211
0.000973768
0.000983122
0.000992278
0.00100129
0.00101029
0.0010194
0.00102863
0.00103766
0.00104591
0.00105275
0.00105828
0.00106402
0.00107229
0.000772044
0.000531609
0.000471499
0.000451624
0.00044637
0.000447806
0.000452244
0.000457781
0.000463595
0.000469297
0.000474716
0.000479771
0.000484434
0.000488693
0.000492536
0.000495945
0.000498905
0.000501411
0.000503468
0.000505097
0.000506329
0.000507204
0.000507766
0.000508062
0.000508136
0.000508034
0.000507804
0.000507499
0.000507175
0.000506877
0.000506625
0.000506336
0.000505961
0.000504956
0.000504541
0.000862999
0.000662526
0.000562315
0.000523416
0.000506247
0.000497589
0.00049296
0.000490602
0.000489587
0.000489391
0.000489726
0.000490431
0.000491408
0.000492589
0.000493932
0.000495402
0.000496973
0.000498624
0.000500338
0.000502099
0.000503898
0.000505722
0.000507562
0.000509409
0.000511256
0.000513103
0.000514951
0.000516801
0.000518642
0.000520447
0.000522177
0.000523815
0.0005254
0.000526952
0.000529065
0.00167278
0.00117878
0.00104534
0.00110609
0.00125983
0.00145157
0.00165599
0.00185852
0.00205073
0.00222859
0.00239082
0.00253766
0.00267
0.00278899
0.00289576
0.00299131
0.00307646
0.003152
0.00321864
0.00327714
0.00332827
0.00337281
0.00341154
0.00344525
0.00347466
0.00350048
0.00352338
0.00354405
0.00356315
0.0035813
0.00359891
0.0036158
0.0036317
0.00364407
0.00365847
0.00104339
0.000679802
0.000641512
0.000661622
0.000690707
0.000720275
0.000747756
0.000772143
0.000793377
0.000811594
0.000826674
0.000838478
0.000846902
0.000851969
0.000853877
0.000852963
0.000849644
0.000844376
0.000837616
0.000829772
0.000821203
0.000812205
0.000803004
0.000793768
0.000784604
0.00077557
0.000766694
0.000758025
0.00074969
0.000741937
0.000735131
0.000729466
0.000725017
0.00071969
0.000714558
0.00104994
0.000684561
0.000636412
0.00064775
0.000672087
0.000699246
0.000724937
0.000747936
0.000768061
0.000785397
0.000799892
0.000811364
0.000819686
0.000824853
0.000827007
0.000826427
0.000823487
0.000818617
0.00081225
0.000804792
0.000796593
0.000787941
0.000779056
0.000770104
0.000761206
0.000752469
0.000744
0.000735915
0.000728308
0.000721173
0.000714327
0.000707221
0.000699476
0.000689652
0.000681305
0.000816003
0.000543233
0.000485467
0.000471678
0.000471957
0.000477693
0.000485338
0.000493324
0.000501099
0.000508463
0.000515368
0.000521825
0.000527868
0.000533566
0.000538988
0.000544199
0.000549248
0.000554173
0.000558997
0.000563738
0.000568402
0.000572989
0.000577489
0.000581891
0.000586183
0.00059037
0.000594472
0.000598521
0.00060253
0.000606442
0.00061013
0.000613392
0.000616192
0.000618584
0.000621497
0.00141684
0.000932363
0.00085108
0.000885439
0.000947879
0.00101497
0.00107932
0.00113805
0.0011902
0.00123589
0.00127573
0.00131036
0.00134032
0.00136605
0.0013879
0.00140612
0.00142097
0.00143274
0.00144177
0.0014484
0.001453
0.00145591
0.00145747
0.00145797
0.00145767
0.00145679
0.00145555
0.00145416
0.00145289
0.00145193
0.00145139
0.00145095
0.00145027
0.00144688
0.00144539
0.000952164
0.000642491
0.000579066
0.000564905
0.000565257
0.000571599
0.000580422
0.000589942
0.000599238
0.00060799
0.000616161
0.000623734
0.000630748
0.000637247
0.00064327
0.000648834
0.000653943
0.000658594
0.00066278
0.000666506
0.000669782
0.000672631
0.000675082
0.000677168
0.000678931
0.000680412
0.000681663
0.000682743
0.000683721
0.000684654
0.000685585
0.000686432
0.000687225
0.000687223
0.000688649
0.0016709
0.00115384
0.00091862
0.000829818
0.000851885
0.000970854
0.00116143
0.00139525
0.00165202
0.00191729
0.00218047
0.0024344
0.00267444
0.00289784
0.00310292
0.00328885
0.00345548
0.00360332
0.00373342
0.00384724
0.00394652
0.0040331
0.00410882
0.00417538
0.00423434
0.00428706
0.00433472
0.00437834
0.00441886
0.00445714
0.00449392
0.00452958
0.00456462
0.00459765
0.00463352
0.000830219
0.000632479
0.000538165
0.000502316
0.000486538
0.000478559
0.00047426
0.00047203
0.000471047
0.000470853
0.000471177
0.000471862
0.000472806
0.000473944
0.000475232
0.000476638
0.000478139
0.00047971
0.000481333
0.000482991
0.000484667
0.000486347
0.00048802
0.000489673
0.000491297
0.000492888
0.000494442
0.000495959
0.000497436
0.000498865
0.000500224
0.000501503
0.000502694
0.000503798
0.000505081
0.000698394
0.000525406
0.000447517
0.000417821
0.000404078
0.000396781
0.000392829
0.000390823
0.000389957
0.000389776
0.000390032
0.000390576
0.000391315
0.000392181
0.000393121
0.000394089
0.000395042
0.000395949
0.000396781
0.00039752
0.000398157
0.000398686
0.000399111
0.000399437
0.000399672
0.00039983
0.000399922
0.000399963
0.000399965
0.00039994
0.000399889
0.000399819
0.000399686
0.000399579
0.000399084
0.000734047
0.000555197
0.000471818
0.000439898
0.000425192
0.000417503
0.000413424
0.000411388
0.000410546
0.000410418
0.000410738
0.000411345
0.000412135
0.000413032
0.000413976
0.000414913
0.000415799
0.000416601
0.000417292
0.00041786
0.000418298
0.00041861
0.000418802
0.000418886
0.000418877
0.000418789
0.000418639
0.000418443
0.000418217
0.000417973
0.000417711
0.000417439
0.000417098
0.000416815
0.000416
0.00166897
0.0011462
0.000892357
0.000751713
0.000666452
0.000612455
0.000579539
0.00056454
0.000568607
0.00059564
0.000650553
0.000737446
0.000858793
0.00101555
0.00120656
0.00142771
0.00167228
0.00193257
0.00220153
0.00247356
0.0027446
0.00301178
0.0032731
0.00352718
0.00377308
0.00401032
0.00423884
0.00445889
0.00467086
0.00487505
0.00507133
0.00525914
0.00543802
0.00560843
0.00577299
0.00148669
0.00102961
0.000977658
0.00103818
0.00111976
0.00120045
0.00127405
0.00133904
0.00139516
0.00144281
0.00148202
0.00151282
0.00153531
0.00154988
0.00155724
0.00155831
0.00155418
0.00154593
0.00153458
0.00152103
0.00150603
0.0014902
0.00147398
0.00145772
0.0014416
0.00142571
0.00141008
0.00139476
0.00138
0.00136634
0.00135463
0.00134546
0.00133899
0.00133145
0.00132291
0.0014804
0.0010205
0.000962913
0.00101899
0.00110027
0.00118281
0.00125782
0.00132375
0.00138064
0.00142891
0.00146869
0.00149998
0.00152293
0.0015379
0.00154555
0.0015468
0.00154272
0.00153443
0.00152298
0.00150932
0.00149422
0.00147829
0.00146195
0.00144554
0.00142926
0.00141334
0.00139798
0.00138346
0.00136998
0.00135743
0.00134521
0.00133189
0.00131619
0.00129577
0.00127734
0.000750491
0.00057376
0.000485284
0.000452569
0.000437838
0.000429982
0.000425673
0.000423375
0.000422225
0.000421743
0.000421625
0.000421654
0.00042167
0.00042155
0.000421216
0.000420622
0.000419757
0.000418631
0.000417272
0.000415716
0.000414004
0.000412177
0.000410272
0.000408319
0.000406347
0.000404376
0.000402424
0.000400507
0.000398641
0.000396844
0.000395122
0.000393501
0.00039188
0.000390518
0.000388247
0.000664568
0.000499394
0.00042008
0.000391825
0.000379289
0.000372686
0.000369151
0.000367302
0.000366412
0.000366087
0.000366069
0.000366174
0.000366259
0.000366219
0.000365983
0.00036551
0.000364789
0.000363832
0.000362665
0.000361321
0.000359839
0.000358255
0.000356603
0.000354912
0.000353205
0.000351504
0.000349826
0.000348184
0.000346587
0.000345037
0.000343518
0.000342035
0.000340505
0.00033923
0.000337216
0.00166907
0.00114816
0.000894537
0.000754196
0.000669744
0.000617816
0.000589519
0.000583667
0.000603874
0.000655999
0.000745038
0.000873186
0.0010402
0.00124358
0.00147778
0.00173469
0.00200543
0.00228189
0.00255764
0.00282804
0.00308978
0.00334121
0.00358163
0.003811
0.00402965
0.0042382
0.00443746
0.00462837
0.00481191
0.00498897
0.0051601
0.00532533
0.00548435
0.00563672
0.00578447
0.00167372
0.00116781
0.000992204
0.00101152
0.00115202
0.00135244
0.00157854
0.00181219
0.00204164
0.0022597
0.00246265
0.00264909
0.00281894
0.00297276
0.0031113
0.00323534
0.00334567
0.00344311
0.00352854
0.00360296
0.00366745
0.00372314
0.00377117
0.00381264
0.00384862
0.00388006
0.00390788
0.00393295
0.00395612
0.00397813
0.00399952
0.00402016
0.00403967
0.00405528
0.00407196
0.0015187
0.00104499
0.00097566
0.00103427
0.00112552
0.00121975
0.00130794
0.00138715
0.00145703
0.00151835
0.00157228
0.00161993
0.00166233
0.00170036
0.00173476
0.00176614
0.00179501
0.00182178
0.00184683
0.00187047
0.00189297
0.00191453
0.00193526
0.00195522
0.00197443
0.00199302
0.00201125
0.00202949
0.00204791
0.00206609
0.00208292
0.00209699
0.00210814
0.00211836
0.0021339
0.000715587
0.000536026
0.00045447
0.00042341
0.000409654
0.0004027
0.000398974
0.000397073
0.000396264
0.000396139
0.000396458
0.000397084
0.000397926
0.000398929
0.000400056
0.000401283
0.000402589
0.000403958
0.000405376
0.000406828
0.000408304
0.000409793
0.000411286
0.000412773
0.000414248
0.000415707
0.000417148
0.000418568
0.000419962
0.000421314
0.000422604
0.000423825
0.000424986
0.000426096
0.000427465
0.000765826
0.000580813
0.000493547
0.00046185
0.000448062
0.00044094
0.000437049
0.000434946
0.000433931
0.000433565
0.000433594
0.000433862
0.000434245
0.000434642
0.000434972
0.000435172
0.000435203
0.000435042
0.000434686
0.000434145
0.000433437
0.000432587
0.000431623
0.000430573
0.00042946
0.000428307
0.000427135
0.000425959
0.000424793
0.000423655
0.000422549
0.000421501
0.000420462
0.000419616
0.000418237
0.00132926
0.00088328
0.000827162
0.00086228
0.000915323
0.000969243
0.00101953
0.00106487
0.00110522
0.00114099
0.00117264
0.00120052
0.00122505
0.00124654
0.00126526
0.00128142
0.00129522
0.00130685
0.0013165
0.00132437
0.00133068
0.00133564
0.00133948
0.00134241
0.0013446
0.0013462
0.00134737
0.00134823
0.00134895
0.00134968
0.00135056
0.00135149
0.00135267
0.0013525
0.00135633
0.000794745
0.000614798
0.000521932
0.000486757
0.000471054
0.000462909
0.000458562
0.000456322
0.000455294
0.000454978
0.000455067
0.00045534
0.000455636
0.000455826
0.000455821
0.000455565
0.000455034
0.000454232
0.000453178
0.000451907
0.000450459
0.000448874
0.00044719
0.000445442
0.000443659
0.000441866
0.000440084
0.000438333
0.000436624
0.000434967
0.00043335
0.00043178
0.000430164
0.000428789
0.000426585
0.000852568
0.00066801
0.000570276
0.000532266
0.000515217
0.000506343
0.000501548
0.000499001
0.000497747
0.000497256
0.000497199
0.00049735
0.000497537
0.000497628
0.000497529
0.000497182
0.00049656
0.000495662
0.000494506
0.000493125
0.000491556
0.000489842
0.000488021
0.000486129
0.000484197
0.00048225
0.000480309
0.000478392
0.000476516
0.000474701
0.000472954
0.000471308
0.000469682
0.000468338
0.000466167
0.00167273
0.00116098
0.000976269
0.000983616
0.00111374
0.00130689
0.0015286
0.00176151
0.00199407
0.00221838
0.00242978
0.00262612
0.00280697
0.00297288
0.00312484
0.00326421
0.0033923
0.00351037
0.00361956
0.0037209
0.00381526
0.00390341
0.00398598
0.00406347
0.00413635
0.00420517
0.0042706
0.00433332
0.00439369
0.00445127
0.0045048
0.0045527
0.00459498
0.00463451
0.00468002
0.000689629
0.000514434
0.000438589
0.00041246
0.00040081
0.000394771
0.000391629
0.000390028
0.000389302
0.00038907
0.000389077
0.000389128
0.000389075
0.00038881
0.000388266
0.000387416
0.000386263
0.000384836
0.000383176
0.00038133
0.000379347
0.00037727
0.000375137
0.000372978
0.000370822
0.000368688
0.000366597
0.000364562
0.000362589
0.000360671
0.000358779
0.000356906
0.000354963
0.000353322
0.000350922
0.000806893
0.000618985
0.000529419
0.000496645
0.000481876
0.000474102
0.000469932
0.000467778
0.000466787
0.000466442
0.000466407
0.000466439
0.000466358
0.000466031
0.000465382
0.00046438
0.000463031
0.000461367
0.000459433
0.000457285
0.000454977
0.000452558
0.000450072
0.000447555
0.000445035
0.000442533
0.000440066
0.000437652
0.000435311
0.000433072
0.000430947
0.000428964
0.000426991
0.000425274
0.000422438
0.00167002
0.00115394
0.000904508
0.000775922
0.000720062
0.000726275
0.000796104
0.000927196
0.00110883
0.00132759
0.00157041
0.0018245
0.00207851
0.00232395
0.00255513
0.00276869
0.00296295
0.00313739
0.00329236
0.00342883
0.00354817
0.00365204
0.00374218
0.00382038
0.00388834
0.00394767
0.00399985
0.00404628
0.00408829
0.00412709
0.00416366
0.00419839
0.00423108
0.00425945
0.00428521
0.00164287
0.00116536
0.00107159
0.00113524
0.00125929
0.00140375
0.00154957
0.00168727
0.00181301
0.00192588
0.00202632
0.00211532
0.00219402
0.00226346
0.00232452
0.00237787
0.00242413
0.00246387
0.00249765
0.00252609
0.00254981
0.00256944
0.0025856
0.00259888
0.00260979
0.00261882
0.00262643
0.00263308
0.00263924
0.00264535
0.00265171
0.00265804
0.00266403
0.00266662
0.00267243
0.000752989
0.000565483
0.000483582
0.000453738
0.000440348
0.000433353
0.000429564
0.000427625
0.000426804
0.000426689
0.000427037
0.000427694
0.000428553
0.000429537
0.000430583
0.00043164
0.000432668
0.000433632
0.000434506
0.000435275
0.000435928
0.000436466
0.000436892
0.000437214
0.000437444
0.000437593
0.000437674
0.000437703
0.000437692
0.000437655
0.000437595
0.000437522
0.000437409
0.000437331
0.000437015
0.000765433
0.0005786
0.000491549
0.00045894
0.000444162
0.000436472
0.000432426
0.000430453
0.000429692
0.000429634
0.000429994
0.000430607
0.000431355
0.000432151
0.000432925
0.000433617
0.000434184
0.000434598
0.000434845
0.000434923
0.000434841
0.000434612
0.000434258
0.000433797
0.000433252
0.000432643
0.000431991
0.000431314
0.000430628
0.000429946
0.000429265
0.000428588
0.000427854
0.000427191
0.000426086
0.000703802
0.000527759
0.000446317
0.000416485
0.000403086
0.000396146
0.000392499
0.000390695
0.00038997
0.000389879
0.000390167
0.000390675
0.000391288
0.000391917
0.000392488
0.000392946
0.000393252
0.000393386
0.000393343
0.000393127
0.000392756
0.000392249
0.00039163
0.00039092
0.000390144
0.000389321
0.00038847
0.00038761
0.000386753
0.000385912
0.00038508
0.000384262
0.000383381
0.000382635
0.0003812
0.00152811
0.00105599
0.000987687
0.00105087
0.00114941
0.00125223
0.00134921
0.00143686
0.0015145
0.00158281
0.00164298
0.00169623
0.00174362
0.00178607
0.0018244
0.0018593
0.00189134
0.00192101
0.0019487
0.00197477
0.00199954
0.00202322
0.00204594
0.00206778
0.00208878
0.00210909
0.00212903
0.00214899
0.00216911
0.0021889
0.0022071
0.00222221
0.0022341
0.00224528
0.00226218
0.00166884
0.00114343
0.000889266
0.000748345
0.000662093
0.000605134
0.000565235
0.000535953
0.000513642
0.000496116
0.000482007
0.000470423
0.000460772
0.000452659
0.000445831
0.000440143
0.000435542
0.000432069
0.000429858
0.000429147
0.000430299
0.000433817
0.000440373
0.000450841
0.000466342
0.000488305
0.000518554
0.000559415
0.000613794
0.000685178
0.000777462
0.000894627
0.00104012
0.00121624
0.00141998
0.000741843
0.000563878
0.000480457
0.000448306
0.000433539
0.000425703
0.000421427
0.00041923
0.000418272
0.000418052
0.0004183
0.000418863
0.000419642
0.000420567
0.000421583
0.000422643
0.000423704
0.000424731
0.000425695
0.000426573
0.000427352
0.000428027
0.000428595
0.000429062
0.000429434
0.000429721
0.000429937
0.000430095
0.000430208
0.000430288
0.000430336
0.000430361
0.00043032
0.000430294
0.000429918
0.00077722
0.000525329
0.000467196
0.000449629
0.000445532
0.000447343
0.000451808
0.000457279
0.000462899
0.000468396
0.000473659
0.000478623
0.000483276
0.000487621
0.000491661
0.000495387
0.000498789
0.000501851
0.000504566
0.000506934
0.000508965
0.000510676
0.000512092
0.000513243
0.000514161
0.00051488
0.000515441
0.000515889
0.000516275
0.000516641
0.000517013
0.000517332
0.000517579
0.000517286
0.000517627
0.000917781
0.000598581
0.000532631
0.000519958
0.000523396
0.000532597
0.000543597
0.000554717
0.000565317
0.000575203
0.000584338
0.000592759
0.000600549
0.000607812
0.000614657
0.000621178
0.00062745
0.000633533
0.000639472
0.000645304
0.000651049
0.000656716
0.000662303
0.000667801
0.000673203
0.000678524
0.000683803
0.000689077
0.000694339
0.000699464
0.000704232
0.000708388
0.000711981
0.000715431
0.000720107
0.000816018
0.000538588
0.00048105
0.00046695
0.000466754
0.00047203
0.000479322
0.00048716
0.00049492
0.00050235
0.000509345
0.000515851
0.000521852
0.000527351
0.000532347
0.000536843
0.000540838
0.000544339
0.000547354
0.000549906
0.000552023
0.000553747
0.000555122
0.000556197
0.000557016
0.000557623
0.000558061
0.000558376
0.000558621
0.000558841
0.000559072
0.000559265
0.000559477
0.000559242
0.000560071
0.000779507
0.000586914
0.000499806
0.000467281
0.000452612
0.000445027
0.000440904
0.000438763
0.000437806
0.000437581
0.000437838
0.000438434
0.000439281
0.000440319
0.000441507
0.000442814
0.000444213
0.000445682
0.000447205
0.000448765
0.000450352
0.000451955
0.000453563
0.000455168
0.000456764
0.000458348
0.000459923
0.000461492
0.000463044
0.000464558
0.000465997
0.000467345
0.000468622
0.000469879
0.000471495
0.00168119
0.00120074
0.00109924
0.00119751
0.00138123
0.00159193
0.00180567
0.00201097
0.0022022
0.00237724
0.00253596
0.00267928
0.00280863
0.00292553
0.00303145
0.0031277
0.00321546
0.00329579
0.00336964
0.00343787
0.00350122
0.00356035
0.00361573
0.00366769
0.00371648
0.0037625
0.00380635
0.00384881
0.0038904
0.00393067
0.00396799
0.00400012
0.00402663
0.00405047
0.00408272
0.00166935
0.0011939
0.00110198
0.00120479
0.00138713
0.00159296
0.00179772
0.00199002
0.00216533
0.00232258
0.00246208
0.00258456
0.00269084
0.0027817
0.00285803
0.00292081
0.00297119
0.0030105
0.0030402
0.00306178
0.00307672
0.0030864
0.00309204
0.0030947
0.00309525
0.00309438
0.00309263
0.00309042
0.00308808
0.00308597
0.0030845
0.00308393
0.00308495
0.00308579
0.00309169
0.00078094
0.000599054
0.000509549
0.000476142
0.000461366
0.000453735
0.000449624
0.000447416
0.000446336
0.00044593
0.000445929
0.000446155
0.000446468
0.000446755
0.000446927
0.000446925
0.000446713
0.000446275
0.000445617
0.000444758
0.000443724
0.000442547
0.000441259
0.000439891
0.00043847
0.00043702
0.00043556
0.000434109
0.00043268
0.000431291
0.000429947
0.000428677
0.00042741
0.000426397
0.000424569
0.00167412
0.00120689
0.00112546
0.00122539
0.00139419
0.00158316
0.00177047
0.00194408
0.00210018
0.00223827
0.00235873
0.00246219
0.00254927
0.00262068
0.00267736
0.00272052
0.00275163
0.00277238
0.00278456
0.00278988
0.00278992
0.00278606
0.00277943
0.00277096
0.00276134
0.00275111
0.00274073
0.00273063
0.00272121
0.00271284
0.00270569
0.00269922
0.00269262
0.00268239
0.00267279
0.00156061
0.00109008
0.0010173
0.00107824
0.00117573
0.00127784
0.00137329
0.00145807
0.00153157
0.00159453
0.00164772
0.0016917
0.00172694
0.00175388
0.00177312
0.00178539
0.00179158
0.00179268
0.00178972
0.00178364
0.0017753
0.00176541
0.00175455
0.00174317
0.00173157
0.00172002
0.00170872
0.00169787
0.00168771
0.0016784
0.00166996
0.0016619
0.00165379
0.00164262
0.00163384
0.00166914
0.00115022
0.000896707
0.000755925
0.000669861
0.000613836
0.000576614
0.000553337
0.000542819
0.00054637
0.000567043
0.000608816
0.000675749
0.000771596
0.000899838
0.00106326
0.00126264
0.00149577
0.00175745
0.00204038
0.00233646
0.00263789
0.00293805
0.00323179
0.00351556
0.00378713
0.0040454
0.00429009
0.00452151
0.00474043
0.00494781
0.00514461
0.00533176
0.00550923
0.0056787
0.0016781
0.00119681
0.00108557
0.00117244
0.00134698
0.00155234
0.00176407
0.00196788
0.00215608
0.00232627
0.00247777
0.00261064
0.00272519
0.00282195
0.00290173
0.00296568
0.0030153
0.00305235
0.00307874
0.00309635
0.00310698
0.00311223
0.00311346
0.0031118
0.00310815
0.00310322
0.00309762
0.00309191
0.00308661
0.0030822
0.00307889
0.00307617
0.00307314
0.00306615
0.00305955
0.000948996
0.000673918
0.000600074
0.000576482
0.000570819
0.000572484
0.000577216
0.000583089
0.000589245
0.000595332
0.000601208
0.000606835
0.000612235
0.000617443
0.000622495
0.000627422
0.000632246
0.000636987
0.00064166
0.000646279
0.000650855
0.00065539
0.000659875
0.000664291
0.000668622
0.000672878
0.000677103
0.000681361
0.000685667
0.000689917
0.00069387
0.000697242
0.000700049
0.000702711
0.0007067
0.000940939
0.00064106
0.000575479
0.000557578
0.000555928
0.000561873
0.000571074
0.000581264
0.000591295
0.000600749
0.000609464
0.000617381
0.000624487
0.000630776
0.000636239
0.000640863
0.000644651
0.000647626
0.000649833
0.000651337
0.00065222
0.000652568
0.00065247
0.00065201
0.000651266
0.000650312
0.000649223
0.000648078
0.000646964
0.000645941
0.000645032
0.000644088
0.000643009
0.000640896
0.000639608
0.00154905
0.00108643
0.00102196
0.00108673
0.00118308
0.00128078
0.00137019
0.00144886
0.00151679
0.00157481
0.00162373
0.00166413
0.00169641
0.00172098
0.0017384
0.00174939
0.00175477
0.00175544
0.00175231
0.00174626
0.00173805
0.00172836
0.00171773
0.00170658
0.00169525
0.00168394
0.00167281
0.00166193
0.00165144
0.00164153
0.00163254
0.00162477
0.00161891
0.00161287
0.00161156
0.00166602
0.00119886
0.00112134
0.00121611
0.00137383
0.00154879
0.00172028
0.00187842
0.00201955
0.00214307
0.00224931
0.00233874
0.00241184
0.00246938
0.00251241
0.00254237
0.00256095
0.00257004
0.00257154
0.00256722
0.00255864
0.0025471
0.00253363
0.00251902
0.00250385
0.00248857
0.00247354
0.00245913
0.00244572
0.00243357
0.00242268
0.00241223
0.00240115
0.00238576
0.00237044
0.000995244
0.000773922
0.000659576
0.000615167
0.000595832
0.000586017
0.000580658
0.000577825
0.00057652
0.000576193
0.000576508
0.000577269
0.000578353
0.000579681
0.000581196
0.000582858
0.000584634
0.000586492
0.000588407
0.000590353
0.000592311
0.000594261
0.000596188
0.000598076
0.000599916
0.000601701
0.000603428
0.0006051
0.000606713
0.000608264
0.000609734
0.000611115
0.00061239
0.000613563
0.000614796
0.00167238
0.00118993
0.00108459
0.00116968
0.0013336
0.00152441
0.00171972
0.00190779
0.00208272
0.00224213
0.00238544
0.00251294
0.00262526
0.00272312
0.00280735
0.00287882
0.0029385
0.00298749
0.00302698
0.00305824
0.00308256
0.00310116
0.00311521
0.00312572
0.00313357
0.00313948
0.00314402
0.00314768
0.00315087
0.00315403
0.00315754
0.00316155
0.00316656
0.00317056
0.00317971
0.0015167
0.00106336
0.00100077
0.00105006
0.00112554
0.00120326
0.001276
0.00134141
0.00139925
0.00145013
0.00149496
0.00153466
0.00157009
0.00160198
0.00163096
0.0016575
0.00168202
0.00170484
0.00172626
0.00174652
0.00176582
0.00178432
0.00180209
0.00181916
0.00183551
0.00185124
0.00186661
0.00188196
0.00189748
0.00191281
0.00192692
0.00193844
0.00194718
0.00195486
0.00196739
0.00166881
0.00114258
0.000888032
0.000746919
0.000660624
0.000603666
0.000563776
0.000534503
0.000512197
0.000494667
0.000480535
0.000468898
0.000459143
0.00045084
0.00044368
0.000437439
0.000431947
0.000427079
0.000422737
0.000418853
0.000415374
0.00041227
0.000409526
0.000407148
0.000405163
0.000403622
0.000402607
0.000402236
0.000402675
0.000404145
0.000406939
0.000411437
0.000418119
0.000427582
0.000440063
0.00167099
0.00115188
0.000917814
0.000831226
0.000854313
0.000969995
0.00115247
0.00137633
0.00162433
0.00188358
0.00214388
0.00239797
0.00264144
0.00287185
0.00308794
0.00328924
0.00347572
0.00364765
0.00380549
0.00394981
0.00408135
0.00420099
0.00430969
0.00440848
0.00449839
0.00458048
0.00465581
0.00472547
0.00479056
0.00485196
0.00491025
0.00496529
0.00501671
0.0050629
0.00510875
0.000757028
0.000566301
0.000479765
0.000450197
0.000437131
0.000430338
0.000426758
0.000424902
0.000424027
0.0004237
0.000423639
0.000423627
0.000423503
0.000423148
0.000422489
0.000421497
0.000420178
0.000418562
0.000416696
0.000414631
0.000412421
0.000410112
0.000407744
0.000405353
0.000402966
0.000400607
0.000398297
0.000396049
0.000393868
0.000391743
0.000389639
0.000387554
0.000385392
0.000383602
0.000380998
0.000849944
0.000656353
0.000560672
0.000525419
0.000509622
0.000501341
0.000496903
0.000494615
0.000493575
0.000493211
0.00049316
0.000493167
0.000493038
0.000492636
0.000491881
0.000490745
0.000489236
0.000487393
0.000485268
0.000482919
0.000480404
0.000477778
0.000475087
0.000472366
0.000469645
0.000466946
0.000464288
0.000461688
0.000459169
0.000456762
0.000454481
0.000452353
0.00045023
0.000448366
0.000445316
0.00160901
0.00116324
0.00112667
0.00123679
0.00138168
0.00152428
0.00165348
0.00176635
0.00186415
0.00194868
0.00202162
0.0020841
0.00213693
0.00218069
0.00221598
0.00224344
0.0022638
0.00227791
0.00228667
0.00229102
0.00229184
0.00228996
0.0022861
0.00228087
0.00227477
0.00226817
0.00226134
0.00225451
0.00224784
0.00224157
0.002236
0.00223135
0.00222828
0.00222502
0.00222684
0.00167133
0.00117738
0.00104584
0.00110819
0.00126118
0.00145012
0.00165071
0.00184906
0.00203685
0.00220999
0.00236702
0.00250805
0.00263383
0.00274517
0.00284288
0.00292774
0.00300058
0.00306233
0.00311405
0.00315686
0.00319193
0.00322044
0.00324351
0.00326215
0.00327726
0.00328966
0.00330005
0.00330914
0.0033176
0.00332602
0.00333476
0.00334345
0.00335144
0.00335526
0.00336008
0.00158407
0.00110066
0.00101055
0.00106332
0.00116339
0.00127582
0.00138636
0.00148875
0.0015807
0.00166194
0.00173317
0.00179534
0.00184937
0.00189598
0.00193578
0.00196923
0.00199684
0.00201914
0.00203671
0.00205016
0.00206014
0.00206724
0.00207203
0.00207502
0.00207663
0.00207725
0.00207722
0.00207688
0.00207662
0.00207675
0.00207743
0.00207824
0.00207866
0.00207567
0.00207374
0.000913877
0.000607885
0.000542879
0.000528123
0.00052927
0.00053662
0.000546216
0.000556246
0.000565952
0.000575073
0.000583554
0.000591425
0.000598769
0.00060567
0.000612214
0.000618479
0.000624528
0.000630413
0.000636179
0.000641858
0.000647477
0.000653045
0.000658561
0.000664015
0.000669407
0.000674763
0.000680142
0.000685597
0.000691097
0.000696457
0.000701361
0.000705531
0.00070912
0.000712991
0.00071844
0.000819485
0.000548745
0.000486515
0.000469612
0.000468018
0.000472553
0.000479448
0.000486996
0.000494467
0.000501589
0.000508284
0.000514564
0.000520475
0.000526072
0.000531415
0.000536561
0.000541558
0.000546443
0.000551247
0.000555997
0.00056071
0.000565394
0.000570045
0.000574653
0.000579215
0.000583753
0.000588317
0.000592951
0.000597632
0.000602203
0.000606394
0.000609969
0.000613058
0.000616392
0.00062108
0.00166884
0.00114373
0.000889433
0.000748432
0.000662154
0.000605182
0.000565277
0.000535996
0.000513695
0.0004962
0.000482156
0.000470698
0.000461275
0.000453556
0.000447376
0.000442717
0.000439702
0.000438598
0.000439827
0.000443975
0.000451806
0.000464265
0.000482502
0.000507911
0.000542198
0.000587446
0.000646095
0.000720785
0.000814077
0.00092813
0.00106442
0.00122355
0.0014051
0.00160773
0.00182602
0.00165997
0.00118268
0.00109751
0.00119322
0.00135645
0.00153823
0.00171799
0.0018865
0.00204015
0.00217831
0.00230176
0.0024119
0.00251037
0.00259876
0.00267843
0.00275054
0.00281606
0.00287584
0.00293056
0.00298087
0.00302732
0.00307039
0.00311047
0.0031478
0.00318258
0.00321506
0.00324563
0.00327489
0.00330336
0.00333104
0.00335708
0.00337983
0.00339854
0.00341377
0.00343483
0.000807824
0.000612512
0.000524622
0.000491515
0.00047647
0.000468629
0.000464344
0.000462114
0.000461128
0.000460915
0.000461207
0.000461848
0.000462745
0.000463839
0.000465086
0.000466454
0.000467914
0.000469445
0.000471026
0.00047264
0.000474275
0.000475918
0.000477558
0.000479184
0.00048079
0.000482373
0.000483935
0.000485479
0.000486998
0.000488471
0.000489864
0.000491159
0.000492376
0.000493556
0.000495111
0.00167285
0.00118177
0.00104208
0.00110017
0.00126008
0.00146314
0.00168137
0.00189793
0.0021017
0.00228562
0.00244473
0.00257669
0.00268161
0.00276081
0.00281665
0.00285221
0.00287088
0.00287603
0.00287075
0.00285771
0.00283913
0.00281679
0.00279209
0.00276605
0.00273934
0.00271232
0.00268515
0.00265812
0.00263182
0.00260744
0.00258673
0.0025712
0.00256075
0.00255009
0.00253152
0.000923837
0.000614978
0.000548783
0.000534403
0.000535684
0.000542792
0.000551977
0.000561585
0.000570929
0.000579759
0.000587999
0.000595665
0.000602811
0.000609521
0.000615884
0.000621976
0.000627859
0.000633585
0.000639195
0.000644721
0.000650183
0.000655588
0.000660932
0.000666208
0.000671412
0.000676565
0.00068171
0.000686885
0.000692059
0.000697073
0.000701673
0.000705631
0.000709073
0.000712662
0.000717601
0.00166897
0.0011463
0.000892393
0.000751693
0.000666232
0.000611694
0.000577605
0.000560374
0.000560591
0.000581585
0.00062793
0.000703811
0.000812173
0.000954871
0.00113235
0.00134248
0.00158008
0.00183784
0.002108
0.00238367
0.00265959
0.00293208
0.00319875
0.00345809
0.00370911
0.00395126
0.00418438
0.00440866
0.00462455
0.00483244
0.00503232
0.00522373
0.00540622
0.00558025
0.00574814
0.000943863
0.000618874
0.000552029
0.000539646
0.000543265
0.000552593
0.000563757
0.000575079
0.000585898
0.000596008
0.000605366
0.000614008
0.000622009
0.000629476
0.000636517
0.000643228
0.000649684
0.000655946
0.000662063
0.000668072
0.000673996
0.000679845
0.000685618
0.000691304
0.000696902
0.000702429
0.000707929
0.000713441
0.000718945
0.000724291
0.000729229
0.000733509
0.000737228
0.000740961
0.00074604
0.000841293
0.00064189
0.000552257
0.000518191
0.0005027
0.00049468
0.000490349
0.000488134
0.00048719
0.000487034
0.000487394
0.00048811
0.000489089
0.000490268
0.000491604
0.000493064
0.000494619
0.000496247
0.000497928
0.000499646
0.000501387
0.00050314
0.000504893
0.000506635
0.000508359
0.000510061
0.000511745
0.000513415
0.000515065
0.000516674
0.000518201
0.000519617
0.000520936
0.000522201
0.000523877
0.00166787
0.0012027
0.0011265
0.00122361
0.00138384
0.00156048
0.00173279
0.00189148
0.00203321
0.00215715
0.00226347
0.00235261
0.00242517
0.00248207
0.00252455
0.00255411
0.0025725
0.00258159
0.00258321
0.00257908
0.00257071
0.00255937
0.00254609
0.00253167
0.00251671
0.00250161
0.00248663
0.00247196
0.00245778
0.00244444
0.00243255
0.00242269
0.00241576
0.00240941
0.00240744
0.000763669
0.000580778
0.000494521
0.000461691
0.000447012
0.000439471
0.000435403
0.000433311
0.0004324
0.000432225
0.000432539
0.000433189
0.000434078
0.000435145
0.000436347
0.000437648
0.00043902
0.000440435
0.000441871
0.000443308
0.000444731
0.000446126
0.000447483
0.000448794
0.000450053
0.000451259
0.000452413
0.000453523
0.000454588
0.000455606
0.000456557
0.000457431
0.000458214
0.000458963
0.000459688
0.00166931
0.00115123
0.000898245
0.000759107
0.000677688
0.000632538
0.000617251
0.000633004
0.000684001
0.000773608
0.000902695
0.00107028
0.00127327
0.00150533
0.00175738
0.00201971
0.00228401
0.00254423
0.00279654
0.00303863
0.00326907
0.00348709
0.00369236
0.00388487
0.0040649
0.00423296
0.00438982
0.00453641
0.00467381
0.00480322
0.00492578
0.00504235
0.00515345
0.00525802
0.00535747
0.000892565
0.000687661
0.000583434
0.0005432
0.000525069
0.000515582
0.000510381
0.000507626
0.000506342
0.000505966
0.000506179
0.000506799
0.000507705
0.000508819
0.000510079
0.000511435
0.000512841
0.000514255
0.000515643
0.000516975
0.000518229
0.000519391
0.000520453
0.00052141
0.000522264
0.000523022
0.000523692
0.000524286
0.000524816
0.000525294
0.00052572
0.000526102
0.000526408
0.000526688
0.000526752
0.000876112
0.000622867
0.000556099
0.000535181
0.000529733
0.000530798
0.000534599
0.00053952
0.000544714
0.000549753
0.000554422
0.000558575
0.000562098
0.000564903
0.000566938
0.000568189
0.00056868
0.000568469
0.000567641
0.000566294
0.00056453
0.000562445
0.000560128
0.000557652
0.00055508
0.000552466
0.000549858
0.000547304
0.000544852
0.000542536
0.000540363
0.000538241
0.000536113
0.000533424
0.000531281
0.00167611
0.00118771
0.00107385
0.00115769
0.00132888
0.0015316
0.00174124
0.00194471
0.00213526
0.00231021
0.00246916
0.00261296
0.00274291
0.00286047
0.00296703
0.00306392
0.00315232
0.00323332
0.00330792
0.00337699
0.00344131
0.00350154
0.00355815
0.00361149
0.00366185
0.0037096
0.00375541
0.00380003
0.00384387
0.00388637
0.00392573
0.00395974
0.0039882
0.00401459
0.00405085
0.00133744
0.000892875
0.000849113
0.000909342
0.000984296
0.00105387
0.00111437
0.00116597
0.00120937
0.00124645
0.00127831
0.00130556
0.00132854
0.00134745
0.00136251
0.00137393
0.001382
0.00138707
0.00138955
0.00138984
0.00138838
0.00138556
0.00138175
0.00137724
0.0013723
0.00136711
0.00136183
0.00135656
0.00135142
0.00134654
0.0013421
0.00133819
0.00133527
0.00133189
0.00133217
0.00124299
0.000816504
0.000771784
0.000815451
0.000871611
0.000924583
0.000970981
0.00101051
0.00104365
0.00107195
0.00109623
0.00111693
0.00113422
0.00114824
0.0011591
0.00116697
0.0011721
0.00117476
0.00117531
0.00117411
0.0011715
0.00116783
0.00116338
0.00115841
0.00115314
0.0011477
0.00114223
0.00113682
0.00113154
0.00112651
0.0011219
0.0011178
0.00111464
0.00111106
0.00111092
0.00166319
0.00118087
0.00107971
0.00115498
0.00130087
0.00147162
0.00164571
0.00181223
0.00196616
0.0021059
0.00223163
0.00234434
0.00244526
0.00253566
0.00261671
0.00268934
0.00275436
0.00281241
0.00286407
0.00290991
0.00295045
0.00298623
0.00301776
0.00304556
0.00307011
0.00309189
0.00311138
0.00312909
0.00314556
0.00316124
0.00317644
0.00319093
0.00320446
0.00321476
0.00322748
0.000707397
0.000530021
0.000451592
0.000422942
0.000410088
0.000403369
0.000399714
0.000397814
0.000396979
0.00039682
0.000397114
0.000397717
0.000398541
0.000399525
0.000400628
0.000401812
0.000403047
0.000404305
0.000405563
0.0004068
0.000408002
0.000409156
0.000410254
0.00041129
0.000412263
0.000413172
0.000414023
0.000414822
0.000415575
0.000416283
0.000416934
0.000417527
0.000418035
0.000418533
0.000418846
0.00166989
0.00118278
0.00106866
0.00113973
0.00128876
0.00146739
0.00165378
0.00183542
0.00200551
0.00216118
0.0023018
0.00242799
0.0025408
0.00264134
0.00273062
0.0028095
0.00287872
0.00293902
0.00299111
0.00303579
0.00307384
0.0031061
0.00313336
0.0031564
0.00317595
0.00319266
0.00320716
0.00322007
0.003232
0.00324351
0.00325498
0.00326615
0.00327664
0.0032835
0.00329283
0.00159344
0.00113093
0.00106901
0.00113841
0.00124253
0.00134993
0.00145041
0.00154077
0.00162064
0.00169086
0.00175267
0.00180732
0.00185595
0.00189956
0.00193898
0.0019749
0.00200787
0.00203837
0.0020668
0.00209353
0.00211884
0.00214298
0.00216607
0.00218817
0.00220932
0.00222964
0.00224944
0.00226915
0.002289
0.00230858
0.00232666
0.00234167
0.00235335
0.00236369
0.0023801
0.00166887
0.00114471
0.000890541
0.000749577
0.000663289
0.000606294
0.000566368
0.000537074
0.000514775
0.000497307
0.000483334
0.000472024
0.000462875
0.000455634
0.000450246
0.000446853
0.000445788
0.000447598
0.000453063
0.000463221
0.000479396
0.000503258
0.000536903
0.000582974
0.000644746
0.000726061
0.000831036
0.000963549
0.00112664
0.00132199
0.00154956
0.00180745
0.002092
0.00239811
0.00271642
0.00167711
0.00119902
0.00109297
0.00118214
0.00135526
0.00155864
0.00176812
0.00196944
0.00215477
0.0023199
0.00246323
0.00258416
0.0026829
0.00276046
0.00281847
0.00285908
0.00288479
0.00289818
0.00290179
0.0028979
0.00288851
0.00287525
0.00285944
0.00284208
0.00282392
0.00280544
0.00278697
0.00276872
0.00275099
0.0027343
0.00271953
0.00270757
0.00269923
0.002692
0.0026865
0.00167675
0.00119811
0.00109395
0.00118802
0.00136601
0.00157076
0.00177811
0.00197526
0.00215547
0.00231622
0.00245627
0.00257522
0.00267303
0.0027503
0.00280835
0.0028491
0.00287489
0.0028883
0.00289185
0.00288785
0.00287833
0.00286493
0.00284898
0.00283145
0.00281309
0.00279446
0.00277605
0.00275836
0.00274185
0.00272678
0.00271296
0.00269922
0.00268388
0.00266339
0.00264169
0.00142999
0.000949839
0.000875365
0.000919197
0.000990674
0.00106405
0.00113225
0.00119337
0.00124728
0.00129469
0.00133639
0.00137319
0.00140589
0.00143521
0.00146176
0.00148596
0.0015082
0.00152875
0.00154783
0.00156562
0.00158229
0.00159796
0.00161272
0.00162662
0.00163968
0.00165193
0.00166354
0.00167474
0.00168581
0.00169675
0.00170716
0.0017161
0.00172323
0.00172808
0.00173806
0.00166938
0.00115204
0.000899299
0.000759392
0.00067569
0.000625617
0.000601175
0.000602028
0.000632094
0.000696522
0.000799076
0.000941508
0.00112401
0.00134429
0.00159624
0.00187048
0.00215622
0.00244329
0.00272347
0.00299089
0.00324191
0.00347471
0.00368883
0.00388475
0.00406356
0.00422671
0.00437578
0.00451242
0.00463822
0.00475476
0.00486354
0.00496591
0.0050633
0.00515565
0.00524625
0.00167289
0.00120063
0.001108
0.00120117
0.00136827
0.00156098
0.0017574
0.0019449
0.00211674
0.00226881
0.00239938
0.00250773
0.00259407
0.00265949
0.00270582
0.00273546
0.00275107
0.00275537
0.00275088
0.00273988
0.00272425
0.00270554
0.00268492
0.00266327
0.0026412
0.00261907
0.00259709
0.00257544
0.00255446
0.00253493
0.00251802
0.00250482
0.00249576
0.00248713
0.00247644
0.000565896
0.000404427
0.00034167
0.000320249
0.000310624
0.000305562
0.000302782
0.000301321
0.000300669
0.000300539
0.000300754
0.000301206
0.000301826
0.000302563
0.000303378
0.000304238
0.000305117
0.00030599
0.000306838
0.000307644
0.000308397
0.000309091
0.000309721
0.000310287
0.000310792
0.00031124
0.000311636
0.000311989
0.000312305
0.00031259
0.00031284
0.000313059
0.000313227
0.000313408
0.000313453
0.00167099
0.00115684
0.000917035
0.000813405
0.000808013
0.000891798
0.00105025
0.00126051
0.00150215
0.00175796
0.00201307
0.00225587
0.0024784
0.00267647
0.00284875
0.0029959
0.00311963
0.00322214
0.00330577
0.00337286
0.00342569
0.00346642
0.00349709
0.00351954
0.00353537
0.00354598
0.0035525
0.0035559
0.00355706
0.00355695
0.00355676
0.00355775
0.00356109
0.00356582
0.00357203
0.00164097
0.00117798
0.00110459
0.00118887
0.00133071
0.00148982
0.00164679
0.00179198
0.00192101
0.00203251
0.0021255
0.00219969
0.00225561
0.00229441
0.00231786
0.00232813
0.00232759
0.00231867
0.00230356
0.00228413
0.00226187
0.0022379
0.00221304
0.00218787
0.00216282
0.00213831
0.0021148
0.00209276
0.00207239
0.00205314
0.00203328
0.00200981
0.0019803
0.00194407
0.00191087
0.00165656
0.00118799
0.00110606
0.0011972
0.00135296
0.00152798
0.00170164
0.00186364
0.00200912
0.00213556
0.00224124
0.00232608
0.00239068
0.00243631
0.00246494
0.002479
0.00248114
0.00247396
0.00245983
0.00244075
0.00241831
0.00239384
0.00236836
0.00234254
0.0023168
0.00229127
0.00226601
0.00224109
0.00221699
0.00219478
0.00217614
0.00216249
0.00215388
0.00214493
0.00212903
0.00166935
0.00115106
0.000898161
0.000759802
0.000680648
0.000640711
0.000635662
0.000668605
0.000744127
0.000863418
0.00102418
0.00122231
0.00145151
0.00170286
0.00196629
0.00223229
0.00249427
0.00274793
0.00299076
0.00322149
0.00343963
0.00364513
0.0038382
0.00401926
0.00418888
0.00434773
0.00449659
0.00463632
0.00476787
0.00489225
0.00501042
0.00512312
0.0052311
0.00533372
0.00543454
0.00167521
0.00117371
0.000995932
0.00101589
0.00116855
0.00138932
0.00163643
0.00188756
0.00212876
0.00235021
0.00254736
0.00271815
0.00286184
0.00297897
0.00307114
0.00314076
0.00319075
0.00322425
0.0032443
0.00325372
0.00325496
0.00325006
0.00324075
0.00322838
0.00321397
0.0031983
0.00318187
0.00316509
0.0031484
0.00313246
0.00311825
0.00310685
0.00309911
0.003093
0.00308802
0.00167558
0.00117578
0.001006
0.00103469
0.00118616
0.00139462
0.00162458
0.00185794
0.00208244
0.00228965
0.00247532
0.00263678
0.0027727
0.00288309
0.00296921
0.0030333
0.00307818
0.00310696
0.00312268
0.00312814
0.0031258
0.00311771
0.00310553
0.00309055
0.00307377
0.00305598
0.00303788
0.00302013
0.00300332
0.00298778
0.00297325
0.00295842
0.00294137
0.00291891
0.00289453
0.000846871
0.000570604
0.000510349
0.000494884
0.000494107
0.000499318
0.000506796
0.000514866
0.000522776
0.000530317
0.000537432
0.000544104
0.000550365
0.00055628
0.000561911
0.000567302
0.000572486
0.000577482
0.000582304
0.000586958
0.000591449
0.000595779
0.000599945
0.000603937
0.000607742
0.000611364
0.000614833
0.00061821
0.000621546
0.000624818
0.000627902
0.000630556
0.00063273
0.000634412
0.000637128
0.000659974
0.000495199
0.000419756
0.000392476
0.00038042
0.000374139
0.000370716
0.000368859
0.000367947
0.000367599
0.000367593
0.000367788
0.000368073
0.000368357
0.000368567
0.000368651
0.000368575
0.000368324
0.000367898
0.000367308
0.000366574
0.00036572
0.000364771
0.00036375
0.000362681
0.000361583
0.000360473
0.000359365
0.000358271
0.000357205
0.000356172
0.000355193
0.000354214
0.000353434
0.000352023
0.00167034
0.00115527
0.000905601
0.0007738
0.000711705
0.000709859
0.000774685
0.000910399
0.00110742
0.00134775
0.00161336
0.00188744
0.00215453
0.00240266
0.00262398
0.00281446
0.00297306
0.00310095
0.0032007
0.00327561
0.00332923
0.00336507
0.00338635
0.0033959
0.00339621
0.00338948
0.00337771
0.00336262
0.00334547
0.00332665
0.00330533
0.00327951
0.00324729
0.00320931
0.00317293
0.00167033
0.00115526
0.000905572
0.000773709
0.000711431
0.000709179
0.000773383
0.000908481
0.00110515
0.00134543
0.00161124
0.00188565
0.00215309
0.00240152
0.00262309
0.00281373
0.00297245
0.00310044
0.00320026
0.00327524
0.00332896
0.00336494
0.00338644
0.00339632
0.00339699
0.00339035
0.00337803
0.00336145
0.00334216
0.00332206
0.00330342
0.00328812
0.0032763
0.00326402
0.00324333
0.00167066
0.00117221
0.00103634
0.00110043
0.00126247
0.00146307
0.0016753
0.00188489
0.00208396
0.00226881
0.00243828
0.00259257
0.00273265
0.00285976
0.00297526
0.00308046
0.00317661
0.00326485
0.00334623
0.00342168
0.00349201
0.00355792
0.00361993
0.00367843
0.00373376
0.00378639
0.00383701
0.00388634
0.00393472
0.00398142
0.00402461
0.00406213
0.00409402
0.00412452
0.00416402
0.000733403
0.000539244
0.000459959
0.000432286
0.00041992
0.000413488
0.000410009
0.000408231
0.00040749
0.000407415
0.000407779
0.000408442
0.000409315
0.000410337
0.000411461
0.000412646
0.000413861
0.000415074
0.00041626
0.0004174
0.000418477
0.000419481
0.000420407
0.000421253
0.000422019
0.000422711
0.000423336
0.000423903
0.000424422
0.000424897
0.000425325
0.000425706
0.00042602
0.000426319
0.000426515
0.00167478
0.00117113
0.000999162
0.00102527
0.00117301
0.00137727
0.00160439
0.00183745
0.00206493
0.00227968
0.00247751
0.00265676
0.00281684
0.00295764
0.00307948
0.00318311
0.00326969
0.00334079
0.00339819
0.00344383
0.0034796
0.00350733
0.00352862
0.0035449
0.00355734
0.00356697
0.00357464
0.00358116
0.0035873
0.00359369
0.00360067
0.00360774
0.00361387
0.00361541
0.0036161
0.000985576
0.00067301
0.000610784
0.000600027
0.000604058
0.000613309
0.000624133
0.000634993
0.000645368
0.000655098
0.000664157
0.000672564
0.000680398
0.000687752
0.000694721
0.000701389
0.000707821
0.000714062
0.000720143
0.000726081
0.000731885
0.000737551
0.00074307
0.000748427
0.00075361
0.000758621
0.000763483
0.000768237
0.000772912
0.000777475
0.000781814
0.000785699
0.000789087
0.000791767
0.000795497
0.00063569
0.000470862
0.000397763
0.000371089
0.000358975
0.000352629
0.000349268
0.000347598
0.000346922
0.000346825
0.000347077
0.000347537
0.000348105
0.000348704
0.000349272
0.000349759
0.000350129
0.000350361
0.000350445
0.000350383
0.000350186
0.000349869
0.000349449
0.000348945
0.000348376
0.00034776
0.000347114
0.000346454
0.000345791
0.000345135
0.000344482
0.000343835
0.000343133
0.000342532
0.000341417
0.00132036
0.000855746
0.00078507
0.000818916
0.000875731
0.000934012
0.000988112
0.00103654
0.00107929
0.00111694
0.00115012
0.00117949
0.00120559
0.00122908
0.00125043
0.00127007
0.00128833
0.00130546
0.00132171
0.00133722
0.00135213
0.00136653
0.00138046
0.00139393
0.00140697
0.00141963
0.00143204
0.00144434
0.00145658
0.00146849
0.00147955
0.00148905
0.00149691
0.001504
0.00151355
0.00101941
0.000710162
0.000642741
0.000629274
0.000631582
0.00063933
0.000648781
0.00065843
0.000667753
0.000676605
0.000684912
0.000692686
0.000699977
0.000706861
0.000713419
0.000719719
0.000725812
0.000731733
0.000737501
0.000743127
0.000748612
0.000753949
0.000759128
0.000764134
0.000768956
0.000773594
0.000778069
0.000782418
0.000786672
0.000790816
0.000794767
0.000798333
0.000801466
0.000803921
0.000807271
0.000859873
0.000563526
0.00050054
0.000486495
0.000487445
0.00049407
0.000502746
0.000511824
0.000520607
0.000528859
0.000536542
0.000543692
0.00055037
0.000556656
0.000562621
0.000568334
0.00057385
0.000579215
0.000584467
0.000589639
0.000594756
0.00059983
0.000604859
0.000609832
0.000614747
0.000619625
0.000624523
0.000629498
0.00063454
0.00063949
0.000644055
0.000647949
0.00065126
0.000654748
0.000659642
0.000819033
0.000565547
0.000504335
0.000486543
0.000483652
0.000486807
0.000492346
0.000498628
0.00050499
0.000511187
0.000517114
0.000522726
0.000528031
0.000533074
0.000537901
0.00054254
0.000547013
0.000551332
0.000555502
0.000559522
0.000563394
0.000567116
0.000570686
0.000574094
0.000577331
0.000580398
0.000583323
0.000586154
0.000588936
0.00059166
0.000594233
0.000596461
0.00059831
0.000599679
0.000602116
0.0016732
0.0011674
0.0010064
0.00104801
0.00120659
0.0014168
0.00164506
0.00187462
0.00209596
0.00230401
0.0024966
0.0026733
0.00283464
0.00298171
0.00311579
0.00323822
0.0033503
0.00345325
0.0035482
0.00363618
0.00371811
0.00379477
0.00386676
0.00393455
0.00399854
0.00405926
0.00411744
0.00417393
0.00422914
0.00428241
0.00433184
0.00437519
0.00441244
0.0044478
0.00449259
0.00165596
0.00118344
0.0010997
0.00117995
0.00132009
0.00147799
0.00163491
0.00178234
0.00191702
0.00203817
0.00214613
0.00224162
0.00232551
0.00239862
0.00246172
0.00251557
0.00256091
0.00259853
0.00262926
0.00265394
0.00267347
0.00268869
0.00270044
0.00270944
0.00271633
0.00272163
0.00272579
0.00272919
0.0027322
0.00273516
0.0027384
0.00274194
0.00274612
0.00274892
0.00275644
0.00167062
0.00115561
0.000911351
0.000797099
0.000773163
0.000834295
0.000974044
0.00117216
0.00140641
0.00165895
0.00191457
0.00216135
0.00239112
0.00259909
0.00278302
0.00294245
0.00307811
0.00319148
0.00328453
0.00335953
0.00341887
0.00346492
0.00349991
0.00352585
0.00354455
0.00355755
0.00356625
0.00357191
0.00357568
0.00357848
0.00358078
0.00358222
0.00358172
0.00357666
0.00356916
0.00145978
0.00098971
0.000922163
0.000976677
0.00106176
0.00114878
0.00122924
0.00130094
0.001364
0.00141925
0.00146776
0.00151052
0.00154839
0.00158222
0.00161274
0.00164058
0.00166622
0.00169005
0.00171238
0.00173345
0.00175345
0.0017725
0.00179068
0.00180804
0.00182461
0.00184045
0.00185573
0.00187063
0.00188529
0.00189961
0.00191312
0.00192499
0.00193482
0.00194261
0.00195263
0.000824835
0.000627704
0.00053234
0.000495579
0.000479332
0.000471152
0.000466791
0.000464578
0.000463637
0.000463473
0.000463811
0.0004645
0.000465444
0.000466581
0.00046787
0.000469278
0.000470781
0.000472362
0.000474002
0.00047569
0.000477415
0.000479165
0.000480932
0.000482708
0.000484485
0.000486265
0.000488047
0.000489833
0.00049161
0.000493352
0.000495023
0.000496609
0.000498152
0.000499671
0.000501776
0.00167382
0.00116864
0.000996451
0.00102077
0.00116456
0.00136507
0.00158906
0.00181957
0.0020457
0.00226064
0.00246071
0.00264425
0.00281077
0.00296052
0.0030941
0.00321228
0.00331594
0.00340608
0.0034838
0.00355031
0.00360692
0.00365498
0.00369581
0.00373063
0.00376055
0.00378653
0.00380941
0.00382995
0.00384886
0.00386681
0.00388428
0.00390133
0.00391807
0.00393273
0.00395085
0.000520721
0.000370278
0.000313019
0.000293366
0.000284522
0.000279887
0.000277356
0.000276031
0.000275447
0.000275338
0.000275543
0.000275965
0.000276538
0.000277213
0.000277955
0.00027873
0.000279514
0.000280283
0.00028102
0.00028171
0.000282343
0.000282915
0.000283424
0.000283871
0.000284259
0.000284592
0.000284878
0.000285125
0.00028534
0.000285528
0.000285688
0.000285824
0.000285913
0.000286026
0.000285972
0.00167228
0.00115647
0.000943762
0.000903163
0.000990292
0.00116457
0.00138719
0.00163459
0.00189165
0.00214726
0.00239392
0.00262737
0.00284562
0.00304797
0.00323455
0.00340588
0.00356266
0.00370567
0.00383578
0.00395392
0.00406107
0.00415822
0.00424637
0.00432641
0.00439921
0.00446559
0.00452644
0.00458275
0.00463554
0.00468556
0.00473294
0.00477691
0.00481679
0.00485187
0.00488893
0.00167252
0.00117735
0.00105139
0.00112336
0.00128614
0.00148359
0.0016905
0.00189307
0.00208399
0.00226016
0.00242086
0.00256662
0.00269864
0.00281824
0.00292678
0.00302554
0.00311573
0.00319843
0.00327464
0.00334525
0.00341107
0.00347274
0.00353076
0.00358547
0.00363719
0.00368634
0.00373358
0.00377966
0.00382498
0.00386887
0.00390946
0.00394451
0.00397395
0.0040017
0.0040395
0.00167063
0.00115583
0.000909515
0.000788098
0.000748277
0.000782718
0.000889714
0.00105743
0.00126842
0.00150705
0.00175875
0.00200952
0.0022476
0.00246456
0.00265535
0.00281768
0.00295141
0.00305799
0.00313991
0.00320018
0.003242
0.00326849
0.0032825
0.00328651
0.00328271
0.00327305
0.00325931
0.00324302
0.00322535
0.0032066
0.00318592
0.00316121
0.00313036
0.00309342
0.00305703
0.00167058
0.00115567
0.000909169
0.00078719
0.00074618
0.000778815
0.000883951
0.00105041
0.00126094
0.00149986
0.00175238
0.00200418
0.00224322
0.00246097
0.00265231
0.00281499
0.00294896
0.00305574
0.00313786
0.00319839
0.00324054
0.00326745
0.003282
0.00328669
0.0032836
0.00327441
0.00326046
0.00324301
0.00322343
0.00320353
0.00318548
0.00317108
0.00316037
0.00314919
0.00312928
0.000877277
0.000590374
0.00052705
0.000511634
0.000511898
0.0005182
0.000526723
0.000535722
0.000544426
0.000552596
0.000560228
0.000567356
0.000574043
0.000580365
0.000586392
0.000592187
0.000597798
0.000603265
0.000608623
0.000613902
0.000619127
0.000624307
0.000629441
0.000634515
0.000639515
0.000644459
0.000649398
0.000654402
0.000659482
0.000664509
0.0006692
0.000673233
0.000676658
0.000680001
0.000684962
0.000767573
0.000520205
0.000460842
0.000443241
0.000440143
0.00044291
0.000448029
0.0004539
0.000459808
0.000465507
0.000470938
0.000476092
0.000480995
0.000485688
0.000490212
0.000494601
0.000498883
0.000503082
0.000507217
0.000511306
0.000515363
0.000519392
0.000523388
0.000527337
0.000531227
0.00053507
0.000538907
0.000542789
0.000546727
0.000550618
0.000554243
0.000557353
0.000559981
0.000562564
0.000566112
0.000694978
0.000467917
0.00041356
0.000397378
0.000394614
0.000397169
0.000401748
0.000406972
0.000412264
0.000417387
0.000422267
0.000426893
0.000431273
0.000435444
0.00043945
0.000443332
0.000447123
0.000450843
0.000454509
0.000458132
0.000461714
0.000465254
0.000468743
0.00047217
0.000475526
0.000478815
0.000482052
0.000485262
0.000488447
0.000491554
0.000494471
0.000497043
0.000499256
0.000501221
0.000503716
0.000673838
0.000501489
0.000425939
0.000397442
0.000384771
0.000378351
0.000374908
0.000373153
0.00037241
0.000372299
0.000372601
0.00037319
0.000373982
0.000374926
0.000375987
0.000377142
0.000378372
0.00037966
0.000380992
0.000382355
0.000383738
0.000385131
0.000386524
0.000387908
0.000389277
0.000390627
0.000391956
0.000393263
0.000394541
0.00039578
0.000396961
0.000398076
0.000399126
0.000400128
0.000401342
0.000817906
0.000628001
0.000533341
0.000498115
0.000482863
0.000475006
0.000470681
0.000468326
0.000467153
0.000466709
0.000466733
0.000467052
0.000467538
0.000468084
0.000468604
0.00046903
0.000469312
0.000469421
0.000469343
0.00046908
0.000468645
0.000468058
0.000467344
0.000466528
0.000465634
0.000464686
0.000463703
0.000462704
0.000461705
0.00046072
0.000459758
0.000458843
0.000457931
0.00045719
0.000455996
0.00167462
0.0011731
0.00101186
0.00105
0.00120208
0.00140505
0.00162812
0.00185469
0.00207378
0.00227912
0.0024675
0.00263788
0.00279016
0.00292461
0.00304168
0.00314214
0.00322702
0.00329764
0.00335552
0.00340233
0.00343972
0.00346931
0.00349258
0.00351086
0.00352527
0.00353677
0.00354622
0.00355441
0.0035621
0.00356993
0.00357825
0.00358656
0.00359391
0.00359664
0.00359896
0.000661331
0.00048934
0.000416862
0.000392131
0.000380991
0.000375141
0.000372069
0.000370487
0.000369755
0.000369513
0.000369514
0.000369576
0.000369556
0.000369352
0.000368898
0.000368164
0.000367151
0.000365882
0.000364394
0.000362729
0.000360931
0.000359041
0.000357095
0.000355121
0.000353145
0.000351187
0.000349266
0.000347395
0.00034558
0.000343818
0.000342085
0.000340375
0.000338598
0.000337095
0.000334831
0.000721292
0.00054558
0.000465938
0.000437278
0.00042428
0.000417383
0.000413662
0.000411733
0.000410833
0.000410518
0.00041049
0.000410537
0.000410497
0.000410255
0.00040974
0.000408922
0.000407803
0.000406407
0.000404774
0.000402949
0.000400979
0.000398908
0.000396774
0.000394609
0.000392438
0.00039028
0.000388151
0.000386067
0.000384046
0.00038211
0.00038027
0.00037855
0.000376833
0.000375357
0.000372863
0.00166967
0.00115292
0.000901451
0.000766702
0.000696438
0.000675168
0.000703052
0.000784024
0.000917151
0.00109565
0.00131036
0.00155059
0.00180448
0.00206154
0.00231347
0.0025548
0.00278215
0.00299357
0.00318813
0.00336561
0.00352639
0.00367127
0.00380135
0.00391798
0.00402258
0.00411661
0.00420153
0.00427874
0.00434966
0.0044156
0.00447773
0.00453665
0.0045925
0.00464335
0.00469092
0.000661723
0.000485558
0.000413669
0.000388317
0.000376995
0.000371138
0.000367984
0.000366378
0.000365714
0.000365649
0.000365977
0.000366572
0.000367351
0.00036825
0.00036922
0.00037022
0.000371217
0.000372182
0.000373091
0.000373929
0.000374683
0.00037535
0.000375928
0.000376421
0.000376835
0.000377178
0.000377459
0.00037769
0.00037788
0.00037804
0.00037817
0.000378275
0.000378331
0.000378407
0.000378285
0.00138541
0.000924602
0.000861123
0.000902589
0.000965319
0.0010285
0.00108631
0.00113749
0.00118241
0.00122185
0.00125662
0.00128747
0.00131501
0.00133977
0.00136221
0.00138266
0.00140139
0.00141857
0.00143435
0.00144885
0.00146215
0.00147433
0.00148549
0.00149568
0.001505
0.00151353
0.00152137
0.00152867
0.00153559
0.00154228
0.0015488
0.00155492
0.00156068
0.00156447
0.0015728
0.000590568
0.000413944
0.000368731
0.000354649
0.000350995
0.000351401
0.000353539
0.00035633
0.000359268
0.000362099
0.000364623
0.000366677
0.000368138
0.000368929
0.000369029
0.000368467
0.000367306
0.00036563
0.00036354
0.000361131
0.000358496
0.000355712
0.000352846
0.000349947
0.000347054
0.000344191
0.000341378
0.000338633
0.00033599
0.0003335
0.000331225
0.000329188
0.000327384
0.000325416
0.000323496
0.000556046
0.000371143
0.000326319
0.00031204
0.000308179
0.000308445
0.000310328
0.000312816
0.000315447
0.000317992
0.000320275
0.000322148
0.000323498
0.000324254
0.000324394
0.000323937
0.000322939
0.000321478
0.000319643
0.000317525
0.000315206
0.000312757
0.000310237
0.000307691
0.000305154
0.000302657
0.000300229
0.000297897
0.00029568
0.000293575
0.000291537
0.000289463
0.000287271
0.000284777
0.000282436
0.00166905
0.0011477
0.000894056
0.00075365
0.000668948
0.00061625
0.000585989
0.000575755
0.000587332
0.000624662
0.000691832
0.000791795
0.000926375
0.0010962
0.00129955
0.00153153
0.0017848
0.00205125
0.00232347
0.00259553
0.00286303
0.0031231
0.00337399
0.00361483
0.00384534
0.00406572
0.00427648
0.00447843
0.00467242
0.00485931
0.00503979
0.00521409
0.00538204
0.00554321
0.00569844
0.000726591
0.000542048
0.000463164
0.000434743
0.000422063
0.000415492
0.000411953
0.000410155
0.000409412
0.000409337
0.000409698
0.000410355
0.000411208
0.000412187
0.000413234
0.000414304
0.000415357
0.000416362
0.000417293
0.000418134
0.000418873
0.000419508
0.00042004
0.000420475
0.000420821
0.000421088
0.000421288
0.000421434
0.000421538
0.000421613
0.000421661
0.000421689
0.000421673
0.000421679
0.000421482
0.0016696
0.00114838
0.000898272
0.000770516
0.000717048
0.000727981
0.00080618
0.000949924
0.00114806
0.00138689
0.00165341
0.00193485
0.00222027
0.00250166
0.00277397
0.00303412
0.00328039
0.00351232
0.00372993
0.00393358
0.00412383
0.00430141
0.00446708
0.00462161
0.00476577
0.00490039
0.00502642
0.00514498
0.00525721
0.00536399
0.00546546
0.00556093
0.00564975
0.00573202
0.00581394
0.000774624
0.000517402
0.000461537
0.000445316
0.000442478
0.00044574
0.000451675
0.000458477
0.000465328
0.000471905
0.000478093
0.000483833
0.000489117
0.000493947
0.000498325
0.000502241
0.000505685
0.000508653
0.000511151
0.000513196
0.000514819
0.000516059
0.00051696
0.000517567
0.000517928
0.000518091
0.000518104
0.000518024
0.000517912
0.000517816
0.000517762
0.000517664
0.000517474
0.00051662
0.000516326
0.000865776
0.000664171
0.000566247
0.000528276
0.000511421
0.000502904
0.000498372
0.000496089
0.000495134
0.000494989
0.000495367
0.000496111
0.000497122
0.000498338
0.000499715
0.000501219
0.000502823
0.000504506
0.000506249
0.000508038
0.000509862
0.000511708
0.000513568
0.000515431
0.00051729
0.000519145
0.000520998
0.00052285
0.000524692
0.000526498
0.000528227
0.000529857
0.000531414
0.00053293
0.000534919
0.000712105
0.000535027
0.000456067
0.000426229
0.000412803
0.000405914
0.000402203
0.000400307
0.000399491
0.000399334
0.00039961
0.00040019
0.000400994
0.000401969
0.000403079
0.000404296
0.000405594
0.000406957
0.000408367
0.000409812
0.000411283
0.000412769
0.000414261
0.000415752
0.000417236
0.000418712
0.000420182
0.000421648
0.0004231
0.000424519
0.00042587
0.000427139
0.000428345
0.000429535
0.000431019
0.00101342
0.000678048
0.000638382
0.0006503
0.000671258
0.00069379
0.000715508
0.000735216
0.000752651
0.000767811
0.000780548
0.00079069
0.000798094
0.000802727
0.000804703
0.000804259
0.000801702
0.00079739
0.000791699
0.000784979
0.000777539
0.000769644
0.000761503
0.000753277
0.000745081
0.000736981
0.000729022
0.000721252
0.000713763
0.000706731
0.000700418
0.000694954
0.000690567
0.000685423
0.000682121
0.000764526
0.000501434
0.000452869
0.000444226
0.000447309
0.000454583
0.000462932
0.00047116
0.000478802
0.000485664
0.000491573
0.000496358
0.000499892
0.000502118
0.00050305
0.000502771
0.000501418
0.000499162
0.000496188
0.000492674
0.00048878
0.000484644
0.000480373
0.000476051
0.000471743
0.0004675
0.000463375
0.000459417
0.00045567
0.000452136
0.000448762
0.000445342
0.000441777
0.000437357
0.000433946
0.00163014
0.00116988
0.00111136
0.001201
0.00133717
0.00148144
0.00161929
0.00174571
0.00185949
0.00196096
0.00205102
0.00213095
0.00220206
0.00226554
0.00232237
0.00237337
0.0024192
0.00246041
0.00249745
0.00253073
0.00256061
0.00258749
0.0026117
0.00263353
0.00265323
0.00267104
0.00268727
0.00270234
0.0027167
0.00273064
0.00274401
0.00275598
0.00276609
0.00277292
0.00278502
0.00167339
0.00116588
0.000999285
0.00103201
0.00117947
0.001378
0.00159687
0.00182059
0.00203921
0.00224665
0.00243983
0.00261768
0.00278042
0.00292895
0.00306447
0.00318835
0.00330191
0.00340637
0.00350284
0.00359229
0.00367564
0.0037536
0.00382676
0.00389557
0.00396048
0.00402205
0.00408098
0.00413792
0.00419307
0.00424564
0.00429394
0.00433628
0.00437323
0.0044092
0.00445467
0.00166954
0.00115305
0.000900622
0.000761167
0.000678696
0.000631623
0.000613425
0.000625609
0.000673491
0.000761937
0.000892612
0.00106454
0.00127492
0.00151746
0.00178244
0.00205834
0.00233404
0.00260047
0.00285117
0.00308229
0.00329212
0.00348058
0.00364865
0.00379795
0.00393043
0.00404814
0.00415312
0.00424731
0.0043326
0.00441071
0.00448316
0.00455098
0.00461471
0.00467297
0.00472759
0.0016653
0.00119279
0.00111474
0.00121623
0.00138254
0.00156657
0.00174924
0.0019219
0.00208096
0.00222534
0.00235524
0.00247179
0.00257633
0.00267018
0.00275447
0.00283023
0.00289832
0.00295948
0.00301433
0.00306348
0.00310749
0.00314694
0.00318233
0.00321414
0.00324276
0.00326858
0.00329206
0.00331376
0.0033343
0.00335404
0.00337287
0.00338989
0.00340445
0.00341544
0.00342991
0.00166921
0.00114806
0.000895025
0.000757005
0.000679074
0.000642211
0.000644
0.000690128
0.000786664
0.000933766
0.00112608
0.00135606
0.00161462
0.00189139
0.00217652
0.00246199
0.00274197
0.00301256
0.00327146
0.00351743
0.00374992
0.00396892
0.0041748
0.00436812
0.00454964
0.00472029
0.0048811
0.00503322
0.00517785
0.00531601
0.00544819
0.00557413
0.00569343
0.00580593
0.00591608
0.00158501
0.00111485
0.0010451
0.00111495
0.00122392
0.00133703
0.0014426
0.00153703
0.00162051
0.00169404
0.00175893
0.00181641
0.00186756
0.00191334
0.00195453
0.00199181
0.00202567
0.00205651
0.00208465
0.00211034
0.0021338
0.00215523
0.00217481
0.00219269
0.00220902
0.00222398
0.00223776
0.00225059
0.00226276
0.00227446
0.00228578
0.00229637
0.00230614
0.00231325
0.00232528
0.000670427
0.00050198
0.000427693
0.000401174
0.000389086
0.000382627
0.000379115
0.000377289
0.000376423
0.000376109
0.000376077
0.000376128
0.000376116
0.000375935
0.000375518
0.000374834
0.000373881
0.000372679
0.00037126
0.000369665
0.000367933
0.000366105
0.000364216
0.000362294
0.000360362
0.00035844
0.000356543
0.000354685
0.000352881
0.000351152
0.000349503
0.000347957
0.000346408
0.000345083
0.000342841
0.000716989
0.000535114
0.000457482
0.000430538
0.000418421
0.00041209
0.000408776
0.000407102
0.000406362
0.000406159
0.000406225
0.000406358
0.000406407
0.00040626
0.000405846
0.00040513
0.000404111
0.000402812
0.000401272
0.000399535
0.00039765
0.000395661
0.000393605
0.000391515
0.000389419
0.00038734
0.000385297
0.000383306
0.000381374
0.0003795
0.000377661
0.000375854
0.000373982
0.000372379
0.00036998
0.000559125
0.000410716
0.000347727
0.000325878
0.000316024
0.000310816
0.000308038
0.000306598
0.000305923
0.000305693
0.0003057
0.000305788
0.000305839
0.000305765
0.000305508
0.000305038
0.00030435
0.000303456
0.000302382
0.00030116
0.000299823
0.000298404
0.000296931
0.00029543
0.000293919
0.000292418
0.00029094
0.000289497
0.000288096
0.000286736
0.000285402
0.000284098
0.000282749
0.000281622
0.000279839
0.000586168
0.000436618
0.000369876
0.000345895
0.000334932
0.000329033
0.000325792
0.00032407
0.000323217
0.000322869
0.000322789
0.000322809
0.000322801
0.000322671
0.000322358
0.000321831
0.000321083
0.000320128
0.000318988
0.000317696
0.000316285
0.000314788
0.000313234
0.000311647
0.000310049
0.000308455
0.00030688
0.000305335
0.000303834
0.000302391
0.000301011
0.000299713
0.000298411
0.000297316
0.000295449
0.00129941
0.000874139
0.000819523
0.00084751
0.000891686
0.000937175
0.000980036
0.00101889
0.00105335
0.00108382
0.00111084
0.00113489
0.0011565
0.0011761
0.00119408
0.00121071
0.00122625
0.00124087
0.00125472
0.00126792
0.00128057
0.00129275
0.00130448
0.00131577
0.00132659
0.00133696
0.00134702
0.00135698
0.00136701
0.00137697
0.00138629
0.00139409
0.0014002
0.00140487
0.00141415
0.001617
0.00116311
0.0011171
0.0012243
0.00137225
0.00152091
0.00165746
0.0017785
0.00188439
0.00197663
0.00205672
0.00212582
0.00218481
0.00223438
0.00227516
0.00230782
0.00233308
0.00235178
0.00236479
0.00237305
0.00237744
0.00237881
0.00237791
0.00237539
0.00237176
0.00236744
0.00236275
0.00235792
0.00235318
0.00234874
0.00234494
0.00234193
0.00234042
0.00233835
0.00234239
0.0016689
0.00114521
0.000891272
0.000750373
0.000664097
0.000607247
0.000567825
0.000539776
0.000520116
0.000507726
0.000502839
0.000506816
0.000521956
0.000551215
0.000597832
0.000665076
0.000756226
0.000874368
0.00102158
0.00119793
0.00140097
0.00162616
0.0018678
0.00212006
0.00237781
0.00263702
0.00289486
0.00314951
0.00339995
0.00364559
0.00388595
0.00412045
0.00434839
0.00456931
0.00478229
0.00128464
0.00085136
0.00079353
0.000823135
0.000870692
0.000919623
0.000965387
0.00100657
0.00104313
0.00107552
0.00110424
0.00112974
0.00115251
0.00117306
0.00119177
0.00120894
0.00122479
0.00123949
0.00125317
0.00126594
0.00127787
0.00128905
0.00129954
0.00130935
0.00131852
0.00132706
0.00133509
0.00134277
0.0013503
0.00135774
0.00136484
0.00137098
0.00137596
0.00137912
0.00138595
0.000802583
0.000543468
0.000493788
0.000482349
0.00048243
0.000487573
0.0004947
0.000502201
0.000509206
0.000515406
0.000520546
0.000524404
0.0005268
0.000527662
0.000527032
0.000525047
0.000521903
0.000517823
0.000513034
0.000507741
0.00050213
0.000496349
0.00049051
0.000484693
0.000478946
0.000473289
0.000467737
0.000462324
0.000457144
0.000452369
0.000448216
0.000444764
0.000441842
0.000438304
0.000433529
0.00072592
0.000495423
0.000445884
0.000432329
0.000430886
0.000434502
0.000439893
0.000445648
0.000451147
0.000456009
0.000460031
0.000463025
0.000464839
0.000465404
0.00046474
0.000462948
0.000460185
0.000456636
0.000452485
0.000447915
0.000443077
0.000438091
0.00043305
0.000428023
0.000423068
0.000418239
0.000413599
0.000409199
0.000405043
0.000401023
0.000396897
0.000392317
0.000387143
0.000381496
0.000376982
0.00167148
0.00119978
0.00111529
0.00120864
0.00136636
0.00154331
0.00172
0.00188587
0.00203659
0.00217137
0.00229047
0.00239457
0.00248437
0.00256058
0.00262393
0.00267526
0.00271562
0.00274624
0.00276848
0.00278373
0.00279332
0.00279848
0.00280027
0.00279961
0.00279721
0.00279368
0.00278954
0.00278526
0.00278136
0.00277825
0.00277616
0.00277457
0.00277259
0.00276654
0.0027609
0.00167435
0.00116242
0.000966552
0.000956507
0.00107829
0.00127874
0.0015172
0.00177117
0.00202646
0.00227382
0.0025079
0.00272631
0.00292847
0.00311478
0.00328607
0.00344341
0.00358794
0.0037208
0.00384311
0.00395595
0.00406033
0.00415716
0.0042472
0.00433104
0.00440921
0.00448223
0.00455087
0.00461606
0.00467859
0.00473854
0.00479484
0.00484559
0.00488996
0.00492969
0.00497469
0.00133783
0.000887839
0.000829323
0.000870072
0.000930446
0.000991359
0.00104798
0.0010988
0.00114358
0.00118288
0.00121752
0.00124824
0.0012757
0.00130047
0.00132303
0.00134378
0.00136305
0.00138111
0.00139817
0.00141446
0.00143012
0.00144528
0.00145998
0.00147425
0.00148809
0.00150158
0.00151492
0.00152838
0.00154203
0.00155551
0.00156794
0.00157823
0.00158635
0.00159408
0.00160551
0.00087199
0.000572989
0.000518256
0.00051289
0.000520342
0.000531298
0.000542492
0.000552905
0.000562253
0.000570583
0.000578032
0.000584638
0.000590367
0.000595166
0.000599001
0.000601861
0.000603769
0.000604783
0.000604989
0.000604494
0.000603413
0.000601867
0.000599967
0.000597812
0.00059549
0.000593069
0.000590605
0.000588144
0.00058573
0.000583412
0.000581258
0.000579282
0.000577636
0.000575752
0.000575131
0.000895739
0.000589372
0.000532692
0.000526854
0.000534276
0.000545407
0.000556879
0.000567588
0.000577267
0.000585995
0.000593819
0.000600794
0.000606901
0.000612095
0.000616347
0.000619647
0.000622013
0.000623495
0.00062417
0.000624136
0.000623502
0.000622382
0.000620885
0.000619111
0.000617144
0.000615057
0.000612905
0.000610739
0.000608604
0.000606552
0.00060465
0.000602905
0.00060148
0.000599759
0.000599565
0.0016696
0.00115128
0.000900621
0.000769832
0.000708654
0.000703819
0.000755679
0.000864611
0.00102547
0.0012303
0.00147011
0.00173401
0.00200999
0.00228706
0.00255666
0.00281287
0.00305211
0.00327274
0.00347453
0.00365794
0.00382448
0.00397582
0.00411362
0.00423948
0.00435487
0.00446112
0.00455948
0.00465112
0.00473719
0.00481877
0.00489678
0.00497169
0.00504358
0.00511072
0.00517493
0.0012481
0.000805911
0.000750205
0.000783994
0.000835911
0.000888339
0.000936325
0.000978978
0.00101657
0.00104967
0.00107887
0.00110472
0.00112774
0.00114837
0.00116699
0.00118386
0.00119921
0.00121317
0.00122587
0.00123741
0.00124788
0.00125737
0.00126598
0.00127379
0.00128086
0.00128727
0.00129311
0.00129854
0.00130373
0.00130881
0.00131374
0.00131813
0.00132197
0.00132399
0.00133035
0.00166952
0.0011529
0.000900458
0.00076195
0.00068206
0.000640631
0.000633135
0.000662851
0.000735156
0.000852744
0.00101435
0.001216
0.00145116
0.00171058
0.00198361
0.00225994
0.00253091
0.00278999
0.00303277
0.00325675
0.00346095
0.00364558
0.00381162
0.00396056
0.00409417
0.00421426
0.00432262
0.00442092
0.00451072
0.00459346
0.00467054
0.00474322
0.00481294
0.00487943
0.00494643
0.0016697
0.00114754
0.000897766
0.000770955
0.000719603
0.000734266
0.00081695
0.000963529
0.00116096
0.00139544
0.00165519
0.00192947
0.00220891
0.00248632
0.00275665
0.00301673
0.0032647
0.00349978
0.00372184
0.00393119
0.0041284
0.00431418
0.00448927
0.00465438
0.00481016
0.00495732
0.00509675
0.0052295
0.00535647
0.00547792
0.00559308
0.00570044
0.00579947
0.00589214
0.00598736
0.000759199
0.000510271
0.000453485
0.000436934
0.00043391
0.000436475
0.000441322
0.000446963
0.000452774
0.000458498
0.000463989
0.000469157
0.00047396
0.00047837
0.000482362
0.000485921
0.000489033
0.000491697
0.000493919
0.00049572
0.000497131
0.000498191
0.000498946
0.000499442
0.000499724
0.000499834
0.000499809
0.000499692
0.000499527
0.000499355
0.000499205
0.000499047
0.000498913
0.000498466
0.000498595
0.00167311
0.00115983
0.000959932
0.00094274
0.00105544
0.00124741
0.00147918
0.00172839
0.00198067
0.00222633
0.00245965
0.00267794
0.00288038
0.00306707
0.00323861
0.00339585
0.00353968
0.00367104
0.00379087
0.00390009
0.00399965
0.00409044
0.00417331
0.00424902
0.00431825
0.00438168
0.00444008
0.00449439
0.00454558
0.00459426
0.00464028
0.00468255
0.00472015
0.00475289
0.00478717
0.00137288
0.000927871
0.000875775
0.000920088
0.000983754
0.00104695
0.00110474
0.00115631
0.00120188
0.00124207
0.00127751
0.00130883
0.00133669
0.00136167
0.00138425
0.00140478
0.00142355
0.00144075
0.00145654
0.00147104
0.00148437
0.00149664
0.00150794
0.00151834
0.0015279
0.00153669
0.00154481
0.00155246
0.00155985
0.0015671
0.00157411
0.00158032
0.00158568
0.00158873
0.00159783
0.00167006
0.00115017
0.000905012
0.000790397
0.000764459
0.000819733
0.000949661
0.0011369
0.00136325
0.00161516
0.00188124
0.00215165
0.00241866
0.00267677
0.00292237
0.00315323
0.00336812
0.00356654
0.00374856
0.0039147
0.00406583
0.0042031
0.00432781
0.00444133
0.00454496
0.00463995
0.00472747
0.00480874
0.00488491
0.00495703
0.00502572
0.00509099
0.00515272
0.00520989
0.00526773
0.0016749
0.00117957
0.0010438
0.0011074
0.00126929
0.00147029
0.00168393
0.0018961
0.00209868
0.00228746
0.00246093
0.00261908
0.00276276
0.00289331
0.00301211
0.00312047
0.00321959
0.00331055
0.00339423
0.00347142
0.00354277
0.00360885
0.00367012
0.00372696
0.00377975
0.00382888
0.00387485
0.00391822
0.00395954
0.00399899
0.00403619
0.00407008
0.00409987
0.00412514
0.00415207
0.000761763
0.000522356
0.000467831
0.000451954
0.00044895
0.000451371
0.00045601
0.000461447
0.000467086
0.000472654
0.000477999
0.000483022
0.000487677
0.000491926
0.00049574
0.0004991
0.000501991
0.000504413
0.000506378
0.000507909
0.000509043
0.000509824
0.000510303
0.000510529
0.00051055
0.000510409
0.000510145
0.0005098
0.000509417
0.000509037
0.000508694
0.000508361
0.00050809
0.000507494
0.000507639
0.000710917
0.000536167
0.00045666
0.000427131
0.000413729
0.000406674
0.000402807
0.00040076
0.000399818
0.000399578
0.000399798
0.000400324
0.000401045
0.000401879
0.000402759
0.00040363
0.000404449
0.000405182
0.000405806
0.000406309
0.000406688
0.000406944
0.000407089
0.000407133
0.00040709
0.000406976
0.000406805
0.000406591
0.000406348
0.000406089
0.000405818
0.000405548
0.000405237
0.000405022
0.000404345
0.00140618
0.00094555
0.000888242
0.0009443
0.00102627
0.00110818
0.00118282
0.00124888
0.00130685
0.00135769
0.00140236
0.00144175
0.00147662
0.00150764
0.00153534
0.00156013
0.00158234
0.00160221
0.00161995
0.00163575
0.00164979
0.00166226
0.00167334
0.00168319
0.00169195
0.00169976
0.00170678
0.00171321
0.0017193
0.00172523
0.00173102
0.00173627
0.00174089
0.00174351
0.00175026
0.0012442
0.000824446
0.000771849
0.000801526
0.000845599
0.00089019
0.000931609
0.00096879
0.00100185
0.00103118
0.00105712
0.00107999
0.00110002
0.00111744
0.00113239
0.00114503
0.00115552
0.00116401
0.00117068
0.00117574
0.00117941
0.0011819
0.00118343
0.00118421
0.0011844
0.00118416
0.00118361
0.00118287
0.00118206
0.00118132
0.00118078
0.00118037
0.00118035
0.00117935
0.00118144
0.00166902
0.00114658
0.000892865
0.000752513
0.000668045
0.000615944
0.000587008
0.000579426
0.000595748
0.000640525
0.000717801
0.000829712
0.000976839
0.00115836
0.00137113
0.00160936
0.00186566
0.00213263
0.002404
0.00267501
0.00294237
0.00320383
0.00345791
0.00370363
0.00394036
0.0041678
0.004386
0.00459535
0.00479647
0.00498985
0.00517554
0.00535305
0.00552196
0.00568276
0.00583877
0.00166904
0.00114714
0.000893523
0.000753236
0.000668895
0.000617108
0.000588865
0.000582679
0.000601597
0.000650814
0.000734961
0.00085644
0.00101565
0.00121094
0.00143761
0.00168817
0.00195393
0.00222721
0.0025019
0.00277355
0.00303908
0.00329649
0.00354454
0.00378258
0.00401035
0.00422796
0.00443587
0.00463482
0.00482571
0.00500938
0.00518619
0.00535593
0.00551823
0.00567317
0.00582377
0.00130445
0.000895141
0.000838446
0.000857603
0.000893594
0.000932546
0.000970142
0.00100465
0.00103559
0.00106313
0.00108764
0.0011096
0.00112944
0.00114753
0.00116421
0.00117973
0.0011943
0.00120808
0.00122122
0.00123382
0.00124599
0.00125778
0.00126923
0.00128031
0.00129101
0.00130136
0.00131151
0.00132169
0.001332
0.0013422
0.00135162
0.00135935
0.00136533
0.00137052
0.00137954
0.00166892
0.00114565
0.000891663
0.000750752
0.000664504
0.000607761
0.000568615
0.000541169
0.000522691
0.000512436
0.000511139
0.000520732
0.000544043
0.000584365
0.000645073
0.000729508
0.000840963
0.000982134
0.00115406
0.00135527
0.00158178
0.00182776
0.00208673
0.00235253
0.00262013
0.00288585
0.00314731
0.00340325
0.00365314
0.00389687
0.00413434
0.00436526
0.00458916
0.0048058
0.00501491
0.00167205
0.0011577
0.000936011
0.000877513
0.000946371
0.0011119
0.00133371
0.00158293
0.00184248
0.00210045
0.00234842
0.00258084
0.00279437
0.002987
0.00315775
0.00330691
0.00343542
0.00354479
0.00363693
0.00371398
0.00377809
0.00383134
0.00387564
0.00391268
0.00394393
0.00397065
0.00399394
0.00401481
0.00403422
0.00405298
0.00407161
0.00408986
0.00410687
0.00411941
0.0041302
0.00166892
0.00114575
0.000891662
0.000750706
0.00066448
0.000607872
0.000569088
0.00054243
0.000525491
0.00051802
0.000521431
0.000538464
0.000572702
0.000627921
0.000707634
0.000814999
0.000952515
0.00112109
0.00131914
0.0015426
0.00178569
0.00204218
0.00230634
0.00257346
0.00283999
0.00310341
0.003362
0.00361472
0.003861
0.00410054
0.00433304
0.00455805
0.00477507
0.00498389
0.00518448
0.00166917
0.00115006
0.000896734
0.000756549
0.000672312
0.000620803
0.000593149
0.000587877
0.000607785
0.000657445
0.000740817
0.000860151
0.00101625
0.00120798
0.00143097
0.00167764
0.00193902
0.00220684
0.00247476
0.00273862
0.00299562
0.0032441
0.00348305
0.00371179
0.00392994
0.00413738
0.00433426
0.00452102
0.00469829
0.00486692
0.00502774
0.00518141
0.00532832
0.00546765
0.00560071
0.00166947
0.00115206
0.000899651
0.00076197
0.000684356
0.000647743
0.000648904
0.000691759
0.000780467
0.000914836
0.00109081
0.00130209
0.00153987
0.00179363
0.00205328
0.00231089
0.00256106
0.00280018
0.00302637
0.00323852
0.00343606
0.00361888
0.00378731
0.00394199
0.00408383
0.00421392
0.00433345
0.0044437
0.00454599
0.00464166
0.00473192
0.00481757
0.00489899
0.0049747
0.00504638
0.00167074
0.00115648
0.00091269
0.000799168
0.000775411
0.000834664
0.000970304
0.00116434
0.00139594
0.00164655
0.00189968
0.00214196
0.00236484
0.00256425
0.00273863
0.00288794
0.00301299
0.00311527
0.00319675
0.00325974
0.0033067
0.00334009
0.00336227
0.00337538
0.00338127
0.00338147
0.00337724
0.00336964
0.00335972
0.00334875
0.00333832
0.00333006
0.00332503
0.00332146
0.00331639
0.0016707
0.00115624
0.000911249
0.000794407
0.000763816
0.000812251
0.000934824
0.00111579
0.00133551
0.0015767
0.00182381
0.00206392
0.00228877
0.00249347
0.00267533
0.00283305
0.00296647
0.00307639
0.00316443
0.00323278
0.00328397
0.00332062
0.00334525
0.00336015
0.00336734
0.00336858
0.00336545
0.00335939
0.00335163
0.00334299
0.00333359
0.00332246
0.00330795
0.00328792
0.00326502
0.0016537
0.00118941
0.00112246
0.00122186
0.00137672
0.00154219
0.00170076
0.00184607
0.00197648
0.00209224
0.00219425
0.00228348
0.00236088
0.00242724
0.00248329
0.0025298
0.00256757
0.00259748
0.00262049
0.00263761
0.00264982
0.00265808
0.00266325
0.00266611
0.00266728
0.0026673
0.00266656
0.00266539
0.00266409
0.00266296
0.00266234
0.00266234
0.00266355
0.00266387
0.00267001
0.0016707
0.00115605
0.000910928
0.000792785
0.000759336
0.000802983
0.000918965
0.00109209
0.00130421
0.00154002
0.00178547
0.00202771
0.00225646
0.00246471
0.00264836
0.00280554
0.0029361
0.00304124
0.00312311
0.00318442
0.00322811
0.00325707
0.00327402
0.00328131
0.003281
0.00327473
0.00326381
0.0032494
0.00323276
0.00321547
0.00319954
0.00318683
0.00317788
0.00316957
0.00315525
0.00167076
0.00115621
0.00091114
0.00079307
0.000759653
0.000803136
0.000918768
0.00109146
0.00130293
0.00153763
0.00178168
0.00202275
0.00225092
0.0024592
0.00264339
0.00280138
0.00293279
0.00303864
0.00312099
0.00318251
0.00322613
0.00325479
0.0032712
0.00327778
0.00327663
0.00326966
0.00325856
0.00324485
0.00322974
0.00321377
0.00319645
0.00317603
0.00315032
0.00311823
0.00308434
0.00105926
0.000706622
0.000647282
0.000641408
0.000650408
0.000664512
0.000680063
0.000695375
0.000709713
0.000722877
0.00073491
0.000745936
0.000756112
0.000765595
0.000774522
0.000782998
0.00079111
0.000798927
0.000806501
0.000813875
0.000821084
0.000828146
0.000835056
0.00084179
0.000848325
0.000854678
0.000860935
0.000867219
0.000873582
0.000879866
0.000885666
0.000890448
0.000894267
0.00089753
0.000903971
0.00167061
0.00118318
0.00107218
0.00115701
0.00132497
0.00152162
0.0017248
0.00192301
0.00210998
0.00228283
0.00244069
0.00258388
0.00271329
0.00282998
0.00293502
0.00302941
0.00311406
0.00318975
0.00325725
0.00331726
0.00337051
0.00341775
0.00345969
0.00349698
0.00353022
0.00355995
0.00358676
0.00361132
0.00363432
0.00365626
0.0036772
0.00369643
0.00371339
0.00372686
0.00374288
0.00167023
0.00115539
0.000904632
0.000769543
0.000698638
0.000677087
0.00070623
0.000791615
0.00093331
0.00112436
0.00135494
0.00161277
0.00188251
0.0021482
0.00239648
0.00261832
0.00280908
0.00296771
0.0030956
0.00319561
0.00327124
0.00332625
0.00336421
0.00338832
0.00340141
0.00340593
0.00340405
0.00339766
0.00338834
0.00337704
0.0033638
0.00334755
0.00332659
0.00329978
0.00327035
0.00167021
0.00115534
0.000904554
0.000769433
0.000698481
0.000676891
0.000706022
0.000791373
0.000932912
0.00112375
0.00135415
0.00161172
0.00188097
0.00214587
0.00239313
0.00261393
0.00280385
0.00296198
0.00308979
0.00319011
0.00326642
0.00332236
0.00336146
0.00338686
0.0034013
0.00340704
0.00340593
0.00339955
0.00338942
0.00337724
0.003365
0.00335464
0.00334716
0.00334065
0.00333025
0.00167558
0.00117092
0.00101042
0.00105406
0.0012148
0.00142599
0.00165559
0.00188784
0.00211306
0.00232569
0.00252309
0.00270457
0.00287056
0.00302208
0.0031604
0.00328685
0.00340266
0.00350905
0.00360714
0.00369797
0.00378248
0.00386146
0.00393554
0.00400519
0.00407081
0.00413293
0.0041923
0.00424977
0.00430583
0.00435988
0.00441007
0.00445416
0.00449209
0.0045278
0.00457383
0.00137757
0.000939742
0.000882885
0.000914023
0.000963461
0.00101463
0.00106291
0.0011067
0.00114562
0.00118001
0.00121042
0.00123748
0.00126176
0.00128377
0.00130392
0.00132254
0.0013399
0.00135621
0.00137165
0.00138637
0.00140049
0.00141409
0.00142722
0.00143986
0.00145199
0.00146367
0.00147505
0.00148641
0.00149789
0.00150926
0.00151978
0.00152843
0.00153507
0.00154046
0.00155101
0.00166889
0.0011449
0.000890852
0.000749918
0.000663618
0.000606657
0.000566911
0.000538112
0.000516923
0.000501672
0.000491799
0.000487623
0.000490241
0.000501451
0.000523607
0.000559405
0.00061172
0.000683614
0.000778304
0.000898673
0.00104635
0.00122096
0.00141995
0.00163911
0.00187349
0.00211822
0.0023691
0.00262281
0.00287693
0.00312968
0.00337972
0.0036259
0.00386712
0.00410247
0.00432977
0.000716467
0.000479527
0.000421462
0.000403853
0.000400559
0.00040292
0.000407446
0.000412671
0.000417996
0.000423179
0.000428114
0.000432794
0.000437224
0.000441444
0.000445499
0.000449429
0.000453267
0.000457036
0.000460752
0.000464427
0.000468065
0.000471665
0.000475219
0.000478716
0.000482147
0.000485518
0.000488845
0.000492152
0.000495439
0.000498644
0.000501645
0.000504289
0.000506565
0.000508644
0.000511257
0.00162766
0.0011637
0.00110082
0.00119206
0.00133134
0.00147956
0.00162203
0.00175319
0.00187157
0.00197729
0.00207133
0.00215478
0.00222868
0.00229404
0.00235171
0.00240241
0.00244677
0.00248538
0.00251875
0.00254742
0.00257191
0.00259277
0.00261054
0.0026257
0.0026387
0.0026499
0.00265969
0.00266842
0.00267651
0.0026843
0.00269199
0.00269932
0.00270621
0.00271094
0.0027191
0.00167064
0.00115113
0.000912989
0.000817165
0.000826513
0.000929806
0.00110684
0.00133168
0.00158524
0.00185377
0.00212618
0.00239409
0.00265194
0.00289632
0.00312541
0.00333838
0.00353503
0.00371563
0.00388075
0.00403117
0.00416786
0.00429193
0.00440456
0.00450692
0.00460015
0.00468534
0.00476358
0.00483603
0.00490385
0.004968
0.00502893
0.00508629
0.00513971
0.00518824
0.00523853
0.00161732
0.00117855
0.00113864
0.00123491
0.00136384
0.00149293
0.00161079
0.00171527
0.00180645
0.00188479
0.0019506
0.0020041
0.00204561
0.00207575
0.00209551
0.00210613
0.00210904
0.00210568
0.00209748
0.0020857
0.00207143
0.00205556
0.00203878
0.00202161
0.00200442
0.0019874
0.00197067
0.00195431
0.00193853
0.00192373
0.00191065
0.00189991
0.00189217
0.00188438
0.00187903
0.00162177
0.00116907
0.00111613
0.00120478
0.0013326
0.00146473
0.00158783
0.00169733
0.00179322
0.00187597
0.00194586
0.00200313
0.00204809
0.0020813
0.00210364
0.00211633
0.00212079
0.00211855
0.00211113
0.00209987
0.00208595
0.00207031
0.00205368
0.00203658
0.0020194
0.00200243
0.00198594
0.00197024
0.00195561
0.00194219
0.00192975
0.00191722
0.00190341
0.00188498
0.00186739
0.00121301
0.000792186
0.000727652
0.000744872
0.000780199
0.000818392
0.000855023
0.000888484
0.000918396
0.00094497
0.000968596
0.000989705
0.0010087
0.00102596
0.0010418
0.0010565
0.0010703
0.00108337
0.00109587
0.00110791
0.00111961
0.001131
0.00114213
0.00115299
0.0011636
0.00117404
0.00118444
0.00119494
0.00120551
0.00121576
0.00122501
0.00123264
0.0012389
0.0012455
0.00125543
0.000751311
0.000500946
0.000446219
0.000430546
0.000427835
0.00043085
0.00043637
0.000442691
0.00044904
0.000455153
0.000460929
0.000466316
0.000471309
0.000475918
0.000480151
0.000484004
0.00048747
0.000490539
0.000493211
0.000495493
0.000497403
0.000498966
0.000500216
0.000501188
0.00050192
0.000502451
0.000502826
0.000503095
0.000503314
0.00050353
0.000503769
0.000503953
0.000504074
0.000503528
0.000503981
0.00120539
0.000781318
0.000717376
0.000736146
0.000772097
0.000810157
0.000846315
0.000879235
0.000908669
0.000934861
0.000958123
0.000978903
0.000997609
0.0010146
0.0010302
0.00104468
0.00105827
0.00107115
0.00108345
0.00109532
0.00110683
0.00111804
0.00112898
0.00113964
0.00115005
0.00116028
0.00117045
0.00118068
0.00119091
0.0012008
0.00120974
0.00121714
0.00122326
0.0012297
0.00123891
0.00167214
0.00115986
0.000936249
0.000873117
0.000936396
0.00109988
0.00132438
0.00157819
0.00184051
0.00209699
0.00233825
0.00255779
0.00275299
0.00292269
0.00306695
0.00318704
0.00328514
0.00336381
0.0034258
0.00347374
0.00351009
0.00353705
0.00355653
0.00357019
0.00357942
0.00358535
0.00358886
0.00359067
0.00359139
0.00359166
0.00359228
0.00359408
0.00359812
0.00360339
0.00361225
0.00167025
0.00115155
0.000908022
0.000797645
0.00077961
0.000845567
0.000986018
0.00118258
0.00141773
0.00167737
0.0019489
0.00222162
0.00248755
0.00274128
0.00297944
0.0032001
0.00340234
0.00358603
0.00375169
0.00390032
0.00403326
0.00415211
0.0042585
0.00435408
0.00444036
0.00451873
0.00459043
0.00465662
0.00471841
0.00477678
0.0048325
0.00488587
0.0049371
0.00498497
0.00503408
0.001669
0.00114733
0.000893617
0.000752845
0.000666975
0.000611405
0.000575135
0.000553776
0.000546925
0.000557032
0.000588482
0.00064631
0.000734881
0.000857405
0.00101578
0.00120962
0.00143521
0.00168543
0.00195171
0.00222589
0.00250133
0.00277331
0.00303885
0.00329628
0.00354472
0.00378407
0.00401482
0.00423766
0.00445342
0.00466286
0.00486643
0.0050641
0.00525551
0.00544025
0.00561955
0.000722982
0.000495976
0.000440496
0.000424259
0.000421162
0.000423064
0.000426913
0.000431469
0.000436215
0.000440913
0.000445449
0.00044977
0.000453876
0.000457791
0.000461542
0.000465143
0.000468603
0.000471924
0.000475102
0.000478131
0.000481007
0.000483729
0.000486297
0.000488707
0.000490959
0.000493058
0.000495023
0.000496889
0.000498694
0.000500449
0.000502113
0.000503566
0.00050481
0.00050562
0.00050743
0.00156538
0.00107859
0.000996208
0.00105951
0.00116635
0.00127953
0.00138657
0.00148359
0.00156991
0.00164618
0.00171347
0.00177295
0.00182572
0.00187287
0.00191532
0.0019539
0.00198925
0.00202194
0.00205242
0.00208108
0.0021082
0.00213402
0.00215866
0.00218224
0.00220482
0.00222658
0.00224778
0.00226868
0.00228933
0.00230927
0.00232755
0.00234309
0.00235591
0.00236795
0.00238452
0.00167113
0.00115186
0.000919611
0.000837307
0.000867317
0.000990713
0.00117945
0.00140809
0.00166014
0.00192322
0.00218739
0.00244549
0.0026929
0.00292673
0.0031459
0.00334995
0.00353886
0.00371307
0.0038732
0.00402005
0.00415457
0.00427772
0.0043905
0.00449382
0.00458858
0.00467566
0.00475603
0.00483077
0.004901
0.00496756
0.00503059
0.00508938
0.00514324
0.00519177
0.00524133
0.00110068
0.000722619
0.000671592
0.000684739
0.000711164
0.000741167
0.000771066
0.000798539
0.000823304
0.000845384
0.000864981
0.000882322
0.000897649
0.000911172
0.000923043
0.000933364
0.000942221
0.000949695
0.000955877
0.000960876
0.000964817
0.000967831
0.00097005
0.000971605
0.000972614
0.000973193
0.000973458
0.000973539
0.000973583
0.000973715
0.000974023
0.000974311
0.000974546
0.000973013
0.000974077
0.000977586
0.000635363
0.000581056
0.000577706
0.000588241
0.000603847
0.000619963
0.000635157
0.000648775
0.000660492
0.000670101
0.000677366
0.000682142
0.000684414
0.000684306
0.000682061
0.000678007
0.000672512
0.000665932
0.000658598
0.000650784
0.000642707
0.000634526
0.000626363
0.000618309
0.000610454
0.000602901
0.000595745
0.000589021
0.000582591
0.000576091
0.000568894
0.000560699
0.000551075
0.000543565
0.00137161
0.000913357
0.0008443
0.000868647
0.000912667
0.000959314
0.00100366
0.00104371
0.00107926
0.00111071
0.0011386
0.0011635
0.0011859
0.00120626
0.00122495
0.00124228
0.00125847
0.00127373
0.00128823
0.00130212
0.00131551
0.00132849
0.00134109
0.00135331
0.00136511
0.00137656
0.00138784
0.00139918
0.00141071
0.00142214
0.00143268
0.00144132
0.00144794
0.00145386
0.00146333
0.000729302
0.00051043
0.000452313
0.0004338
0.000429144
0.000430162
0.000433279
0.00043711
0.000441032
0.00044468
0.000447804
0.000450187
0.000451672
0.000452179
0.000451701
0.0004503
0.00044809
0.000445212
0.000441818
0.000438049
0.000434033
0.000429873
0.000425647
0.000421417
0.000417233
0.000413139
0.000409185
0.000405412
0.000401836
0.000398403
0.000394968
0.000391292
0.000387235
0.000382771
0.000378834
0.000940247
0.000633276
0.00057899
0.000571639
0.0005767
0.000586576
0.000597927
0.000609172
0.000619528
0.000628628
0.000636236
0.000642096
0.000646006
0.000647891
0.000647816
0.000645961
0.000642581
0.000637964
0.000632397
0.000626148
0.000619451
0.000612495
0.000605432
0.000598378
0.0005914
0.000584535
0.000577802
0.000571239
0.000564945
0.000559097
0.000553933
0.000549552
0.000545875
0.000541548
0.000536626
0.001223
0.000792051
0.000735241
0.00075693
0.000794842
0.000835608
0.000873395
0.000907047
0.000936243
0.000961
0.000981258
0.000996843
0.0010077
0.00101397
0.00101596
0.00101419
0.00100928
0.00100188
0.000992622
0.000982075
0.000970704
0.000958872
0.000946845
0.000934815
0.000922925
0.000911311
0.000900136
0.000889572
0.000879725
0.000870443
0.000861194
0.000850907
0.000838844
0.00082371
0.000811092
0.00167092
0.00115641
0.000916203
0.000811589
0.000806301
0.000892758
0.00105533
0.00126807
0.00150921
0.00176215
0.00201252
0.00224832
0.00246118
0.00264705
0.00280432
0.00293329
0.00303556
0.00311362
0.00317043
0.00320909
0.00323267
0.003244
0.00324559
0.00323959
0.0032277
0.00321125
0.00319129
0.00316882
0.00314514
0.00312206
0.00310179
0.00308605
0.0030744
0.00306155
0.0030379
0.00167095
0.00115649
0.000916473
0.000812502
0.000808669
0.000897361
0.0010622
0.00127655
0.0015185
0.00177155
0.00202153
0.00225668
0.00246872
0.0026537
0.00281011
0.00293828
0.00303983
0.00311726
0.00317353
0.00321173
0.0032349
0.00324583
0.00324699
0.00324049
0.00322816
0.00321161
0.00319234
0.00317165
0.0031504
0.00312851
0.00310457
0.00307602
0.00304072
0.0029997
0.00296198
0.000702634
0.000499011
0.000445799
0.000429309
0.000425383
0.000426409
0.000429314
0.000432779
0.000436309
0.000439716
0.000442886
0.000445723
0.000448127
0.000450014
0.000451333
0.000452063
0.000452213
0.000451824
0.000450955
0.000449679
0.000448073
0.000446213
0.000444172
0.000442009
0.000439776
0.000437514
0.000435253
0.000433022
0.000430845
0.000428756
0.000426797
0.000424993
0.000423402
0.000421784
0.000420452
0.00167643
0.00118085
0.00103321
0.00108868
0.0012533
0.00146232
0.00168663
0.00191042
0.00212337
0.0023204
0.00249907
0.00265861
0.00279887
0.00292011
0.00302289
0.00310819
0.00317739
0.0032322
0.00327454
0.00330636
0.00332958
0.00334594
0.00335699
0.00336402
0.0033681
0.00337013
0.00337084
0.00337094
0.00337108
0.00337181
0.00337341
0.00337538
0.00337671
0.00337377
0.00337043
0.00128738
0.0008529
0.00079038
0.00081238
0.000851489
0.000893507
0.000933268
0.00096884
0.000999859
0.00102655
0.00104908
0.00106753
0.00108193
0.00109237
0.00109906
0.00110232
0.00110256
0.00110027
0.00109594
0.00109007
0.00108309
0.00107536
0.00106719
0.00105879
0.00105033
0.00104196
0.00103378
0.00102592
0.00101852
0.00101163
0.00100524
0.000998963
0.000992601
0.0009841
0.000978072
0.00128123
0.000868735
0.000818115
0.000847761
0.000890837
0.000934293
0.000974529
0.00101021
0.00104124
0.00106788
0.00109035
0.00110873
0.00112306
0.00113341
0.00114
0.00114316
0.0011433
0.00114089
0.00113643
0.00113038
0.00112318
0.0011152
0.00110673
0.00109803
0.00108926
0.00108055
0.00107199
0.00106362
0.00105554
0.00104789
0.00104092
0.00103478
0.00102988
0.00102457
0.00102215
0.00166888
0.00114483
0.000890739
0.000749802
0.000663508
0.000606517
0.000566638
0.000537494
0.000515553
0.000498829
0.000486273
0.000477495
0.000472637
0.000472339
0.00047772
0.000490358
0.000512225
0.000545633
0.000593201
0.00065788
0.000742843
0.000851077
0.00098472
0.00114446
0.00132927
0.00153652
0.00176249
0.00200293
0.00225371
0.00251116
0.00277236
0.00303511
0.00329767
0.00355857
0.00381495
0.00166945
0.00114956
0.000898029
0.000764178
0.000696307
0.000679674
0.000715012
0.000805676
0.000949047
0.00113727
0.00136147
0.00161209
0.0018789
0.00215228
0.00242442
0.00268954
0.00294363
0.00318405
0.00340935
0.00361905
0.00381341
0.00399313
0.00415943
0.00431355
0.0044567
0.00459005
0.00471472
0.00483184
0.00494253
0.00504783
0.00514851
0.00524481
0.00533678
0.00542358
0.00550886
0.000750579
0.000490608
0.000444627
0.000436544
0.000439615
0.000447019
0.000455645
0.000464131
0.000471857
0.000478522
0.000483945
0.000487966
0.000490449
0.000491346
0.000490713
0.0004887
0.000485516
0.000481393
0.000476572
0.000471267
0.000465658
0.000459889
0.000454064
0.000448263
0.000442551
0.000436996
0.000431672
0.00042664
0.000421899
0.000417307
0.000412557
0.000407206
0.000401106
0.000394374
0.000389274
0.000755201
0.000493975
0.000448224
0.000439633
0.000441899
0.000448732
0.000457131
0.000465598
0.000473383
0.00048015
0.000485703
0.000489842
0.000492418
0.00049338
0.000492793
0.000490813
0.000487651
0.000483542
0.000478721
0.00047341
0.000467794
0.000462021
0.000456201
0.000450415
0.000444707
0.000439094
0.000433586
0.000428219
0.000423096
0.000418404
0.000414371
0.000411072
0.000408311
0.00040481
0.000400014
0.00164867
0.00116512
0.00107588
0.00115758
0.0013014
0.00146254
0.00162181
0.00177077
0.00190634
0.00202808
0.00213675
0.00223361
0.00232005
0.00239751
0.00246727
0.0025305
0.0025882
0.00264122
0.00269028
0.00273599
0.00277885
0.00281923
0.00285741
0.0028936
0.00292797
0.00296081
0.00299249
0.00302343
0.00305371
0.00308281
0.00310953
0.00313251
0.00315181
0.00316993
0.0031936
0.001341
0.000874093
0.000803182
0.00083876
0.000897255
0.000956825
0.00101202
0.00106146
0.00110515
0.00114367
0.00117768
0.00120781
0.00123466
0.00125882
0.0012808
0.001301
0.00131977
0.00133739
0.00135409
0.00137004
0.00138537
0.00140018
0.00141453
0.00142841
0.00144188
0.00145498
0.00146789
0.00148073
0.00149351
0.00150592
0.0015173
0.00152694
0.00153488
0.00154246
0.00155297
0.00167484
0.00118806
0.0010595
0.00112868
0.00129319
0.00149556
0.00170996
0.00192096
0.00211853
0.00229633
0.00245038
0.00257826
0.00268016
0.00275733
0.00281201
0.00284709
0.00286581
0.00287139
0.00286682
0.00285469
0.00283716
0.0028159
0.00279235
0.00276753
0.00274211
0.00271645
0.00269076
0.00266524
0.00264039
0.00261722
0.00259732
0.00258215
0.00257198
0.00256226
0.00254708
0.000919378
0.000647895
0.000591439
0.000578293
0.000578125
0.000583436
0.000590834
0.000598667
0.000606228
0.000613194
0.000619335
0.000624473
0.000628453
0.000631177
0.000632625
0.000632846
0.000631941
0.000630054
0.000627352
0.000624003
0.000620171
0.000616002
0.000611619
0.000607124
0.000602595
0.000598089
0.000593644
0.000589295
0.000585086
0.000581084
0.00057739
0.000574054
0.0005712
0.000568156
0.000566051
0.000977353
0.000677089
0.000609712
0.000594156
0.000594562
0.000601356
0.000610304
0.000619571
0.000628379
0.000636405
0.000643427
0.00064924
0.000653697
0.000656709
0.000658273
0.000658456
0.00065739
0.000655253
0.000652244
0.00064856
0.000644386
0.000639881
0.000635177
0.000630377
0.00062556
0.000620793
0.000616134
0.000611643
0.000607374
0.000603346
0.000599526
0.000595728
0.000591848
0.00058712
0.000583369
0.00166986
0.00115216
0.000903413
0.0007779
0.0007289
0.000747058
0.000833466
0.000983541
0.00118514
0.00142474
0.00168886
0.0019641
0.0022385
0.00250295
0.00275168
0.00298146
0.0031907
0.00337953
0.00354901
0.00370055
0.0038359
0.00395682
0.00406509
0.00416234
0.00425009
0.00432971
0.00440248
0.00446959
0.00453219
0.00459136
0.00464798
0.00470238
0.00475442
0.00480197
0.00484689
0.00167179
0.00115866
0.000928965
0.000850536
0.00088874
0.00102248
0.00121886
0.00144977
0.00169681
0.00194508
0.00218221
0.00240047
0.002595
0.00276351
0.00290576
0.00302292
0.00311707
0.00319076
0.00324671
0.00328764
0.00331616
0.00333461
0.00334506
0.00334929
0.00334877
0.00334477
0.00333839
0.00333064
0.00332243
0.0033144
0.00330664
0.00329825
0.00328764
0.00327205
0.00325391
0.00167217
0.00116031
0.000936288
0.000870294
0.000926794
0.00107815
0.00128722
0.00152627
0.00177738
0.00202599
0.0022607
0.00247434
0.0026625
0.00282348
0.00295762
0.00306666
0.00315314
0.0032199
0.00326984
0.00330572
0.00333005
0.00334505
0.0033527
0.00335465
0.00335227
0.00334666
0.00333865
0.00332894
0.00331822
0.00330739
0.00329763
0.00329023
0.00328612
0.00328357
0.00328128
0.000656236
0.000446789
0.000393523
0.000374841
0.000368841
0.000368498
0.000370694
0.000373931
0.000377523
0.000381114
0.000384546
0.000387718
0.000390553
0.000392994
0.000394997
0.000396536
0.000397603
0.000398216
0.000398408
0.000398229
0.000397733
0.000396977
0.000396016
0.000394901
0.000393675
0.00039238
0.000391054
0.000389737
0.000388469
0.000387275
0.000386153
0.000385024
0.000383807
0.00038214
0.000380505
0.00167319
0.001159
0.000953191
0.000926036
0.0010275
0.00120748
0.0014257
0.00166167
0.00190315
0.00214123
0.00236992
0.00258586
0.00278765
0.00297503
0.00314837
0.00330835
0.00345579
0.00359152
0.00371633
0.00383097
0.00393616
0.00403261
0.004121
0.00420199
0.00427625
0.00434448
0.00440743
0.00446594
0.00452086
0.00457279
0.00462192
0.00466768
0.00470946
0.00474592
0.00478315
0.00167701
0.00118291
0.00103308
0.00108471
0.00125021
0.00146582
0.00169849
0.00193021
0.00214968
0.00235129
0.00253246
0.00269205
0.00282964
0.00294551
0.00304055
0.0031162
0.00317442
0.0032175
0.00324785
0.00326785
0.00327968
0.00328526
0.00328621
0.00328382
0.00327915
0.00327301
0.00326608
0.003259
0.00325234
0.0032466
0.003242
0.003238
0.00323354
0.00322519
0.00321581
0.00167117
0.00118334
0.00106771
0.00114156
0.00129679
0.00148199
0.00167438
0.00186138
0.00203594
0.00219516
0.00233824
0.00246562
0.00257815
0.00267668
0.00276199
0.00283484
0.00289612
0.00294685
0.00298814
0.0030212
0.00304724
0.00306747
0.00308296
0.00309472
0.00310358
0.0031103
0.00311551
0.00311985
0.00312395
0.00312831
0.00313322
0.00313823
0.00314254
0.00314261
0.00314323
0.00113673
0.000754381
0.000698471
0.000705958
0.000726478
0.000749141
0.000770959
0.000790975
0.000809051
0.000825378
0.000840148
0.000853551
0.000865804
0.000877106
0.000887646
0.000897577
0.000907016
0.000916044
0.000924718
0.000933074
0.00094113
0.000948893
0.000956359
0.000963521
0.00097037
0.000976915
0.000983192
0.000989264
0.000995192
0.00100097
0.00100652
0.00101154
0.00101601
0.00101923
0.00102489
0.00144231
0.000974586
0.000907253
0.000948333
0.00101315
0.00107964
0.00114093
0.00119505
0.00124191
0.001282
0.00131567
0.00134303
0.00136424
0.00137954
0.00138931
0.0013941
0.00139458
0.00139152
0.00138566
0.00137771
0.00136829
0.00135791
0.00134698
0.00133579
0.00132456
0.00131347
0.00130268
0.00129236
0.00128268
0.00127374
0.00126546
0.00125724
0.00124865
0.00123692
0.00122812
0.00140554
0.00096737
0.000916356
0.000963194
0.00102679
0.00108933
0.0011463
0.00119622
0.00123933
0.00127614
0.00130694
0.00133188
0.00135105
0.00136467
0.00137312
0.00137693
0.00137674
0.00137324
0.00136712
0.00135902
0.00134953
0.0013391
0.00132814
0.00131695
0.00130572
0.00129461
0.0012837
0.00127304
0.00126275
0.00125304
0.00124427
0.00123672
0.00123091
0.00122463
0.00122182
0.000611456
0.000398188
0.000352627
0.000341304
0.00034145
0.000345621
0.000351012
0.000356607
0.000362038
0.000367176
0.00037198
0.000376456
0.000380626
0.000384518
0.000388159
0.000391564
0.000394743
0.000397701
0.000400436
0.00040295
0.000405248
0.000407336
0.000409227
0.000410933
0.000412466
0.000413841
0.000415081
0.000416218
0.000417291
0.000418325
0.000419313
0.000420178
0.000420937
0.000421296
0.000422618
0.00166967
0.00115175
0.000901137
0.000770401
0.000709649
0.000706239
0.000760959
0.000873846
0.00103875
0.00124683
0.00148869
0.00175362
0.00203003
0.00230728
0.00257683
0.0028327
0.00307128
0.00329094
0.0034915
0.00367372
0.00383892
0.00398868
0.00412465
0.00424847
0.00436165
0.00446557
0.0045615
0.00465058
0.00473389
0.00481245
0.0048872
0.00495879
0.00502793
0.00509375
0.00516019
0.00166934
0.00114901
0.000896819
0.000760969
0.000688232
0.000661842
0.000681124
0.000750762
0.000872279
0.00104151
0.0012517
0.00149467
0.00176033
0.00203805
0.00231844
0.00259441
0.00286107
0.00311523
0.00335511
0.00357993
0.00378961
0.00398463
0.00416589
0.00433448
0.00449156
0.00463828
0.00477582
0.00490537
0.00502813
0.00514517
0.0052572
0.00536432
0.00546637
0.00556277
0.00565707
0.00167035
0.00114979
0.000907643
0.000801796
0.000792685
0.000872019
0.0010272
0.00123612
0.00147966
0.00174388
0.00201729
0.00229067
0.00255718
0.00281242
0.00305422
0.00328137
0.00349333
0.00369034
0.00387295
0.00404186
0.00419794
0.0043421
0.00447524
0.00459824
0.00471193
0.00481719
0.00491496
0.00500635
0.00509252
0.00517428
0.00525176
0.0053242
0.00539088
0.00545172
0.0055129
0.00166887
0.00114456
0.000890402
0.000749439
0.000663143
0.000606152
0.000566264
0.000537089
0.000515078
0.000498216
0.000485408
0.000476201
0.000470656
0.000469314
0.000473186
0.000483746
0.000502871
0.000532766
0.000575895
0.000634995
0.000713045
0.000812977
0.000937071
0.0010863
0.00125997
0.00145578
0.00167025
0.00189933
0.00213897
0.00238562
0.0026363
0.00288868
0.00314082
0.00339108
0.00363631
0.00165406
0.00117427
0.00107748
0.00114526
0.00127751
0.00143282
0.00159092
0.00174109
0.00187812
0.00200093
0.00210978
0.00220547
0.0022889
0.00236088
0.00242214
0.00247333
0.00251525
0.00254878
0.00257493
0.00259475
0.00260926
0.00261948
0.0026263
0.00263051
0.00263278
0.00263367
0.00263368
0.00263331
0.00263306
0.00263333
0.00263434
0.0026356
0.00263627
0.00263292
0.00262975
0.00121598
0.000775771
0.000710581
0.000735312
0.000779811
0.000826333
0.000869874
0.000908959
0.000943516
0.000973973
0.00100079
0.00102459
0.00104582
0.00106497
0.00108245
0.0010986
0.00111368
0.00112791
0.00114145
0.00115443
0.00116695
0.00117907
0.00119081
0.00120218
0.00121318
0.00122385
0.00123429
0.00124462
0.00125489
0.00126494
0.00127435
0.00128248
0.00128919
0.00129488
0.00130258
0.000844176
0.000578846
0.000526291
0.00051401
0.00051385
0.000518951
0.000526135
0.000533791
0.000540978
0.000547377
0.000552709
0.000556743
0.000559285
0.000560251
0.000559679
0.000557706
0.000554531
0.000550382
0.000545488
0.000540061
0.000534294
0.000528343
0.000522324
0.000516323
0.000510391
0.000504552
0.000498822
0.000493235
0.000487883
0.000482933
0.000478596
0.000474955
0.000471857
0.000468187
0.000463348
0.000604143
0.000445916
0.000378065
0.000354598
0.000343858
0.00033814
0.000335077
0.000333499
0.000332763
0.00033249
0.000332416
0.000332349
0.00033215
0.000331722
0.000331017
0.000330022
0.000328752
0.000327245
0.000325542
0.000323691
0.000321735
0.000319714
0.000317659
0.000315595
0.000313541
0.000311511
0.000309517
0.000307574
0.000305704
0.000303928
0.000302253
0.000300684
0.000299076
0.000297625
0.000295137
0.000604495
0.000445792
0.000378071
0.000354885
0.000344337
0.000338745
0.000335749
0.000334196
0.000333457
0.000333171
0.00033308
0.000332997
0.000332784
0.000332346
0.000331634
0.000330633
0.000329361
0.000327851
0.000326148
0.000324295
0.000322338
0.000320314
0.000318256
0.000316188
0.000314134
0.000312113
0.00031014
0.000308223
0.000306358
0.000304527
0.000302693
0.000300859
0.000298983
0.000297513
0.000295584
0.000630095
0.000404056
0.000355259
0.000342781
0.00034227
0.000346186
0.000351543
0.000357205
0.000362756
0.000368046
0.000373023
0.000377673
0.000382007
0.000386032
0.00038976
0.000393197
0.000396345
0.000399203
0.000401773
0.000404058
0.00040607
0.000407826
0.000409346
0.000410653
0.000411772
0.000412724
0.000413538
0.000414248
0.000414893
0.000415504
0.000416091
0.000416603
0.000417043
0.000417171
0.00041769
0.00167535
0.00117891
0.0010191
0.00105845
0.00121624
0.00143011
0.00166601
0.00190399
0.00213091
0.00233801
0.00252057
0.00267647
0.00280496
0.00290706
0.00298471
0.00304063
0.00307794
0.00309988
0.00310955
0.00310972
0.00310276
0.00309057
0.00307481
0.00305672
0.00303719
0.00301683
0.00299605
0.00297517
0.00295465
0.00293531
0.0029184
0.00290514
0.0028961
0.00288811
0.00287808
0.00166046
0.00117272
0.00106776
0.00113989
0.00128463
0.00145572
0.00163092
0.00179888
0.00195445
0.00209596
0.00222351
0.00233805
0.00244088
0.0025334
0.00261698
0.00269283
0.002762
0.0028255
0.00288416
0.00293869
0.00298971
0.00303766
0.00308291
0.00312571
0.00316632
0.00320513
0.00324262
0.00327927
0.0033151
0.00334927
0.00338022
0.00340649
0.00342876
0.00345109
0.00348189
0.0016705
0.00115563
0.00090935
0.000788613
0.000750345
0.00078772
0.000899119
0.00107185
0.00128665
0.0015259
0.00177423
0.00201871
0.00224992
0.00246265
0.00265407
0.00282279
0.0029685
0.00309179
0.00319392
0.00327669
0.00334227
0.00339296
0.00343107
0.00345877
0.00347801
0.00349049
0.00349762
0.00350059
0.00350052
0.00349863
0.00349638
0.00349526
0.0034965
0.00349908
0.00350184
0.00167046
0.00115539
0.000908518
0.000786165
0.000744605
0.000776662
0.000881641
0.00104834
0.00125818
0.00149402
0.00174099
0.00198637
0.00222094
0.00243861
0.00263548
0.0028093
0.00295919
0.00308546
0.00318937
0.00327291
0.00333848
0.00338866
0.00342594
0.00345266
0.00347087
0.00348241
0.0034889
0.00349181
0.00349243
0.00349175
0.00349019
0.0034872
0.00348152
0.00347084
0.00345721
0.00166886
0.00114447
0.000890219
0.000749211
0.000662906
0.000605906
0.000565992
0.000536749
0.000514589
0.000497432
0.000484087
0.000473959
0.000466916
0.000463247
0.000463657
0.000469278
0.000481644
0.000502643
0.000534441
0.00057946
0.00064042
0.000720293
0.000821949
0.000947518
0.00109776
0.00127175
0.00146704
0.0016801
0.00190698
0.00214386
0.00238738
0.00263477
0.0028837
0.00313213
0.00337577
0.000669081
0.000448687
0.000401677
0.000389599
0.0003884
0.000391324
0.00039576
0.000400603
0.000405323
0.000409676
0.00041345
0.00041646
0.000418568
0.000419693
0.000419835
0.000419054
0.000417456
0.000415173
0.000412347
0.000409115
0.0004056
0.000401911
0.000398133
0.00039433
0.000390548
0.000386817
0.000383156
0.00037959
0.000376165
0.000372955
0.000370056
0.000367501
0.000365267
0.000362767
0.000360147
0.00070799
0.000479409
0.000426799
0.000411984
0.000409669
0.00041228
0.000416592
0.000421333
0.00042599
0.000430308
0.00043407
0.000437079
0.000439186
0.000440306
0.000440426
0.000439597
0.000437922
0.000435534
0.000432581
0.000429205
0.000425538
0.000421687
0.00041774
0.000413765
0.000409813
0.00040593
0.00040216
0.000398546
0.000395119
0.000391866
0.000388711
0.000385473
0.000382014
0.000378022
0.000374347
0.00155434
0.00110011
0.00104614
0.00112487
0.00123834
0.00135551
0.00146523
0.00156326
0.00164819
0.00171993
0.00177852
0.00182416
0.00185728
0.00187867
0.0018895
0.00189119
0.0018855
0.00187409
0.00185849
0.00184003
0.00181979
0.00179853
0.00177681
0.00175503
0.00173351
0.00171254
0.00169249
0.00167371
0.00165635
0.00163989
0.00162277
0.00160244
0.00157696
0.00154582
0.0015183
0.00167129
0.00115754
0.000923238
0.000833255
0.000852589
0.000966746
0.00115024
0.00137549
0.00162217
0.00187385
0.00211663
0.00233973
0.00253657
0.00270478
0.00284414
0.00295598
0.00304259
0.00310683
0.00315181
0.00318061
0.00319615
0.00320109
0.00319773
0.00318798
0.00317336
0.003155
0.00313376
0.00311054
0.00308651
0.00306339
0.00304334
0.00302807
0.00301717
0.00300525
0.00298268
0.00167145
0.00115802
0.000924909
0.000838039
0.000863014
0.000983973
0.00117304
0.00140166
0.00164958
0.00190079
0.00214198
0.00236293
0.00255734
0.00272306
0.00286003
0.00296967
0.00305429
0.00311677
0.00316018
0.00318761
0.00320195
0.00320577
0.00320133
0.00319052
0.0031749
0.00315594
0.00313498
0.00311323
0.00309146
0.00306956
0.00304609
0.00301834
0.00298389
0.00294309
0.00290442
0.00167004
0.00117275
0.00104238
0.0011108
0.00127354
0.00147199
0.00167923
0.00188143
0.0020716
0.00224681
0.00240637
0.00255083
0.00268133
0.00279929
0.00290614
0.00300333
0.00309211
0.00317364
0.00324889
0.00331871
0.0033838
0.00344475
0.003502
0.00355589
0.00360676
0.003655
0.00370113
0.00374571
0.00378893
0.00383028
0.00386846
0.00390195
0.00393081
0.00395782
0.00399066
0.000835364
0.000574868
0.000516563
0.000500488
0.00049883
0.000503226
0.000509707
0.000516586
0.000523167
0.000529019
0.000533886
0.000537533
0.000539788
0.00054057
0.000539907
0.000537915
0.000534777
0.00053071
0.000525932
0.000520655
0.000515057
0.000509282
0.000503436
0.000497601
0.000491843
0.000486226
0.000480822
0.000475694
0.000470851
0.000466186
0.000461435
0.000456199
0.000450291
0.000443736
0.000438355
0.00167685
0.00118674
0.00104772
0.0011108
0.00127852
0.00148747
0.00170905
0.00192772
0.00213329
0.00232
0.00248445
0.00262467
0.00273992
0.00283067
0.00289851
0.00294591
0.00297582
0.00299134
0.00299547
0.00299091
0.00297995
0.00296447
0.00294594
0.00292548
0.00290391
0.00288192
0.00286011
0.00283908
0.00281935
0.00280106
0.00278367
0.00276546
0.0027442
0.00271685
0.00268796
0.00167481
0.00117324
0.000994908
0.00101042
0.00115411
0.00136475
0.00160371
0.00184956
0.00208795
0.00230882
0.00250564
0.00267475
0.0028149
0.00292676
0.00301234
0.00307453
0.0031167
0.00314232
0.00315465
0.00315663
0.00315077
0.00313913
0.00312342
0.00310496
0.00308469
0.00306329
0.0030412
0.00301881
0.00299666
0.00297573
0.00295747
0.00294323
0.00293353
0.00292468
0.0029125
0.00166937
0.00115032
0.000897949
0.000761925
0.000688721
0.000661209
0.000678111
0.000743539
0.000859301
0.0010226
0.00122836
0.00146963
0.0017366
0.00201766
0.00230167
0.00257979
0.00284609
0.0030971
0.00333123
0.00354783
0.00374772
0.00393216
0.0041025
0.00426014
0.00440643
0.00454261
0.00466987
0.00478935
0.00490217
0.00500941
0.00511195
0.00521028
0.00530451
0.00539338
0.00547901
0.00165246
0.00118221
0.00111239
0.00121251
0.0013701
0.0015415
0.0017092
0.00186586
0.00200892
0.00213799
0.00225366
0.00235708
0.00244948
0.00253212
0.00260606
0.00267224
0.00273143
0.00278431
0.00283145
0.00287339
0.00291066
0.00294379
0.00297327
0.00299956
0.00302303
0.00304407
0.00306308
0.00308057
0.00309707
0.00311295
0.00312818
0.00314202
0.00315407
0.00316279
0.00317662
0.00163647
0.00115517
0.00106982
0.00114645
0.00128004
0.00142788
0.00157242
0.00170655
0.00182792
0.00193644
0.00203301
0.00211889
0.00219546
0.00226401
0.00232575
0.00238174
0.00243285
0.00247987
0.00252345
0.00256413
0.00260238
0.00263852
0.0026728
0.00270538
0.00273645
0.00276627
0.00279525
0.00282374
0.00285175
0.00287855
0.00290279
0.00292317
0.00294018
0.00295716
0.00298105
0.00166946
0.00114849
0.000897231
0.000764988
0.000701044
0.000692222
0.000740227
0.000847081
0.00100733
0.00121146
0.0014502
0.00171394
0.00199233
0.00227555
0.00255605
0.00282838
0.00308899
0.00333588
0.00356807
0.00378533
0.0039879
0.00417634
0.00435145
0.00451413
0.00466538
0.00480626
0.00493787
0.00506145
0.00517827
0.00528936
0.00539524
0.00549566
0.00559023
0.00567864
0.00576585
0.00076856
0.000542894
0.000486027
0.000467267
0.000462474
0.000463588
0.000467278
0.000472003
0.000477023
0.000482021
0.000486875
0.000491534
0.000496006
0.000500319
0.000504504
0.000508585
0.000512581
0.000516505
0.000520365
0.000524166
0.000527913
0.000531604
0.000535228
0.00053877
0.000542212
0.000545562
0.000548853
0.000552139
0.00055544
0.000558682
0.000561686
0.000564216
0.000566299
0.000568145
0.000571245
0.00166896
0.00114659
0.000892839
0.00075202
0.000665961
0.000609812
0.00057214
0.000547827
0.000535358
0.000535703
0.000551679
0.000587184
0.000646233
0.000732257
0.000848009
0.000995359
0.00117432
0.00138224
0.00161397
0.00186297
0.00212259
0.00238706
0.00265187
0.00291382
0.00317078
0.00342143
0.00366522
0.00390209
0.00413238
0.00435657
0.00457499
0.0047876
0.00499405
0.00519406
0.00538809
0.00167322
0.00116214
0.000953439
0.000920617
0.00102113
0.00120993
0.0014435
0.00169627
0.0019525
0.00220113
0.00243487
0.0026495
0.00284309
0.00301456
0.00316363
0.00329098
0.00339794
0.0034864
0.00355852
0.00361663
0.00366301
0.00369977
0.0037288
0.00375175
0.00376999
0.00378467
0.00379681
0.00380729
0.00381696
0.00382652
0.00383642
0.00384633
0.00385537
0.00386029
0.0038641
0.00115894
0.000756646
0.000702057
0.00071525
0.000742353
0.000772951
0.000803136
0.000831106
0.000856115
0.000878139
0.000897396
0.00091406
0.00092825
0.000940058
0.000949582
0.000956925
0.00096223
0.00096569
0.000967534
0.000968006
0.000967356
0.000965817
0.000963601
0.000960889
0.000957834
0.000954569
0.000951219
0.000947919
0.000944813
0.000942005
0.000939531
0.000937093
0.000934503
0.000929852
0.000927197
0.00117438
0.00077344
0.000728488
0.000758209
0.000799607
0.000840178
0.000876427
0.00090777
0.0009343
0.000957037
0.000976517
0.000993017
0.00100663
0.00101741
0.00102544
0.00103087
0.00103391
0.00103484
0.00103396
0.00103159
0.00102806
0.00102365
0.00101863
0.00101321
0.00100757
0.00100184
0.000996107
0.00099046
0.000984968
0.000979731
0.000974913
0.000970592
0.0009672
0.000963368
0.000962922
0.00128639
0.000866892
0.000828248
0.000874152
0.000933107
0.000991442
0.00104487
0.00109191
0.00113221
0.00116564
0.00119246
0.00121284
0.0012268
0.00123456
0.00123665
0.0012338
0.00122689
0.00121677
0.00120423
0.00119009
0.00117497
0.00115931
0.00114345
0.00112762
0.001112
0.00109679
0.00108222
0.00106854
0.00105582
0.00104369
0.00103111
0.00101634
0.000998236
0.000976388
0.000957818
0.00123653
0.000823617
0.000781964
0.000818239
0.000867783
0.000918419
0.000965808
0.00100801
0.0010443
0.00107452
0.00109887
0.0011173
0.00112983
0.00113667
0.00113831
0.00113543
0.00112883
0.0011193
0.00110762
0.00109448
0.00108043
0.0010659
0.0010512
0.00103658
0.00102212
0.00100787
0.00099383
0.00098004
0.000966774
0.000954628
0.000944458
0.000936814
0.000931473
0.000924725
0.00091428
0.00166882
0.00114308
0.000888719
0.000747689
0.000661409
0.000604445
0.000564547
0.000535267
0.000512955
0.000495424
0.000481302
0.000469689
0.000459987
0.000451785
0.000444809
0.000438884
0.000433922
0.000429909
0.000426911
0.00042508
0.000424662
0.000426011
0.000429597
0.000436015
0.000445998
0.000460429
0.000480374
0.000507135
0.000542307
0.000587799
0.000645754
0.00071837
0.000807586
0.00091474
0.00103757
0.00167306
0.00116362
0.000961173
0.000939119
0.00104859
0.00123979
0.00147191
0.00172193
0.00197469
0.00221908
0.00244869
0.0026598
0.00285023
0.00301904
0.00316614
0.00329221
0.00339854
0.00348689
0.00355934
0.00361806
0.00366525
0.00370296
0.00373305
0.00375718
0.00377671
0.00379281
0.00380639
0.00381819
0.00382884
0.00383892
0.00384905
0.00385971
0.00387171
0.00388368
0.00390034
0.00166581
0.0012114
0.00115234
0.00125515
0.00140992
0.00157484
0.00173285
0.00187703
0.0020051
0.00211651
0.00221131
0.00228979
0.00235243
0.00240011
0.00243409
0.00245595
0.00246746
0.00247048
0.00246682
0.00245812
0.00244581
0.00243106
0.0024148
0.00239775
0.00238042
0.00236313
0.00234609
0.00232942
0.00231333
0.00229823
0.0022848
0.00227372
0.00226575
0.00225814
0.00225383
0.00166131
0.00120101
0.00113688
0.00123407
0.00138389
0.00154461
0.00169901
0.0018395
0.00196402
0.00207244
0.00216493
0.00224187
0.00230367
0.00235104
0.00238501
0.00240699
0.00241867
0.00242187
0.0024184
0.0024099
0.00239782
0.00238333
0.00236735
0.00235056
0.00233347
0.00231646
0.00229985
0.00228399
0.00226923
0.00225576
0.00224342
0.00223125
0.00221804
0.00220022
0.00218289
0.00167489
0.00117249
0.000994017
0.00100986
0.00115223
0.00135903
0.00159304
0.00183455
0.00207052
0.00229249
0.00249553
0.00267686
0.00283536
0.00297092
0.00308418
0.00317655
0.00324997
0.00330677
0.00334945
0.00338043
0.00340201
0.00341621
0.00342478
0.00342919
0.00343062
0.00343003
0.00342811
0.00342541
0.00342238
0.00341949
0.00341732
0.00341645
0.00341781
0.00342005
0.00342683
0.00167426
0.00117561
0.00101991
0.00106669
0.0012287
0.00144106
0.00167136
0.00190227
0.00212378
0.00233026
0.002519
0.00268897
0.00283995
0.00297223
0.00308644
0.00318348
0.00326456
0.00333113
0.00338487
0.00342754
0.00346094
0.00348676
0.00350655
0.00352169
0.00353332
0.00354239
0.00354967
0.00355574
0.00356114
0.00356636
0.0035719
0.00357807
0.00358553
0.00359253
0.00360449
0.00166887
0.00114458
0.000890438
0.000749489
0.000663203
0.000606213
0.000566304
0.000537055
0.000514865
0.00049762
0.000484074
0.000473525
0.000465669
0.00046052
0.000458387
0.000459871
0.00046586
0.00047754
0.000496386
0.000524186
0.00056309
0.000615673
0.000684864
0.000773639
0.000884499
0.00101894
0.00117713
0.00135797
0.00155943
0.00177906
0.00201438
0.00226305
0.00252288
0.00279171
0.00306504
0.00166938
0.00115203
0.000899334
0.000759162
0.000674585
0.000622444
0.000593852
0.000587465
0.000606547
0.000656556
0.00074242
0.000866895
0.00103092
0.00123361
0.001471
0.00173545
0.00201682
0.00230445
0.00258876
0.00286242
0.00312054
0.00336037
0.0035809
0.00378229
0.00396555
0.00413212
0.0042837
0.00442208
0.0045491
0.00466653
0.00477602
0.00487884
0.00497583
0.00506604
0.00515137
0.00167112
0.00115325
0.000922839
0.000845169
0.000883554
0.00101703
0.00121457
0.00144957
0.00170508
0.00196847
0.00222988
0.00248247
0.00272201
0.00294616
0.0031538
0.00334458
0.00351862
0.00367633
0.00381844
0.0039459
0.00405984
0.00416157
0.00425245
0.00433383
0.00440697
0.00447305
0.00453317
0.00458844
0.00463992
0.00468855
0.00473488
0.00477883
0.00482026
0.00485788
0.00489735
0.00132809
0.000872291
0.000806697
0.000833323
0.000878628
0.000926434
0.000971857
0.001013
0.00104932
0.00108093
0.00110827
0.00113163
0.00115123
0.00116725
0.00117988
0.00118931
0.00119583
0.00119975
0.00120145
0.00120132
0.00119973
0.00119702
0.0011935
0.0011894
0.00118492
0.00118025
0.00117553
0.00117091
0.0011666
0.0011627
0.0011593
0.00115603
0.00115267
0.00114683
0.00114343
0.00167308
0.00116626
0.000968476
0.000952292
0.00106557
0.00125687
0.00148687
0.00173213
0.00197588
0.0022057
0.00241266
0.00259095
0.00273894
0.00285721
0.00294778
0.00301368
0.00305839
0.00308551
0.00309842
0.00310017
0.00309339
0.00308027
0.0030626
0.00304178
0.0030188
0.00299433
0.00296881
0.00294273
0.00291687
0.00289257
0.00287174
0.00285603
0.00284532
0.00283451
0.00281516
0.00167398
0.00117
0.000982012
0.000982363
0.00111131
0.00131054
0.00154144
0.00178284
0.00201989
0.0022417
0.00244075
0.00261195
0.00275347
0.00286593
0.00295134
0.00301265
0.00305331
0.00307687
0.0030867
0.00308581
0.00307681
0.00306177
0.00304239
0.00302002
0.00299572
0.00297041
0.00294495
0.00292017
0.00289661
0.00287406
0.00285108
0.00282487
0.00279262
0.00275328
0.0027144
0.0015944
0.00111281
0.0010317
0.00109935
0.00121444
0.00133813
0.00145615
0.00156361
0.00165942
0.00174416
0.00181903
0.00188536
0.00194438
0.00199723
0.00204486
0.00208813
0.00212775
0.0021643
0.00219831
0.00223023
0.0022604
0.00228911
0.00231654
0.00234278
0.00236796
0.00239228
0.00241611
0.00243986
0.00246359
0.00248664
0.00250756
0.00252485
0.00253863
0.0025523
0.0025727
0.00164201
0.00118973
0.00113218
0.00122653
0.00136917
0.0015217
0.00166793
0.00180075
0.00191847
0.00202048
0.00210654
0.00217654
0.00223083
0.00227029
0.00229628
0.00231055
0.00231504
0.0023117
0.00230239
0.00228872
0.00227206
0.00225351
0.00223391
0.00221388
0.00219382
0.00217394
0.00215436
0.00213516
0.00211663
0.00209942
0.00208456
0.002073
0.00206519
0.0020573
0.00204898
0.00165568
0.00120344
0.00114646
0.00124664
0.00139783
0.00156017
0.00171609
0.00185797
0.00198399
0.00209363
0.0021866
0.00226285
0.00232264
0.00236672
0.00239637
0.00241332
0.00241958
0.00241725
0.00240836
0.00239467
0.00237768
0.00235859
0.00233829
0.00231741
0.00229644
0.00227573
0.00225566
0.0022366
0.00221893
0.00220269
0.00218735
0.00217126
0.00215256
0.00212789
0.00210314
0.00119815
0.00080077
0.000759863
0.000787348
0.000825377
0.000864546
0.000901578
0.000934857
0.000963459
0.000987597
0.00100717
0.00102207
0.00103221
0.0010377
0.00103888
0.00103629
0.00103056
0.00102235
0.00101229
0.00100093
0.000988752
0.000976138
0.00096337
0.000950649
0.000938081
0.000925702
0.000913514
0.000901571
0.000890087
0.00087952
0.000870521
0.000863488
0.000858272
0.00085184
0.000842749
0.0013456
0.000911314
0.000865769
0.00091153
0.000971439
0.00103057
0.00108481
0.00113282
0.00117391
0.0012087
0.0012372
0.00125933
0.00127507
0.00128464
0.00128857
0.00128757
0.00128248
0.00127416
0.00126342
0.00125098
0.00123742
0.00122323
0.00120878
0.00119432
0.00118002
0.00116593
0.00115207
0.0011385
0.00112543
0.00111334
0.00110294
0.0010947
0.00108864
0.00108139
0.00107268
0.00167024
0.00115514
0.000904735
0.000770334
0.000701509
0.000685184
0.000725332
0.000829641
0.000997221
0.00121692
0.00147337
0.00174917
0.00202614
0.00228863
0.00252576
0.00273158
0.00290413
0.00304427
0.00315454
0.00323838
0.00329957
0.00334183
0.0033686
0.00338291
0.00338732
0.00338391
0.00337435
0.00336016
0.00334291
0.00332452
0.00330724
0.00329303
0.00328218
0.00327117
0.00325239
0.00167025
0.00115518
0.000904821
0.000770534
0.000701991
0.000686208
0.000727143
0.000832259
0.00100038
0.00122022
0.00147643
0.00175178
0.00202827
0.0022904
0.00252737
0.00273318
0.00290581
0.00304602
0.00315631
0.00324009
0.00330111
0.00334306
0.00336939
0.00338312
0.00338691
0.00338307
0.0033737
0.0033606
0.00334514
0.00332791
0.00330829
0.00328449
0.0032546
0.00321875
0.00318309
0.00166929
0.00114686
0.000894426
0.000759119
0.000687712
0.000663616
0.000686154
0.000759468
0.000884396
0.00105647
0.00126887
0.00151349
0.00178074
0.00206062
0.00234436
0.00262529
0.00289891
0.00316253
0.00341471
0.00365488
0.00388302
0.00409944
0.00430463
0.00449913
0.00468353
0.00485848
0.00502482
0.00518353
0.00533548
0.00548096
0.00561932
0.00574928
0.00587038
0.00598456
0.00609916
0.00102078
0.000686151
0.000633269
0.000632389
0.000645034
0.000661828
0.000679478
0.000696482
0.000712205
0.000726528
0.000739546
0.000751407
0.000762297
0.000772399
0.000781866
0.000790819
0.000799356
0.000807551
0.00081546
0.000823132
0.000830601
0.00083789
0.000844996
0.000851896
0.000858566
0.000865023
0.000871351
0.000877679
0.000884075
0.000890395
0.000896241
0.000901057
0.00090487
0.000907998
0.000914216
0.000621293
0.000408545
0.000366071
0.000355873
0.000355721
0.000359601
0.000364922
0.000370485
0.000375716
0.000380297
0.00038405
0.000386818
0.000388484
0.000389001
0.000388405
0.000386802
0.000384342
0.000381195
0.000377532
0.000373514
0.000369275
0.000364924
0.000360543
0.000356189
0.000351891
0.00034766
0.000343506
0.000339465
0.000335632
0.000332162
0.000329229
0.00032685
0.000324772
0.000321966
0.000317739
0.000622039
0.00040891
0.000366573
0.000356563
0.000356571
0.000360567
0.000365963
0.000371579
0.000376847
0.000381454
0.000385223
0.000388002
0.000389674
0.00039019
0.000389587
0.000387971
0.000385494
0.000382328
0.000378645
0.000374605
0.000370343
0.000365961
0.000361538
0.000357135
0.000352803
0.000348596
0.000344572
0.00034077
0.000337173
0.000333644
0.00032992
0.000325681
0.000320882
0.00031588
0.000312385
0.00166909
0.00114708
0.000893556
0.000754044
0.000671925
0.000625248
0.000607228
0.000619044
0.000665634
0.000751658
0.000878912
0.00104659
0.00125186
0.00148912
0.00175036
0.00202652
0.00230917
0.00259159
0.00286902
0.00313844
0.00339809
0.00364712
0.0038852
0.00411229
0.00432858
0.0045344
0.00473033
0.00491716
0.00509582
0.00526698
0.00543077
0.00558665
0.0057342
0.00587394
0.00601047
0.00154822
0.00109739
0.00104818
0.00112947
0.00123949
0.00134699
0.00144327
0.00152695
0.00159838
0.0016593
0.00171117
0.00175484
0.00179082
0.00181951
0.00184139
0.00185701
0.00186705
0.00187227
0.00187347
0.00187145
0.00186695
0.00186064
0.00185308
0.00184473
0.00183595
0.001827
0.00181807
0.0018093
0.00180079
0.00179274
0.00178544
0.00177911
0.00177448
0.00176964
0.00177024
0.0016693
0.00114824
0.000895859
0.000760162
0.000687982
0.000662774
0.000684258
0.000757549
0.000884257
0.00105967
0.00127612
0.00152449
0.00179426
0.00207467
0.00235677
0.00263417
0.0029027
0.00315981
0.00340402
0.00363459
0.00385104
0.00405376
0.00424329
0.00442032
0.00458568
0.00474032
0.00488528
0.00502169
0.00515068
0.00527325
0.00539001
0.00550103
0.00560603
0.00570446
0.00579928
0.00166919
0.00114853
0.000895527
0.000756657
0.000676224
0.000633612
0.000624001
0.000650856
0.000720345
0.000835805
0.000995787
0.00119597
0.00143009
0.00168958
0.00196449
0.00224568
0.00252577
0.00279931
0.00306269
0.00331372
0.00355128
0.0037751
0.00398553
0.00418327
0.00436922
0.00454439
0.00470983
0.00486668
0.00501612
0.00515917
0.00529651
0.00542822
0.00555413
0.00567377
0.00579019
0.00160011
0.00112419
0.00105103
0.00112171
0.00123488
0.00135456
0.00146817
0.00157126
0.00166308
0.00174432
0.00181601
0.00187938
0.00193564
0.00198592
0.00203117
0.0020721
0.00210933
0.00214334
0.00217452
0.00220319
0.00222966
0.00225419
0.00227697
0.00229814
0.00231778
0.00233603
0.00235312
0.00236943
0.00238537
0.002401
0.00241584
0.00242871
0.00243903
0.00244633
0.00245915
0.000560187
0.000376129
0.000332771
0.00031995
0.000317086
0.000318267
0.000321099
0.000324465
0.000327807
0.000330828
0.000333346
0.000335203
0.000336282
0.00033653
0.000335957
0.000334632
0.000332663
0.000330172
0.000327286
0.000324124
0.000320789
0.000317365
0.000313912
0.000310477
0.000307083
0.000303741
0.000300461
0.000297272
0.000294242
0.000291484
0.000289115
0.00028715
0.000285389
0.000283141
0.000279749
0.000561225
0.000376614
0.000333488
0.000321024
0.000318478
0.000319896
0.000322874
0.000326329
0.000329731
0.000332788
0.000335325
0.000337191
0.000338274
0.000338517
0.000337931
0.000336584
0.000334585
0.00033206
0.000329137
0.000325936
0.00032256
0.000319088
0.000315582
0.000312089
0.00030865
0.000305305
0.000302098
0.000299059
0.000296174
0.000293348
0.000290394
0.000287089
0.000283396
0.000279617
0.000276812
0.0016699
0.00114747
0.000901163
0.000784559
0.000754139
0.000801685
0.000922477
0.0011021
0.00132368
0.00157364
0.00184018
0.00211304
0.00238434
0.00264864
0.00290251
0.00314402
0.0033723
0.0035872
0.00378908
0.00397858
0.00415655
0.00432383
0.00448127
0.00462961
0.00476958
0.00490195
0.00502769
0.00514784
0.00526316
0.00537358
0.00547786
0.00557426
0.00566254
0.00574592
0.0058335
0.00162446
0.00116433
0.00111047
0.00121317
0.00136128
0.00151551
0.00166214
0.0017964
0.00191724
0.00202513
0.00212112
0.00220636
0.00228193
0.00234906
0.00240865
0.00246146
0.00250814
0.00254925
0.00258528
0.00261672
0.00264405
0.00266778
0.00268838
0.00270631
0.00272195
0.00273567
0.00274782
0.00275882
0.00276909
0.00277898
0.00278859
0.00279751
0.00280547
0.00281099
0.00281955
0.00166884
0.00114383
0.000889538
0.000748523
0.000662233
0.000605251
0.000565335
0.000536041
0.000513727
0.000496217
0.000482159
0.000470695
0.000461292
0.000453652
0.00044768
0.00044347
0.000441329
0.000441793
0.00044566
0.000454004
0.000468176
0.000489777
0.000520641
0.000562845
0.000618745
0.000690934
0.000782006
0.00089412
0.00102855
0.00118541
0.00136357
0.00156087
0.00177433
0.00200046
0.00223213
0.00167256
0.00116144
0.000941373
0.000883915
0.000951503
0.00111127
0.00132399
0.00156267
0.00180976
0.00205118
0.00227684
0.00248038
0.00265799
0.0028083
0.0029318
0.0030303
0.00310634
0.00316281
0.00320267
0.00322877
0.00324373
0.00324988
0.0032492
0.00324337
0.00323372
0.00322142
0.00320747
0.00319282
0.00317829
0.00316434
0.00315076
0.00313623
0.00311877
0.00309573
0.00307027
0.00167286
0.00116315
0.00094995
0.00090545
0.000988207
0.00115821
0.00137565
0.00161609
0.00186317
0.00210339
0.00232691
0.00252695
0.00269976
0.00284434
0.00296168
0.00305399
0.00312419
0.00317538
0.00321066
0.00323291
0.00324469
0.00324826
0.00324553
0.0032381
0.00322721
0.00321383
0.00319865
0.00318226
0.00316534
0.00314886
0.00313421
0.00312276
0.00311527
0.0031091
0.00310109
0.00167526
0.00117098
0.000987839
0.000997948
0.00113909
0.00134958
0.00158924
0.00183723
0.00207983
0.00230833
0.00251845
0.00270763
0.00287462
0.00301907
0.00314135
0.00324259
0.00332453
0.00338933
0.00343938
0.00347709
0.00350475
0.00352444
0.00353796
0.00354679
0.00355218
0.00355513
0.00355648
0.00355699
0.00355737
0.00355823
0.0035599
0.00356194
0.00356343
0.00356096
0.00355793
0.00165551
0.001172
0.00107797
0.00115838
0.00130606
0.00147461
0.00164305
0.00180177
0.00194696
0.00207785
0.00219511
0.0023
0.00239394
0.00247834
0.00255449
0.00262358
0.00268661
0.00274447
0.00279795
0.00284772
0.00289435
0.0029383
0.0029799
0.00301936
0.00305691
0.00309291
0.00312787
0.00316234
0.0031964
0.00322919
0.00325893
0.00328386
0.00330439
0.00332497
0.00335459
0.00131414
0.000866454
0.000808568
0.000843592
0.000897431
0.000953186
0.00100482
0.00105022
0.00108939
0.00112227
0.00114891
0.00116927
0.00118338
0.00119151
0.00119417
0.00119205
0.001186
0.00117688
0.00116549
0.00115256
0.00113867
0.00112426
0.00110965
0.00109506
0.00108066
0.00106663
0.00105318
0.00104054
0.00102882
0.00101772
0.00100636
0.000993185
0.000977139
0.000957314
0.000940522
0.00148784
0.00104192
0.00099007
0.0010511
0.00113723
0.00122514
0.00130714
0.00137982
0.0014426
0.00149547
0.0015384
0.00157159
0.00159522
0.00160984
0.00161632
0.00161581
0.00160959
0.00159893
0.001585
0.00156877
0.00155111
0.00153269
0.00151398
0.00149533
0.0014769
0.00145876
0.00144087
0.00142329
0.00140635
0.00139078
0.0013777
0.00136795
0.00136145
0.00135378
0.0013419
0.00138428
0.000929708
0.000864049
0.000899639
0.000958134
0.0010205
0.00108021
0.00113443
0.00118216
0.00122384
0.00126008
0.00129139
0.00131816
0.00134069
0.00135924
0.00137405
0.0013854
0.00139362
0.00139912
0.0014023
0.00140357
0.00140333
0.00140191
0.00139964
0.00139674
0.00139345
0.00138996
0.00138649
0.00138327
0.00138048
0.0013782
0.00137602
0.00137351
0.00136821
0.001364
0.000800513
0.000565461
0.000504029
0.000483468
0.00047762
0.000477888
0.000480847
0.00048495
0.000489449
0.000493991
0.000498443
0.00050275
0.000506912
0.000510949
0.000514886
0.00051874
0.000522529
0.000526262
0.000529947
0.000533589
0.00053719
0.000540748
0.000544253
0.000547688
0.000551037
0.000554308
0.000557534
0.000560766
0.00056402
0.000567215
0.000570169
0.000572656
0.000574721
0.000576584
0.000579842
0.00167477
0.00119646
0.00109095
0.0011786
0.00134848
0.00154761
0.0017528
0.00195067
0.00213333
0.002296
0.00243603
0.00255206
0.00264421
0.00271369
0.00276257
0.00279352
0.00280948
0.00281342
0.00280808
0.00279587
0.0027788
0.00275846
0.00273613
0.00271274
0.0026889
0.00266497
0.00264114
0.0026176
0.00259476
0.00257348
0.00255514
0.00254099
0.00253141
0.00252223
0.00250961
0.00167633
0.00120106
0.00110073
0.00119217
0.00136393
0.00156329
0.0017668
0.00196176
0.00214102
0.00230075
0.00243877
0.00255395
0.00264613
0.00271617
0.00276582
0.00279751
0.0028141
0.00281851
0.00281349
0.0028015
0.00278457
0.00276432
0.002742
0.0027185
0.0026945
0.00267055
0.00264716
0.00262488
0.00260411
0.00258485
0.00256627
0.00254632
0.00252266
0.00249247
0.00246156
0.00166908
0.0011465
0.000893008
0.000753796
0.000672562
0.000627867
0.00061362
0.000631602
0.000686609
0.000781877
0.000917094
0.00108982
0.00129626
0.00153059
0.00178527
0.00205254
0.00232558
0.00259899
0.00286873
0.00313199
0.00338689
0.00363239
0.003868
0.00409362
0.00430937
0.00451548
0.00471238
0.00490078
0.00508165
0.00525585
0.00542345
0.00558308
0.00573224
0.00586891
0.00599572
0.00167389
0.0011589
0.000950125
0.000918914
0.00102159
0.00121318
0.0014501
0.00170716
0.0019698
0.00222802
0.00247518
0.00270795
0.00292504
0.0031263
0.00331225
0.00348383
0.0036421
0.0037882
0.00392327
0.00404838
0.00416457
0.00427281
0.00437396
0.00446872
0.00455762
0.00464115
0.00471993
0.00479495
0.00486743
0.00493812
0.00500618
0.0050684
0.00512061
0.00516039
0.00519654
0.00110524
0.0007382
0.000686753
0.000692482
0.000710173
0.000731501
0.000752979
0.000773031
0.000790992
0.000806743
0.000820253
0.000831457
0.000840308
0.000846789
0.000850965
0.000852981
0.000853055
0.000851458
0.000848487
0.000844439
0.000839589
0.00083418
0.000828421
0.000822478
0.000816481
0.000810516
0.000804632
0.000798844
0.000793158
0.000787597
0.000782284
0.000777352
0.000773439
0.000769689
0.000770866
0.00162523
0.00114829
0.00106802
0.00114252
0.0012707
0.00141234
0.00155046
0.00167793
0.00179251
0.00189438
0.00198476
0.002065
0.0021365
0.00220058
0.00225835
0.00231077
0.00235865
0.00240266
0.00244342
0.00248143
0.00251714
0.00255095
0.00258316
0.00261395
0.0026434
0.00267157
0.00269874
0.00272551
0.00275263
0.00278038
0.00280758
0.00283124
0.00284784
0.00285606
0.00286272
0.00102583
0.000661068
0.000607604
0.000612266
0.000629473
0.000649975
0.000670389
0.000689312
0.0007065
0.000722018
0.000736036
0.000748747
0.000760337
0.000770977
0.000780815
0.00078996
0.000798488
0.000806441
0.000813846
0.00082072
0.000827078
0.000832937
0.00083832
0.000843258
0.000847782
0.000851925
0.000855718
0.000859193
0.000862392
0.000865365
0.000868205
0.000870924
0.000873867
0.00087629
0.000881772
0.00167174
0.00115319
0.000934255
0.000883276
0.00095964
0.00112837
0.00135023
0.00159899
0.00185851
0.00211736
0.00236787
0.00260556
0.00282832
0.00303554
0.00322755
0.00340517
0.00356945
0.00372154
0.00386258
0.00399368
0.00411589
0.00423018
0.00433743
0.00443834
0.00453346
0.00462333
0.00470864
0.00479043
0.0048699
0.00494766
0.00502256
0.00509116
0.00514927
0.00519517
0.00523662
0.00166884
0.00114407
0.000889674
0.000748591
0.000662281
0.000605292
0.000565372
0.000536073
0.000513745
0.0004962
0.00048206
0.000470431
0.000460714
0.000452511
0.00044557
0.000439761
0.000435074
0.000431622
0.000429665
0.000429633
0.000432157
0.000438086
0.000448492
0.000464671
0.000488123
0.000520565
0.000563999
0.00062081
0.00069383
0.000786241
0.0009013
0.00104197
0.00121046
0.00140775
0.00163036
0.00167517
0.001169
0.000996234
0.001021
0.00116681
0.00137002
0.00159602
0.0018276
0.00205436
0.00227006
0.00247146
0.00265761
0.00282872
0.00298561
0.00312935
0.00326109
0.00338195
0.00349295
0.00359499
0.00368887
0.00377529
0.00385489
0.00392826
0.00399594
0.00405844
0.00411621
0.00416971
0.0042195
0.00426621
0.00431052
0.00435285
0.00439298
0.00443044
0.00446364
0.00449759
0.0016689
0.00114554
0.000891288
0.000750242
0.000663892
0.000606891
0.0005671
0.00053825
0.00051702
0.000501797
0.000492153
0.000488647
0.000492744
0.000506702
0.000533301
0.000575467
0.000636023
0.000717771
0.000823556
0.000955797
0.00111563
0.00130224
0.00151288
0.00174326
0.00198833
0.00224301
0.00250274
0.00276393
0.00302402
0.00328142
0.00353523
0.00378487
0.00402956
0.00426809
0.00449763
0.00156877
0.00110884
0.00104682
0.00111857
0.00122602
0.00133787
0.00144304
0.00153757
0.00162007
0.00169042
0.00174842
0.00179424
0.00182817
0.00185092
0.00186358
0.00186757
0.00186442
0.00185569
0.00184277
0.00182685
0.00180899
0.00178997
0.00177042
0.00175085
0.00173161
0.00171288
0.00169461
0.00167653
0.00165834
0.0016401
0.00162295
0.00160929
0.00160279
0.00160383
0.00161326
0.00160331
0.00114268
0.0010813
0.00115694
0.00127148
0.00139133
0.00150367
0.0016042
0.0016918
0.00176659
0.00182857
0.00187778
0.00191451
0.00193944
0.00195363
0.00195852
0.00195572
0.00194689
0.00193357
0.00191708
0.00189855
0.00187884
0.0018586
0.0018383
0.00181822
0.00179845
0.00177901
0.00175986
0.0017412
0.0017236
0.00170812
0.00169581
0.00168751
0.00168012
0.00167419
0.00151283
0.00107193
0.00103197
0.00111013
0.00121052
0.00130826
0.00139633
0.00147291
0.00153901
0.00159537
0.00164229
0.00167985
0.00170825
0.00172789
0.00173952
0.00174414
0.00174286
0.00173685
0.00172721
0.00171493
0.00170083
0.0016856
0.00166977
0.00165377
0.00163791
0.0016224
0.00160728
0.00159244
0.00157767
0.00156295
0.00154886
0.0015368
0.00152933
0.00152649
0.0015323
0.00153841
0.00108524
0.00103417
0.0011079
0.00121051
0.00131391
0.00140809
0.00149047
0.00156189
0.00162304
0.00167416
0.00171539
0.00174693
0.00176919
0.00178289
0.00178903
0.00178877
0.00178335
0.00177398
0.00176174
0.00174754
0.00173214
0.00171613
0.00169993
0.00168384
0.00166801
0.00165249
0.00163726
0.00162234
0.00160795
0.00159465
0.00158315
0.00157467
0.00156763
0.00156653
0.000833454
0.000579787
0.000515907
0.000496791
0.000492841
0.000495012
0.000499633
0.000505035
0.000510577
0.000516038
0.000521315
0.000526371
0.000531208
0.000535843
0.000540299
0.000544593
0.000548731
0.000552709
0.000556518
0.000560147
0.000563584
0.000566822
0.000569859
0.000572695
0.000575335
0.000577787
0.000580058
0.000582161
0.000584119
0.000585959
0.000587721
0.000589407
0.000591142
0.000592596
0.000595218
0.00167277
0.00116209
0.000965369
0.00095261
0.00106895
0.00126174
0.00149126
0.0017353
0.00197986
0.00221588
0.0024381
0.00264399
0.00283264
0.00300393
0.00315816
0.00329579
0.00341746
0.00352403
0.00361655
0.00369627
0.00376454
0.00382282
0.00387255
0.00391515
0.00395189
0.00398392
0.00401216
0.00403734
0.00406006
0.00408082
0.0041003
0.00411929
0.00413939
0.00416086
0.00418943
0.00167375
0.00117364
0.00102272
0.00106927
0.00122041
0.00141673
0.00163003
0.00184479
0.00205156
0.00224535
0.00242409
0.00258747
0.00273609
0.00287094
0.00299316
0.00310378
0.00320372
0.00329378
0.00337471
0.00344722
0.00351201
0.00356979
0.00362127
0.00366718
0.00370823
0.00374508
0.00377834
0.00380855
0.00383623
0.0038619
0.00388611
0.00390928
0.00393216
0.00395401
0.00398092
0.00166963
0.00119789
0.00111888
0.00122154
0.00138946
0.00157364
0.0017546
0.00192401
0.00207885
0.00221838
0.00234353
0.00245558
0.00255596
0.00264617
0.00272754
0.00280134
0.00286864
0.00293032
0.00298707
0.00303948
0.00308803
0.0031331
0.00317505
0.00321416
0.00325064
0.00328469
0.00331652
0.00334645
0.00337492
0.00340234
0.00342889
0.00345404
0.00347708
0.00349638
0.00351706
0.00158179
0.00111086
0.00103293
0.00109414
0.00119811
0.0013105
0.0014189
0.00151821
0.00160689
0.00168515
0.00175387
0.00181409
0.00186682
0.00191291
0.001953
0.00198761
0.00201718
0.00204211
0.00206284
0.00207981
0.00209351
0.00210439
0.00211295
0.00211962
0.00212481
0.00212886
0.00213202
0.00213446
0.00213627
0.00213756
0.00213863
0.00213984
0.00214251
0.00214608
0.00215859
0.000621077
0.000410682
0.00036056
0.000346193
0.000343604
0.000345385
0.00034877
0.000352708
0.00035677
0.000360766
0.000364608
0.000368262
0.000371728
0.000375022
0.000378162
0.000381156
0.000384009
0.000386719
0.000389282
0.00039169
0.000393939
0.000396029
0.000397965
0.000399753
0.000401399
0.000402911
0.000404301
0.000405592
0.000406824
0.000408033
0.000409222
0.000410312
0.000411242
0.00041167
0.000412651
0.00167245
0.00115825
0.000961871
0.000951075
0.00106793
0.0012586
0.00148523
0.00172754
0.00197249
0.0022111
0.00243787
0.00265003
0.00284665
0.00302792
0.00319469
0.00334805
0.00348923
0.00361944
0.00373986
0.00385156
0.00395557
0.0040528
0.00414406
0.00422997
0.004311
0.00438761
0.00446043
0.00453052
0.00459907
0.00466658
0.0047317
0.0047906
0.00483878
0.00487461
0.00490683
0.00110241
0.000719543
0.000664278
0.000672863
0.000694026
0.000717425
0.00073994
0.000760294
0.000778582
0.000795009
0.000809844
0.000823319
0.000835638
0.000846995
0.000857567
0.000867502
0.000876907
0.000885857
0.0008944
0.000902563
0.000910362
0.000917806
0.000924901
0.000931652
0.00093806
0.000944128
0.000949862
0.00095529
0.00096047
0.000965467
0.00097035
0.000975033
0.000979672
0.000983383
0.000989687
0.00167312
0.0011753
0.00101592
0.00105851
0.00121892
0.00143075
0.00166099
0.00189205
0.00211202
0.0023127
0.00248791
0.00263455
0.00275227
0.00284223
0.00290684
0.00294936
0.00297338
0.00298248
0.00297995
0.00296862
0.00295087
0.00292863
0.00290347
0.00287664
0.00284907
0.00282127
0.00279328
0.00276472
0.00273526
0.0027055
0.00267813
0.0026584
0.00265275
0.00266267
0.00268036
0.0016734
0.00117595
0.00101764
0.00106279
0.00122643
0.00144063
0.00167201
0.0019034
0.0021233
0.00232376
0.00249887
0.00264549
0.00276324
0.00285325
0.00291792
0.00296046
0.00298448
0.00299353
0.00299091
0.00297952
0.00296176
0.00293956
0.00291445
0.00288756
0.00285962
0.00283102
0.00280202
0.00277294
0.0027446
0.00271849
0.00269676
0.00268103
0.00267063
0.00265901
0.00263613
0.00140059
0.000963562
0.000923194
0.000982716
0.00105999
0.00113652
0.00120671
0.00126865
0.00132192
0.00136626
0.00140194
0.00142919
0.00144816
0.00145926
0.00146321
0.00146097
0.00145366
0.00144236
0.00142812
0.00141191
0.0013945
0.00137647
0.00135824
0.00134011
0.00132221
0.00130456
0.00128713
0.00126996
0.00125343
0.00123832
0.00122583
0.00121674
0.00121077
0.00120327
0.00119079
0.00133374
0.000894687
0.000848051
0.000895049
0.000959285
0.00102413
0.00108421
0.00113747
0.00118329
0.00122142
0.00125207
0.00127534
0.00129135
0.00130044
0.00130325
0.00130065
0.00129361
0.00128306
0.00126998
0.00125515
0.00123923
0.00122271
0.00120601
0.00118945
0.00117328
0.00115757
0.00114216
0.00112673
0.00111098
0.00109519
0.00108077
0.00107042
0.00106756
0.00107195
0.00108187
0.00166901
0.00114637
0.000892572
0.000752305
0.000668208
0.00061703
0.000590013
0.000585975
0.000608171
0.000661622
0.000750349
0.000876113
0.00103894
0.00123702
0.00146572
0.00171785
0.00198522
0.00226026
0.00253693
0.00281083
0.00307899
0.00333951
0.00359129
0.00383377
0.00406671
0.00429012
0.00450423
0.00470957
0.00490695
0.00509717
0.00528045
0.00545582
0.00562122
0.0057746
0.00591731
0.000893048
0.000609261
0.000553991
0.000542697
0.000544173
0.000550923
0.000559599
0.000568575
0.000576952
0.000584381
0.000590583
0.000595316
0.000598377
0.000599687
0.000599293
0.00059735
0.00059408
0.000589735
0.000584565
0.0005788
0.000572646
0.00056627
0.000559812
0.000553384
0.000547067
0.000540899
0.000534865
0.000528909
0.000522993
0.000517199
0.000511848
0.000507494
0.000504827
0.000503507
0.000503355
0.00167283
0.00116289
0.000968648
0.000958345
0.00107491
0.0012668
0.00149639
0.00174122
0.00198633
0.00222214
0.00244331
0.00264735
0.00283325
0.00300083
0.00315025
0.00328201
0.00339687
0.0034959
0.00358041
0.00365191
0.003712
0.0037623
0.00380443
0.00383985
0.00386991
0.00389573
0.00391823
0.00393807
0.00395578
0.00397182
0.00398686
0.00400181
0.00401844
0.00403726
0.00406356
0.0010345
0.000814923
0.000697114
0.000651515
0.000631413
0.000621099
0.000615566
0.000612631
0.00061121
0.000610689
0.000610696
0.000610982
0.000611354
0.000611657
0.000611778
0.00061164
0.0006112
0.000610446
0.000609389
0.000608059
0.000606495
0.000604743
0.000602846
0.000600849
0.000598788
0.000596696
0.000594598
0.000592514
0.000590459
0.000588449
0.000586498
0.000584659
0.000582888
0.000581511
0.000579358
0.00084057
0.00064245
0.000544565
0.000506709
0.000490009
0.000481597
0.000477102
0.000474812
0.000473828
0.000473639
0.000473967
0.000474655
0.000475606
0.000476756
0.000478062
0.000479491
0.000481019
0.000482624
0.00048429
0.000486003
0.000487752
0.000489528
0.000491322
0.000493124
0.000494927
0.000496727
0.000498526
0.000500332
0.000502145
0.000503948
0.000505688
0.000507302
0.00050876
0.000510043
0.000511812
0.0014711
0.00102816
0.000977031
0.00103048
0.00110432
0.00117771
0.00124492
0.00130434
0.00135574
0.00139976
0.00143701
0.00146794
0.00149284
0.00151201
0.0015258
0.00153467
0.00153919
0.00154001
0.00153782
0.00153326
0.00152694
0.00151939
0.00151103
0.00150223
0.00149325
0.00148428
0.00147542
0.0014667
0.0014581
0.00144965
0.00144152
0.00143398
0.00142821
0.00142312
0.00142682
0.00167353
0.00116377
0.000980924
0.000990273
0.00112301
0.00132014
0.00154668
0.00178411
0.0020202
0.00224698
0.00246005
0.00265756
0.00283945
0.00300646
0.00315959
0.00330008
0.00342925
0.00354828
0.0036582
0.00375991
0.00385422
0.00394182
0.00402333
0.00409926
0.00417008
0.00423617
0.00429799
0.00435612
0.0044113
0.00446417
0.00451488
0.00456256
0.00460582
0.004643
0.00467825
0.00148738
0.00104334
0.000998856
0.00106647
0.00115758
0.00124936
0.00133435
0.00140986
0.00147513
0.00152965
0.00157376
0.00160766
0.00163161
0.00164615
0.00165219
0.00165092
0.0016437
0.00163183
0.00161657
0.001599
0.00158001
0.00156026
0.00154022
0.00152026
0.00150055
0.0014811
0.00146185
0.00144289
0.00142463
0.00140808
0.00139464
0.00138529
0.00137958
0.00137207
0.00135748
0.00146305
0.00101455
0.000965988
0.00102816
0.00111358
0.00119999
0.00128006
0.00135115
0.00141249
0.00146369
0.00150505
0.00153674
0.001559
0.00157235
0.00157766
0.00157607
0.00156886
0.00155727
0.00154248
0.00152549
0.00150711
0.00148796
0.00146852
0.00144926
0.00143047
0.00141222
0.0013943
0.00137627
0.00135775
0.00133909
0.00132215
0.00131049
0.00130853
0.00131635
0.00133069
0.0016689
0.00114589
0.0008917
0.000750675
0.000664331
0.000607314
0.000567465
0.00053846
0.000516873
0.000500898
0.000489783
0.000483585
0.000483073
0.000489683
0.000505418
0.000532688
0.000574103
0.000632375
0.000710327
0.000810776
0.000936031
0.0010872
0.00126376
0.00146351
0.00168302
0.00191813
0.00216465
0.0024188
0.00267759
0.00293891
0.00320142
0.0034643
0.0037268
0.00398775
0.0042442
0.00145276
0.00103109
0.00099028
0.00104847
0.00112359
0.00119631
0.00126097
0.00131725
0.00136543
0.00140646
0.00144116
0.00147002
0.00149329
0.00151119
0.00152406
0.0015323
0.00153644
0.00153705
0.00153477
0.00153019
0.00152388
0.00151633
0.00150794
0.00149907
0.00148999
0.0014809
0.00147195
0.0014632
0.00145464
0.00144624
0.00143812
0.00143054
0.00142464
0.0014196
0.0014219
0.00160886
0.00113782
0.00106266
0.00113324
0.00124874
0.00137259
0.00149137
0.00160011
0.0016974
0.00178364
0.00185985
0.00192727
0.00198706
0.00204022
0.00208762
0.00212989
0.00216754
0.00220099
0.00223056
0.00225661
0.00227945
0.00229942
0.00231683
0.00233204
0.00234537
0.0023571
0.0023675
0.00237677
0.00238508
0.00239263
0.00239968
0.00240649
0.00241385
0.00242111
0.00243422
0.00103234
0.000666257
0.000613269
0.000623311
0.000647848
0.000675302
0.000701941
0.000726405
0.000748369
0.000767918
0.000785383
0.000801078
0.00081526
0.000828213
0.000840191
0.000851403
0.000862015
0.000872151
0.000881905
0.000891347
0.000900525
0.000909473
0.000918207
0.000926722
0.000934998
0.000943014
0.000950786
0.000958396
0.000965969
0.000973574
0.000981086
0.000988026
0.000993917
0.000998163
0.00100245
0.000919869
0.000721889
0.000616429
0.000575549
0.00055726
0.000547724
0.000542585
0.00053988
0.000538569
0.000538071
0.000538024
0.000538175
0.000538335
0.00053836
0.000538152
0.000537651
0.000536834
0.000535708
0.000534297
0.000532641
0.000530785
0.000528776
0.000526658
0.000524471
0.000522249
0.000520019
0.000517803
0.000515614
0.000513464
0.00051137
0.00050935
0.000507465
0.00050567
0.000504285
0.000502114
0.000988549
0.000773219
0.000657517
0.000613445
0.000594033
0.000584049
0.000578779
0.000576098
0.00057489
0.000574541
0.000574667
0.000574992
0.000575308
0.00057546
0.000575337
0.000574877
0.000574055
0.000572881
0.000571388
0.000569622
0.000567638
0.000565488
0.000563223
0.000560885
0.000558512
0.000556132
0.000553766
0.000551431
0.000549145
0.000546926
0.000544791
0.000542792
0.000540857
0.000539329
0.000536907
0.00160151
0.00115473
0.00110798
0.00119066
0.00130745
0.00142664
0.00153821
0.00163921
0.00172925
0.00180899
0.00187937
0.00194154
0.0019967
0.00204595
0.00209015
0.00212999
0.00216605
0.00219876
0.00222847
0.00225547
0.00228002
0.00230237
0.00232276
0.0023414
0.00235848
0.00237414
0.00238855
0.00240198
0.00241486
0.00242762
0.00244032
0.00245217
0.00246211
0.00246736
0.00247592
0.00167094
0.00115055
0.000918651
0.000839204
0.000875488
0.00100955
0.00121286
0.00145692
0.00172157
0.0019922
0.00225842
0.00251381
0.0027551
0.00298108
0.00319165
0.00338744
0.00356937
0.0037385
0.00389589
0.00404256
0.0041795
0.00430763
0.00442776
0.0045406
0.00464673
0.00474669
0.00484112
0.0049309
0.00501705
0.00510022
0.00517997
0.00525422
0.00532023
0.00537635
0.00542874
0.00167227
0.00115833
0.000962911
0.000954351
0.00107384
0.00126567
0.00149139
0.00173101
0.0019719
0.00220546
0.00242667
0.00263306
0.00282397
0.00299979
0.00316141
0.00331005
0.00344698
0.0035734
0.00369043
0.00379903
0.00390009
0.00399439
0.00408258
0.00416523
0.00424276
0.00431559
0.0043842
0.00444932
0.00451177
0.0045721
0.00462998
0.00468368
0.00473097
0.00477035
0.00480708
0.00164735
0.00116401
0.001075
0.00115841
0.00130483
0.00146878
0.00163051
0.00178139
0.00191835
0.00204105
0.00215035
0.00224759
0.00233424
0.00241178
0.00248157
0.00254481
0.0026025
0.0026555
0.00270451
0.0027501
0.00279276
0.00283291
0.00287083
0.00290676
0.00294081
0.00297311
0.00300385
0.00303346
0.00306243
0.00309107
0.00311892
0.00314447
0.00316578
0.00318167
0.00319619
0.00167145
0.00115484
0.000927176
0.000855485
0.000903031
0.00104712
0.00125542
0.00150022
0.00176305
0.00203033
0.00229222
0.00254246
0.00277768
0.00299629
0.00319773
0.00338194
0.00354911
0.0036997
0.00383444
0.00395428
0.00406039
0.00415414
0.00423697
0.00431032
0.00437561
0.00443412
0.00448696
0.0045351
0.00457934
0.00462043
0.00465915
0.0046963
0.00473325
0.00476994
0.0048129
0.00165963
0.00118691
0.00109935
0.00119221
0.00135431
0.001538
0.0017217
0.00189422
0.00204999
0.00218586
0.00229972
0.00239141
0.00246145
0.00251119
0.0025427
0.00255864
0.00256183
0.00255506
0.00254085
0.00252132
0.00249817
0.00247277
0.00244618
0.00241927
0.00239259
0.00236645
0.00234074
0.00231499
0.00228871
0.00226222
0.00223768
0.0022196
0.00221388
0.00222206
0.00223946
0.00165939
0.00118938
0.00110611
0.0011981
0.00135673
0.00153734
0.00171869
0.00188932
0.0020434
0.00217798
0.00229106
0.00238222
0.00245189
0.00250136
0.00253268
0.00254843
0.00255145
0.0025445
0.00253013
0.00251049
0.00248736
0.00246208
0.00243563
0.00240877
0.00238191
0.0023552
0.00232867
0.00230245
0.00227714
0.00225401
0.00223493
0.00222133
0.00221275
0.00220299
0.00218434
0.00166896
0.00114644
0.000892381
0.000751423
0.000665253
0.000608929
0.000570961
0.000546234
0.000533383
0.000533827
0.000551225
0.000590644
0.000657162
0.000754579
0.00088519
0.00104998
0.00124798
0.00147559
0.00172677
0.00199425
0.00227083
0.00255035
0.00282813
0.00310097
0.00336687
0.00362472
0.00387396
0.00411454
0.00434675
0.00457108
0.00478802
0.00499762
0.00519929
0.00539182
0.00557466
0.00166975
0.0011476
0.000899746
0.000779063
0.000740189
0.000774129
0.000878509
0.00104263
0.00125135
0.00149162
0.00175194
0.00202183
0.00229284
0.0025589
0.00281602
0.00306181
0.0032951
0.00351552
0.00372315
0.00391854
0.00410236
0.00427536
0.00443831
0.00459191
0.00473681
0.0048736
0.005003
0.00512592
0.00524344
0.00535641
0.00546469
0.00556659
0.00565954
0.00574169
0.00581812
0.00167618
0.0011858
0.00104959
0.00112565
0.00131658
0.00154973
0.00179077
0.00202407
0.00224199
0.00244097
0.00261969
0.00277782
0.00291555
0.00303338
0.0031322
0.0032132
0.00327796
0.00332833
0.00336632
0.00339399
0.0034133
0.003426
0.00343367
0.00343762
0.00343895
0.00343853
0.00343707
0.00343504
0.00343274
0.00343034
0.00342806
0.00342627
0.0034263
0.00342775
0.00343817
0.00166304
0.00119596
0.00111687
0.00121127
0.0013704
0.00154661
0.0017185
0.00187615
0.00201625
0.0021387
0.00224414
0.00233335
0.00240706
0.00246599
0.00251115
0.00254378
0.00256541
0.00257775
0.00258253
0.00258142
0.0025759
0.00256724
0.0025565
0.0025445
0.00253188
0.00251906
0.00250631
0.00249372
0.00248131
0.00246913
0.0024575
0.00244702
0.00243928
0.00243402
0.00243732
0.00132025
0.000874283
0.000808884
0.000837201
0.000886158
0.000938552
0.000988767
0.00103465
0.00107554
0.00111151
0.00114302
0.00117055
0.00119456
0.00121542
0.00123343
0.00124879
0.00126167
0.00127227
0.0012808
0.00128746
0.0012925
0.00129616
0.00129868
0.0013003
0.00130123
0.00130162
0.00130161
0.00130125
0.00130058
0.00129965
0.00129865
0.00129784
0.00129822
0.00129904
0.00130732
0.00167397
0.001189
0.00108151
0.00117307
0.00135001
0.00155422
0.001762
0.0019621
0.00214898
0.00232032
0.00247554
0.00261575
0.00274225
0.00285642
0.00295947
0.00305254
0.00313664
0.00321261
0.00328119
0.00334305
0.00339884
0.00344917
0.00349466
0.00353586
0.00357326
0.0036073
0.0036384
0.00366714
0.00369428
0.00372059
0.00374627
0.00377037
0.00379109
0.00380554
0.00381832
0.00166913
0.00114759
0.000894153
0.00075554
0.000675893
0.000634512
0.000626106
0.000652713
0.000718316
0.000824959
0.000972216
0.00115835
0.00137968
0.00162954
0.00189896
0.0021786
0.00246043
0.00273848
0.00300889
0.00326936
0.0035187
0.00375636
0.00398226
0.00419654
0.00439954
0.00459172
0.00477368
0.00494612
0.00511002
0.00526642
0.00541614
0.00555936
0.00569556
0.00582364
0.00594453
0.00166972
0.0011495
0.000900595
0.000775272
0.000726292
0.00074329
0.000825973
0.000968908
0.00116064
0.00138951
0.00164445
0.00191437
0.0021894
0.00246185
0.00272623
0.00297897
0.0032178
0.00344139
0.00364916
0.003841
0.00401738
0.00417919
0.0043275
0.00446352
0.00458857
0.00470392
0.00481076
0.00491021
0.00500332
0.00509109
0.00517451
0.00525434
0.0053314
0.00540553
0.00548036
0.00165828
0.0011984
0.00113065
0.00122993
0.00138698
0.00155515
0.00171528
0.00186024
0.00198819
0.00209947
0.00219493
0.00227538
0.0023415
0.00239408
0.00243412
0.00246283
0.0024816
0.00249199
0.00249553
0.0024937
0.00248785
0.00247911
0.00246842
0.00245653
0.00244405
0.00243142
0.00241895
0.00240677
0.00239487
0.00238321
0.00237193
0.00236158
0.00235382
0.0023486
0.00235225
0.00162534
0.00115505
0.00108606
0.00117284
0.00130883
0.00145282
0.0015895
0.00171371
0.00182454
0.00192261
0.00200927
0.00208572
0.00215357
0.00221418
0.00226869
0.00231812
0.00236328
0.00240483
0.00244331
0.00247915
0.00251269
0.00254421
0.00257392
0.00260198
0.00262848
0.00265351
0.00267717
0.00269972
0.00272152
0.0027429
0.00276384
0.00278354
0.00280093
0.00281456
0.0028279
0.00161709
0.00116016
0.00109787
0.00117584
0.00129384
0.00141691
0.00153183
0.00163472
0.00172456
0.00180222
0.00186869
0.00192482
0.0019712
0.00200841
0.00203707
0.0020579
0.00207179
0.00207972
0.00208272
0.00208182
0.00207792
0.00207186
0.00206431
0.00205585
0.0020469
0.00203778
0.00202866
0.00201962
0.00201065
0.00200175
0.00199317
0.0019853
0.00197965
0.00197549
0.00198159
0.00141208
0.000935316
0.000860904
0.000901011
0.000968313
0.00103801
0.00110307
0.00116145
0.00121295
0.00125821
0.00129807
0.00133337
0.00136485
0.00139317
0.00141888
0.00144247
0.00146432
0.00148476
0.00150403
0.00152235
0.00153992
0.00155687
0.00157331
0.00158928
0.00160477
0.00161978
0.00163447
0.00164918
0.00166432
0.00167997
0.00169529
0.00170838
0.00171719
0.00172135
0.00172426
0.00166925
0.00115112
0.000898031
0.000757487
0.000671903
0.000617154
0.000582826
0.000565332
0.000565265
0.000586022
0.000632464
0.000709383
0.000820607
0.000969024
0.00115612
0.0013805
0.00163701
0.00191732
0.0022116
0.00251022
0.00280499
0.00308981
0.00336062
0.00361523
0.0038528
0.00407351
0.00427818
0.00446796
0.00464417
0.00480818
0.00496138
0.00510521
0.00524144
0.00537112
0.00549795
0.00167382
0.00116299
0.000981673
0.000998136
0.0011426
0.00134961
0.0015813
0.0018202
0.00205578
0.00228128
0.00249295
0.00268923
0.00286994
0.00303574
0.00318769
0.00332699
0.0034549
0.00357265
0.00368136
0.00378209
0.00387581
0.0039634
0.00404561
0.00412302
0.00419605
0.00426508
0.00433074
0.00439405
0.00445621
0.00451763
0.00457678
0.00462962
0.00467157
0.00470124
0.00472923
0.000952107
0.000733326
0.000622305
0.000580882
0.000562599
0.00055322
0.00054831
0.000545891
0.000544924
0.000544805
0.00054519
0.000545857
0.000546646
0.000547429
0.000548108
0.000548607
0.000548878
0.000548895
0.000548657
0.000548179
0.000547484
0.000546606
0.000545578
0.000544435
0.000543207
0.000541922
0.0005406
0.000539261
0.000537919
0.000536596
0.000535309
0.000534109
0.000532958
0.000532129
0.000530581
0.00167069
0.00114996
0.000914495
0.000826202
0.000847685
0.000964315
0.00115179
0.00138294
0.00163835
0.00190402
0.00216959
0.00242796
0.0026749
0.00290828
0.00312729
0.00333207
0.00352321
0.00370153
0.00386789
0.00402317
0.00416826
0.00430397
0.0044311
0.00455031
0.00466221
0.00476734
0.00486632
0.00496
0.00504933
0.00513508
0.00521717
0.00529414
0.00536381
0.0054244
0.00548137
0.00166892
0.00114613
0.000892142
0.000751205
0.000664888
0.000607859
0.000567932
0.000538715
0.000516647
0.000499686
0.000486697
0.000477154
0.000471007
0.000468632
0.000470819
0.000478771
0.000494087
0.00051873
0.000555025
0.000605711
0.000674031
0.000763664
0.000878364
0.00102137
0.00119481
0.00139929
0.00163368
0.00189523
0.00217989
0.00248278
0.00279878
0.00312301
0.00345104
0.00377884
0.00410077
0.00163323
0.00115404
0.00107278
0.00115305
0.00128924
0.00143888
0.00158449
0.00171906
0.00184039
0.00194862
0.00204483
0.00213043
0.00220683
0.00227534
0.00233711
0.00239316
0.00244436
0.00249144
0.00253504
0.00257572
0.00261394
0.00265011
0.00268455
0.00271744
0.00274887
0.00277895
0.00280797
0.00283656
0.00286549
0.00289495
0.00292372
0.00294875
0.00296653
0.00297605
0.0029833
0.00167216
0.00115502
0.000935645
0.000881923
0.000952654
0.00111407
0.00132901
0.00157225
0.00182767
0.00208378
0.00233258
0.00256924
0.00279156
0.00299891
0.00319145
0.00336989
0.00353513
0.00368815
0.00382987
0.00396112
0.00408272
0.00419539
0.00429984
0.00439673
0.00448666
0.0045702
0.00464794
0.00472059
0.00478896
0.00485387
0.00491579
0.00497437
0.00502875
0.00507733
0.0051243
0.000899348
0.00064097
0.000578386
0.000559797
0.000555861
0.000558361
0.000563504
0.000569644
0.000575883
0.000581801
0.00058717
0.000591813
0.000595599
0.00059843
0.000600262
0.000601102
0.000601007
0.000600071
0.000598417
0.000596178
0.000593484
0.000590458
0.000587208
0.000583826
0.000580384
0.000576936
0.000573512
0.000570128
0.000566793
0.000563524
0.000560386
0.000557462
0.000555047
0.000552834
0.000552669
0.000945481
0.000734834
0.00062375
0.000579206
0.000559405
0.000549397
0.000544013
0.000541222
0.000539978
0.000539685
0.000540011
0.000540757
0.000541806
0.000543084
0.000544539
0.000546138
0.000547852
0.000549658
0.000551538
0.000553476
0.000555458
0.000557472
0.000559508
0.000561553
0.000563599
0.00056564
0.000567678
0.000569718
0.000571757
0.000573773
0.000575713
0.000577521
0.000579178
0.000580682
0.000582692
0.00167144
0.00115179
0.0009182
0.000833424
0.000861216
0.000986376
0.0011825
0.00142176
0.00168501
0.00195832
0.00223119
0.00249643
0.00274973
0.00298885
0.00321291
0.00342187
0.00361617
0.00379661
0.00396416
0.00411981
0.00426458
0.00439945
0.00452536
0.00464308
0.00475328
0.00485654
0.00495356
0.00504536
0.00513321
0.00521806
0.00529957
0.00537525
0.00544141
0.00549527
0.00554388
0.00166997
0.00115494
0.00090376
0.000769465
0.000700449
0.000682452
0.000717166
0.000809229
0.000956629
0.00115047
0.00137928
0.00163042
0.00189093
0.00214918
0.00239602
0.00262499
0.00283212
0.00301547
0.0031748
0.00331105
0.00342602
0.00352196
0.00360135
0.00366666
0.00372023
0.00376415
0.00380023
0.00382997
0.00385458
0.00387515
0.00389285
0.003909
0.00392552
0.00394339
0.00396636
0.00166905
0.00114841
0.00089479
0.000754078
0.000668296
0.000612909
0.000576988
0.000556184
0.000550062
0.000560859
0.000592468
0.000649181
0.000734624
0.000851521
0.00100154
0.00118427
0.00139621
0.00163116
0.00188135
0.00213993
0.00240165
0.00266262
0.00292049
0.00317393
0.00342215
0.00366466
0.00390106
0.00413108
0.00435454
0.00457141
0.00478182
0.00498591
0.00518389
0.0053754
0.00556068
0.00155619
0.00106838
0.000985295
0.00104748
0.00115319
0.00126533
0.00137125
0.001467
0.00155199
0.00162692
0.00169291
0.00175109
0.00180259
0.00184849
0.00188981
0.00192735
0.00196175
0.00199357
0.00202323
0.0020511
0.00207745
0.00210251
0.00212644
0.00214934
0.00217125
0.0021922
0.00221231
0.00223187
0.00225125
0.00227064
0.00228962
0.0023069
0.00232094
0.00233081
0.00233981
0.0016086
0.00114873
0.00108972
0.00117006
0.00128746
0.00140674
0.00151693
0.00161493
0.00170143
0.00177747
0.00184454
0.00190399
0.00195694
0.00200437
0.00204716
0.00208603
0.00212154
0.00215414
0.00218419
0.00221197
0.00223769
0.00226154
0.00228368
0.00230427
0.00232341
0.00234123
0.00235782
0.00237334
0.00238798
0.00240199
0.00241557
0.0024286
0.00244125
0.00245192
0.002468
0.00166918
0.00114768
0.000894539
0.000756321
0.000677727
0.000639023
0.000636579
0.000674727
0.000759308
0.000892356
0.00107106
0.00128973
0.00154016
0.00181209
0.00209516
0.00238071
0.00266244
0.00293622
0.00319955
0.00345108
0.00369019
0.00391674
0.00413095
0.00433325
0.00452419
0.00470444
0.0048748
0.00503624
0.00518999
0.00533726
0.00547878
0.00561406
0.00574142
0.00585857
0.00596802
0.00144197
0.00098959
0.000935079
0.000986341
0.00106003
0.00113388
0.0012019
0.00126273
0.0013165
0.0013639
0.00140568
0.00144256
0.00147533
0.00150468
0.0015312
0.00155532
0.00157739
0.00159766
0.00161633
0.00163354
0.00164943
0.00166412
0.00167773
0.00169036
0.00170209
0.00171296
0.00172307
0.00173258
0.00174183
0.0017511
0.00176039
0.00176897
0.00177596
0.00177909
0.00178495
0.00166888
0.00114506
0.000890863
0.000749855
0.000663544
0.000606532
0.000566592
0.000537288
0.000514987
0.000497532
0.000483602
0.000472393
0.000463452
0.000456601
0.000451911
0.000449698
0.000450542
0.000455305
0.000465131
0.000481434
0.000505884
0.000540416
0.000587305
0.000649255
0.000729395
0.000831065
0.000957443
0.00111111
0.00129371
0.00150564
0.00174599
0.00201254
0.0023018
0.00260923
0.00292674
0.00127096
0.000836525
0.00077956
0.000808645
0.000852892
0.000897917
0.00094007
0.000978117
0.00101185
0.00104166
0.00106807
0.00109158
0.00111263
0.0011316
0.0011488
0.00116445
0.00117872
0.00119171
0.0012035
0.00121417
0.00122379
0.00123243
0.00124016
0.00124708
0.00125329
0.00125885
0.00126386
0.00126837
0.00127244
0.00127616
0.00127967
0.00128304
0.00128677
0.00129008
0.0012978
0.00107438
0.0007007
0.00066334
0.000687691
0.000721096
0.000754485
0.000785171
0.000812442
0.000836157
0.000856467
0.000873321
0.000886635
0.000896311
0.000902373
0.000905029
0.000904628
0.000901593
0.000896408
0.000889571
0.000881523
0.000872645
0.000863255
0.000853608
0.00084391
0.000834321
0.000824933
0.000815767
0.000806759
0.000797834
0.00078903
0.000780712
0.000773591
0.000768938
0.000766166
0.000767708
0.00123243
0.000840664
0.000775892
0.000781335
0.000804279
0.000831779
0.000859386
0.00088516
0.000908536
0.000929542
0.000948417
0.000965461
0.000980983
0.00099526
0.00100853
0.00102097
0.00103275
0.00104397
0.00105473
0.00106511
0.00107518
0.00108499
0.00109459
0.00110397
0.0011131
0.00112195
0.0011306
0.00113924
0.00114816
0.0011574
0.00116647
0.00117411
0.00117903
0.00118078
0.0011823
0.000750194
0.000508166
0.000456834
0.000443934
0.000442878
0.000446466
0.000451804
0.00045755
0.000463114
0.000468217
0.000472607
0.000476071
0.000478446
0.000479642
0.000479662
0.000478586
0.000476545
0.000473701
0.000470225
0.00046628
0.000462012
0.000457546
0.000452985
0.000448414
0.000443896
0.000439467
0.000435133
0.000430869
0.000426659
0.000422548
0.000418714
0.000415466
0.000413214
0.000411726
0.000411119
0.00167608
0.00118579
0.00104785
0.00111128
0.00128167
0.00149614
0.00172297
0.001945
0.00215263
0.00234111
0.00250843
0.00265395
0.00277725
0.00287907
0.0029605
0.00302318
0.00306923
0.00310105
0.00312115
0.00313188
0.0031354
0.00313355
0.00312789
0.00311965
0.00310982
0.00309907
0.00308787
0.00307646
0.00306491
0.00305341
0.00304244
0.00303284
0.00302638
0.00302337
0.00302854
0.00167118
0.0011552
0.000922963
0.0008404
0.000872341
0.00100203
0.00120135
0.00144202
0.00170364
0.00197141
0.00223443
0.00248531
0.00271919
0.0029336
0.00312737
0.00330021
0.00345255
0.00358544
0.0037004
0.00379926
0.00388399
0.00395659
0.00401894
0.00407281
0.00411976
0.00416116
0.00419818
0.00423178
0.00426275
0.00429175
0.00431939
0.0043462
0.00437312
0.00439964
0.00443109
0.00166925
0.00115131
0.000898112
0.000757597
0.000672211
0.000617987
0.000584791
0.000569411
0.000572812
0.000598505
0.000650934
0.000734057
0.000850987
0.00100428
0.0011952
0.00142237
0.00168037
0.00196087
0.00225428
0.00255129
0.00284407
0.00312678
0.00339556
0.00364834
0.00388434
0.00410378
0.00430746
0.00449656
0.00467245
0.00483658
0.00499041
0.0051353
0.00527266
0.0054027
0.00552858
0.00161289
0.00114166
0.00107142
0.00114966
0.00127428
0.00140707
0.0015337
0.00164887
0.00175139
0.00184193
0.00192184
0.00199259
0.00205554
0.00211191
0.00216274
0.0022089
0.00225109
0.00228995
0.00232598
0.00235965
0.00239133
0.00242138
0.00245005
0.0024775
0.00250378
0.00252892
0.00255318
0.00257708
0.00260134
0.00262619
0.00265057
0.00267166
0.00268626
0.00269302
0.00269872
0.00158132
0.0011294
0.00107716
0.00115096
0.00125537
0.00136131
0.00145999
0.00154875
0.00162729
0.00169636
0.00175696
0.0018105
0.00185812
0.00190083
0.00193942
0.00197455
0.00200678
0.00203653
0.00206415
0.00208991
0.00211408
0.00213687
0.00215847
0.00217898
0.00219845
0.00221687
0.00223439
0.00225137
0.00226837
0.00228574
0.00230298
0.00231823
0.00232907
0.00233352
0.00233719
0.00167279
0.00117257
0.00102275
0.00107706
0.00124182
0.00145116
0.00167495
0.00189869
0.00211394
0.00231599
0.00250275
0.00267367
0.00282907
0.0029697
0.00309649
0.00321037
0.00331228
0.0034031
0.00348367
0.00355487
0.00361759
0.00367274
0.00372126
0.00376404
0.00380191
0.00383565
0.00386593
0.00389346
0.003919
0.00394329
0.00396681
0.0039893
0.00401008
0.00402677
0.00404451
0.00165985
0.00119263
0.00112068
0.00121337
0.00136172
0.00152275
0.00167892
0.00182281
0.00195282
0.00206917
0.00217303
0.00226577
0.00234875
0.00242324
0.00249038
0.00255114
0.00260628
0.00265646
0.00270218
0.0027439
0.00278199
0.00281677
0.00284857
0.00287768
0.00290435
0.00292885
0.00295139
0.00297223
0.00299166
0.00301002
0.00302764
0.00304452
0.00306097
0.00307551
0.00309532
0.00166883
0.00114338
0.000889002
0.00074796
0.000661673
0.000604702
0.000564799
0.000535515
0.000513203
0.000495679
0.000481574
0.000470001
0.000460375
0.000452311
0.000445574
0.000440048
0.000435726
0.000432712
0.00043123
0.000431638
0.000434447
0.000440334
0.000450152
0.00046495
0.000485987
0.000514789
0.000553212
0.00060349
0.00066817
0.000749892
0.000851028
0.000973297
0.00111735
0.00128243
0.00146312
0.00116932
0.000779999
0.000740647
0.000766984
0.000803921
0.000842404
0.000878964
0.000911767
0.000940105
0.00096381
0.000982968
0.000997485
0.00100728
0.00101246
0.00101337
0.00101056
0.00100464
0.000996278
0.000986054
0.000974545
0.000962226
0.000949466
0.000936557
0.000923746
0.000911199
0.000898986
0.000887032
0.000875134
0.000863126
0.000851181
0.000840202
0.00083186
0.00082833
0.000829154
0.000833729
0.00111292
0.000739126
0.000696196
0.000715496
0.000746689
0.000780141
0.000811681
0.000839836
0.000864278
0.000884765
0.000901276
0.000913714
0.000921992
0.000926185
0.00092657
0.000923593
0.00091781
0.00090981
0.00090014
0.000889333
0.000877827
0.000865965
0.000853999
0.000842109
0.000830382
0.000818837
0.000807461
0.000796292
0.000785527
0.000775597
0.000767129
0.000760519
0.000755698
0.00074993
0.000742585
0.00167325
0.00116276
0.000970189
0.000963853
0.00108376
0.00127508
0.00150098
0.00174128
0.00198249
0.00221561
0.00243546
0.00263963
0.00282748
0.00299935
0.00315593
0.00329801
0.00342637
0.00354177
0.00364502
0.00373697
0.00381852
0.00389067
0.00395443
0.00401085
0.00406096
0.0041057
0.00414592
0.00418236
0.00421567
0.00424647
0.00427545
0.00430319
0.00433081
0.00435787
0.00439073
0.00110616
0.000722461
0.000665243
0.000672277
0.000692922
0.000716562
0.000739686
0.000760643
0.000779498
0.000796444
0.000811732
0.000825599
0.000838258
0.000849902
0.000860706
0.000870807
0.000880304
0.000889261
0.000897718
0.000905698
0.000913216
0.000920286
0.00092692
0.000933136
0.000938951
0.000944382
0.000949449
0.000954182
0.00095863
0.000962855
0.000966944
0.000970869
0.000974915
0.000978191
0.000984719
0.00166894
0.00114618
0.000892252
0.000751385
0.000665264
0.000608906
0.000570692
0.000545199
0.000530414
0.000526572
0.000535551
0.000560318
0.000604268
0.000670694
0.000762713
0.000883307
0.00103469
0.00121718
0.00142845
0.00166377
0.00191687
0.00218112
0.00245054
0.00272029
0.0029869
0.00324805
0.00350243
0.0037495
0.00398933
0.00422238
0.0044491
0.00466946
0.00488261
0.00508709
0.00528168
0.00167518
0.00117071
0.00100341
0.00103652
0.00119026
0.00139854
0.00162616
0.00185613
0.00207888
0.00228921
0.00248474
0.00266486
0.00282997
0.00298093
0.00311883
0.00324473
0.00335964
0.00346444
0.00355996
0.00364692
0.00372601
0.00379788
0.00386319
0.00392256
0.00397662
0.00402595
0.0040711
0.00411264
0.00415116
0.0041873
0.0042216
0.00425428
0.00428562
0.00431441
0.00434675
0.00166572
0.00117776
0.00107375
0.00115764
0.00131779
0.00150347
0.00169184
0.00187139
0.00203704
0.0021874
0.00232288
0.00244464
0.00255412
0.00265278
0.002742
0.00282301
0.00289692
0.00296469
0.00302718
0.00308516
0.00313929
0.00319015
0.00323823
0.00328384
0.00332716
0.00336837
0.00340787
0.00344645
0.00348508
0.00352412
0.00356216
0.00359554
0.00361999
0.00363395
0.00364582
0.00166915
0.00114913
0.000895845
0.000755753
0.000671855
0.00062123
0.000595583
0.00059445
0.000622014
0.000684117
0.000785085
0.000926254
0.00110639
0.00132163
0.00156501
0.00182745
0.00209965
0.00237362
0.00264348
0.0029054
0.00315725
0.00339807
0.00362771
0.00384649
0.00405494
0.00425368
0.00444334
0.00462461
0.00479822
0.00496501
0.00512574
0.00528078
0.00543
0.00557214
0.00570793
0.00164494
0.00116437
0.00107204
0.00113859
0.00126349
0.00140655
0.00154958
0.00168393
0.00180595
0.00191493
0.00201136
0.00209625
0.00217072
0.00223569
0.00229192
0.00234003
0.00238064
0.00241439
0.00244197
0.00246412
0.00248158
0.00249511
0.00250544
0.00251324
0.0025191
0.0025235
0.0025268
0.00252922
0.0025309
0.00253198
0.00253283
0.00253401
0.00253709
0.00254193
0.00255606
0.000910619
0.000615938
0.000557075
0.00054538
0.00054789
0.000555751
0.000565367
0.00057517
0.000584602
0.000593478
0.000601763
0.000609471
0.000616664
0.000623423
0.000629836
0.000635982
0.000641921
0.000647696
0.000653336
0.000658858
0.000664271
0.000669576
0.000674769
0.00067984
0.000684772
0.000689547
0.000694167
0.00069866
0.000703082
0.000707469
0.000711787
0.000715844
0.000719476
0.000722331
0.00072537
0.00166897
0.00114731
0.000893537
0.000752658
0.000666328
0.000609305
0.000569482
0.00054058
0.000519228
0.000503699
0.000493337
0.000488317
0.000489545
0.000498594
0.000517624
0.000549247
0.000596434
0.000662549
0.000751426
0.000867112
0.00101316
0.00119175
0.00140307
0.00164507
0.0019138
0.00220394
0.00250951
0.00282448
0.00314353
0.00346229
0.00377747
0.00408678
0.00438865
0.00468169
0.00496375
0.00166904
0.00114705
0.000893239
0.00075306
0.000669324
0.000619113
0.000594273
0.000594532
0.00062413
0.000688529
0.000791155
0.000932477
0.0011111
0.00132368
0.00156415
0.00182434
0.00209579
0.00237134
0.00264574
0.00291549
0.00317835
0.00343284
0.00367799
0.00391319
0.00413818
0.00435298
0.00455785
0.00475337
0.00494029
0.00511954
0.00529175
0.00545686
0.00561397
0.00576178
0.00590097
0.00166959
0.00114796
0.000898047
0.000771448
0.000719971
0.000732844
0.000810539
0.000949025
0.00113749
0.00136425
0.00161809
0.00188774
0.00216315
0.00243675
0.00270353
0.00296048
0.00320595
0.00343909
0.00365962
0.00386763
0.00406349
0.00424777
0.00442108
0.00458409
0.00473742
0.0048817
0.00501762
0.00514591
0.00526761
0.0053837
0.00549463
0.00559983
0.00569799
0.00578752
0.00587147
0.00160678
0.0011441
0.00108416
0.001167
0.00128918
0.00141462
0.00153163
0.00163686
0.0017302
0.00181243
0.00188498
0.00194908
0.0020059
0.00205663
0.00210236
0.00214393
0.00218199
0.00221709
0.00224966
0.00228003
0.00230847
0.0023352
0.00236038
0.00238414
0.00240655
0.00242769
0.00244763
0.00246656
0.00248477
0.00250255
0.00251996
0.00253649
0.00255149
0.0025635
0.002577
0.000887694
0.000603342
0.00054417
0.000530265
0.00053044
0.000536538
0.000544839
0.000553697
0.000562292
0.000570267
0.000577493
0.000583892
0.000589399
0.000593964
0.000597561
0.00060019
0.000601883
0.00060271
0.000602765
0.000602159
0.000601009
0.00059943
0.000597531
0.000595407
0.000593139
0.000590785
0.000588382
0.000585947
0.000583494
0.000581047
0.000578695
0.000576554
0.000574993
0.000573721
0.0005747
0.00167676
0.00118728
0.00105341
0.00112567
0.0013039
0.00152156
0.00174804
0.0019678
0.00217224
0.0023568
0.00251952
0.00266
0.00277794
0.00287387
0.00294895
0.00300501
0.00304437
0.00306963
0.00308344
0.00308823
0.00308622
0.00307924
0.00306883
0.00305619
0.00304225
0.00302764
0.00301277
0.00299782
0.00298288
0.00296818
0.00295425
0.00294207
0.00293337
0.00292827
0.00293088
0.00165953
0.00120229
0.00113902
0.0012313
0.00137366
0.00152723
0.0016757
0.0018115
0.00193197
0.0020378
0.00212989
0.0022091
0.00227613
0.00233164
0.00237634
0.00241104
0.00243675
0.00245462
0.00246586
0.00247171
0.0024733
0.00247168
0.00246774
0.00246223
0.00245574
0.00244872
0.00244144
0.00243401
0.00242646
0.00241884
0.00241145
0.00240486
0.00240081
0.00239912
0.00240802
0.00162297
0.00114928
0.00106651
0.00113048
0.00124395
0.00137041
0.00149447
0.00160891
0.00171118
0.00180133
0.00188019
0.00194862
0.00200739
0.00205713
0.00209841
0.00213179
0.00215795
0.00217765
0.00219176
0.00220115
0.0022067
0.00220923
0.00220946
0.00220805
0.00220551
0.00220225
0.00219852
0.00219444
0.00219005
0.00218543
0.00218092
0.00217712
0.00217561
0.00217648
0.00218572
0.00164851
0.00116703
0.00107936
0.00116375
0.00131139
0.00147723
0.00164161
0.00179566
0.00193597
0.00206209
0.00217487
0.00227569
0.00236594
0.00244703
0.00252022
0.00258662
0.00264722
0.00270286
0.00275426
0.00280207
0.00284685
0.00288908
0.00292915
0.0029673
0.00300366
0.00303835
0.00307172
0.00310446
0.00313744
0.00317096
0.00320374
0.00323242
0.0032531
0.00326439
0.00327295
0.0016727
0.00115987
0.000949323
0.00091335
0.00101035
0.00119816
0.00143338
0.00168889
0.00194852
0.00220166
0.00244162
0.0026646
0.00286854
0.00305245
0.00321601
0.00335957
0.00348395
0.00359046
0.00368074
0.00375664
0.00382009
0.00387301
0.0039172
0.00395433
0.00398584
0.00401295
0.00403662
0.00405753
0.00407624
0.00409322
0.00410919
0.00412518
0.0041432
0.00416383
0.00419352
0.001674
0.0011928
0.00108087
0.00117098
0.00135188
0.00156243
0.0017768
0.00198179
0.00216995
0.00233705
0.00248029
0.00259821
0.00269095
0.00275976
0.00280686
0.00283512
0.00284773
0.00284791
0.00283859
0.00282233
0.00280123
0.00277697
0.00275082
0.00272371
0.00269623
0.00266868
0.0026412
0.00261393
0.00258737
0.00256261
0.00254137
0.00252523
0.00251443
0.00250427
0.00248895
0.00167027
0.00115537
0.000908128
0.00078603
0.00074413
0.000773635
0.000872459
0.0010309
0.00123437
0.00146854
0.00171874
0.00197072
0.00221285
0.00243782
0.00264186
0.002824
0.00298462
0.00312457
0.00324507
0.00334755
0.00343369
0.00350531
0.00356431
0.00361259
0.00365194
0.00368405
0.00371037
0.0037321
0.00375013
0.00376519
0.00377802
0.00378972
0.00380231
0.00381747
0.00383942
0.00166944
0.00117781
0.00106215
0.00114316
0.00130988
0.00150617
0.00170792
0.00190298
0.0020853
0.00225251
0.00240436
0.00254162
0.00266553
0.00277751
0.00287896
0.0029712
0.00305543
0.00313272
0.00320402
0.00327015
0.00333185
0.00338976
0.00344441
0.00349614
0.0035452
0.0035918
0.00363644
0.00367995
0.00372333
0.00376682
0.00380888
0.00384578
0.00387332
0.00389047
0.00390538
0.00157789
0.00110885
0.00103241
0.00109124
0.00118999
0.00129634
0.00139864
0.00149212
0.00157512
0.00164841
0.00171296
0.00176979
0.00181989
0.00186413
0.00190317
0.00193753
0.00196763
0.0019938
0.00201638
0.00203569
0.00205207
0.00206587
0.00207745
0.00208715
0.00209533
0.00210225
0.00210817
0.00211324
0.00211758
0.00212133
0.00212473
0.0021281
0.0021325
0.00213721
0.00215025
0.000890749
0.000576731
0.000528818
0.000525782
0.000535101
0.000548875
0.000563025
0.000576248
0.000588127
0.00059846
0.00060704
0.00061364
0.00061811
0.000620416
0.000620645
0.000618992
0.000615727
0.000611159
0.000605595
0.00059932
0.000592583
0.000585587
0.000578491
0.00057141
0.000564416
0.00055754
0.000550788
0.000544174
0.000537762
0.000531704
0.000526262
0.000521629
0.000518012
0.000514225
0.00051158
0.00167057
0.00115537
0.000911083
0.000796813
0.000771312
0.000827377
0.000958326
0.00114716
0.0013748
0.00162498
0.00188316
0.002137
0.00237741
0.00259861
0.00279755
0.00297321
0.00312596
0.00325703
0.0033682
0.00346156
0.00353928
0.00360354
0.00365644
0.00369991
0.00373569
0.00376529
0.00378994
0.00381063
0.00382812
0.0038431
0.00385636
0.00386901
0.0038829
0.00389897
0.00392186
0.00167012
0.00114816
0.000904318
0.000794816
0.000778173
0.000845502
0.000986958
0.0011839
0.00141861
0.00167698
0.00194673
0.00221789
0.00248343
0.00273901
0.00298217
0.00321189
0.00342794
0.00363064
0.00382057
0.0039985
0.00416532
0.00432195
0.00446923
0.00460794
0.00473874
0.00486224
0.00497918
0.00509056
0.00519753
0.00530084
0.00539997
0.00549258
0.00557548
0.00564692
0.00571281
0.00167416
0.00116757
0.00097128
0.000957106
0.00107269
0.00126582
0.00149708
0.00174411
0.00199181
0.0022292
0.00244912
0.00264723
0.00282107
0.00296985
0.00309399
0.00319495
0.00327493
0.00333655
0.00338263
0.00341588
0.00343884
0.00345373
0.00346247
0.00346666
0.00346759
0.00346626
0.00346339
0.00345943
0.00345468
0.00344944
0.00344426
0.00344006
0.00343866
0.00344072
0.00345084
0.000756539
0.000509268
0.000457798
0.000446807
0.000448182
0.000453734
0.000460293
0.00046675
0.000472739
0.000478164
0.000483049
0.000487357
0.00049102
0.00049397
0.000496168
0.000497601
0.000498294
0.000498299
0.000497692
0.000496565
0.000495013
0.000493132
0.000491008
0.000488719
0.000486333
0.000483904
0.000481474
0.000479069
0.000476701
0.000474379
0.000472139
0.00047003
0.000468266
0.000466614
0.000466245
0.00167106
0.00117146
0.00103282
0.00109938
0.00127025
0.00148032
0.00169937
0.00191288
0.00211368
0.00229877
0.00246747
0.00262034
0.00275859
0.00288372
0.00299723
0.00310058
0.00319507
0.00328185
0.00336194
0.00343617
0.00350526
0.00356983
0.00363037
0.00368727
0.00374082
0.00379126
0.00383894
0.00388442
0.00392839
0.00397128
0.00401271
0.00405096
0.00408386
0.00410992
0.00413359
0.00112289
0.000798592
0.000744298
0.000742775
0.000753664
0.000768768
0.000784384
0.000799196
0.000812623
0.000824562
0.000834966
0.000843766
0.000850855
0.00085616
0.000859678
0.000861477
0.000861688
0.000860491
0.0008581
0.000854739
0.000850625
0.000845958
0.000840912
0.00083564
0.000830265
0.000824886
0.00081957
0.000814345
0.000809214
0.00080418
0.000799322
0.000794786
0.00079113
0.000787821
0.000788102
0.00167063
0.00115292
0.000914929
0.000818531
0.0008254
0.000923541
0.00109444
0.0013144
0.00156437
0.00182931
0.00209718
0.00235933
0.00261004
0.00284578
0.00306439
0.00326461
0.00344591
0.00360846
0.00375301
0.00388074
0.0039932
0.00409211
0.00417926
0.00425639
0.0043251
0.00438681
0.00444274
0.00449387
0.00454102
0.00458492
0.00462637
0.00466626
0.00470616
0.00474651
0.00479259
0.00103099
0.000708492
0.000644888
0.000633685
0.000638136
0.000648527
0.00066105
0.000673877
0.000686121
0.000697545
0.000708138
0.000717942
0.000727064
0.000735627
0.000743743
0.000751497
0.00075896
0.000766179
0.000773184
0.000779998
0.000786639
0.000793123
0.000799458
0.000805636
0.000811632
0.000817422
0.000823033
0.000828571
0.000834189
0.000839948
0.000845618
0.000850536
0.00085406
0.000855486
0.000857769
0.000837932
0.000586744
0.000524634
0.000507036
0.000503929
0.000506264
0.000510675
0.000515788
0.000521022
0.000526196
0.000531211
0.000536028
0.000540651
0.000545102
0.000549413
0.000553611
0.000557714
0.000561729
0.000565659
0.000569496
0.000573234
0.000576862
0.000580371
0.000583753
0.000586999
0.0005901
0.000593055
0.000595875
0.000598587
0.000601218
0.000603785
0.000606235
0.000608582
0.000610505
0.000613132
0.00153243
0.00107259
0.00101738
0.00108799
0.00119043
0.00129376
0.00138886
0.0014738
0.00154885
0.00161495
0.00167313
0.00172445
0.00176992
0.00181043
0.00184669
0.00187927
0.00190862
0.00193507
0.00195892
0.0019804
0.00199972
0.00201709
0.00203273
0.00204686
0.00205963
0.00207122
0.00208176
0.0020915
0.00210075
0.00210988
0.00211899
0.00212757
0.00213498
0.00213886
0.00214598
0.00164669
0.00118106
0.0011111
0.00119829
0.0013395
0.00149424
0.00164542
0.00178589
0.00191321
0.00202723
0.00212862
0.00221866
0.00229891
0.00237076
0.00243532
0.00249352
0.00254615
0.00259384
0.0026371
0.00267637
0.00271206
0.00274456
0.00277422
0.00280136
0.00282625
0.00284908
0.0028701
0.00288971
0.00290849
0.00292703
0.00294539
0.00296247
0.00297655
0.00298477
0.00299278
0.000884416
0.000681918
0.000578545
0.000538375
0.000520244
0.000510879
0.000505965
0.000503553
0.000502596
0.00050249
0.000502903
0.000503638
0.000504565
0.000505588
0.000506628
0.000507619
0.00050851
0.00050926
0.000509847
0.00051026
0.000510499
0.000510575
0.000510503
0.000510304
0.000509998
0.000509604
0.00050914
0.000508622
0.000508065
0.00050749
0.000506914
0.000506381
0.00050588
0.000505571
0.000504901
0.00166954
0.00114885
0.000898359
0.000768566
0.000709929
0.000710179
0.000770201
0.000889274
0.00106002
0.00127269
0.00151747
0.00178365
0.00206048
0.0023388
0.00261184
0.00287516
0.00312607
0.00336307
0.00358542
0.0037929
0.00398564
0.00416421
0.00432943
0.00448228
0.00462384
0.00475521
0.00487749
0.00499174
0.00509905
0.00520048
0.00529703
0.00538935
0.0054779
0.00556223
0.00564491
0.000963669
0.000754468
0.000643596
0.000601085
0.00058209
0.000572134
0.000566764
0.000563958
0.000562611
0.000562107
0.00056206
0.000562198
0.000562317
0.000562262
0.000561932
0.00056127
0.000560257
0.000558904
0.000557246
0.000555329
0.000553205
0.000550924
0.000548535
0.000546082
0.000543599
0.000541116
0.000538653
0.000536224
0.000533841
0.000531522
0.000529292
0.000527218
0.000525252
0.000523741
0.000521333
0.000950595
0.000738697
0.000625819
0.000583701
0.000565251
0.0005557
0.000550643
0.000548049
0.000546852
0.000546468
0.000546531
0.00054677
0.000546986
0.000547028
0.000546793
0.000546221
0.000545296
0.000544029
0.000542456
0.000540624
0.000538588
0.000536398
0.000534105
0.000531749
0.000529365
0.00052698
0.000524613
0.000522282
0.000520002
0.000517794
0.000515673
0.00051369
0.000511767
0.000510242
0.000507807
0.000956851
0.000654767
0.000590355
0.000576346
0.000578005
0.00058555
0.000595122
0.000605059
0.000614711
0.000623856
0.000632425
0.000640398
0.000647824
0.000654791
0.000661379
0.00066764
0.000673616
0.000679329
0.000684789
0.000689999
0.00069496
0.000699678
0.000704158
0.000708406
0.000712422
0.000716202
0.000719763
0.000723161
0.000726488
0.00072982
0.000733114
0.000736095
0.00073847
0.00073961
0.000741187
0.00167142
0.00117732
0.00105163
0.00113063
0.00130727
0.00151766
0.0017337
0.00194231
0.00213728
0.00231612
0.00247849
0.00262515
0.00275746
0.00287697
0.00298528
0.00308384
0.00317381
0.00325638
0.00333251
0.00340298
0.00346847
0.00352953
0.00358662
0.00364011
0.00369027
0.00373735
0.00378165
0.00382366
0.00386398
0.00390311
0.00394093
0.00397624
0.00400735
0.00403262
0.00405623
0.00114266
0.000764228
0.000712628
0.000721198
0.000741118
0.000763896
0.000786488
0.000807558
0.00082646
0.000843072
0.000857421
0.000869512
0.000879332
0.000886884
0.000892222
0.000895466
0.000896798
0.000896455
0.000894705
0.00089182
0.000888064
0.000883673
0.000878854
0.00087378
0.000868587
0.000863371
0.000858188
0.000853058
0.000847984
0.000842982
0.000838168
0.000833676
0.000830198
0.000826928
0.000828912
0.00108313
0.000708862
0.000648588
0.000647312
0.00065982
0.000676772
0.000694587
0.00071168
0.000727335
0.0007413
0.00075356
0.000764114
0.000772947
0.00078005
0.000785449
0.000789204
0.000791426
0.000792272
0.000791929
0.000790598
0.000788481
0.000785764
0.000782619
0.000779191
0.000775598
0.000771927
0.000768227
0.000764519
0.000760808
0.000757119
0.000753566
0.000750297
0.000747916
0.000745845
0.000748033
0.00166887
0.00114486
0.000890485
0.0007494
0.000663066
0.000606046
0.000566101
0.000536792
0.000514489
0.000497045
0.00048316
0.000472079
0.000463448
0.000457262
0.00045388
0.000454051
0.000458944
0.000470129
0.0004895
0.000519134
0.000561179
0.000617862
0.000691593
0.000784914
0.000900148
0.00103888
0.00120155
0.00138734
0.00159436
0.00181988
0.00206081
0.00231395
0.00257614
0.00284422
0.00311311
0.00107797
0.000706116
0.000655111
0.00066359
0.000685412
0.000709991
0.000733956
0.000756172
0.000776364
0.0007946
0.000811036
0.000825841
0.000839251
0.000851511
0.000862826
0.000873345
0.000883181
0.000892409
0.000901079
0.00090922
0.000916859
0.000924023
0.000930743
0.000937044
0.000942944
0.000948451
0.000953599
0.00095847
0.000963212
0.000967963
0.00097271
0.000977068
0.000980694
0.000982246
0.000985661
0.0016696
0.0011537
0.000901244
0.000762453
0.000681854
0.000638896
0.000628442
0.000653238
0.000718754
0.000828649
0.000983173
0.00118018
0.00141485
0.00167854
0.00195934
0.00224437
0.00252213
0.00278395
0.0030244
0.0032409
0.00343305
0.00360194
0.00374951
0.00387814
0.00399033
0.0040885
0.00417492
0.00425158
0.00432017
0.00438212
0.00443866
0.00449098
0.00454076
0.00458886
0.00464011
0.00093382
0.000586718
0.000539109
0.000544147
0.000561312
0.000581233
0.000600635
0.000618633
0.000635008
0.00064981
0.00066315
0.000675179
0.000686084
0.000696052
0.00070524
0.00071376
0.000721699
0.000729111
0.000736029
0.000742474
0.000748465
0.000754023
0.000759175
0.000763951
0.000768372
0.000772456
0.000776235
0.000779771
0.000783173
0.000786552
0.000789928
0.000793058
0.000795805
0.000796961
0.000800355
0.00154007
0.00106745
0.000997316
0.00105904
0.00115464
0.00125301
0.00134474
0.00142711
0.00149992
0.00156397
0.00162038
0.00167023
0.00171449
0.00175398
0.00178939
0.00182125
0.00184998
0.00187586
0.00189916
0.00192008
0.00193883
0.00195561
0.0019706
0.00198401
0.00199604
0.00200686
0.00201662
0.00202548
0.00203356
0.00204101
0.00204806
0.00205483
0.00206199
0.00206857
0.00208105
0.000912109
0.000699755
0.00059708
0.000558208
0.000540927
0.000532073
0.00052732
0.000524889
0.00052385
0.000523685
0.000524102
0.000524917
0.000526013
0.000527316
0.000528775
0.000530347
0.000531996
0.000533688
0.000535396
0.000537095
0.000538764
0.000540389
0.000541959
0.000543466
0.000544903
0.000546269
0.000547565
0.000548799
0.000549982
0.000551119
0.000552191
0.000553173
0.000554004
0.000554714
0.000555223
0.00153847
0.00106808
0.000994352
0.00104369
0.00112534
0.00121216
0.0012948
0.00136968
0.0014357
0.00149324
0.00154308
0.00158589
0.00162217
0.00165235
0.00167682
0.00169596
0.00171025
0.00172023
0.00172652
0.00172972
0.00173043
0.00172923
0.00172661
0.001723
0.00171875
0.00171413
0.00170927
0.00170425
0.00169905
0.00169373
0.00168856
0.001684
0.00168151
0.00168064
0.00168877
0.00159928
0.00115368
0.00110308
0.00117531
0.00127881
0.00138486
0.00148423
0.00157395
0.0016535
0.00172357
0.00178523
0.00183974
0.00188825
0.00193175
0.00197108
0.00200689
0.00203977
0.00207014
0.00209839
0.0021248
0.00214966
0.0021732
0.0021956
0.00221698
0.00223733
0.00225669
0.0022752
0.00229329
0.00231158
0.00233037
0.0023489
0.00236489
0.00237564
0.00237942
0.00238253
0.00167176
0.00115353
0.000933288
0.000879324
0.000951973
0.00111767
0.00133735
0.00158452
0.00184291
0.00210087
0.00235051
0.00258726
0.00280912
0.00301555
0.00320689
0.00338406
0.00354815
0.00370025
0.00384139
0.00397254
0.00409456
0.00420825
0.00431434
0.00441346
0.00450613
0.00459286
0.0046742
0.00475088
0.0048238
0.00489366
0.00496053
0.00502325
0.00508005
0.00512916
0.00517562
0.00167251
0.001164
0.000959731
0.000932976
0.00103694
0.00122381
0.00145285
0.00169952
0.00194668
0.00218125
0.00239365
0.00257732
0.00273028
0.00285298
0.0029474
0.00301654
0.00306389
0.00309306
0.00310747
0.00311019
0.00310388
0.0030908
0.00307283
0.00305152
0.0030281
0.00300335
0.0029776
0.00295079
0.00292275
0.00289411
0.00286731
0.00284707
0.00283936
0.00284604
0.0028603
0.00167295
0.00116556
0.000965143
0.000946106
0.00105924
0.00125233
0.00148365
0.00172967
0.0019744
0.00220571
0.0024148
0.00259552
0.00274577
0.00286604
0.00295831
0.00302551
0.00307114
0.00309876
0.00311179
0.00311333
0.00310604
0.00309217
0.00307355
0.00305163
0.00302738
0.00300155
0.00297458
0.00294698
0.00291957
0.0028938
0.00287171
0.00285496
0.00284338
0.00283165
0.00281118
0.00163961
0.00116234
0.00108293
0.00117044
0.00131595
0.0014751
0.00162956
0.00177205
0.00190043
0.00201481
0.0021163
0.00220626
0.00228624
0.00235769
0.00242187
0.00248002
0.00253312
0.00258192
0.00262706
0.00266906
0.00270836
0.00274528
0.00278012
0.00281306
0.00284421
0.00287368
0.00290163
0.00292837
0.00295437
0.00297997
0.003005
0.00302833
0.00304841
0.00306374
0.00307792
0.0016718
0.00115879
0.000929793
0.000853952
0.000897236
0.00103943
0.00124779
0.00149278
0.00175382
0.00201495
0.00226414
0.00249334
0.00269783
0.00287553
0.00302633
0.00315153
0.00325334
0.00333445
0.00339773
0.00344601
0.00348191
0.00350781
0.0035258
0.00353765
0.00354488
0.00354865
0.00354987
0.00354918
0.00354704
0.00354392
0.00354054
0.00353797
0.00353806
0.00354144
0.00355221
0.00164521
0.00116393
0.00107557
0.0011537
0.00129253
0.00144793
0.00160101
0.00174381
0.00187349
0.00198978
0.00209353
0.00218604
0.00226871
0.00234287
0.00240974
0.0024704
0.00252579
0.00257669
0.00262379
0.00266768
0.00270888
0.00274781
0.00278479
0.00282003
0.00285361
0.00288569
0.00291664
0.00294714
0.0029779
0.00300894
0.00303875
0.0030641
0.00308176
0.0030917
0.00310125
0.000911061
0.000614665
0.000554496
0.000541814
0.000542796
0.00054938
0.000558081
0.000567291
0.000576264
0.000584733
0.000592639
0.000599986
0.000606826
0.000613214
0.000619198
0.000624807
0.000630056
0.000634945
0.000639467
0.000643619
0.000647403
0.000650826
0.000653906
0.000656664
0.00065913
0.000661331
0.000663293
0.00066504
0.000666597
0.000667999
0.000669308
0.00067056
0.000671991
0.00067324
0.000676238
0.00166922
0.00114784
0.000894983
0.000757745
0.000681511
0.000647418
0.000652273
0.000699182
0.000790669
0.000925509
0.00110036
0.00131096
0.00155101
0.00181207
0.00208515
0.00236225
0.00263716
0.00290548
0.00316433
0.00341198
0.00364742
0.00387035
0.00408085
0.00427928
0.00446619
0.00464224
0.0048082
0.00496496
0.00511353
0.005255
0.00539028
0.00551976
0.00564328
0.00575994
0.00587149
0.00167201
0.00118437
0.00106797
0.00114143
0.00129686
0.00148285
0.00167683
0.00186635
0.0020447
0.00220882
0.00235774
0.00249151
0.00261069
0.00271602
0.00280834
0.00288852
0.00295746
0.00301608
0.00306539
0.00310644
0.00314031
0.00316809
0.0031908
0.00320941
0.00322478
0.00323765
0.00324865
0.00325827
0.00326699
0.00327519
0.00328329
0.00329147
0.00330019
0.00330788
0.00332057
0.00167283
0.0011623
0.000969661
0.0009648
0.00108907
0.00128512
0.00151388
0.00175566
0.00199826
0.00223335
0.00245581
0.00266295
0.00285363
0.00302769
0.00318549
0.00332766
0.00345497
0.00356827
0.00366852
0.00375676
0.00383413
0.00390186
0.00396115
0.0040132
0.00405914
0.00409998
0.00413662
0.00416991
0.00420069
0.00422979
0.00425781
0.0042848
0.00431049
0.00433281
0.00435677
0.00166891
0.00114596
0.000891945
0.000751011
0.000664697
0.000607669
0.000567734
0.000538486
0.000516349
0.000499255
0.000486034
0.000476111
0.000469374
0.000466118
0.000467046
0.000473262
0.000486279
0.000507988
0.000540656
0.00058697
0.000650135
0.000733878
0.000842168
0.000978621
0.00114582
0.00134477
0.00157461
0.00183273
0.00211505
0.00241664
0.00273228
0.00305694
0.00338594
0.00371482
0.00403729
0.000667524
0.000493462
0.000417688
0.000391764
0.000379964
0.000373689
0.000370325
0.000368586
0.00036777
0.000367468
0.000367382
0.000367301
0.000367071
0.000366588
0.000365797
0.000364684
0.000363269
0.00036159
0.000359695
0.000357634
0.000355458
0.000353212
0.000350931
0.000348644
0.000346373
0.000344129
0.000341919
0.000339746
0.000337625
0.000335596
0.000333713
0.000332058
0.000330544
0.000329371
0.00032705
0.000667533
0.000493363
0.000417647
0.000391826
0.000380097
0.000373867
0.000370528
0.000368798
0.000367981
0.000367675
0.000367585
0.000367499
0.000367264
0.000366778
0.000365984
0.00036487
0.000363452
0.000361772
0.000359876
0.000357816
0.000355641
0.000353396
0.000351115
0.000348824
0.000346544
0.00034429
0.000342076
0.000339921
0.000337845
0.000335876
0.000334019
0.000332279
0.000330494
0.000328881
0.000326125
0.000992555
0.000619134
0.00056725
0.000579549
0.000607185
0.000637686
0.000666694
0.000692934
0.00071634
0.000737097
0.000755586
0.00077214
0.00078702
0.000800455
0.000812627
0.000823675
0.0008337
0.00084278
0.00085097
0.000858322
0.000864887
0.000870726
0.000875907
0.000880505
0.000884587
0.000888217
0.000891456
0.000894388
0.00089713
0.000899809
0.000902498
0.000905051
0.000907351
0.000908411
0.000910744
0.000684591
0.000511246
0.000434258
0.000407619
0.00039561
0.000389292
0.000385922
0.000384183
0.00038336
0.000383039
0.000382937
0.000382847
0.000382612
0.000382126
0.00038133
0.000380209
0.000378777
0.000377073
0.000375148
0.000373051
0.000370833
0.000368537
0.000366202
0.000363855
0.000361519
0.000359208
0.000356936
0.000354722
0.000352587
0.000350559
0.00034865
0.000346871
0.000345067
0.000343455
0.000340702
0.000680769
0.000509557
0.000432706
0.000405662
0.000393342
0.000386816
0.00038333
0.000381547
0.000380728
0.000380428
0.000380357
0.000380296
0.000380086
0.000379619
0.000378839
0.000377729
0.000376309
0.000374616
0.000372699
0.000370612
0.000368403
0.000366118
0.000363794
0.000361462
0.000359145
0.000356857
0.000354602
0.000352386
0.00035022
0.00034814
0.000346201
0.000344491
0.000342935
0.000341757
0.000339487
0.00128862
0.000841526
0.000774656
0.000801086
0.000847881
0.000896936
0.000943191
0.000984983
0.00102205
0.00105477
0.00108372
0.00110948
0.00113254
0.00115341
0.00117248
0.00119012
0.00120658
0.00122209
0.00123684
0.00125098
0.00126463
0.00127789
0.00129084
0.00130347
0.00131578
0.00132775
0.00133952
0.00135135
0.00136356
0.00137615
0.00138843
0.00139886
0.00140586
0.00140936
0.0014121
0.00129095
0.000837147
0.00076892
0.000797183
0.000845229
0.000894431
0.000940273
0.000981538
0.00101815
0.00105052
0.00107919
0.0011047
0.00112753
0.00114816
0.00116701
0.00118442
0.00120067
0.00121599
0.00123056
0.00124452
0.00125801
0.0012711
0.00128384
0.00129626
0.00130832
0.00132005
0.00133152
0.00134295
0.00135459
0.0013664
0.00137784
0.00138774
0.00139499
0.00139952
0.00140373
0.00167677
0.00119154
0.00108051
0.0011675
0.00133981
0.00154001
0.00174435
0.00194112
0.00212482
0.00229322
0.00244637
0.00258512
0.00271067
0.00282437
0.00292753
0.00302133
0.0031068
0.00318483
0.00325616
0.00332142
0.00338119
0.00343595
0.00348616
0.00353226
0.00357462
0.0036136
0.00364956
0.00368288
0.00371403
0.00374353
0.00377175
0.00379866
0.00382418
0.00384682
0.00387254
0.00150322
0.00102121
0.000942518
0.00099263
0.00107632
0.00116348
0.00124513
0.00131867
0.00138379
0.00144114
0.00149169
0.0015364
0.00157621
0.00161185
0.00164409
0.00167353
0.00170069
0.00172594
0.00174963
0.00177205
0.00179342
0.00181394
0.00183373
0.00185284
0.00187129
0.0018891
0.00190647
0.00192378
0.00194146
0.00195951
0.00197698
0.00199181
0.00200198
0.00200739
0.00201206
0.000909856
0.00070222
0.000598037
0.000557652
0.000539609
0.000530331
0.00052529
0.000522666
0.0005215
0.000521232
0.000521551
0.000522276
0.000523292
0.00052453
0.000525941
0.000527483
0.000529126
0.000530839
0.000532598
0.000534382
0.000536172
0.000537955
0.00053972
0.000541454
0.000543149
0.000544799
0.000546405
0.000547972
0.000549507
0.000551005
0.000552433
0.000553742
0.000554881
0.000555846
0.000556914
0.000751575
0.000498284
0.000446504
0.000431899
0.000429636
0.000433033
0.000438827
0.000445438
0.000452039
0.000458274
0.000464033
0.000469254
0.000473891
0.000477913
0.000481296
0.000484024
0.000486099
0.000487548
0.000488418
0.00048877
0.000488677
0.000488215
0.000487459
0.000486481
0.000485342
0.000484089
0.000482751
0.000481347
0.000479891
0.000478409
0.000476981
0.000475711
0.000474894
0.000474327
0.000475389
0.00149786
0.00101676
0.000941229
0.000993756
0.00107829
0.00116524
0.00124625
0.00131908
0.00138355
0.00144035
0.00149041
0.0015347
0.00157412
0.00160945
0.00164141
0.00167062
0.00169754
0.0017226
0.00174611
0.00176836
0.00178958
0.00180994
0.00182958
0.00184854
0.00186683
0.00188447
0.00190166
0.00191876
0.00193618
0.0019539
0.001971
0.00198556
0.00199568
0.00200133
0.00200616
0.00166917
0.00114676
0.000893634
0.000756494
0.000680795
0.000648092
0.000656087
0.000709196
0.000811041
0.000960422
0.00115283
0.00138198
0.00163933
0.00191467
0.00219818
0.00248194
0.00276038
0.00303004
0.00328899
0.00353634
0.00377189
0.00399585
0.00420864
0.00441082
0.00460292
0.00478552
0.00495928
0.00512515
0.00528424
0.00543749
0.00558486
0.00572467
0.00585412
0.00597102
0.00607871
0.00126332
0.00083087
0.000777546
0.000816491
0.000870301
0.000921715
0.000967125
0.00100638
0.00104026
0.00106968
0.00109528
0.00111748
0.00113656
0.00115269
0.00116601
0.00117666
0.00118483
0.00119073
0.00119461
0.00119675
0.00119744
0.00119697
0.00119559
0.00119353
0.00119102
0.00118821
0.00118524
0.00118221
0.00117919
0.00117621
0.00117336
0.00117073
0.00116884
0.00116678
0.00116907
0.00167742
0.00117423
0.00101175
0.00105364
0.00121792
0.00143688
0.00167576
0.00191792
0.00215325
0.00237584
0.00258266
0.00277299
0.00294733
0.00310665
0.00325223
0.00338535
0.00350733
0.00361939
0.00372266
0.00381816
0.00390684
0.00398956
0.00406705
0.00413987
0.00420842
0.00427305
0.00433431
0.00439315
0.00445072
0.00450757
0.00456244
0.00461164
0.00465073
0.00467769
0.00470298
0.00166042
0.0011848
0.00109858
0.00118527
0.00133529
0.00150419
0.00167273
0.00183194
0.00197822
0.00211056
0.00222927
0.00233512
0.00242906
0.00251204
0.00258496
0.00264864
0.00270384
0.00275132
0.0027918
0.00282604
0.00285478
0.00287879
0.0028988
0.00291552
0.00292957
0.00294152
0.00295183
0.00296093
0.00296921
0.00297706
0.00298484
0.00299261
0.00300059
0.00300691
0.00301765
0.0016701
0.00115534
0.000904154
0.000768258
0.000695273
0.000669173
0.000689986
0.000762873
0.000889163
0.00106389
0.00127927
0.00152579
0.00179038
0.0020581
0.00231501
0.00255045
0.00275787
0.00293458
0.00308077
0.00319856
0.00329109
0.00336193
0.00341462
0.00345248
0.00347841
0.00349489
0.00350393
0.00350716
0.00350597
0.00350173
0.003496
0.00349052
0.00348702
0.00348581
0.00348665
0.0016701
0.00115533
0.000904246
0.000768658
0.000696342
0.000671419
0.00069379
0.000767922
0.000894166
0.00106711
0.00127926
0.0015215
0.00178136
0.00204442
0.0022973
0.00252978
0.00273554
0.00291186
0.00305877
0.00317812
0.00327278
0.00334603
0.00340122
0.00344152
0.00346979
0.00348853
0.00349979
0.00350512
0.00350566
0.00350237
0.00349654
0.00349032
0.00348712
0.0034901
0.00350131
0.00149801
0.00103118
0.000964767
0.00101937
0.00110278
0.00118857
0.00126874
0.00134083
0.00140481
0.00146131
0.00151103
0.00155463
0.00159271
0.00162577
0.00165422
0.00167842
0.00169874
0.00171553
0.00172914
0.00173995
0.00174835
0.00175471
0.0017594
0.00176275
0.00176508
0.00176664
0.00176766
0.0017683
0.00176873
0.00176909
0.00176957
0.00177023
0.00177154
0.00177203
0.00177741
0.00166982
0.00115457
0.000902607
0.000765193
0.000688237
0.000653302
0.000657668
0.000705266
0.000799613
0.000939929
0.00112238
0.0013414
0.0015886
0.00185255
0.00212068
0.00238139
0.00262581
0.00284819
0.00304569
0.00321771
0.00336525
0.00349032
0.00359542
0.00368328
0.00375657
0.00381779
0.00386915
0.00391253
0.00394949
0.00398125
0.00400892
0.00403375
0.00405776
0.00408265
0.00411264
0.00166904
0.00114887
0.00089514
0.00075425
0.000667918
0.000611042
0.000571725
0.000544043
0.000525207
0.00051439
0.00051221
0.000520481
0.000541977
0.000580102
0.000638587
0.000721534
0.000833112
0.000977147
0.00115602
0.00136964
0.00161512
0.00188722
0.00217922
0.00248399
0.00279483
0.00310601
0.00341307
0.00371283
0.00400326
0.00428329
0.0045526
0.00481123
0.00505934
0.0052963
0.00552176
0.00167066
0.00115074
0.000911889
0.000814494
0.00082099
0.00092044
0.00109366
0.00131482
0.00156399
0.00182691
0.00209269
0.00235362
0.00260489
0.00284378
0.0030688
0.00327932
0.00347537
0.00365723
0.00382537
0.00398036
0.00412285
0.00425361
0.0043735
0.00448342
0.00458432
0.00467711
0.00476269
0.00484196
0.00491587
0.00498537
0.00505128
0.005114
0.00517373
0.00522963
0.00528552
0.00167109
0.00115436
0.000921695
0.00083727
0.000863794
0.000983443
0.00116945
0.00139636
0.00164694
0.00190808
0.00216919
0.00242235
0.00266172
0.00288394
0.00308709
0.0032702
0.00343306
0.00357647
0.00370173
0.00381052
0.0039047
0.00398619
0.00405689
0.00411857
0.00417283
0.00422104
0.00426434
0.00430362
0.00433957
0.00437284
0.0044042
0.00443466
0.00446603
0.00449901
0.00453873
0.00166904
0.0011485
0.000894755
0.000753975
0.000668107
0.000612547
0.000576289
0.000554889
0.000547794
0.000557133
0.000586747
0.000640991
0.000723656
0.000837697
0.000985052
0.00116537
0.00137532
0.00160871
0.00185804
0.00211624
0.00237792
0.00263927
0.00289801
0.0031529
0.0034032
0.00364837
0.00388796
0.00412163
0.00434921
0.0045707
0.00478621
0.00499566
0.00519853
0.00539338
0.0055797
0.000836881
0.000639199
0.000542271
0.000505672
0.000489481
0.000481042
0.000476359
0.000473853
0.000472648
0.000472271
0.000472445
0.00047301
0.000473861
0.000474927
0.000476157
0.000477512
0.000478957
0.000480462
0.000481998
0.000483542
0.000485073
0.000486576
0.000488036
0.000489444
0.00049079
0.000492072
0.000493288
0.000494441
0.000495533
0.000496573
0.000497556
0.000498491
0.00049935
0.000500166
0.000500783
0.00167027
0.00121306
0.00114818
0.00125546
0.0014217
0.00160347
0.00178166
0.00194705
0.0020959
0.00222632
0.00233764
0.00242967
0.00250278
0.00255798
0.00259683
0.00262131
0.00263368
0.00263624
0.00263115
0.00262037
0.00260554
0.00258799
0.00256878
0.00254875
0.00252853
0.00250853
0.00248895
0.00246968
0.00245051
0.00243138
0.00241303
0.00239733
0.00238765
0.00238516
0.00239314
0.00167169
0.00120701
0.00113113
0.0012345
0.00140296
0.00158954
0.0017737
0.00194466
0.00209877
0.0022346
0.00235137
0.00244884
0.00252716
0.00258705
0.00262987
0.0026575
0.00267222
0.00267641
0.00267238
0.00266221
0.00264769
0.00263026
0.00261107
0.00259098
0.0025706
0.00255028
0.0025302
0.0025104
0.00249094
0.00247213
0.00245477
0.00243994
0.00242923
0.00242155
0.00241996
0.00117117
0.000769317
0.000712816
0.000730453
0.000763613
0.000799254
0.000833379
0.000864329
0.000891957
0.000916599
0.00093859
0.000958254
0.000975941
0.000992016
0.00100678
0.00102044
0.00103319
0.00104515
0.0010564
0.00106701
0.00107703
0.00108651
0.0010955
0.00110402
0.00111209
0.00111969
0.00112687
0.00113376
0.00114056
0.00114745
0.00115432
0.00116052
0.00116532
0.00116733
0.00117052
0.00161529
0.00117097
0.00112494
0.00121422
0.00133875
0.00146654
0.0015857
0.00169244
0.00178598
0.00186623
0.00193317
0.00198681
0.00202743
0.00205577
0.00207297
0.00208053
0.00208009
0.00207332
0.00206175
0.00204673
0.00202938
0.00201059
0.00199106
0.00197135
0.00195186
0.00193284
0.0019143
0.00189602
0.00187769
0.00185934
0.0018419
0.00182756
0.00181989
0.00181945
0.00182874
0.00161428
0.00116556
0.00111409
0.00120015
0.00132476
0.00145386
0.00157399
0.00168109
0.00177465
0.00185492
0.00192196
0.00197588
0.00201698
0.00204588
0.00206362
0.00207162
0.00207148
0.00206486
0.00205335
0.00203834
0.00202099
0.00200223
0.00198278
0.00196315
0.00194367
0.0019245
0.00190568
0.00188717
0.00186907
0.00185178
0.00183614
0.00182315
0.00181401
0.00180651
0.0018033
0.000981082
0.000645796
0.000584574
0.000578143
0.000585952
0.000598665
0.00061286
0.000626881
0.00064001
0.000652061
0.000663107
0.000673261
0.000682645
0.000691391
0.000699619
0.000707436
0.000714926
0.000722158
0.000729186
0.000736059
0.000742818
0.000749494
0.000756105
0.000762644
0.000769088
0.000775423
0.000781697
0.00078804
0.000794608
0.000801402
0.000808065
0.000813799
0.000817802
0.00081997
0.000821928
0.00084067
0.000640891
0.000543629
0.000507051
0.000490735
0.0004822
0.000477503
0.000474998
0.000473811
0.000473451
0.000473645
0.000474231
0.000475102
0.000476186
0.000477429
0.000478789
0.000480228
0.000481712
0.000483212
0.0004847
0.000486157
0.000487564
0.000488911
0.000490188
0.00049139
0.000492515
0.000493565
0.000494543
0.000495456
0.000496313
0.000497115
0.000497875
0.00049857
0.000499251
0.000499685
0.00112147
0.000731672
0.000679003
0.000691228
0.000716858
0.000746543
0.000776261
0.000804095
0.000829056
0.000851076
0.000870454
0.000887369
0.000901952
0.000914297
0.000924489
0.000932605
0.00093876
0.000943112
0.000945857
0.000947214
0.000947411
0.000946675
0.00094522
0.00094324
0.000940896
0.000938308
0.000935548
0.000932647
0.000929619
0.000926509
0.000923496
0.00092085
0.000919331
0.000918626
0.000921894
0.00151498
0.00103155
0.000954083
0.00101251
0.00110835
0.00120816
0.00130132
0.00138481
0.00145847
0.00152314
0.00157993
0.00162978
0.0016739
0.00171326
0.00174875
0.00178105
0.00181072
0.00183823
0.00186395
0.00188815
0.00191106
0.00193288
0.00195373
0.00197368
0.00199277
0.002011
0.00202845
0.00204534
0.00206197
0.00207856
0.0020949
0.00211006
0.00212284
0.00213215
0.00214073
0.00166894
0.00114672
0.000892741
0.000751794
0.0006655
0.000608654
0.000569276
0.000541326
0.000521821
0.00050961
0.000504827
0.000508636
0.000523018
0.000550538
0.000594075
0.000656704
0.000741704
0.000852342
0.000991094
0.00115867
0.0013535
0.00157187
0.00180869
0.0020585
0.00231627
0.002578
0.00284085
0.00310309
0.00336378
0.00362252
0.00387916
0.00413347
0.00438496
0.00463259
0.00487398
0.00087504
0.000673426
0.000571712
0.000531539
0.000513755
0.000504804
0.000500016
0.000497561
0.000496496
0.000496289
0.000496638
0.000497367
0.000498368
0.000499571
0.000500932
0.000502418
0.000504006
0.000505675
0.000507408
0.00050919
0.000511009
0.000512853
0.000514712
0.000516575
0.000518432
0.000520278
0.000522112
0.000523936
0.000525751
0.00052754
0.000529266
0.000530885
0.000532378
0.000533719
0.000535501
0.000848258
0.000647139
0.000549634
0.000511684
0.000494779
0.000486235
0.000481664
0.000479331
0.000478327
0.000478137
0.000478474
0.000479174
0.000480138
0.000481301
0.00048262
0.000484063
0.000485607
0.000487231
0.00048892
0.00049066
0.000492439
0.000494247
0.000496076
0.000497914
0.000499755
0.000501594
0.000503433
0.00050528
0.000507133
0.000508973
0.000510746
0.000512395
0.000513894
0.000515231
0.000517083
0.00166991
0.00114813
0.000899961
0.000777743
0.00073635
0.000768356
0.000874043
0.00104378
0.00126074
0.00151015
0.00177993
0.00205952
0.00234021
0.0026156
0.00288141
0.00313511
0.00337527
0.00360171
0.0038146
0.00401446
0.00420198
0.00437799
0.00454332
0.00469876
0.00484501
0.00498271
0.00511263
0.0052358
0.00535352
0.00546679
0.00557544
0.00567729
0.00576899
0.005848
0.00592078
0.00166974
0.00115414
0.000902044
0.000764196
0.000686169
0.000649106
0.000650083
0.000693494
0.000783901
0.000921341
0.00110198
0.00131971
0.00156575
0.00182859
0.00209596
0.002357
0.00260351
0.00283016
0.00303418
0.00321481
0.00337271
0.00350946
0.00362718
0.00372821
0.00381491
0.00388952
0.00395402
0.00401013
0.0040593
0.00410277
0.00414176
0.00417765
0.00421238
0.0042472
0.00428641
0.000828248
0.000630061
0.000534354
0.000497343
0.000481036
0.000472841
0.000468468
0.000466243
0.000465299
0.000465149
0.000465519
0.000466245
0.000467223
0.000468386
0.000469693
0.000471116
0.000472631
0.00047422
0.000475866
0.000477554
0.000479274
0.000481012
0.000482758
0.000484503
0.000486236
0.000487952
0.000489648
0.000491325
0.000492985
0.000494616
0.000496191
0.000497678
0.000499055
0.000500286
0.000501831
0.000670824
0.000461275
0.000408313
0.000391572
0.000387406
0.000388342
0.000391172
0.000394612
0.000398139
0.000401464
0.000404363
0.000406635
0.000408134
0.000408777
0.000408547
0.00040749
0.000405697
0.000403288
0.000400393
0.00039714
0.000393644
0.000390002
0.000386295
0.000382582
0.000378902
0.000375277
0.000371717
0.000368233
0.000364854
0.000361645
0.000358709
0.000356131
0.000353968
0.000351865
0.000349935
0.000889572
0.000602744
0.000548164
0.000538073
0.000540491
0.000547831
0.000556848
0.000565971
0.000574496
0.000582115
0.00058856
0.000593578
0.000596976
0.000598663
0.000598675
0.000597148
0.000594286
0.000590329
0.00058552
0.000580086
0.000574229
0.000568119
0.000561896
0.000555676
0.000549544
0.000543544
0.000537675
0.000531895
0.00052617
0.000520563
0.000515345
0.000510991
0.000508151
0.000506466
0.000506315
0.00095245
0.000751678
0.000642738
0.000600098
0.000581115
0.000571306
0.000566023
0.000563217
0.00056184
0.000561312
0.000561274
0.000561483
0.000561754
0.000561939
0.000561935
0.000561672
0.000561116
0.00056026
0.000559121
0.000557728
0.000556123
0.000554349
0.000552449
0.000550463
0.000548425
0.000546366
0.000544308
0.000542269
0.000540261
0.000538299
0.000536398
0.000534612
0.000532897
0.00053157
0.000529485
0.000842827
0.000512202
0.000461906
0.000460788
0.000472335
0.000487617
0.000502987
0.000517398
0.000530579
0.000542528
0.000553339
0.000563138
0.000572054
0.000580215
0.000587726
0.000594664
0.000601085
0.000607022
0.000612499
0.00061753
0.000622132
0.000626327
0.000630142
0.00063361
0.000636761
0.000639621
0.000642222
0.000644617
0.000646889
0.000649126
0.000651362
0.000653447
0.000655308
0.00065607
0.000658286
0.000875459
0.000678364
0.000574021
0.000534578
0.000517028
0.000507906
0.000503012
0.000500471
0.000499292
0.000498916
0.000499005
0.000499322
0.000499689
0.000499968
0.000500059
0.000499897
0.00049945
0.000498715
0.00049771
0.000496469
0.00049503
0.000493438
0.000491732
0.000489949
0.000488121
0.000486274
0.000484427
0.000482596
0.000480796
0.000479044
0.000477353
0.000475768
0.000474226
0.000473044
0.000471025
0.00166285
0.00118701
0.00110424
0.00119561
0.00134998
0.00152278
0.00169477
0.00185677
0.00200499
0.00213858
0.00225804
0.00236445
0.0024596
0.002545
0.00262197
0.00269151
0.00275453
0.00281179
0.0028639
0.00291141
0.00295481
0.00299456
0.00303107
0.0030647
0.00309571
0.00312434
0.00315085
0.00317573
0.00319969
0.00322336
0.00324665
0.0032681
0.0032854
0.00329561
0.00330483
0.0014963
0.00103201
0.000971845
0.00103409
0.00112585
0.0012191
0.0013056
0.0013832
0.00145192
0.00151249
0.00156587
0.00161292
0.0016544
0.001691
0.00172326
0.0017516
0.0017764
0.00179799
0.00181666
0.00183268
0.00184634
0.00185794
0.00186774
0.00187604
0.0018831
0.00188915
0.00189438
0.001899
0.00190321
0.00190725
0.00191133
0.00191538
0.00191945
0.00192188
0.0019277
0.000961268
0.00064608
0.000579144
0.000565666
0.000568347
0.000577136
0.000588104
0.000599393
0.000610202
0.000620255
0.000629582
0.000638247
0.000646336
0.000653946
0.00066117
0.000668088
0.000674764
0.000681247
0.000687579
0.000693795
0.000699927
0.000705998
0.000712022
0.000717989
0.000723874
0.000729664
0.000735396
0.000741185
0.000747171
0.000753361
0.000759442
0.000764703
0.000768417
0.000770465
0.000772188
0.00164289
0.00116957
0.00108993
0.00116981
0.00130476
0.00145311
0.00159737
0.00173068
0.00185103
0.00195854
0.00205423
0.00213941
0.00221537
0.0022833
0.00234425
0.00239907
0.00244844
0.00249291
0.00253292
0.00256888
0.00260117
0.00263011
0.00265606
0.00267935
0.00270031
0.00271923
0.00273638
0.00275201
0.00276637
0.00277972
0.00279239
0.00280456
0.00281688
0.00282827
0.00284579
0.00167157
0.0011541
0.000928386
0.000860978
0.000913716
0.00105944
0.00126304
0.00149873
0.00175072
0.00200726
0.00225947
0.0025014
0.00273015
0.00294422
0.00314302
0.00332654
0.00349499
0.00364877
0.00378842
0.00391463
0.00402827
0.00413034
0.00422193
0.00430422
0.00437836
0.00444545
0.00450649
0.00456239
0.00461398
0.00466207
0.00470749
0.00475087
0.00479319
0.00483395
0.00487899
0.00167635
0.00118259
0.00105042
0.00112243
0.00129804
0.00151361
0.0017395
0.00196081
0.00216968
0.00236264
0.00253877
0.00269861
0.00284341
0.00297466
0.00309378
0.00320213
0.00330094
0.00339127
0.00347408
0.00355024
0.00362053
0.00368566
0.00374625
0.00380277
0.00385557
0.00390494
0.0039513
0.00399544
0.00403836
0.00408071
0.00412173
0.00415859
0.00418755
0.00420615
0.00422207
0.00167406
0.00116778
0.000972659
0.000963208
0.00108561
0.00128315
0.00151441
0.00175761
0.00199838
0.00222606
0.00243436
0.00261934
0.00277879
0.00291212
0.00302011
0.00310466
0.00316841
0.00321433
0.00324545
0.00326463
0.00327443
0.00327707
0.0032744
0.00326795
0.00325891
0.00324816
0.0032363
0.0032237
0.00321063
0.00319747
0.00318496
0.00317424
0.00316709
0.00316373
0.00316722
0.000993867
0.000676304
0.000615954
0.000608543
0.000615012
0.000625964
0.000637906
0.000649347
0.000660028
0.000669905
0.000678948
0.000687134
0.000694432
0.000700802
0.000706212
0.000710647
0.000714117
0.000716661
0.000718342
0.000719249
0.000719483
0.000719152
0.000718365
0.000717225
0.000715827
0.000714253
0.000712572
0.000710833
0.000709075
0.000707332
0.000705657
0.000704088
0.000702859
0.000701508
0.000701876
0.000927806
0.000724335
0.000616137
0.000574271
0.000555791
0.000546182
0.000540876
0.000537988
0.00053655
0.000536034
0.000536123
0.000536605
0.000537331
0.000538181
0.000539057
0.000539883
0.000540599
0.000541162
0.000541547
0.000541746
0.000541762
0.000541608
0.000541303
0.000540871
0.000540335
0.00053972
0.000539045
0.000538331
0.000537593
0.000536848
0.000536106
0.000535395
0.000534681
0.000534148
0.000533111
0.00167136
0.00115801
0.000922144
0.000827781
0.000838048
0.000939693
0.00111191
0.00133029
0.00157521
0.00182961
0.00207815
0.00230892
0.00251468
0.00269246
0.00284201
0.00296467
0.00306259
0.00313837
0.00319481
0.00323471
0.00326076
0.00327548
0.00328113
0.00327972
0.00327297
0.00326228
0.00324863
0.00323257
0.00321438
0.00319456
0.00317461
0.00315758
0.00314804
0.00314895
0.00315918
0.00167138
0.00115792
0.000920742
0.000823607
0.000829889
0.000928317
0.00109955
0.00131801
0.00156262
0.00181577
0.00206278
0.00229268
0.00249864
0.00267759
0.00282899
0.00295381
0.00305387
0.00313156
0.00318952
0.00323052
0.00325731
0.00327248
0.00327836
0.00327698
0.00327003
0.00325884
0.00324443
0.00322762
0.00320926
0.0031905
0.0031729
0.0031582
0.00314761
0.0031396
0.0031312
0.00166893
0.00114628
0.000892282
0.000751349
0.000665037
0.000608074
0.000568367
0.000539692
0.000518782
0.000504075
0.000495173
0.000492606
0.000497718
0.000512547
0.000539623
0.000581745
0.000641866
0.000723106
0.000828564
0.000960657
0.00112028
0.00130636
0.00151596
0.0017449
0.00198865
0.00224294
0.00250423
0.00276991
0.00303819
0.00330797
0.00357842
0.0038487
0.00411747
0.00438272
0.00464083
0.00167234
0.00117783
0.00102947
0.00108129
0.00124183
0.00144905
0.00167287
0.00189591
0.00210661
0.00229742
0.00246285
0.00260032
0.00270981
0.00279262
0.0028512
0.00288874
0.00290876
0.00291474
0.00290985
0.00289684
0.00287797
0.00285506
0.00282961
0.00280277
0.00277542
0.00274805
0.00272065
0.00269288
0.00266434
0.00263545
0.00260863
0.00258877
0.00258223
0.00259097
0.0026088
0.00167361
0.00118239
0.00104372
0.0011104
0.00128412
0.00149875
0.00172453
0.00194587
0.0021529
0.00233933
0.00250083
0.00263478
0.00274124
0.00282147
0.00287786
0.0029135
0.00293187
0.00293639
0.00293024
0.00291615
0.00289642
0.00287281
0.00284681
0.00281943
0.00279136
0.00276292
0.00273429
0.00270571
0.00267786
0.00265214
0.00263063
0.00261501
0.00260501
0.00259462
0.00257506
0.0016645
0.00120938
0.00115229
0.00127107
0.00144738
0.00163303
0.00180961
0.00197015
0.00211227
0.00223663
0.00234442
0.00243652
0.00251363
0.00257652
0.00262612
0.00266357
0.0026902
0.00270753
0.00271713
0.00272052
0.00271912
0.00271418
0.00270672
0.00269762
0.00268754
0.00267703
0.00266647
0.00265606
0.00264587
0.0026359
0.00262626
0.00261741
0.00261079
0.00260636
0.00261035
0.00103749
0.000651796
0.00060156
0.000618652
0.000650764
0.000685104
0.000717519
0.000746787
0.000772854
0.000796016
0.000816634
0.000835035
0.000851511
0.000866294
0.00087958
0.000891516
0.000902218
0.000911774
0.000920257
0.000927739
0.000934293
0.000939999
0.000944951
0.000949244
0.000952969
0.000956208
0.00095904
0.000961553
0.000963862
0.000966097
0.000968351
0.000970524
0.0009726
0.000973502
0.000976157
0.00167323
0.00116563
0.000996681
0.00102651
0.00117378
0.00137563
0.00159992
0.0018301
0.00205556
0.00226986
0.00246975
0.00265413
0.00282317
0.00297773
0.00311899
0.00324825
0.00336682
0.00347591
0.00357664
0.00367003
0.003757
0.00383837
0.00391483
0.00398689
0.00405495
0.00411935
0.00418072
0.00423999
0.00429827
0.00435589
0.0044114
0.00446105
0.0045006
0.00452894
0.00455459
0.00167215
0.00115912
0.000934083
0.000865747
0.000918019
0.00106522
0.00127253
0.00151262
0.0017679
0.00202485
0.00227285
0.00250445
0.00271494
0.0029018
0.00306421
0.00320271
0.00331883
0.00341471
0.00349281
0.00355568
0.00360579
0.00364541
0.00367658
0.00370108
0.00372042
0.00373581
0.00374822
0.00375831
0.00376658
0.00377347
0.00377959
0.00378594
0.00379441
0.00380585
0.0038256
0.00108371
0.000707181
0.000658728
0.000673428
0.000700147
0.000729459
0.00075828
0.000784789
0.000808452
0.000829522
0.000848295
0.000865012
0.00087992
0.000893242
0.000905142
0.000915735
0.000925102
0.000933303
0.000940399
0.000946458
0.000951563
0.000955808
0.000959298
0.000962144
0.000964452
0.000966316
0.000967808
0.000968975
0.000969852
0.000970486
0.000971004
0.000971535
0.000972721
0.000973887
0.000979872
0.000806999
0.000611751
0.000517352
0.000481864
0.000465895
0.000457499
0.000452876
0.000450402
0.000449222
0.000448852
0.000449019
0.000449563
0.000450378
0.000451393
0.000452555
0.00045382
0.000455148
0.000456504
0.000457857
0.000459181
0.000460456
0.000461667
0.000462803
0.000463858
0.00046483
0.000465721
0.000466534
0.000467275
0.000467952
0.000468575
0.000469148
0.000469692
0.000470183
0.00047069
0.000470967
0.00125986
0.000824752
0.000765087
0.000795875
0.000844928
0.00089521
0.00094215
0.000984242
0.00102123
0.00105383
0.0010826
0.00110812
0.00113094
0.00115155
0.00117036
0.00118768
0.00120377
0.0012188
0.00123291
0.00124622
0.00125882
0.00127079
0.0012822
0.00129308
0.00130345
0.00131328
0.00132263
0.00133168
0.0013407
0.00134989
0.00135906
0.00136727
0.00137337
0.00137598
0.00137906
0.0016733
0.00116382
0.000969916
0.000963971
0.00108844
0.00128527
0.00151511
0.001758
0.00200094
0.00223498
0.00245462
0.00265688
0.00284015
0.0030042
0.00314922
0.00327579
0.00338485
0.00347768
0.00355582
0.00362099
0.00367498
0.00371955
0.00375637
0.00378695
0.00381262
0.00383452
0.00385359
0.00387058
0.00388611
0.00390066
0.00391472
0.00392867
0.00394339
0.00395789
0.0039783
0.00166355
0.00120478
0.00114403
0.00126267
0.00144168
0.00163215
0.00181467
0.00198134
0.00212979
0.00226041
0.00237433
0.00247258
0.00255597
0.00262527
0.00268138
0.00272531
0.00275828
0.00278168
0.00279699
0.00280567
0.00280913
0.0028086
0.00280517
0.00279972
0.002793
0.00278557
0.00277787
0.00277017
0.00276259
0.00275517
0.00274804
0.00274154
0.00273698
0.00273399
0.00273954
0.00143359
0.000964949
0.000899235
0.000946816
0.00101937
0.0010928
0.00116072
0.00122122
0.0012743
0.00132076
0.00136159
0.00139772
0.00142993
0.00145893
0.00148529
0.00150946
0.00153184
0.00155272
0.00157236
0.00159099
0.00160878
0.00162591
0.00164248
0.00165855
0.0016741
0.00168911
0.00170371
0.00171824
0.00173314
0.00174857
0.00176384
0.00177702
0.00178599
0.00178973
0.0017925
0.00155285
0.00109701
0.00104916
0.00113832
0.00125794
0.00137463
0.00147919
0.0015699
0.00164737
0.00171355
0.0017702
0.00181833
0.00185854
0.00189128
0.00191703
0.00193632
0.00194979
0.00195817
0.00196225
0.00196282
0.00196063
0.00195638
0.00195063
0.00194389
0.00193657
0.00192898
0.00192136
0.00191384
0.00190648
0.00189927
0.00189231
0.00188582
0.00188089
0.00187686
0.00188018
0.00125721
0.000806634
0.00074296
0.000772776
0.000821096
0.00087067
0.000917145
0.000959043
0.000996125
0.00102881
0.0010577
0.00108342
0.00110648
0.00112735
0.00114641
0.00116401
0.00118042
0.00119586
0.00121051
0.00122453
0.00123805
0.00125117
0.00126398
0.00127649
0.00128868
0.00130054
0.00131218
0.00132387
0.00133595
0.0013485
0.00136087
0.00137148
0.00137861
0.00138187
0.00138407
0.00166939
0.00114771
0.000895762
0.000762052
0.000694395
0.000677786
0.000712801
0.000802831
0.00094577
0.0011344
0.00136041
0.00161469
0.00188721
0.00216833
0.00245018
0.00272701
0.00299501
0.00325184
0.00349635
0.0037281
0.00394716
0.00415392
0.00434892
0.00453279
0.00470617
0.00486968
0.00502409
0.00517037
0.00530974
0.00544334
0.00557152
0.00569301
0.00580534
0.005906
0.00599904
0.00167028
0.00115334
0.000908332
0.000793155
0.000766299
0.000820923
0.000951621
0.0011422
0.00137398
0.00163137
0.00190041
0.002169
0.00242759
0.00266964
0.00289183
0.00309263
0.00327183
0.00343028
0.00356947
0.00369127
0.00379767
0.00389062
0.00397202
0.00404359
0.00410693
0.00416342
0.00421423
0.00426032
0.0043024
0.00434117
0.00437744
0.00441226
0.00444751
0.00448417
0.00452709
0.00167597
0.00118075
0.00102327
0.00106549
0.00122411
0.00143499
0.00166519
0.00189694
0.00211811
0.00232067
0.00249948
0.00265148
0.00277562
0.00287261
0.00294446
0.00299407
0.00302483
0.00304017
0.00304334
0.00303722
0.00302425
0.00300642
0.00298533
0.00296217
0.00293781
0.00291281
0.00288745
0.00286199
0.00283683
0.00281283
0.00279146
0.00277427
0.00276221
0.00275243
0.00274178
0.00167379
0.00116815
0.0009735
0.00096315
0.00108308
0.00127906
0.00151093
0.001756
0.00199873
0.00222754
0.00243402
0.00261287
0.00276224
0.00288244
0.00297532
0.00304376
0.00309116
0.00312101
0.00313666
0.00314108
0.00313686
0.00312612
0.0031107
0.00309205
0.00307133
0.00304943
0.00302679
0.00300348
0.00297935
0.00295463
0.00293076
0.00291101
0.00290026
0.00290113
0.00291213
0.00166963
0.00114727
0.000897951
0.00077328
0.000726269
0.0007473
0.000836512
0.000987495
0.00118728
0.00142321
0.00168359
0.00195727
0.0022347
0.00250877
0.00277476
0.00302977
0.00327227
0.00350165
0.00371795
0.00392159
0.00411325
0.00429375
0.00446395
0.00462462
0.00477647
0.00492016
0.00505648
0.00518648
0.00531139
0.00543207
0.00554808
0.00565702
0.00575545
0.00584128
0.00591984
0.00167774
0.00117548
0.00101382
0.00105242
0.00120902
0.00142033
0.00165402
0.00189316
0.00212699
0.00234899
0.00255582
0.00274647
0.00292126
0.00308113
0.00322719
0.00336074
0.00348307
0.00359534
0.00369864
0.00379395
0.00388221
0.00396426
0.00404083
0.00411248
0.00417963
0.00424263
0.00430203
0.00435875
0.00441395
0.00446825
0.0045206
0.00456755
0.00460485
0.00463031
0.00465288
0.000889893
0.000602728
0.000543038
0.000531975
0.000534802
0.000542197
0.000550724
0.000559116
0.000567009
0.000574341
0.000581056
0.000587148
0.000592578
0.000597293
0.000601252
0.000604433
0.000606836
0.000608491
0.00060945
0.000609787
0.000609586
0.000608937
0.000607931
0.000606652
0.000605178
0.000603576
0.000601901
0.000600193
0.000598479
0.000596785
0.000595153
0.000593617
0.000592382
0.000591093
0.000591317
0.000920943
0.000713951
0.000607199
0.00056455
0.000545562
0.000535977
0.000530842
0.000528204
0.000527051
0.00052681
0.000527161
0.000527914
0.000528958
0.000530221
0.000531657
0.000533229
0.000534912
0.000536684
0.000538527
0.000540427
0.00054237
0.000544345
0.000546341
0.000548347
0.000550354
0.000552358
0.000554361
0.000556367
0.000558377
0.000560369
0.000562288
0.000564074
0.000565702
0.000567165
0.00056914
0.00167161
0.00115775
0.000928137
0.000849738
0.000886032
0.00101695
0.00121368
0.00144964
0.00170521
0.00196487
0.00221688
0.00245307
0.00266853
0.00286054
0.00302802
0.0031718
0.00329347
0.00339516
0.00347927
0.00354821
0.00360431
0.00364972
0.00368637
0.00371597
0.00374003
0.00375983
0.00377644
0.00379067
0.00380312
0.00381422
0.00382442
0.00383436
0.00384555
0.0038585
0.00387866
0.00088146
0.000588936
0.000529409
0.000516854
0.000518755
0.000526285
0.000535807
0.000545648
0.00055507
0.00056391
0.000572139
0.000579781
0.0005869
0.000593586
0.000599923
0.00060597
0.000611777
0.000617377
0.000622786
0.000628016
0.000633076
0.000637974
0.000642716
0.000647299
0.00065171
0.000655935
0.000659989
0.000663939
0.000667889
0.000671898
0.000675853
0.000679353
0.000681984
0.000683215
0.000685138
0.00167387
0.00116894
0.00100194
0.00103366
0.00118282
0.00138619
0.00161189
0.00184395
0.00207191
0.00228906
0.00249186
0.0026791
0.00285078
0.00300752
0.00315016
0.00327966
0.00339697
0.00350296
0.00359849
0.00368439
0.00376151
0.0038307
0.00389283
0.00394872
0.00399912
0.00404473
0.0040862
0.00412431
0.00415996
0.00419405
0.00422703
0.00425818
0.00428599
0.00430765
0.00432755
0.00100777
0.000678548
0.000615031
0.000604384
0.000608156
0.000617531
0.000628983
0.000640781
0.00065206
0.000662559
0.000672264
0.000681179
0.000689406
0.000697021
0.000704083
0.000710632
0.000716686
0.000722247
0.000727315
0.000731893
0.000735991
0.00073963
0.000742839
0.000745655
0.000748122
0.00075028
0.000752164
0.000753803
0.000755228
0.000756476
0.000757622
0.000758721
0.000760079
0.000761299
0.00076491
0.00123805
0.000814695
0.000756288
0.000782876
0.000826878
0.000872449
0.000915318
0.000953942
0.000988001
0.00101793
0.00104442
0.00106802
0.00108921
0.00110845
0.00112608
0.00114242
0.00115769
0.00117209
0.00118579
0.00119891
0.00121157
0.00122387
0.00123588
0.00124761
0.00125905
0.00127017
0.00128105
0.00129195
0.00130318
0.00131483
0.00132636
0.00133633
0.00134315
0.00134626
0.00134837
0.000833265
0.000635277
0.000541037
0.000507741
0.000493086
0.00048555
0.000481587
0.00047957
0.00047865
0.000478316
0.000478247
0.000478202
0.000477999
0.000477508
0.000476653
0.000475407
0.000473785
0.000471825
0.000469585
0.000467127
0.000464511
0.000461793
0.000459018
0.000456223
0.000453437
0.000450677
0.000447961
0.000445307
0.000442738
0.000440287
0.000437974
0.00043583
0.000433702
0.00043186
0.000428757
0.000818238
0.000630107
0.000537409
0.000503413
0.00048812
0.000480089
0.000475794
0.000473601
0.000472614
0.000472259
0.000472188
0.000472152
0.000471962
0.000471485
0.000470647
0.000469425
0.000467834
0.000465915
0.000463723
0.000461318
0.000458758
0.000456097
0.00045338
0.000450645
0.000447921
0.000445227
0.000442573
0.000439964
0.000437408
0.000434942
0.000432617
0.000430538
0.000428644
0.000427228
0.000424719
0.00167167
0.00115884
0.000929582
0.000850972
0.000887407
0.00101783
0.00121139
0.00144114
0.00168813
0.00193665
0.0021735
0.00238877
0.0025768
0.00273593
0.00286657
0.00297047
0.00305023
0.00310881
0.0031493
0.00317469
0.00318775
0.00319097
0.00318654
0.00317639
0.00316207
0.00314476
0.00312519
0.00310364
0.00308021
0.00305553
0.00303168
0.00301271
0.00300398
0.00300793
0.00301995
0.00167199
0.00115995
0.000933498
0.000861085
0.000906563
0.00104531
0.00124412
0.00147624
0.00172325
0.00196979
0.00220337
0.00241485
0.00259887
0.00275408
0.00288102
0.00298153
0.00305821
0.00311402
0.00315203
0.00317523
0.00318639
0.003188
0.00318222
0.00317085
0.00315527
0.00313656
0.00311553
0.00309287
0.00306943
0.00304657
0.00302614
0.00300991
0.00299842
0.00298832
0.00297338
0.00160013
0.00112915
0.00105461
0.0011224
0.00123305
0.00135043
0.00146089
0.00155953
0.00164551
0.00171945
0.00178193
0.00183345
0.00187441
0.00190535
0.001927
0.00194033
0.00194647
0.00194668
0.00194219
0.00193417
0.00192364
0.00191142
0.00189822
0.00188454
0.00187078
0.00185716
0.00184379
0.0018307
0.00181786
0.00180535
0.00179353
0.00178294
0.00177496
0.00176863
0.00177008
0.000756821
0.000568924
0.000483857
0.00045181
0.000437627
0.00043046
0.000426622
0.000424658
0.000423822
0.000423692
0.000424025
0.000424681
0.000425567
0.000426624
0.000427815
0.000429112
0.000430493
0.000431938
0.000433431
0.000434957
0.000436502
0.000438055
0.000439605
0.000441143
0.000442658
0.000444144
0.000445599
0.000447022
0.000448416
0.000449777
0.000451089
0.000452333
0.000453483
0.000454521
0.000455697
0.00167457
0.00117639
0.00103435
0.00109715
0.00126712
0.00147961
0.0017046
0.00192698
0.00213838
0.00233472
0.00251457
0.00267822
0.00282679
0.00296158
0.00308376
0.00319466
0.00329539
0.00338692
0.00347009
0.00354569
0.00361445
0.00367708
0.00373424
0.00378651
0.00383441
0.00387836
0.00391885
0.00395654
0.00399232
0.00402705
0.00406085
0.00409235
0.00411912
0.00413803
0.0041543
0.00159253
0.00112835
0.00105924
0.00113061
0.00124198
0.00135802
0.00146621
0.00156251
0.00164636
0.00171827
0.00177884
0.00182854
0.0018678
0.00189719
0.00191752
0.00192979
0.00193516
0.00193483
0.00193001
0.00192178
0.00191112
0.00189881
0.0018855
0.0018717
0.0018578
0.00184409
0.00183072
0.0018177
0.00180494
0.00179236
0.00178022
0.00176924
0.00176125
0.00175602
0.00175944
0.00166904
0.00114868
0.000895044
0.000754192
0.000667876
0.000611
0.000571655
0.000543891
0.000524879
0.000513728
0.000510984
0.000518385
0.000538638
0.000575079
0.00063133
0.000711189
0.000818672
0.00095763
0.00113091
0.00133883
0.00157894
0.00184635
0.00213455
0.00243645
0.00274529
0.00305524
0.00336174
0.00366145
0.00395217
0.00423264
0.00450233
0.00476121
0.00500967
0.00524772
0.00547576
0.000883797
0.000683564
0.000582626
0.00054314
0.000525241
0.000515819
0.000510664
0.00050798
0.000506789
0.000506491
0.00050676
0.000507412
0.000508329
0.000509432
0.000510658
0.000511952
0.000513269
0.000514564
0.000515803
0.000516958
0.00051801
0.00051895
0.000519772
0.000520479
0.000521078
0.000521576
0.000521984
0.000522314
0.000522577
0.000522787
0.000522958
0.000523117
0.000523261
0.000523466
0.000523527
0.00121675
0.000809482
0.000767783
0.000801197
0.000845312
0.000888819
0.000928676
0.000963759
0.000994028
0.00101974
0.0010409
0.00105739
0.00106916
0.00107632
0.00107921
0.00107832
0.00107426
0.00106767
0.00105914
0.00104922
0.00103837
0.00102696
0.00101531
0.00100365
0.000992162
0.000980949
0.000969995
0.000959178
0.000948369
0.000937642
0.00092758
0.000919328
0.000914697
0.00091315
0.000916654
0.00120214
0.000785018
0.000736236
0.000761671
0.000801092
0.000841994
0.000879477
0.000912386
0.000940882
0.000965169
0.000985199
0.00100083
0.00101201
0.00101881
0.00102153
0.00102061
0.00101661
0.00101014
0.0010018
0.000992106
0.000981534
0.000970454
0.000959158
0.000947857
0.000936684
0.0009257
0.000914907
0.000904301
0.000893948
0.000884073
0.000875132
0.000867561
0.000861986
0.000856632
0.000854423
0.00167234
0.00117784
0.00104349
0.00110767
0.00126837
0.00146691
0.00167755
0.00188658
0.00208607
0.0022719
0.00244241
0.0025973
0.00273697
0.00286215
0.00297373
0.0030726
0.00315967
0.00323584
0.00330201
0.00335915
0.00340823
0.00345027
0.00348628
0.0035172
0.00354393
0.00356725
0.00358784
0.00360632
0.00362331
0.00363939
0.00365504
0.00367031
0.00368517
0.00369764
0.00371315
0.00160258
0.00114579
0.00108829
0.00117587
0.00130667
0.00144507
0.0015769
0.00169626
0.00180097
0.00189003
0.00196314
0.00202061
0.00206291
0.00209098
0.00210631
0.00211072
0.00210628
0.00209497
0.00207864
0.00205883
0.00203685
0.00201361
0.00198985
0.00196607
0.00194252
0.00191926
0.00189622
0.00187352
0.00185164
0.00183173
0.00181547
0.0018041
0.00179722
0.00178884
0.00177261
0.00158702
0.00112637
0.00106486
0.00114503
0.00126702
0.00139594
0.00151818
0.00162834
0.00172464
0.00180611
0.00187269
0.0019247
0.00196264
0.00198742
0.00200042
0.0020034
0.00199824
0.00198679
0.00197073
0.00195145
0.00193012
0.0019076
0.00188457
0.00186165
0.00183923
0.00181744
0.00179611
0.00177475
0.00175289
0.00173081
0.00171045
0.00169574
0.00169191
0.00169985
0.00171642
0.00132417
0.000893457
0.000846863
0.00088704
0.000940866
0.000994739
0.00104474
0.00108923
0.00112739
0.00115967
0.00118595
0.00120619
0.00122032
0.00122857
0.00123142
0.00122956
0.00122381
0.00121499
0.00120389
0.00119117
0.0011774
0.00116304
0.00114845
0.00113393
0.00111969
0.00110582
0.00109228
0.00107884
0.00106533
0.00105186
0.0010393
0.00102938
0.00102456
0.00102451
0.00102958
0.001448
0.000971932
0.000902805
0.000948268
0.0010202
0.00109501
0.00116423
0.00122538
0.00127822
0.00132284
0.00135935
0.00138768
0.00140796
0.00142058
0.00142621
0.00142578
0.00142036
0.00141102
0.00139881
0.0013846
0.00136914
0.001353
0.00133663
0.00132031
0.00130422
0.0012884
0.00127282
0.00125749
0.0012426
0.00122867
0.00121659
0.00120716
0.00120079
0.00119433
0.00118818
0.00166964
0.00115022
0.000900086
0.000770702
0.000713376
0.000716942
0.000783326
0.000911409
0.00109132
0.00131096
0.00155912
0.00182482
0.00209779
0.00236957
0.00263383
0.00288612
0.00312359
0.00334469
0.0035489
0.00373646
0.00390817
0.00406516
0.00420879
0.00434048
0.0044616
0.00457345
0.00467722
0.00477403
0.00486499
0.00495117
0.0050335
0.00511246
0.00518824
0.00525947
0.00532982
0.00108731
0.000736892
0.000691774
0.000701294
0.000721104
0.000743355
0.000764609
0.000783864
0.000800767
0.000815554
0.000828363
0.000839227
0.000848095
0.000854919
0.000859713
0.000862559
0.000863602
0.000863043
0.000861119
0.00085808
0.000854169
0.000849611
0.000844604
0.000839317
0.000833892
0.00082844
0.000823042
0.000817734
0.000812523
0.000807412
0.000802471
0.00079784
0.000794076
0.000790688
0.00079052
0.00167229
0.00115798
0.000950166
0.000919219
0.00101805
0.0012007
0.0014267
0.00167327
0.00192647
0.00217631
0.00241612
0.00264209
0.00285242
0.00304653
0.00322455
0.00338699
0.00353453
0.00366796
0.00378813
0.00389598
0.0039925
0.00407879
0.00415595
0.00422508
0.0042872
0.00434328
0.00439421
0.00444092
0.00448441
0.00452566
0.00456532
0.00460306
0.00463794
0.00466739
0.00469645
0.00167111
0.00115588
0.000921956
0.000834533
0.000858838
0.00098031
0.0011723
0.00140637
0.00166246
0.00192549
0.00218377
0.00242912
0.0026562
0.00286185
0.00304458
0.00320444
0.00334247
0.00346036
0.0035602
0.0036442
0.00371459
0.00377348
0.00382281
0.00386434
0.0038996
0.00392993
0.00395646
0.00398009
0.00400151
0.00402124
0.0040398
0.00405779
0.00407651
0.0040962
0.00412219
0.00166885
0.00114404
0.000889627
0.000748556
0.000662251
0.000605264
0.00056535
0.000536066
0.000513774
0.000496308
0.000482331
0.00047101
0.000461845
0.000454586
0.000449191
0.000445824
0.000444862
0.000446917
0.000452856
0.000463816
0.000481198
0.000506681
0.000542243
0.000590205
0.000653215
0.000734045
0.000835197
0.000958429
0.00110441
0.00127261
0.00146138
0.00166825
0.00189009
0.00212328
0.00236122
0.00142643
0.000963626
0.000900903
0.000946669
0.00101393
0.00108065
0.00114126
0.00119438
0.00124086
0.00128159
0.00131752
0.00134942
0.00137794
0.00140365
0.00142702
0.00144843
0.00146819
0.00148651
0.00150355
0.00151943
0.00153424
0.00154807
0.00156098
0.00157302
0.00158427
0.00159477
0.00160456
0.00161372
0.00162235
0.0016306
0.0016386
0.00164631
0.00165405
0.00166042
0.00167229
0.00167454
0.00117676
0.00102987
0.00108232
0.00123722
0.00143442
0.00164759
0.00186196
0.00206806
0.00226076
0.00243758
0.00259762
0.00274081
0.00286759
0.00297864
0.00307481
0.00315705
0.0032265
0.00328442
0.00333218
0.0033712
0.00340288
0.00342852
0.00344935
0.00346642
0.00348063
0.00349275
0.00350337
0.00351298
0.00352201
0.00353088
0.00353986
0.00354966
0.00355897
0.00357406
0.0010485
0.000668294
0.000630742
0.000654297
0.000688037
0.000723297
0.000756582
0.000786352
0.000812045
0.000833466
0.00085061
0.000863431
0.000871894
0.000876123
0.000876447
0.000873363
0.000867465
0.000859354
0.000849608
0.000838738
0.00082716
0.000815201
0.000803144
0.000791223
0.000779593
0.00076828
0.00075716
0.00074599
0.00073462
0.000723347
0.000713322
0.000706487
0.000705078
0.000708233
0.000714142
0.00105842
0.000676032
0.000639067
0.000663992
0.000699001
0.000735286
0.000769395
0.000799861
0.000826162
0.000848052
0.000865568
0.000878675
0.000887338
0.000891684
0.000892045
0.000888922
0.000882921
0.00087466
0.00086473
0.000853668
0.000841916
0.000829798
0.000817589
0.000805462
0.000793499
0.000781705
0.000770066
0.00075865
0.000747735
0.000737871
0.000729792
0.000723851
0.000719611
0.000713568
0.000703658
0.00167699
0.00118913
0.00105881
0.0011317
0.00130546
0.00151788
0.00174058
0.00195775
0.00216022
0.00234307
0.00250416
0.00264259
0.00275855
0.00285285
0.00292682
0.00298238
0.00302183
0.00304767
0.00306235
0.00306825
0.00306746
0.00306176
0.00305258
0.00304112
0.00302829
0.00301481
0.00300116
0.00298757
0.00297409
0.00296069
0.00294765
0.00293585
0.00292746
0.00292338
0.00292877
0.0016671
0.00121819
0.00116682
0.00126612
0.00141264
0.00156878
0.00171937
0.00185816
0.00198317
0.00209457
0.0021935
0.00228143
0.00235987
0.00243021
0.00249363
0.00255115
0.00260362
0.00265178
0.00269622
0.00273747
0.00277599
0.0028122
0.00284643
0.00287888
0.00290964
0.0029388
0.00296663
0.00299375
0.00302097
0.00304862
0.00307557
0.00309875
0.00311467
0.0031217
0.00312798
0.00167085
0.00115094
0.000913792
0.000820598
0.000834158
0.000941997
0.00112209
0.00134758
0.0015988
0.00186173
0.00212588
0.00238404
0.00263179
0.00286679
0.003088
0.00329516
0.00348849
0.00366846
0.00383563
0.00399064
0.00413413
0.00426683
0.00438947
0.00450282
0.00460762
0.00470464
0.00479463
0.00487841
0.00495688
0.00503097
0.00510138
0.00516823
0.00523125
0.00528921
0.005346
0.000473467
0.000307607
0.000267367
0.000254825
0.000251798
0.000252364
0.000254286
0.000256695
0.000259261
0.000261833
0.000264341
0.000266753
0.000269056
0.000271246
0.00027332
0.000275273
0.000277101
0.000278798
0.000280358
0.000281778
0.000283056
0.000284197
0.000285209
0.000286102
0.000286886
0.000287575
0.000288179
0.000288717
0.000289212
0.000289688
0.000290153
0.000290577
0.00029093
0.000291065
0.000291322
0.00166229
0.00118247
0.00108706
0.00117522
0.00133584
0.00152094
0.00170958
0.00189102
0.00206009
0.00221455
0.00235444
0.00248038
0.00259326
0.00269415
0.00278404
0.00286387
0.00293446
0.00299658
0.00305098
0.00309837
0.00313948
0.00317505
0.00320584
0.00323255
0.00325585
0.00327631
0.00329447
0.00331083
0.00332595
0.00334038
0.00335451
0.00336816
0.00338095
0.00339076
0.00340244
0.00141612
0.000961168
0.000899573
0.000940504
0.00100168
0.00106384
0.00112203
0.00117459
0.00122105
0.00126193
0.00129799
0.00132989
0.00135826
0.00138361
0.00140634
0.00142677
0.00144512
0.00146155
0.00147618
0.00148914
0.00150056
0.00151058
0.00151934
0.00152699
0.00153369
0.00153957
0.00154475
0.00154933
0.00155338
0.00155699
0.00156034
0.00156357
0.00156735
0.00157093
0.00158011
0.000856256
0.0006567
0.000557444
0.000519052
0.000501594
0.000492537
0.000487755
0.000485383
0.000484417
0.000484284
0.000484664
0.000485368
0.000486272
0.000487287
0.000488338
0.000489364
0.000490314
0.000491147
0.000491838
0.000492373
0.000492749
0.000492972
0.000493056
0.000493014
0.000492867
0.000492631
0.000492322
0.000491956
0.000491547
0.000491114
0.000490672
0.000490263
0.000489871
0.000489659
0.00048906
0.000883476
0.000684244
0.000580272
0.000541064
0.000523623
0.000514589
0.000509782
0.00050732
0.000506222
0.000505929
0.00050611
0.000506538
0.000507046
0.000507501
0.000507801
0.000507879
0.000507696
0.00050724
0.000506522
0.000505568
0.000504412
0.000503093
0.000501649
0.000500117
0.000498526
0.000496902
0.000495267
0.000493637
0.000492026
0.000490451
0.000488924
0.000487494
0.000486104
0.000485062
0.000483179
0.000904513
0.00061883
0.000550583
0.000531575
0.000529188
0.000533536
0.000540558
0.000548406
0.000556269
0.000563824
0.00057096
0.000577663
0.000583976
0.000589963
0.000595686
0.000601205
0.000606569
0.000611815
0.000616976
0.000622075
0.000627132
0.000632161
0.000637162
0.000642123
0.000647027
0.000651869
0.000656687
0.000661569
0.000666597
0.000671728
0.000676677
0.000680915
0.000683987
0.000686034
0.000688199
0.00167178
0.00115332
0.000934513
0.000883348
0.000958371
0.00112433
0.00134319
0.00158962
0.00184751
0.00210503
0.0023541
0.00259007
0.00281082
0.00301589
0.00320568
0.00338115
0.00354341
0.00369367
0.00383306
0.00396267
0.00408352
0.00419653
0.00430252
0.00440215
0.00449595
0.00458442
0.00466824
0.00474836
0.00482586
0.0049012
0.00497342
0.00503961
0.00509638
0.00514255
0.00518511
0.000900618
0.000693057
0.000589145
0.000548802
0.000530973
0.00052197
0.000517156
0.000514708
0.000513659
0.000513461
0.000513817
0.000514557
0.00051558
0.000516818
0.000518224
0.000519764
0.00052141
0.000523139
0.000524932
0.000526773
0.000528652
0.000530557
0.000532479
0.000534408
0.000536336
0.000538257
0.000540174
0.000542094
0.000544021
0.000545938
0.000547791
0.00054951
0.000551048
0.000552382
0.000554145
0.00106524
0.000686402
0.000626475
0.000629056
0.000646282
0.000667562
0.000689187
0.000709488
0.000727803
0.000744286
0.000759159
0.000772648
0.00078498
0.000796366
0.000806987
0.00081699
0.000826491
0.000835584
0.000844345
0.000852837
0.000861116
0.000869227
0.0008772
0.00088503
0.00089269
0.000900159
0.000907489
0.000914844
0.000922432
0.000930294
0.000938027
0.000944647
0.000949118
0.000951127
0.000952609
0.0014148
0.000961363
0.000904293
0.000954668
0.00102494
0.00109341
0.00115525
0.00120976
0.00125755
0.00129945
0.00133614
0.00136816
0.00139593
0.00141975
0.00143989
0.00145659
0.0014701
0.0014807
0.0014887
0.00149444
0.00149826
0.0015005
0.00150146
0.00150146
0.00150074
0.00149952
0.00149799
0.00149628
0.00149448
0.00149269
0.00149103
0.00148958
0.00148889
0.00148774
0.00149136
0.000882988
0.000601742
0.000536481
0.000519243
0.000517577
0.000522037
0.000528901
0.000536499
0.000544101
0.00055142
0.000558328
0.000564816
0.000570918
0.000576694
0.000582212
0.00058753
0.000592695
0.000597745
0.00060271
0.000607614
0.000612474
0.000617301
0.000622095
0.000626843
0.000631529
0.000636147
0.000640731
0.000645352
0.00065008
0.000654869
0.000659478
0.000663453
0.000666427
0.00066854
0.000670881
0.00150493
0.00102259
0.000946822
0.00100228
0.00109259
0.00118665
0.00127485
0.00135424
0.00142442
0.00148613
0.00154045
0.0015885
0.00163128
0.00166964
0.00170431
0.00173595
0.00176507
0.00179209
0.00181737
0.00184123
0.00186393
0.00188567
0.00190663
0.00192688
0.00194643
0.00196528
0.00198362
0.0020019
0.00202067
0.00204007
0.00205919
0.00207568
0.0020868
0.00209178
0.0020947
0.00167029
0.00114937
0.00090624
0.000798243
0.00078485
0.000858172
0.00100809
0.00121424
0.00145686
0.00172081
0.00199375
0.00226604
0.00253116
0.00278532
0.00302649
0.00325397
0.00346776
0.00366819
0.00385578
0.00403115
0.00419494
0.00434786
0.00449063
0.00462394
0.00474846
0.00486485
0.0049738
0.00507609
0.00517267
0.00526446
0.00535197
0.00543483
0.00551207
0.00558215
0.00564897
0.00166659
0.001206
0.00114482
0.00125224
0.00141359
0.00158427
0.00174769
0.00189768
0.00203288
0.00215327
0.00226057
0.0023563
0.00244189
0.00251871
0.002588
0.00265083
0.00270809
0.0027605
0.00280865
0.00285301
0.00289398
0.00293188
0.00296701
0.00299961
0.00302989
0.00305804
0.00308423
0.00310873
0.00313188
0.00315408
0.00317555
0.00319604
0.00321528
0.0032316
0.00325123
0.000888919
0.000683302
0.000584058
0.000545722
0.000528445
0.000519532
0.000514695
0.000512189
0.00051109
0.000510858
0.000511197
0.000511925
0.000512937
0.000514163
0.000515558
0.000517083
0.000518707
0.000520402
0.000522147
0.000523919
0.000525704
0.000527488
0.00052926
0.000531008
0.000532723
0.0005344
0.000536037
0.000537643
0.000539224
0.000540773
0.000542254
0.000543612
0.000544793
0.000545787
0.000546952
0.001158
0.000744788
0.00068906
0.000709081
0.000745125
0.000783321
0.000819454
0.000852234
0.000881527
0.000907596
0.000930805
0.000951466
0.000969875
0.000986288
0.00100091
0.00101389
0.00102536
0.00103543
0.0010442
0.00105177
0.00105824
0.00106372
0.00106834
0.00107222
0.00107549
0.00107824
0.00108057
0.00108258
0.00108438
0.00108611
0.00108786
0.00108959
0.00109139
0.00109213
0.00109533
0.00166901
0.0011753
0.00105271
0.00112053
0.0012739
0.001461
0.00165759
0.00185025
0.00203184
0.0021993
0.00235188
0.0024901
0.00261505
0.00272806
0.00283052
0.00292371
0.00300884
0.00308697
0.00315903
0.00322587
0.00328823
0.00334675
0.00340193
0.00345412
0.00350355
0.00355049
0.00359544
0.00363927
0.00368289
0.0037264
0.00376811
0.0038043
0.00383113
0.00384835
0.00386473
0.00125144
0.000812551
0.000754879
0.000787021
0.000836031
0.000885761
0.00093226
0.000974145
0.00101118
0.0010438
0.00107263
0.00109829
0.00112129
0.00114212
0.00116116
0.00117874
0.00119513
0.00121056
0.0012252
0.0012392
0.00125271
0.00126582
0.00127862
0.00129112
0.00130329
0.00131513
0.00132674
0.00133841
0.0013505
0.00136307
0.00137545
0.00138603
0.001393
0.00139594
0.00139759
0.00086954
0.000670374
0.000567969
0.000529766
0.00051288
0.000504159
0.000499542
0.000497211
0.000496215
0.000496005
0.000496262
0.000496778
0.0004974
0.000498008
0.000498507
0.000498829
0.000498929
0.000498789
0.000498411
0.000497811
0.000497015
0.000496054
0.000494962
0.000493772
0.000492511
0.000491205
0.000489873
0.000488531
0.000487195
0.000485882
0.000484605
0.000483413
0.00048226
0.000481419
0.000479851
0.00166928
0.0011492
0.000896717
0.000759289
0.000682374
0.000646994
0.000649982
0.000695098
0.000786151
0.000922857
0.00110174
0.00131771
0.00156339
0.00182924
0.00210519
0.00238243
0.00265427
0.00291613
0.00316519
0.00339985
0.00361963
0.00382485
0.0040163
0.00419501
0.00436215
0.00451886
0.00466626
0.00480535
0.00493711
0.00506246
0.00518231
0.00529747
0.00540879
0.00551635
0.00562277
0.00167408
0.00117179
0.00101768
0.00106907
0.00123652
0.00145277
0.00168456
0.0019155
0.00213633
0.00234233
0.00253171
0.00270453
0.00286177
0.00300474
0.00313474
0.00325305
0.00336082
0.00345909
0.00354879
0.00363078
0.00370583
0.0037747
0.00383802
0.0038964
0.00395032
0.00400016
0.0040464
0.00408974
0.00413116
0.00417149
0.00421063
0.00424675
0.00427693
0.00429816
0.00431612
0.00167395
0.00116738
0.000968552
0.000953066
0.00107271
0.00127611
0.00151917
0.00177576
0.00202901
0.00226803
0.0024865
0.00268018
0.00284767
0.00298891
0.00310485
0.00319735
0.00326898
0.00332262
0.00336122
0.00338755
0.00340409
0.003413
0.00341609
0.0034149
0.00341068
0.00340442
0.00339688
0.00338853
0.00337957
0.00337015
0.00336063
0.00335205
0.00334671
0.0033462
0.00335481
0.00136648
0.000925648
0.00086716
0.000901981
0.000954467
0.00100833
0.00105925
0.0011055
0.00114631
0.0011822
0.0012139
0.00124195
0.00126687
0.00128907
0.00130891
0.00132661
0.00134235
0.00135628
0.00136849
0.00137913
0.0013883
0.00139615
0.00140284
0.00140853
0.00141337
0.0014175
0.00142103
0.00142405
0.00142661
0.00142879
0.00143076
0.00143267
0.00143529
0.00143786
0.00144652
0.00167311
0.00116027
0.000960486
0.000943133
0.00105342
0.00123841
0.00145935
0.00169607
0.00193582
0.00216985
0.00239281
0.00260188
0.00279605
0.00297535
0.00314027
0.00329148
0.00342973
0.00355577
0.00367032
0.00377411
0.00386792
0.00395254
0.00402879
0.00409756
0.00415969
0.00421601
0.00426727
0.0043142
0.00435751
0.00439792
0.00443614
0.00447258
0.00450789
0.00454121
0.00457829
0.00166919
0.00114693
0.000893839
0.000756197
0.000679133
0.000643731
0.000647298
0.000694352
0.000789186
0.000930928
0.00111469
0.00133423
0.00158195
0.00184893
0.00212629
0.0024065
0.0026839
0.00295461
0.00321619
0.00346724
0.00370714
0.00393578
0.00415339
0.00436034
0.00455706
0.004744
0.00492177
0.00509123
0.00525349
0.00540953
0.00555941
0.0057016
0.00583343
0.00595275
0.00606348
0.0016689
0.0011455
0.000891487
0.000750562
0.000664263
0.000607293
0.000567522
0.00053866
0.000517327
0.000501777
0.00049132
0.000486065
0.000486797
0.000494905
0.00051227
0.000541151
0.000584086
0.000643918
0.000723802
0.00082692
0.000955805
0.00111158
0.00129348
0.00149892
0.00172399
0.0019641
0.00221477
0.00247213
0.00273322
0.00299601
0.00325919
0.00352178
0.0037826
0.00404009
0.00429082
0.000819046
0.000625336
0.000532361
0.000497181
0.000481513
0.000473351
0.000468867
0.0004665
0.000465395
0.000465085
0.000465308
0.000465908
0.000466782
0.000467862
0.000469098
0.000470449
0.000471881
0.000473362
0.000474865
0.000476365
0.000477842
0.00047928
0.000480666
0.00048199
0.000483247
0.000484434
0.00048555
0.000486599
0.000487586
0.000488518
0.000489397
0.000490233
0.000490998
0.000491735
0.000492262
0.00106578
0.000750614
0.00069547
0.000689337
0.000695602
0.000706933
0.000719611
0.000732032
0.000743574
0.000753972
0.000763054
0.000770671
0.000776676
0.000780974
0.000783559
0.000784502
0.000783939
0.000782059
0.000779076
0.000775214
0.000770682
0.000765673
0.000760352
0.000754859
0.000749309
0.000743789
0.000738355
0.000733024
0.000727792
0.000722667
0.000717739
0.000713189
0.000709537
0.000706376
0.000706013
0.00165519
0.00118043
0.00109481
0.00117331
0.00131065
0.00146497
0.00161803
0.00176149
0.00189198
0.00200896
0.00211309
0.00220558
0.00228772
0.0023607
0.0024255
0.00248294
0.00253365
0.00257818
0.00261706
0.00265078
0.00267987
0.00270485
0.00272627
0.00274464
0.00276048
0.00277423
0.00278627
0.00279688
0.00280629
0.00281473
0.00282257
0.00283018
0.00283873
0.00284761
0.00286474
0.0015396
0.00105551
0.000977315
0.0010362
0.00113243
0.00123249
0.00132621
0.00141075
0.00148576
0.00155194
0.0016103
0.00166189
0.00170775
0.00174878
0.00178582
0.00181956
0.00185057
0.00187933
0.00190622
0.00193159
0.00195568
0.00197871
0.00200084
0.00202213
0.00204259
0.00206226
0.00208135
0.00210022
0.00211931
0.00213863
0.00215729
0.00217336
0.00218493
0.00219176
0.00219805
0.000773023
0.000507472
0.000448034
0.000432421
0.000431259
0.000435569
0.000441824
0.00044861
0.000455357
0.000461838
0.000467962
0.000473689
0.000479014
0.00048394
0.000488474
0.000492616
0.000496366
0.000499725
0.000502696
0.000505287
0.000507516
0.000509407
0.000510991
0.000512305
0.000513387
0.000514273
0.000514997
0.000515593
0.000516103
0.000516573
0.000517038
0.000517482
0.00051793
0.000518025
0.00051876
0.000938392
0.000655938
0.000591533
0.00057312
0.00057069
0.000574892
0.000581802
0.000589587
0.000597417
0.000604958
0.000612103
0.000618847
0.000625233
0.000631324
0.000637177
0.000642839
0.000648347
0.000653728
0.000659002
0.000664183
0.000669284
0.000674317
0.000679285
0.000684176
0.000688966
0.000693636
0.000698215
0.000702796
0.000707494
0.000712321
0.000717026
0.000721029
0.000723778
0.000725056
0.000726617
0.00118868
0.000764492
0.000715159
0.000743595
0.00078516
0.000827216
0.000865171
0.000898682
0.000927781
0.00095274
0.000973585
0.00099022
0.00100259
0.00101076
0.00101498
0.00101563
0.00101322
0.0010083
0.00100144
0.000993159
0.000983903
0.000974051
0.000963901
0.000953681
0.000943543
0.000933573
0.000923797
0.000914207
0.000904825
0.000895769
0.000887346
0.000879902
0.000874185
0.000868942
0.000868023
0.00167394
0.00117295
0.00102176
0.00107596
0.00124543
0.00146312
0.00169567
0.00192662
0.00214688
0.00235195
0.00254024
0.0027119
0.00286797
0.00300982
0.00313882
0.00325629
0.00336342
0.0034613
0.0035509
0.00363309
0.00370869
0.00377844
0.00384299
0.0039029
0.00395856
0.00401033
0.00405867
0.00410432
0.00414831
0.0041914
0.00423321
0.00427136
0.00430244
0.00432348
0.00434145
0.0016692
0.00115012
0.000896769
0.000756843
0.000673453
0.000623989
0.000600547
0.00060288
0.000634778
0.000700811
0.000803844
0.000944789
0.00112311
0.00133582
0.00157644
0.00183577
0.00210421
0.00237374
0.00263879
0.0028961
0.00314405
0.00338191
0.00360939
0.00382644
0.00403311
0.00422959
0.00441618
0.00459335
0.00476176
0.0049222
0.00507552
0.00522235
0.00536305
0.00549679
0.00562525
0.00166919
0.00114688
0.000893956
0.000757152
0.000682205
0.00065096
0.00066134
0.000717704
0.000823286
0.000976394
0.00117196
0.001403
0.00166037
0.00193387
0.00221417
0.00249409
0.00276869
0.00303486
0.00329079
0.00353558
0.00376896
0.003991
0.00420199
0.00440233
0.00459246
0.00477285
0.00494414
0.00510717
0.00526299
0.00541254
0.00555602
0.00569233
0.00581939
0.00593535
0.00604343
0.000814367
0.000620591
0.000527649
0.000492445
0.000476637
0.000468375
0.000463861
0.000461479
0.000460373
0.000460067
0.000460295
0.000460897
0.000461769
0.000462842
0.000464064
0.000465391
0.000466785
0.000468214
0.000469647
0.000471058
0.000472427
0.000473737
0.000474978
0.000476142
0.000477227
0.000478232
0.000479159
0.000480014
0.000480804
0.000481538
0.00048222
0.000482867
0.000483457
0.000484047
0.000484423
0.00166634
0.00119147
0.00109942
0.0011951
0.00136379
0.00155572
0.00174936
0.00193297
0.00210008
0.00224683
0.00237064
0.00247097
0.00254819
0.00260365
0.00263954
0.00265866
0.00266403
0.00265863
0.00264513
0.0026258
0.00260249
0.00257664
0.00254943
0.00252176
0.00249427
0.00246724
0.00244052
0.00241358
0.00238593
0.00235807
0.00233261
0.0023147
0.0023108
0.00232218
0.00234208
0.00166668
0.00119127
0.00109785
0.0011922
0.00136027
0.00155258
0.00174748
0.00193283
0.00210188
0.00225059
0.00237635
0.00247843
0.00255715
0.00261386
0.00265075
0.00267062
0.00267653
0.00267149
0.00265821
0.00263903
0.00261587
0.0025902
0.00256313
0.00253546
0.00250763
0.00247983
0.00245211
0.00242465
0.00239814
0.00237401
0.00235432
0.00234058
0.0023321
0.00232201
0.00230086
0.00167396
0.00116748
0.000967887
0.000948734
0.00105903
0.00124703
0.00147272
0.00171387
0.00195455
0.00218326
0.00239205
0.00257567
0.00273137
0.0028587
0.00295898
0.00303471
0.003089
0.00312519
0.00314651
0.00315594
0.00315611
0.00314927
0.00313729
0.00312167
0.00310355
0.00308374
0.00306278
0.00304106
0.00301904
0.00299753
0.00297789
0.00296171
0.00295029
0.00294203
0.00293505
0.00166913
0.00115001
0.000896566
0.000755796
0.000669668
0.000613434
0.00057572
0.000551449
0.000539148
0.00053984
0.000556443
0.000593123
0.000654432
0.000744656
0.000867658
0.00102654
0.00122251
0.00145363
0.00171473
0.00199831
0.00229586
0.00259921
0.00290145
0.00319731
0.00348314
0.00375673
0.00401696
0.00426355
0.00449674
0.00471714
0.00492564
0.00512328
0.00531137
0.00549059
0.0056633
0.001669
0.00114716
0.000893324
0.000752614
0.000667073
0.000612292
0.000577577
0.000558898
0.000556087
0.000571404
0.00060832
0.00067039
0.000760704
0.000881994
0.0010363
0.00122371
0.00144133
0.00168351
0.00194299
0.0022124
0.00248527
0.00275657
0.00302277
0.00328159
0.00353176
0.00377269
0.00400434
0.00422703
0.00444142
0.00464832
0.00484856
0.00504259
0.00523038
0.0054112
0.00558457
0.00167219
0.0011618
0.000948261
0.00090504
0.000992918
0.00117139
0.00139775
0.00164522
0.00189649
0.00213802
0.00235936
0.00255305
0.00271634
0.00284916
0.00295311
0.00303096
0.00308603
0.00312185
0.00314183
0.00314908
0.00314635
0.003136
0.00312004
0.00310014
0.00307763
0.00305338
0.00302777
0.00300073
0.00297218
0.00294289
0.00291562
0.00289557
0.00288898
0.00289751
0.00291285
0.00167228
0.0011621
0.00094937
0.000908029
0.000998535
0.00117906
0.0014063
0.00165376
0.00190447
0.00214516
0.00236561
0.00255848
0.002721
0.00285311
0.00295644
0.00303371
0.00308825
0.00312358
0.00314313
0.00315002
0.00314704
0.00313655
0.0031205
0.00310045
0.00307751
0.00305245
0.00302585
0.0029983
0.0029708
0.00294498
0.00292305
0.00290669
0.00289535
0.00288296
0.00285939
0.00086795
0.000665584
0.000564584
0.000525046
0.000507606
0.000498844
0.000494165
0.000491773
0.000490746
0.00049056
0.000490923
0.000491661
0.000492668
0.000493872
0.00049523
0.00049671
0.00049829
0.000499948
0.000501668
0.000503436
0.000505238
0.000507063
0.000508899
0.000510737
0.000512567
0.000514382
0.000516181
0.000517966
0.000519737
0.000521482
0.000523168
0.000524756
0.000526224
0.00052753
0.000529227
0.000872591
0.000667037
0.000574202
0.000538796
0.000522757
0.000514509
0.000510091
0.000507856
0.000506923
0.000506794
0.000507193
0.000507959
0.000508995
0.000510236
0.00051164
0.000513171
0.000514802
0.000516507
0.000518268
0.000520068
0.000521893
0.000523735
0.000525581
0.000527422
0.000529249
0.000531055
0.000532843
0.000534621
0.000536396
0.000538155
0.000539844
0.000541386
0.00054272
0.000543846
0.000545283
0.00166882
0.00114311
0.000888587
0.000747475
0.000661176
0.00060421
0.000564313
0.000535036
0.000512726
0.000495193
0.000481061
0.000469425
0.000459674
0.000451378
0.000444235
0.000438026
0.000432593
0.000427831
0.000423675
0.000420103
0.000417138
0.000414854
0.000413386
0.000412945
0.000413831
0.000416456
0.000421359
0.000429232
0.000440942
0.000457563
0.000480418
0.000511152
0.000551772
0.000604665
0.000670773
0.00141954
0.000961666
0.000895815
0.000936771
0.00100129
0.00106856
0.00113196
0.00118899
0.00123937
0.00128364
0.0013225
0.0013566
0.00138657
0.00141293
0.00143608
0.00145631
0.00147384
0.00148889
0.00150164
0.0015123
0.00152109
0.00152825
0.00153402
0.00153863
0.00154231
0.00154525
0.00154759
0.00154941
0.00155077
0.00155174
0.00155252
0.00155334
0.00155524
0.00155745
0.00156764
0.00166985
0.00114928
0.000901633
0.000780415
0.000740775
0.000774621
0.000880564
0.00104807
0.00126123
0.00150647
0.0017722
0.00204791
0.00232479
0.00259607
0.00285709
0.00310483
0.00333762
0.00355489
0.00375654
0.0039429
0.00411458
0.00427245
0.00441755
0.00455099
0.00467392
0.00478746
0.00489272
0.00499086
0.00508316
0.00517088
0.00525485
0.00533488
0.00540989
0.0054776
0.00554171
0.00116226
0.000759215
0.000698236
0.000708153
0.000733829
0.000764402
0.000795086
0.000823994
0.000850133
0.000873324
0.000893763
0.000911669
0.000927232
0.000940595
0.000951869
0.00096114
0.000968512
0.000974122
0.000978139
0.000980755
0.000982176
0.000982612
0.000982266
0.000981326
0.000979954
0.000978274
0.000976364
0.000974262
0.000971989
0.000969593
0.000967252
0.00096522
0.000964286
0.000964015
0.000968447
0.00167014
0.00115089
0.000906096
0.000792753
0.000768935
0.000826649
0.00095837
0.00114681
0.00137429
0.00162695
0.00189291
0.00216223
0.00242761
0.00268387
0.0029276
0.00315688
0.00337028
0.00356704
0.00374705
0.00391062
0.00405862
0.00419227
0.00431296
0.00442217
0.00452134
0.00461187
0.00469497
0.00477175
0.00484316
0.00491013
0.00497357
0.00503429
0.00509347
0.00515108
0.00521217
0.00167669
0.00119527
0.00108016
0.00116404
0.00133994
0.0015488
0.00176414
0.00197176
0.00216436
0.00233839
0.00249241
0.00262596
0.00273919
0.00283276
0.00290778
0.00296575
0.00300859
0.00303842
0.00305745
0.00306781
0.00307145
0.00307005
0.00306502
0.00305752
0.00304848
0.00303861
0.00302843
0.00301824
0.00300816
0.00299819
0.00298851
0.00297971
0.00297352
0.00297042
0.00297612
0.00117321
0.00076904
0.000717673
0.000739095
0.000775092
0.000813161
0.000849408
0.000882501
0.000912208
0.000938731
0.000962372
0.000983413
0.00100209
0.00101864
0.00103323
0.00104602
0.00105713
0.00106668
0.00107478
0.00108157
0.00108717
0.00109173
0.00109538
0.00109829
0.00110058
0.00110239
0.00110381
0.00110495
0.0011059
0.0011068
0.00110774
0.00110871
0.00110989
0.0011102
0.00111291
0.00149706
0.00104224
0.00098357
0.001041
0.00112675
0.00121494
0.00129754
0.00137219
0.00143859
0.00149729
0.00154906
0.00159452
0.0016345
0.00166957
0.00170022
0.00172684
0.0017498
0.00176942
0.00178601
0.0017999
0.00181139
0.00182081
0.00182849
0.00183472
0.00183978
0.00184394
0.00184738
0.00185031
0.0018529
0.00185537
0.00185792
0.00186055
0.00186351
0.00186515
0.00187069
0.000918761
0.000626005
0.000567335
0.00055527
0.000556604
0.000563242
0.000571823
0.000580817
0.000589644
0.000598061
0.000605942
0.000613208
0.00061982
0.000625746
0.000630963
0.000635457
0.000639227
0.00064229
0.000644679
0.000646444
0.000647648
0.000648361
0.000648662
0.000648626
0.000648328
0.000647832
0.000647196
0.000646464
0.000645679
0.000644882
0.000644128
0.000643433
0.00064296
0.000642224
0.000642891
0.00138581
0.000936527
0.000880514
0.000924107
0.000986337
0.00104777
0.00110385
0.00115359
0.00119737
0.00123586
0.00126984
0.00129994
0.00132682
0.00135105
0.00137311
0.00139341
0.00141228
0.00142998
0.00144669
0.00146256
0.00147768
0.00149212
0.00150595
0.00151919
0.00153184
0.00154391
0.0015554
0.00156643
0.00157714
0.0015877
0.0015981
0.00160797
0.00161693
0.00162392
0.00163227
0.00157031
0.00112618
0.00107266
0.00113546
0.00122695
0.00132072
0.00140852
0.00148769
0.00155783
0.00161957
0.00167394
0.00172204
0.00176489
0.00180337
0.00183822
0.00187005
0.00189934
0.00192649
0.00195184
0.00197565
0.00199817
0.00201961
0.00204013
0.00205981
0.00207865
0.00209663
0.00211393
0.00213098
0.00214835
0.00216628
0.00218389
0.00219884
0.00220849
0.00221152
0.00221392
0.000872801
0.000677881
0.000576373
0.000537693
0.000520422
0.000511489
0.000506741
0.000504316
0.000503238
0.000502951
0.000503122
0.000503522
0.000503979
0.000504356
0.000504555
0.000504509
0.000504183
0.000503573
0.000502694
0.000501576
0.000500257
0.000498778
0.000497181
0.000495501
0.00049377
0.000492014
0.000490254
0.000488505
0.000486781
0.000485099
0.00048347
0.000481942
0.000480459
0.00047933
0.000477402
0.000759709
0.000574636
0.000487902
0.000454393
0.000439435
0.00043186
0.000427803
0.000425731
0.000424839
0.000424669
0.000424968
0.000425591
0.00042645
0.000427488
0.000428666
0.000429955
0.000431335
0.000432786
0.000434295
0.000435849
0.000437439
0.000439054
0.000440687
0.000442329
0.000443973
0.000445616
0.000447261
0.000448912
0.00045057
0.000452216
0.000453804
0.000455278
0.000456618
0.000457809
0.000459475
0.000862863
0.000665491
0.000564886
0.000526228
0.000509305
0.000500583
0.000495741
0.000493136
0.00049188
0.000491487
0.000491666
0.000492246
0.000493118
0.000494211
0.000495474
0.00049687
0.000498365
0.000499932
0.000501545
0.000503181
0.000504822
0.00050645
0.000508052
0.000509615
0.000511131
0.000512593
0.000513998
0.000515346
0.000516641
0.000517885
0.000519073
0.000520204
0.000521251
0.000522218
0.000523113
0.000840326
0.000644983
0.000548236
0.000510901
0.000494271
0.00048573
0.000481094
0.000478687
0.000477617
0.000477372
0.000477668
0.000478337
0.000479276
0.000480417
0.000481715
0.000483133
0.000484639
0.000486207
0.000487813
0.000489435
0.000491058
0.000492668
0.000494254
0.000495806
0.000497317
0.000498781
0.000500198
0.000501575
0.000502918
0.000504226
0.00050547
0.000506611
0.000507603
0.000508437
0.000509345
0.00166513
0.00118487
0.00109557
0.00118982
0.00135259
0.00153537
0.00171784
0.00189023
0.00204837
0.00219119
0.00231917
0.00243354
0.00253594
0.00262795
0.00271091
0.00278597
0.00285412
0.00291617
0.00297283
0.00302468
0.00307227
0.00311611
0.00315663
0.0031942
0.00322906
0.00326142
0.00329157
0.00332005
0.00334764
0.00337497
0.0034018
0.00342623
0.00344557
0.00345685
0.00346681
0.00167192
0.00118646
0.00107787
0.00115932
0.00132015
0.00150808
0.00170027
0.00188496
0.00205684
0.00221405
0.00235654
0.00248517
0.00260113
0.00270573
0.0028002
0.00288564
0.00296294
0.00303289
0.00309613
0.00315326
0.00320481
0.0032513
0.00329321
0.00333104
0.00336526
0.00339629
0.00342454
0.00345039
0.00347425
0.00349655
0.00351774
0.00353802
0.0035579
0.00357623
0.00359969
0.000818241
0.00062712
0.000533372
0.000497594
0.000481806
0.000473617
0.000469074
0.000466653
0.0004655
0.000465156
0.000465348
0.000465919
0.000466766
0.000467821
0.000469036
0.000470374
0.000471802
0.000473293
0.000474821
0.000476363
0.0004779
0.000479417
0.0004809
0.000482339
0.000483724
0.000485052
0.000486319
0.000487527
0.00048868
0.000489783
0.000490832
0.000491831
0.000492751
0.000493614
0.000494332
0.00167261
0.00115696
0.000953854
0.000933293
0.00104315
0.00123175
0.00145873
0.0017027
0.00195047
0.00219275
0.00242374
0.00264039
0.00284158
0.00302739
0.00319856
0.00335617
0.00350144
0.00363557
0.00375974
0.00387503
0.00398245
0.0040829
0.00417716
0.00426585
0.00434945
0.00442841
0.00450342
0.00457547
0.00464563
0.0047143
0.00478021
0.00483994
0.00488966
0.00492833
0.00496418
0.00132073
0.00089226
0.000840935
0.000878563
0.000932871
0.000986998
0.00103673
0.00108103
0.0011201
0.00115449
0.00118489
0.00121187
0.00123598
0.00125773
0.00127758
0.0012959
0.00131299
0.00132907
0.00134433
0.00135889
0.00137284
0.00138624
0.00139915
0.00141158
0.00142353
0.00143497
0.00144594
0.00145652
0.00146689
0.00147719
0.00148738
0.00149696
0.00150544
0.00151182
0.00151876
0.00166991
0.00115322
0.000904419
0.000777509
0.000725446
0.000738395
0.000817421
0.000958408
0.00114946
0.00137702
0.00162758
0.00188784
0.00214637
0.00239485
0.00262814
0.00284352
0.00303991
0.00321721
0.00337595
0.00351709
0.0036419
0.00375187
0.00384862
0.00393381
0.00400905
0.00407589
0.00413573
0.00418981
0.00423915
0.00428463
0.00432704
0.00436723
0.00440657
0.00444547
0.00448845
0.00156347
0.00109979
0.00104368
0.00112581
0.00124001
0.00135174
0.00145221
0.00154027
0.00161693
0.00168362
0.00174158
0.00179174
0.00183482
0.00187134
0.00190177
0.00192655
0.00194616
0.00196111
0.00197199
0.00197938
0.00198389
0.00198607
0.00198647
0.00198552
0.00198363
0.00198113
0.00197828
0.00197526
0.00197219
0.00196916
0.00196631
0.00196378
0.00196239
0.00196085
0.00196641
0.00160982
0.00113514
0.00106399
0.0011415
0.00126402
0.00139351
0.00151654
0.00162849
0.00172836
0.00181674
0.00189471
0.00196359
0.00202474
0.00207939
0.00212857
0.00217308
0.00221362
0.00225071
0.00228478
0.00231621
0.0023453
0.00237234
0.00239758
0.0024212
0.00244332
0.002464
0.00248341
0.00250192
0.00252011
0.00253844
0.00255663
0.00257304
0.00258554
0.00259137
0.00259873
0.000868376
0.000669371
0.000568397
0.000528279
0.000510458
0.00050146
0.000496628
0.000494136
0.000493041
0.000492807
0.000493131
0.000493836
0.000494814
0.000495995
0.000497336
0.000498804
0.000500375
0.000502028
0.000503746
0.000505515
0.000507321
0.000509155
0.000511006
0.000512862
0.000514715
0.00051656
0.000518397
0.000520229
0.000522055
0.000523857
0.000525595
0.000527221
0.000528715
0.00053006
0.000531863
0.000771371
0.00058366
0.000495728
0.000461846
0.00044678
0.000439174
0.000435117
0.000433061
0.000432189
0.000432042
0.000432365
0.000433013
0.000433899
0.000434964
0.000436171
0.000437489
0.000438898
0.000440378
0.000441915
0.000443496
0.000445112
0.000446754
0.000448413
0.000450082
0.000451752
0.000453421
0.00045509
0.000456767
0.000458451
0.000460125
0.000461741
0.000463241
0.000464599
0.0004658
0.000467475
0.00167015
0.00115293
0.000906998
0.00078892
0.00075635
0.000802771
0.000924918
0.00110789
0.0013327
0.00158312
0.00184566
0.00210914
0.00236509
0.00260759
0.00283287
0.00303887
0.00322486
0.00339112
0.00353864
0.00366886
0.00378346
0.00388424
0.00397297
0.00405137
0.00412102
0.00418338
0.00423972
0.00429115
0.00433858
0.00438281
0.00442457
0.00446457
0.00450393
0.00454259
0.0045854
0.000853602
0.000536892
0.000501711
0.000511077
0.000529529
0.000550617
0.000571316
0.000590184
0.000606636
0.00062044
0.000631534
0.000639785
0.000645105
0.000647533
0.000647266
0.000644628
0.000640023
0.000633874
0.00062657
0.000618468
0.00060986
0.000600991
0.000592059
0.000583229
0.00057461
0.000566224
0.000557993
0.000549763
0.000541446
0.000533262
0.000525985
0.000520882
0.000519385
0.000520691
0.000523716
0.00087559
0.00055182
0.00051783
0.000530066
0.000551161
0.000574445
0.000596847
0.000617064
0.000634654
0.000649328
0.000661107
0.00066987
0.000675535
0.000678145
0.000677904
0.000675151
0.000670309
0.000663836
0.000656144
0.000647621
0.000638588
0.000629302
0.000619955
0.000610678
0.000601534
0.000592532
0.000583669
0.000574998
0.000566716
0.000559203
0.000552958
0.000548192
0.000544596
0.000539635
0.000532254
0.00167003
0.00115426
0.00090546
0.000778752
0.000726627
0.000738398
0.000814344
0.000950978
0.00113815
0.0013634
0.00161299
0.00187228
0.00212839
0.00237228
0.00259878
0.00280573
0.00299267
0.00315986
0.00330794
0.00343789
0.003551
0.00364883
0.00373307
0.00380552
0.00386794
0.00392199
0.0039692
0.00401085
0.00404798
0.00408146
0.00411207
0.00414073
0.00416909
0.00419812
0.00423232
0.00166932
0.00114678
0.000894736
0.000761034
0.000693573
0.000677364
0.000712957
0.00080355
0.000946748
0.00113536
0.00136127
0.00161553
0.00188814
0.00216936
0.00245111
0.00272753
0.00299485
0.00325096
0.00349487
0.00372634
0.0039456
0.00415314
0.00434963
0.00453573
0.00471208
0.00487933
0.00503822
0.00518979
0.00533528
0.00547555
0.00561026
0.00573717
0.00585294
0.00595561
0.00605001
0.00162769
0.00117135
0.00111388
0.00120668
0.00134597
0.00149487
0.00163805
0.00176875
0.00188419
0.00198276
0.00206411
0.00212835
0.00217597
0.00220801
0.00222609
0.00223225
0.00222874
0.00221772
0.00220119
0.00218085
0.00215807
0.00213389
0.00210908
0.0020842
0.0020595
0.00203505
0.00201082
0.00198691
0.00196392
0.00194308
0.00192622
0.0019146
0.00190762
0.00189877
0.00188035
0.00162233
0.00116653
0.00110933
0.00119925
0.00133416
0.00147786
0.00161546
0.00174059
0.0018508
0.00194463
0.00202184
0.00208261
0.00212743
0.00215733
0.00217386
0.00217901
0.00217491
0.00216366
0.00214715
0.00212697
0.00210442
0.00208047
0.00205593
0.00203144
0.00200743
0.00198405
0.00196109
0.00193801
0.00191431
0.00189042
0.00186866
0.00185362
0.00185103
0.00186161
0.00188026
0.00166882
0.001143
0.000888437
0.000747311
0.000661011
0.000604047
0.000564154
0.000534879
0.000512571
0.000495042
0.000480913
0.000469282
0.000459537
0.000451253
0.000444127
0.000437943
0.000432547
0.000427835
0.000423742
0.000420244
0.000417354
0.000415127
0.000413667
0.000413135
0.000413762
0.00041586
0.000419844
0.000426253
0.000435772
0.000449271
0.00046784
0.000492842
0.000525939
0.000569061
0.000622941
0.00166896
0.00114726
0.000893476
0.000752595
0.00066626
0.000609222
0.000569362
0.000540383
0.000518884
0.000503094
0.000492304
0.000486615
0.000486853
0.000494521
0.000511751
0.000541217
0.000586036
0.00064975
0.00073637
0.000850146
0.000994865
0.00117291
0.00138459
0.00162787
0.00189854
0.002191
0.00249906
0.00281667
0.00313849
0.00346022
0.00377864
0.00409143
0.00439677
0.00469269
0.00497632
0.00072946
0.00054902
0.000467318
0.000436244
0.000421868
0.000414287
0.000410229
0.0004082
0.000407352
0.000407213
0.000407521
0.000408121
0.000408912
0.000409822
0.000410792
0.000411773
0.00041272
0.000413599
0.000414383
0.000415055
0.000415608
0.000416041
0.000416359
0.000416572
0.000416691
0.00041673
0.000416699
0.000416612
0.00041648
0.000416317
0.000416136
0.00041597
0.000415797
0.000415761
0.000415314
0.000807786
0.000536993
0.000474299
0.000457019
0.00045494
0.000458882
0.00046516
0.000472122
0.000479055
0.000485691
0.000491949
0.000497831
0.000503377
0.00050864
0.000513674
0.00051853
0.00052325
0.000527867
0.000532407
0.000536893
0.000541343
0.00054577
0.000550178
0.000554558
0.000558891
0.000563173
0.000567438
0.000571766
0.000576241
0.000580837
0.000585301
0.000589135
0.00059188
0.000593622
0.000595395
0.00144128
0.000979784
0.000922614
0.000984812
0.00107476
0.0011651
0.00124802
0.00132179
0.00138676
0.00144385
0.0014941
0.00153843
0.00157767
0.00161245
0.00164331
0.00167068
0.00169492
0.00171632
0.00173513
0.00175157
0.00176589
0.0017783
0.00178906
0.00179839
0.00180652
0.00181363
0.0018199
0.00182553
0.00183074
0.0018358
0.00184088
0.00184583
0.00185044
0.00185309
0.00185759
0.00165411
0.0011959
0.00113067
0.0012227
0.00136735
0.00152527
0.00167919
0.00182137
0.00194841
0.00205861
0.00215126
0.00222607
0.00228341
0.00232431
0.0023504
0.0023637
0.00236647
0.00236092
0.00234909
0.00233274
0.00231332
0.00229196
0.00226959
0.0022469
0.00222443
0.00220246
0.00218102
0.00215982
0.00213847
0.00211698
0.00209654
0.00207995
0.00207164
0.00207308
0.0020851
0.00166546
0.001208
0.00114452
0.00124691
0.00140559
0.00157799
0.00174572
0.00190033
0.00203837
0.00215853
0.00226002
0.00234264
0.00240671
0.00245313
0.00248348
0.00249984
0.00250458
0.00250008
0.00248859
0.00247207
0.00245215
0.00243012
0.00240697
0.00238338
0.00235983
0.00233653
0.00231355
0.00229088
0.00226872
0.00224769
0.002229
0.00221402
0.00220389
0.00219585
0.00218941
0.00166923
0.00114718
0.000894368
0.000758233
0.000685199
0.000658359
0.000677268
0.000747202
0.000870175
0.00104175
0.00125446
0.00149969
0.00176743
0.00204738
0.0023307
0.00261085
0.00288348
0.00314595
0.00339678
0.00363539
0.00386179
0.00407631
0.00427942
0.00447166
0.00465356
0.00482568
0.00498867
0.00514335
0.00529073
0.00543182
0.00556696
0.00569533
0.0058152
0.0059249
0.00602733
0.00166897
0.00114731
0.000893462
0.000752562
0.000666279
0.000609487
0.000570301
0.000542847
0.000524434
0.000514396
0.000513603
0.000524198
0.000549281
0.000592444
0.000657336
0.000747461
0.000866019
0.00101503
0.00119422
0.00140056
0.00162889
0.00187321
0.00212783
0.00238829
0.00265176
0.00291637
0.00318082
0.00344422
0.0037059
0.0039653
0.00422187
0.00447489
0.00472321
0.00496495
0.00519796
0.00166913
0.00114891
0.000895717
0.000755532
0.000671191
0.000619377
0.000591079
0.000584753
0.000603343
0.00065188
0.000734855
0.000854642
0.00101167
0.00120421
0.00142748
0.0016741
0.00193552
0.00220373
0.00247218
0.00273615
0.00299262
0.00323984
0.00347708
0.00370423
0.00392152
0.00412936
0.00432822
0.0045186
0.00470104
0.00487611
0.00504447
0.00520672
0.00536354
0.00551495
0.0056625
0.00089711
0.000691488
0.000588455
0.000548855
0.000531539
0.000522764
0.000517996
0.000515487
0.000514344
0.000514071
0.00051437
0.000515068
0.000516053
0.000517253
0.000518621
0.00052012
0.000521721
0.0005234
0.000525133
0.000526899
0.000528682
0.000530466
0.000532236
0.00053398
0.000535687
0.00053735
0.000538965
0.000540531
0.000542051
0.000543526
0.000544945
0.000546295
0.00054755
0.000548681
0.000549904
0.00167177
0.00115618
0.000935222
0.000878029
0.000945414
0.00110521
0.00132031
0.00156504
0.00182293
0.00208169
0.00233261
0.00257031
0.00279178
0.00299562
0.00318139
0.00334916
0.00349939
0.00363284
0.00375053
0.00385372
0.00394385
0.00402246
0.0040911
0.00415128
0.00420437
0.00425164
0.00429416
0.00433291
0.00436876
0.00440255
0.00443497
0.00446632
0.00449682
0.00452494
0.00455541
0.00166739
0.00117427
0.00105476
0.00112134
0.0012694
0.00144958
0.00163828
0.00182244
0.00199539
0.00215441
0.00229894
0.00242958
0.00254747
0.00265392
0.0027503
0.00283791
0.00291792
0.00299134
0.00305908
0.00312197
0.00318068
0.00323581
0.00328781
0.00333699
0.00338357
0.0034278
0.00347016
0.00351143
0.00355239
0.00359305
0.00363183
0.00366543
0.00369067
0.00370764
0.00372484
0.00166976
0.00114851
0.000899971
0.000776415
0.000731405
0.00075528
0.000846905
0.000997977
0.00119453
0.00142402
0.00167552
0.00193906
0.00220603
0.00247019
0.00272738
0.00297486
0.00321095
0.00343474
0.00364584
0.00384422
0.00403003
0.00420371
0.00436583
0.00451708
0.00465817
0.00478985
0.00491292
0.00502827
0.0051369
0.00523982
0.00533782
0.00543103
0.00551909
0.00560088
0.00567925
0.00154701
0.00107348
0.00100102
0.00105294
0.00113557
0.00122166
0.00130219
0.00137452
0.001438
0.001493
0.00154029
0.00158051
0.0016141
0.00164145
0.00166296
0.00167905
0.00169026
0.0016972
0.00170055
0.00170096
0.00169908
0.00169547
0.00169063
0.00168498
0.00167886
0.00167252
0.00166608
0.00165958
0.00165304
0.00164645
0.00164007
0.00163429
0.00163054
0.00162813
0.00163516
0.000795258
0.000606546
0.000515472
0.000480548
0.000464974
0.00045698
0.000452656
0.000450426
0.000449448
0.000449244
0.000449549
0.000450206
0.000451115
0.000452212
0.000453454
0.000454805
0.000456234
0.000457715
0.000459225
0.000460743
0.000462254
0.000463744
0.000465204
0.000466624
0.000467998
0.000469321
0.000470595
0.000471826
0.000473021
0.000474177
0.000475272
0.000476273
0.000477134
0.000477872
0.000478586
0.00095327
0.000742909
0.000633093
0.000590755
0.000571941
0.000562136
0.000556742
0.000553835
0.00055243
0.000551977
0.000552148
0.000552726
0.000553557
0.000554524
0.000555529
0.000556494
0.00055736
0.000558082
0.000558633
0.000559001
0.000559187
0.0005592
0.000559058
0.000558783
0.000558398
0.000557925
0.000557386
0.0005568
0.000556183
0.000555554
0.000554921
0.000554314
0.000553695
0.00055324
0.000552286
0.00084432
0.000551402
0.000487577
0.000472505
0.000473284
0.000479949
0.000488575
0.000497526
0.000506172
0.000514304
0.000521873
0.000528891
0.000535412
0.000541523
0.000547313
0.000552854
0.000558208
0.000563419
0.000568519
0.000573534
0.000578479
0.000583362
0.000588185
0.000592937
0.000597602
0.000602165
0.000606639
0.000611069
0.000615516
0.000619986
0.000624369
0.000628365
0.000631701
0.000634215
0.000636868
0.00157022
0.00110477
0.00104575
0.00112302
0.00123525
0.00134927
0.0014552
0.00155034
0.00163444
0.00170841
0.00177339
0.0018307
0.00188156
0.00192706
0.00196809
0.00200534
0.00203942
0.00207077
0.00209977
0.00212671
0.00215187
0.00217546
0.0021977
0.00221871
0.00223856
0.00225726
0.00227495
0.00229196
0.00230887
0.00232609
0.00234325
0.00235867
0.00237007
0.0023749
0.00238049
0.00100384
0.000676084
0.000615337
0.000607097
0.000613681
0.000625773
0.000639625
0.000653455
0.000666466
0.000678483
0.000689551
0.000699742
0.000709174
0.000717982
0.000726287
0.000734179
0.000741731
0.000748993
0.000755997
0.000762765
0.000769314
0.000775662
0.000781819
0.000787784
0.000793535
0.000799053
0.000804361
0.000809555
0.000814784
0.000820127
0.000825411
0.000830053
0.000833425
0.000834859
0.000836569
0.00167099
0.00115033
0.000918931
0.000840044
0.000876081
0.0010074
0.00120541
0.00144377
0.00170412
0.00197234
0.00223786
0.00249391
0.0027368
0.00296494
0.00317799
0.00337632
0.0035607
0.00373205
0.00389142
0.00403985
0.00417839
0.00430805
0.00442974
0.00454422
0.00465212
0.004754
0.00485063
0.00494313
0.0050328
0.00512028
0.0052044
0.0052815
0.00534711
0.00539955
0.00544715
0.00167073
0.00114959
0.000913478
0.000824152
0.000844397
0.000959693
0.00114543
0.00137475
0.00162912
0.00189513
0.00216229
0.00242315
0.00267308
0.00290963
0.00313181
0.00333957
0.0035334
0.00371408
0.00388252
0.00403972
0.00418667
0.00432436
0.00445367
0.00457536
0.00469008
0.00479841
0.00490111
0.00499922
0.00509397
0.00518601
0.00527449
0.00535639
0.00542784
0.0054871
0.00554118
0.00153759
0.00105663
0.000975043
0.00102311
0.00110727
0.0011983
0.00128596
0.00136624
0.00143748
0.00149988
0.00155425
0.00160138
0.00164193
0.00167642
0.0017053
0.00172892
0.0017477
0.00176211
0.00177267
0.00177994
0.00178448
0.00178682
0.00178746
0.00178685
0.00178536
0.00178326
0.00178074
0.00177789
0.00177472
0.00177131
0.00176793
0.00176509
0.00176415
0.00176499
0.00177315
0.000745573
0.000562576
0.000479098
0.000449948
0.000436901
0.000430087
0.000426463
0.000424594
0.000423718
0.00042338
0.000423275
0.000423185
0.000422943
0.000422432
0.000421586
0.000420387
0.000418851
0.000417017
0.000414939
0.000412672
0.00041027
0.000407782
0.000405248
0.000402701
0.000400163
0.000397652
0.000395182
0.000392772
0.000390443
0.000388229
0.000386145
0.00038421
0.000382269
0.000380552
0.000377647
0.00075603
0.000574114
0.000489098
0.000458669
0.000444868
0.000437587
0.000433707
0.00043173
0.000430834
0.000430515
0.000430448
0.000430396
0.000430181
0.000429683
0.000428837
0.000427626
0.000426068
0.000424205
0.000422092
0.000419786
0.000417342
0.00041481
0.000412232
0.000409643
0.00040707
0.000404527
0.000402023
0.000399559
0.000397148
0.000394824
0.000392646
0.000390718
0.000388977
0.000387687
0.000385298
0.000663194
0.000433165
0.000387791
0.000376859
0.000376771
0.000381084
0.000386921
0.00039298
0.000398648
0.000403598
0.000407659
0.000410661
0.00041247
0.000413028
0.000412369
0.000410604
0.000407896
0.000404433
0.0004004
0.000395972
0.0003913
0.000386506
0.000381682
0.000376891
0.000372166
0.00036752
0.000362962
0.000358523
0.000354298
0.000350446
0.000347153
0.000344464
0.000342171
0.00033924
0.000335082
0.000652151
0.000427325
0.00038148
0.0003695
0.000368344
0.00037173
0.000376851
0.000382375
0.000387614
0.000392244
0.000396071
0.000398909
0.000400619
0.000401145
0.000400519
0.000398847
0.000396283
0.000393003
0.000389181
0.000384979
0.000380536
0.000375968
0.000371369
0.000366816
0.00036236
0.000358014
0.00035375
0.000349515
0.000345293
0.000341203
0.000337575
0.000334903
0.000333655
0.000333389
0.000333245
0.00167096
0.00115524
0.000916625
0.000817611
0.000821761
0.000919592
0.00109263
0.00131457
0.00156471
0.00182765
0.00209034
0.00234316
0.0025797
0.00279587
0.00298965
0.00316057
0.0033093
0.0034373
0.00354651
0.0036391
0.0037173
0.00378325
0.00383893
0.00388616
0.00392653
0.00396139
0.00399185
0.00401874
0.0040427
0.00406432
0.00408431
0.0041037
0.00412442
0.00414747
0.0041782
0.00166954
0.00115222
0.000900096
0.000763758
0.000689714
0.000660865
0.000676129
0.000739985
0.000854424
0.00101613
0.00121905
0.00145534
0.00171478
0.00198588
0.00225817
0.00252359
0.00277676
0.00301449
0.00323522
0.00343849
0.00362457
0.00379424
0.00394862
0.00408901
0.00421682
0.00433349
0.00444039
0.00453884
0.00463004
0.0047151
0.00479503
0.00487077
0.00494354
0.0050132
0.00508429
0.00157415
0.00111194
0.0010528
0.00112547
0.00123015
0.00133508
0.0014313
0.00151677
0.00159202
0.00165796
0.00171604
0.00176741
0.00181309
0.00185399
0.00189095
0.00192462
0.00195555
0.00198414
0.00201073
0.00203556
0.00205882
0.00208067
0.00210124
0.0021206
0.00213885
0.00215602
0.00217218
0.00218746
0.00220208
0.00221627
0.00223016
0.00224343
0.00225586
0.00226597
0.00227922
0.00166894
0.00114593
0.000891971
0.000751109
0.000665108
0.000609151
0.00057191
0.000548452
0.000537538
0.00054049
0.000560493
0.000601739
0.000668409
0.000764036
0.000891445
0.00105229
0.00124586
0.00146843
0.00171374
0.00197455
0.00224402
0.00251657
0.00278809
0.00305574
0.0033176
0.00357241
0.00381946
0.00405849
0.0042897
0.00451352
0.00473019
0.00493928
0.00513942
0.00532886
0.00550688
0.000802154
0.000613098
0.000521032
0.000487196
0.000472571
0.000465042
0.000460915
0.000458679
0.000457586
0.000457185
0.000457217
0.000457517
0.000457959
0.000458438
0.000458869
0.000459186
0.000459344
0.000459317
0.000459096
0.000458686
0.000458104
0.000457372
0.000456518
0.000455567
0.000454546
0.000453477
0.000452382
0.000451275
0.000450169
0.000449079
0.000448013
0.000447002
0.000446017
0.000445254
0.000444056
0.000857945
0.000665668
0.000565866
0.00052761
0.000510801
0.000502083
0.000497268
0.000494634
0.000493307
0.000492808
0.000492853
0.00049325
0.00049386
0.000494572
0.000495294
0.000495955
0.0004965
0.000496892
0.000497109
0.000497147
0.000497012
0.000496718
0.000496286
0.00049574
0.000495102
0.000494395
0.00049364
0.000492854
0.000492051
0.000491248
0.000490452
0.000489693
0.000488937
0.000488368
0.000487351
0.000813731
0.000552963
0.000493164
0.000474778
0.000470833
0.00047354
0.000479106
0.000485761
0.000492554
0.000499058
0.000505104
0.000510627
0.000515594
0.000519976
0.000523751
0.000526898
0.000529413
0.000531311
0.000532627
0.000533413
0.000533732
0.000533655
0.000533256
0.000532603
0.00053176
0.000530776
0.000529682
0.000528497
0.000527239
0.000525934
0.000524666
0.000523544
0.00052288
0.000522469
0.000523912
0.00166922
0.00114855
0.000895804
0.000757565
0.000678535
0.000638529
0.000632823
0.000663975
0.000736045
0.000850431
0.00100567
0.00119881
0.00142474
0.00167577
0.00194289
0.00221733
0.00249175
0.00276063
0.00302016
0.00326792
0.00350252
0.00372358
0.00393135
0.00412651
0.00430995
0.00448268
0.00464569
0.0048
0.00494657
0.00508638
0.00522037
0.00534926
0.00547363
0.0055933
0.00570983
0.00167118
0.0011506
0.000913831
0.000822456
0.000840982
0.000957698
0.00114781
0.00138155
0.00163935
0.00190846
0.00217911
0.00244424
0.00269928
0.00294154
0.00316974
0.00338363
0.00358345
0.00376985
0.00394366
0.00410579
0.00425722
0.00439891
0.00453176
0.00465655
0.00477392
0.00488444
0.00498884
0.00508817
0.00518375
0.0052764
0.00536543
0.00544779
0.00551937
0.00557775
0.00563132
0.00164091
0.00116014
0.0010737
0.00115152
0.0012875
0.00143812
0.00158549
0.00172236
0.00184632
0.00195725
0.00205608
0.0021441
0.00222268
0.00229312
0.00235661
0.00241422
0.00246684
0.00251523
0.00256007
0.0026019
0.00264118
0.00267834
0.00271366
0.00274733
0.00277944
0.00281011
0.0028397
0.00286886
0.00289826
0.00292791
0.00295635
0.00298053
0.00299739
0.00300691
0.00301596
0.00159842
0.00113138
0.00106295
0.00113724
0.00125278
0.00137322
0.00148638
0.00158865
0.00167963
0.00175996
0.00183055
0.00189227
0.00194592
0.00199214
0.00203151
0.00206454
0.00209178
0.00211379
0.00213115
0.00214447
0.00215439
0.00216148
0.00216632
0.00216941
0.0021712
0.00217206
0.0021723
0.00217214
0.00217178
0.00217136
0.0021711
0.00217113
0.00217209
0.00217254
0.00217904
0.000850843
0.000653262
0.000555329
0.000516739
0.000499537
0.000490849
0.000486198
0.000483817
0.000482787
0.000482584
0.000482918
0.000483619
0.000484586
0.000485754
0.000487079
0.00048853
0.000490081
0.000491715
0.000493413
0.000495162
0.000496952
0.000498771
0.000500609
0.000502458
0.000504308
0.000506156
0.000508003
0.000509856
0.000511714
0.00051356
0.000515343
0.000517003
0.00051851
0.000519846
0.000521663
0.00143381
0.000975894
0.000917561
0.000965015
0.00103215
0.00109774
0.0011569
0.00120882
0.0012543
0.00129414
0.0013293
0.00136053
0.00138846
0.00141365
0.0014366
0.0014577
0.00147728
0.00149555
0.0015127
0.00152885
0.00154409
0.0015585
0.00157212
0.00158501
0.00159719
0.00160868
0.00161952
0.00162977
0.00163956
0.00164904
0.00165832
0.00166724
0.00167587
0.0016828
0.00169395
0.000856784
0.000661686
0.000561245
0.000521173
0.00050334
0.000494305
0.000489431
0.000486896
0.000485758
0.000485483
0.000485768
0.000486436
0.000487377
0.000488524
0.000489833
0.00049127
0.000492811
0.000494436
0.000496126
0.000497869
0.00049965
0.00050146
0.000503288
0.000505124
0.000506959
0.000508788
0.000510611
0.000512433
0.000514253
0.000516052
0.000517786
0.000519407
0.000520892
0.00052223
0.000524021
0.00166899
0.00114756
0.000893751
0.000752881
0.000666702
0.00061022
0.000571769
0.000545817
0.000530181
0.000524863
0.000531498
0.000552891
0.000592451
0.000653625
0.000739686
0.000853698
0.000997925
0.00117267
0.00137547
0.00160149
0.00184464
0.00209878
0.00235874
0.00262069
0.00288212
0.00314143
0.00339773
0.00365059
0.00389967
0.00414469
0.00438539
0.00462154
0.00485276
0.00507821
0.0052967
0.00161781
0.00116071
0.00111315
0.00121609
0.00136065
0.00150844
0.00164682
0.00177217
0.00188416
0.00198362
0.00207173
0.00214981
0.00221906
0.00228067
0.00233557
0.00238453
0.00242819
0.00246709
0.00250166
0.00253232
0.00255944
0.00258341
0.00260462
0.00262344
0.0026402
0.00265517
0.00266866
0.00268097
0.00269255
0.00270382
0.002715
0.00272562
0.00273506
0.00274081
0.00274987
0.00155701
0.00109758
0.00103514
0.00110595
0.00121426
0.00132826
0.00143594
0.0015325
0.00161658
0.00168755
0.00174536
0.00179036
0.00182294
0.00184389
0.00185443
0.00185608
0.0018505
0.00183935
0.00182409
0.00180591
0.00178593
0.00176493
0.00174352
0.00172221
0.00170135
0.0016811
0.00166131
0.0016416
0.00162157
0.00160139
0.0015826
0.00156841
0.00156323
0.00156779
0.00158057
0.00166017
0.00119771
0.00112537
0.0012187
0.00136976
0.00153709
0.00170238
0.00185643
0.00199479
0.00211481
0.00221561
0.0022969
0.00235903
0.00240314
0.00243106
0.00244506
0.00244763
0.00244123
0.0024281
0.00241015
0.00238893
0.00236567
0.00234135
0.00231672
0.00229233
0.00226849
0.00224516
0.00222203
0.00219868
0.00217515
0.00215286
0.00213504
0.00212654
0.00212912
0.00214171
0.00167298
0.00120209
0.00111321
0.00121325
0.00138836
0.00158609
0.00178349
0.00196911
0.00213723
0.00228507
0.00241059
0.00251338
0.00259369
0.00265266
0.00269223
0.00271497
0.00272374
0.00272143
0.0027107
0.00269386
0.00267283
0.00264913
0.0026239
0.00259794
0.00257181
0.00254581
0.00252002
0.00249452
0.00246964
0.00244623
0.0024258
0.00240985
0.00239912
0.00238999
0.0023788
0.00166909
0.0011466
0.000893106
0.000754174
0.000673797
0.00063102
0.00062039
0.000644279
0.000707692
0.000813678
0.000961823
0.00114956
0.00137219
0.00162218
0.00189021
0.0021673
0.00244617
0.00272165
0.00299035
0.00325025
0.00350027
0.00373996
0.00396926
0.00418829
0.00439726
0.00459654
0.00478665
0.00496837
0.00514269
0.00531048
0.00547189
0.00562563
0.0057694
0.00590119
0.00602358
0.000876302
0.000573742
0.000511734
0.000499404
0.000501521
0.000509013
0.000518429
0.000528161
0.000537517
0.00054627
0.000554396
0.000561944
0.000568977
0.000575583
0.000581841
0.000587823
0.00059359
0.000599188
0.000604656
0.000610026
0.000615328
0.000620582
0.000625799
0.00063097
0.000636076
0.000641109
0.000646108
0.000651174
0.00065642
0.000661834
0.000667125
0.000671676
0.00067488
0.000676762
0.000678532
0.00167
0.00114788
0.000901401
0.000784221
0.000752439
0.000797383
0.000914234
0.00108958
0.00130793
0.00155659
0.00182388
0.0020991
0.00237369
0.00264169
0.0028994
0.00314475
0.00337678
0.00359532
0.00380068
0.00399348
0.00417451
0.00434462
0.00450472
0.00465558
0.00479792
0.00493238
0.00505974
0.00518111
0.00529778
0.00541058
0.00551885
0.00561972
0.00570934
0.00578569
0.00585584
0.00166911
0.0011482
0.000894803
0.000754914
0.000671665
0.000622494
0.000599658
0.000603317
0.000637994
0.000709075
0.00081964
0.000969865
0.00115787
0.00137931
0.00162702
0.00189222
0.00216627
0.00244196
0.00271381
0.002978
0.00323179
0.00347405
0.00370441
0.00392303
0.00413043
0.00432733
0.00451455
0.00469295
0.00486342
0.00502688
0.00518419
0.00533598
0.00548257
0.00562358
0.00576001
0.000815202
0.000618723
0.000527418
0.00049256
0.000477006
0.000469096
0.000464867
0.000462728
0.000461827
0.000461679
0.000462022
0.000462709
0.000463648
0.000464782
0.000466067
0.000467473
0.000468974
0.000470547
0.000472176
0.000473846
0.000475546
0.000477266
0.000478999
0.000480734
0.000482464
0.000484184
0.000485896
0.000487608
0.000489322
0.000491023
0.000492661
0.00049417
0.000495507
0.000496667
0.000498159
0.000859009
0.00066399
0.000564726
0.000527273
0.000510607
0.000502021
0.000497488
0.000495203
0.000494228
0.000494023
0.000494271
0.000494761
0.000495335
0.00049587
0.000496268
0.000496463
0.000496416
0.000496112
0.000495558
0.000494777
0.000493798
0.000492657
0.00049139
0.00049003
0.000488609
0.00048715
0.000485673
0.000484196
0.00048273
0.000481294
0.000479901
0.000478596
0.000477332
0.000476394
0.000474684
0.00107553
0.000691035
0.000634637
0.00063959
0.000657676
0.000679255
0.000700474
0.000719962
0.000737312
0.00075246
0.000765308
0.000775705
0.000783553
0.000788841
0.000791668
0.000792233
0.000790816
0.000787744
0.000783359
0.000777988
0.000771923
0.000765413
0.000758662
0.000751826
0.000745018
0.000738306
0.00073172
0.000725265
0.000718953
0.000712842
0.000707104
0.000701915
0.000697841
0.000693937
0.000693972
0.00099818
0.000692571
0.000634231
0.000625136
0.000629302
0.000638482
0.000649289
0.000660026
0.000670047
0.000679082
0.000686902
0.000693314
0.000698158
0.000701351
0.000702907
0.000702924
0.000701558
0.000699011
0.000695502
0.000691247
0.000686445
0.000681272
0.000675875
0.000670379
0.000664881
0.000659452
0.00065413
0.000648915
0.000643794
0.000638779
0.000633987
0.000629644
0.000626271
0.0006235
0.000623231
0.00116262
0.000752269
0.000698873
0.000722554
0.000761825
0.000802465
0.000840481
0.000874582
0.00090478
0.000931443
0.000955074
0.000976114
0.000994967
0.00101203
0.00102766
0.00104215
0.00105573
0.00106858
0.00108083
0.00109258
0.00110391
0.00111486
0.00112546
0.00113573
0.00114564
0.00115518
0.00116437
0.00117329
0.00118211
0.00119092
0.00119964
0.00120777
0.00121477
0.00121988
0.0012248
0.00166364
0.00119621
0.0011233
0.00122152
0.00138079
0.00155558
0.00172671
0.0018859
0.00203022
0.00215944
0.00227455
0.00237705
0.00246859
0.0025507
0.00262469
0.0026917
0.00275267
0.00280842
0.00285961
0.00290681
0.00295054
0.00299127
0.00302938
0.00306515
0.00309875
0.00313029
0.00316005
0.00318862
0.00321681
0.00324516
0.00327295
0.00329761
0.00331576
0.00332499
0.00333198
0.00154449
0.00106154
0.00098106
0.00103831
0.00113511
0.00123726
0.00133358
0.00142059
0.00149774
0.00156573
0.00162565
0.00167865
0.00172579
0.00176799
0.00180606
0.00184074
0.00187262
0.00190216
0.00192977
0.00195578
0.00198048
0.0020041
0.00202681
0.00204869
0.00206975
0.00209003
0.00210976
0.00212942
0.00214955
0.00217019
0.00219023
0.0022072
0.00221849
0.00222382
0.00222808
0.00167318
0.00116246
0.000966
0.000956244
0.00107719
0.00127137
0.00149882
0.00173986
0.0019819
0.0022161
0.00243688
0.00264121
0.00282763
0.00299581
0.00314596
0.00327861
0.00339456
0.00349486
0.00358081
0.0036539
0.00371572
0.00376787
0.00381191
0.0038493
0.00388133
0.00390915
0.0039337
0.00395578
0.00397607
0.00399516
0.00401359
0.00403171
0.00405015
0.00406762
0.00409008
0.000609904
0.000447235
0.000381731
0.000358544
0.000348111
0.000342659
0.000339712
0.000338204
0.000337572
0.000337499
0.000337797
0.000338349
0.000339079
0.000339939
0.000340889
0.000341897
0.000342935
0.000343979
0.000345008
0.000346004
0.000346954
0.000347849
0.000348684
0.000349457
0.000350167
0.000350817
0.000351412
0.000351958
0.000352465
0.000352939
0.000353377
0.000353773
0.00035409
0.000354372
0.000354469
0.000871374
0.000562203
0.000513974
0.000509053
0.000516365
0.000528168
0.000540639
0.000552365
0.000562974
0.000572305
0.000580161
0.00058632
0.000590622
0.000593009
0.000593529
0.000592334
0.000589646
0.000585729
0.000580857
0.000575286
0.000569244
0.000562923
0.000556476
0.000550017
0.00054362
0.000537326
0.000531147
0.00052509
0.000519195
0.000513572
0.000508429
0.000503947
0.00050041
0.000496909
0.00049503
0.00168111
0.00120583
0.00111643
0.00122178
0.00140429
0.00160934
0.00181483
0.00201034
0.00219106
0.00235549
0.00250391
0.00263747
0.00275771
0.00286617
0.00296433
0.00305345
0.00313472
0.00320915
0.00327766
0.00334101
0.00339993
0.00345505
0.00350688
0.00355578
0.00360198
0.00364565
0.00368723
0.00372751
0.00376752
0.00380763
0.0038465
0.00388045
0.0039053
0.0039193
0.00393272
0.00166881
0.00121209
0.00115271
0.00125372
0.00140805
0.0015745
0.00173605
0.00188553
0.00202056
0.00214115
0.00224838
0.00234377
0.0024289
0.00250524
0.00257405
0.0026364
0.00269322
0.00274526
0.00279318
0.00283751
0.00287877
0.00291739
0.00295372
0.00298801
0.00302038
0.00305092
0.0030799
0.00310797
0.00313599
0.00316438
0.00319214
0.00321626
0.00323309
0.00324056
0.0032464
0.000696067
0.000514552
0.000436851
0.000409219
0.000396827
0.000390326
0.000386779
0.000384927
0.00038411
0.000383952
0.000384233
0.000384816
0.000385614
0.000386569
0.000387636
0.000388779
0.000389967
0.000391171
0.000392368
0.000393538
0.000394665
0.000395738
0.00039675
0.000397698
0.000398579
0.000399396
0.000400152
0.000400855
0.000401514
0.000402135
0.000402711
0.000403231
0.000403653
0.000404035
0.000404154
0.00157521
0.00111466
0.00105058
0.00112042
0.0012271
0.00133911
0.00144509
0.00154032
0.00162325
0.00169391
0.00175201
0.00179763
0.00183106
0.00185303
0.00186471
0.00186757
0.00186323
0.00185328
0.00183919
0.00182217
0.00180325
0.00178324
0.00176275
0.0017423
0.00172224
0.00170274
0.00168372
0.00166485
0.00164576
0.00162654
0.00160846
0.00159427
0.00158809
0.00159063
0.00160203
0.00162433
0.0011678
0.001109
0.00119023
0.00131311
0.00144376
0.00156815
0.00168037
0.0017783
0.00186206
0.00193162
0.00198678
0.00202786
0.00205566
0.00207145
0.00207689
0.00207383
0.00206413
0.00204951
0.00203146
0.0020112
0.00198969
0.00196762
0.00194552
0.00192364
0.00190208
0.00188081
0.00185985
0.00183946
0.00182042
0.00180402
0.00179149
0.00178337
0.00177578
0.00176679
0.00167029
0.00114951
0.000905752
0.000795612
0.000777708
0.000844282
0.000987239
0.00118848
0.00142938
0.00169488
0.00197197
0.00225047
0.00252309
0.00278518
0.00303416
0.00326881
0.00348873
0.0036942
0.00388583
0.0040644
0.00423077
0.00438584
0.00453048
0.0046655
0.00479165
0.0049096
0.00502011
0.00512417
0.00522306
0.00531788
0.00540881
0.00549428
0.00557142
0.00563737
0.00569712
0.00167335
0.00118566
0.00106616
0.00113719
0.00129215
0.00147997
0.00167742
0.0018704
0.00205091
0.00221586
0.00236419
0.00249601
0.00261182
0.00271222
0.00279787
0.00286957
0.00292837
0.00297554
0.0030125
0.00304073
0.0030617
0.00307683
0.00308738
0.00309448
0.00309906
0.00310187
0.0031034
0.00310399
0.00310381
0.00310308
0.00310229
0.0031023
0.00310511
0.00311109
0.00312736
0.00165558
0.00120945
0.00115981
0.00125035
0.00138217
0.0015208
0.00165299
0.00177375
0.00188174
0.00197747
0.00206217
0.00213727
0.00220417
0.00226414
0.00231824
0.00236736
0.00241227
0.00245358
0.00249185
0.00252751
0.00256098
0.00259261
0.00262267
0.00265133
0.00267864
0.00270464
0.00272958
0.00275406
0.00277885
0.00280422
0.00282902
0.00285023
0.00286439
0.00286998
0.00287497
0.000830944
0.000640833
0.000544331
0.000507905
0.000492029
0.000483827
0.000479304
0.000476828
0.000475579
0.0004751
0.000475126
0.000475473
0.000476009
0.000476627
0.000477238
0.000477773
0.00047818
0.000478426
0.000478493
0.00047838
0.000478096
0.000477658
0.000477088
0.000476411
0.00047565
0.000474829
0.000473967
0.00047308
0.000472184
0.000471292
0.000470413
0.000469577
0.000468754
0.000468125
0.000467089
0.00166882
0.00114303
0.000888615
0.000747572
0.000661293
0.000604333
0.00056444
0.000535164
0.000512855
0.000495326
0.000481199
0.000469575
0.000459844
0.000451585
0.000444504
0.000438394
0.000433119
0.000428595
0.000424792
0.000421727
0.000419471
0.000418153
0.000417974
0.000419216
0.000422259
0.0004276
0.000435876
0.000447899
0.000464692
0.00048756
0.000518158
0.000558565
0.000611276
0.000679063
0.000762559
0.000835463
0.000583934
0.00052044
0.000501788
0.000498096
0.000500229
0.00050464
0.000509767
0.000515023
0.000520208
0.000525238
0.00053008
0.000534734
0.000539215
0.000543549
0.000547756
0.00055185
0.000555831
0.000559694
0.00056343
0.000567029
0.000570481
0.000573778
0.000576916
0.000579889
0.000582698
0.000585344
0.000587838
0.000590203
0.000592466
0.000594659
0.000596758
0.000598834
0.000600554
0.000603228
0.000971286
0.000674674
0.000618959
0.000611243
0.000616094
0.000625496
0.000636332
0.00064699
0.00065688
0.000665791
0.000673474
0.000679707
0.00068431
0.000687192
0.000688371
0.000687956
0.000686121
0.000683084
0.000679084
0.000674347
0.000669081
0.000663466
0.000657654
0.000651768
0.000645906
0.000640134
0.000634484
0.000628944
0.000623495
0.000618156
0.000613076
0.000608545
0.000605117
0.000602488
0.000601984
0.000838049
0.000643403
0.000547889
0.000511735
0.000495471
0.000486949
0.00048227
0.000479766
0.000478582
0.000478238
0.000478443
0.000479009
0.000479804
0.000480725
0.000481692
0.000482636
0.000483505
0.00048426
0.000484875
0.000485338
0.000485647
0.000485807
0.000485831
0.000485737
0.000485544
0.000485269
0.000484932
0.000484548
0.000484132
0.0004837
0.00048326
0.000482836
0.000482387
0.000482076
0.000481249
0.00132913
0.000892686
0.000836504
0.000870277
0.000920432
0.000970097
0.00101541
0.00105556
0.00109095
0.00112225
0.00114998
0.00117461
0.0011967
0.00121669
0.00123498
0.00125191
0.00126771
0.0012826
0.0012967
0.00131011
0.00132291
0.00133515
0.00134685
0.00135805
0.00136874
0.00137891
0.0013886
0.00139785
0.00140679
0.00141556
0.00142419
0.00143243
0.0014401
0.00144613
0.00145443
0.00140797
0.000967839
0.000925995
0.000987295
0.00106557
0.00114131
0.00120969
0.00126921
0.00132035
0.00136367
0.00139949
0.00142782
0.00144876
0.0014626
0.00146996
0.00147162
0.00146853
0.00146164
0.00145186
0.00143999
0.0014267
0.00141256
0.00139799
0.00138335
0.0013689
0.00135479
0.00134103
0.00132746
0.00131388
0.00130031
0.00128742
0.0012767
0.00127067
0.00126922
0.00127516
0.00141997
0.000971456
0.00091963
0.000972323
0.001046
0.00111977
0.00118626
0.00124398
0.00129373
0.00133608
0.00137117
0.00139902
0.00141972
0.00143353
0.00144097
0.00144277
0.00143982
0.00143306
0.0014234
0.00141166
0.00139852
0.00138457
0.00137022
0.00135582
0.00134155
0.00132753
0.00131377
0.00130025
0.001287
0.00127427
0.00126263
0.0012527
0.00124547
0.00123918
0.00123757
0.000790092
0.000605216
0.000516287
0.000483986
0.000469383
0.000461697
0.000457598
0.00045551
0.000454564
0.000454226
0.000454156
0.00045411
0.000453904
0.000453411
0.00045256
0.000451331
0.000449742
0.000447833
0.000445662
0.000443286
0.000440763
0.000438145
0.000435475
0.000432791
0.00043012
0.000427481
0.00042488
0.000422323
0.000419818
0.000417401
0.000415127
0.000413103
0.000411273
0.000409918
0.000407476
0.000726659
0.000550098
0.000468619
0.000439948
0.000427174
0.000420538
0.000417016
0.000415198
0.00041435
0.000414021
0.000413923
0.000413846
0.000413629
0.000413158
0.000412367
0.000411236
0.000409778
0.000408028
0.000406037
0.000403859
0.000401548
0.00039915
0.000396706
0.000394246
0.000391795
0.000389369
0.000386982
0.00038465
0.000382395
0.000380249
0.000378225
0.000376348
0.000374474
0.000372836
0.000370059
0.00136196
0.000936261
0.000895351
0.000948156
0.00101451
0.00107802
0.00113523
0.00118471
0.00122725
0.00126352
0.00129376
0.001318
0.00133633
0.00134893
0.00135622
0.00135879
0.00135732
0.00135255
0.0013452
0.00133595
0.00132535
0.00131389
0.00130195
0.00128984
0.0012778
0.00126598
0.00125445
0.00124317
0.00123204
0.00122103
0.00121046
0.00120108
0.00119454
0.0011903
0.00119311
0.00142909
0.000962293
0.00090008
0.000946019
0.00101352
0.00108108
0.00114259
0.0011968
0.00124374
0.00128391
0.00131752
0.00134466
0.00136539
0.00137995
0.00138875
0.00139239
0.00139161
0.0013872
0.00137998
0.00137068
0.00135994
0.0013483
0.00133618
0.00132391
0.0013117
0.00129968
0.0012879
0.00127635
0.00126502
0.00125404
0.00124375
0.00123461
0.00122771
0.00122171
0.00122209
0.00167313
0.00115649
0.000942345
0.000901667
0.000994725
0.0011823
0.0014203
0.00168074
0.00194783
0.00221117
0.00246399
0.00270262
0.00292552
0.00313239
0.0033238
0.00350058
0.00366388
0.0038149
0.00395476
0.00408458
0.00420543
0.00431827
0.004424
0.00452333
0.00461681
0.00470492
0.00478834
0.00486813
0.00494556
0.0050213
0.00509421
0.00516063
0.00521606
0.0052584
0.00529747
0.00166996
0.00115482
0.000903463
0.000766799
0.000691778
0.000661317
0.000674302
0.000735464
0.000846969
0.00100524
0.00120401
0.0014358
0.00169045
0.0019549
0.00221594
0.00246245
0.00268669
0.0028844
0.00305427
0.00319708
0.00331492
0.0034106
0.00348715
0.0035476
0.00359479
0.00363125
0.00365915
0.00368022
0.00369582
0.00370701
0.00371494
0.00372128
0.00372872
0.00373979
0.00375786
0.00166992
0.00115487
0.000903351
0.000766487
0.00069118
0.000660558
0.000674334
0.000738923
0.000858271
0.00102916
0.00124386
0.00149224
0.0017612
0.00203577
0.00230193
0.00254892
0.00276996
0.00296199
0.00312476
0.0032599
0.00337011
0.00345858
0.00352858
0.00358324
0.00362537
0.00365743
0.00368144
0.00369906
0.00371166
0.00372047
0.00372684
0.00373231
0.00373879
0.00374716
0.00375958
0.000829597
0.000550052
0.000496069
0.000488021
0.000492733
0.00050128
0.000510407
0.000519035
0.00052683
0.00053381
0.000540062
0.000545596
0.000550357
0.000554282
0.00055733
0.000559489
0.000560783
0.000561267
0.000561025
0.000560159
0.000558778
0.000556991
0.000554899
0.000552593
0.000550154
0.000547646
0.000545122
0.000542614
0.000540139
0.000537711
0.000535367
0.000533158
0.00053132
0.000529568
0.000529304
0.00162285
0.00114125
0.00105588
0.00112829
0.00125494
0.00139393
0.00152872
0.00165307
0.00176509
0.00186493
0.00195359
0.00203233
0.00210249
0.00216529
0.00222187
0.0022732
0.00232013
0.00236333
0.00240341
0.00244087
0.00247612
0.00250952
0.00254133
0.00257168
0.00260066
0.00262837
0.00265512
0.00268149
0.00270805
0.00273478
0.00276036
0.00278212
0.00279747
0.00280649
0.00281495
0.00104235
0.000705921
0.00064556
0.000640557
0.000649199
0.000662101
0.000675935
0.00068932
0.000701859
0.000713453
0.000724057
0.000733649
0.000742217
0.00074975
0.000756239
0.00076169
0.000766123
0.000769582
0.000772132
0.000773861
0.000774866
0.000775256
0.000775138
0.000774619
0.000773796
0.000772756
0.00077157
0.000770295
0.000768974
0.000767653
0.000766395
0.000765226
0.000764422
0.000763309
0.000764759
0.00167943
0.00119642
0.00108949
0.00118082
0.00136003
0.0015694
0.0017836
0.00199
0.00218246
0.00235868
0.00251844
0.00266267
0.0027928
0.00291038
0.00301687
0.00311358
0.00320174
0.00328238
0.00335641
0.00342465
0.00348782
0.0035466
0.00360153
0.00365303
0.00370136
0.00374675
0.00378962
0.00383078
0.00387127
0.0039116
0.00395064
0.003985
0.00401057
0.0040253
0.00403812
0.000812513
0.000617004
0.000523859
0.000489373
0.000474016
0.000466036
0.000461681
0.000459396
0.000458361
0.00045812
0.00045841
0.000459063
0.000459976
0.00046108
0.000462327
0.000463676
0.000465091
0.000466543
0.000468004
0.000469452
0.000470868
0.000472239
0.000473554
0.000474809
0.000475997
0.000477118
0.000478175
0.000479176
0.000480129
0.000481037
0.000481888
0.000482661
0.000483309
0.000483877
0.000484217
0.00140832
0.000946078
0.000881596
0.000917552
0.000972413
0.00102822
0.00108017
0.00112658
0.00116707
0.00120201
0.00123186
0.001257
0.00127764
0.001294
0.00130631
0.00131488
0.00132006
0.00132231
0.00132211
0.00131993
0.00131622
0.00131139
0.0013058
0.00129972
0.0012934
0.00128699
0.00128059
0.00127422
0.00126788
0.00126157
0.00125547
0.00124983
0.00124579
0.00124237
0.00124716
0.00155163
0.00107141
0.000997535
0.00106211
0.00116563
0.00127444
0.00137736
0.00147058
0.00155335
0.00162634
0.00169071
0.0017477
0.00179844
0.0018439
0.00188494
0.0019223
0.00195657
0.00198827
0.00201783
0.0020456
0.00207191
0.00209702
0.00212114
0.00214437
0.00216673
0.00218824
0.00220912
0.00222985
0.00225108
0.00227301
0.00229464
0.00231335
0.00232607
0.00233172
0.00233527
0.00166525
0.00119887
0.00112929
0.00122668
0.001382
0.00155188
0.00171785
0.00187177
0.00201092
0.0021353
0.00224606
0.00234474
0.00243289
0.00251202
0.00258339
0.00264811
0.00270713
0.00276126
0.00281121
0.0028576
0.00290095
0.00294176
0.00298039
0.00301709
0.00305197
0.00308513
0.0031169
0.00314797
0.00317924
0.00321103
0.00324203
0.00326883
0.00328748
0.00329636
0.00330425
0.00157696
0.00111921
0.0010625
0.00113923
0.00125142
0.00136789
0.00147716
0.00157484
0.00165925
0.00173084
0.00178962
0.00183564
0.00186923
0.00189116
0.00190255
0.00190487
0.00189976
0.0018889
0.00187379
0.00185577
0.00183591
0.00181504
0.00179376
0.00177252
0.00175152
0.00173083
0.0017104
0.00169028
0.0016708
0.0016528
0.00163761
0.00162633
0.00161907
0.00161134
0.00159996
0.000803157
0.000614093
0.000521206
0.000485638
0.000469572
0.000461251
0.000456879
0.00045474
0.000453902
0.000453821
0.000454196
0.000454851
0.000455665
0.000456548
0.000457429
0.000458248
0.000458957
0.000459523
0.000459928
0.000460166
0.000460241
0.000460165
0.000459956
0.000459633
0.000459218
0.000458728
0.00045818
0.000457589
0.000456969
0.000456337
0.000455712
0.000455132
0.00045459
0.000454234
0.000453591
0.000905182
0.000596193
0.000534746
0.000523759
0.000526844
0.00053515
0.000545334
0.000555788
0.000565798
0.000575135
0.000583792
0.000591826
0.000599308
0.000606331
0.000612982
0.000619337
0.000625459
0.000631398
0.000637194
0.000642884
0.000648496
0.000654055
0.000659572
0.000665039
0.000670435
0.000675749
0.000681022
0.000686362
0.000691896
0.000697616
0.000703214
0.000708025
0.000711382
0.000713286
0.000714968
0.00167022
0.00114822
0.000905669
0.000799497
0.000789602
0.000867502
0.00102136
0.00122992
0.00147406
0.00173917
0.00201308
0.00228628
0.00255222
0.00280698
0.00304849
0.00327593
0.00348927
0.00368893
0.00387562
0.00405021
0.00421367
0.00436697
0.00451105
0.00464673
0.00477469
0.00489558
0.0050102
0.00511967
0.00522531
0.00532785
0.00542641
0.00551778
0.00559783
0.00566469
0.0057255
0.00167291
0.00117159
0.00102704
0.00108412
0.00124478
0.00144669
0.00166131
0.00187411
0.00207701
0.00226595
0.00243944
0.00259749
0.00274095
0.00287108
0.00298922
0.00309686
0.00319531
0.00328574
0.0033692
0.00344659
0.00351869
0.0035862
0.00364964
0.00370943
0.00376585
0.0038192
0.00386999
0.00391899
0.00396702
0.00401421
0.00405927
0.00409922
0.00413111
0.0041547
0.0041776
0.00166895
0.00114646
0.000892538
0.000751625
0.000665464
0.000609089
0.000570921
0.000545621
0.00053135
0.000528644
0.000539814
0.000568337
0.000618068
0.000692593
0.000795109
0.00092841
0.00109411
0.00129143
0.00151658
0.00176339
0.00202459
0.00229319
0.00256349
0.00283143
0.00309443
0.00335104
0.00360055
0.00384276
0.00407784
0.00430618
0.0045282
0.00474409
0.00495351
0.00515552
0.00534915
0.0016722
0.00115567
0.000940276
0.00089577
0.000981789
0.00116182
0.00139477
0.00165248
0.00191757
0.00217869
0.00242897
0.00266493
0.00288516
0.0030894
0.00327806
0.00345186
0.00361166
0.00375848
0.00389327
0.00401701
0.00413065
0.0042351
0.00433123
0.00441978
0.0045015
0.00457702
0.00464702
0.00471241
0.00477433
0.00483383
0.00489108
0.00494453
0.0049914
0.0050287
0.00506115
0.00101752
0.00068975
0.000622177
0.00060989
0.000613962
0.000624193
0.000636597
0.000649278
0.000661429
0.000672776
0.000683263
0.000692954
0.000701953
0.000710373
0.000718331
0.000725929
0.00073325
0.000740357
0.000747304
0.000754131
0.000760872
0.000767549
0.000774169
0.000780716
0.000787169
0.000793522
0.000799833
0.000806226
0.000812818
0.000819548
0.000826029
0.000831517
0.000835399
0.000837826
0.000840457
0.00101621
0.000686505
0.00062011
0.000608853
0.00061352
0.000624123
0.000636763
0.000649611
0.000661901
0.00067337
0.000683959
0.000693736
0.000702809
0.000711293
0.000719308
0.000726955
0.000734319
0.000741463
0.000748441
0.000755296
0.000762061
0.000768756
0.000775389
0.000781944
0.000788398
0.000794748
0.000801046
0.000807414
0.000813962
0.000820631
0.000827043
0.000832484
0.000836364
0.000838866
0.000841426
0.00166901
0.00118694
0.00109
0.00118504
0.00135726
0.00155224
0.00174707
0.0019314
0.002101
0.00225467
0.00239289
0.00251683
0.00262797
0.00272783
0.00281803
0.00289992
0.0029746
0.00304308
0.00310615
0.00316448
0.00321861
0.003269
0.00331604
0.00336003
0.0034012
0.00343974
0.00347589
0.00351003
0.00354271
0.0035744
0.00360513
0.00363403
0.00365976
0.00368067
0.00370043
0.0016716
0.00115191
0.000924456
0.000855197
0.000907669
0.00105808
0.00127159
0.00151924
0.00178296
0.00205021
0.00231213
0.00256322
0.00280056
0.00302292
0.0032302
0.00342287
0.00360174
0.00376782
0.00392214
0.00406577
0.00419974
0.00432506
0.00444263
0.00455321
0.00465737
0.00475567
0.00484884
0.004938
0.00502444
0.00510883
0.00518999
0.00526423
0.00532701
0.00537646
0.00542166
0.00167224
0.00115564
0.000939016
0.000892002
0.000975555
0.00115524
0.0013897
0.00164956
0.00191695
0.00218044
0.00243317
0.00267157
0.00289423
0.0031009
0.003292
0.00346828
0.00363067
0.0037802
0.00391794
0.0040449
0.00416207
0.00427041
0.00437076
0.00446387
0.00455039
0.00463087
0.00470595
0.00477654
0.0048438
0.00490872
0.00497121
0.00502927
0.00507966
0.00511935
0.00515431
0.00166936
0.00114696
0.000895212
0.000762736
0.00069814
0.000687211
0.000730573
0.000830222
0.000982292
0.00117899
0.00141168
0.00167048
0.00194476
0.00222485
0.00250324
0.00277482
0.0030365
0.00328659
0.00352434
0.00374967
0.00396291
0.00416461
0.00435544
0.00453606
0.00470709
0.00486915
0.00502296
0.0051695
0.00530992
0.00544513
0.00557495
0.00569755
0.00581007
0.00591051
0.0060033
0.000739194
0.000557944
0.000474339
0.000445209
0.000432362
0.000425735
0.000422248
0.000420462
0.000419639
0.000419339
0.000419284
0.000419262
0.000419112
0.00041872
0.000418016
0.000416974
0.000415605
0.00041394
0.000412028
0.000409923
0.000407677
0.000405338
0.000402946
0.000400534
0.000398128
0.000395744
0.000393396
0.000391101
0.000388877
0.000386752
0.000384742
0.000382878
0.000381031
0.000379462
0.000376787
0.000843764
0.000651886
0.000556196
0.00052091
0.000505106
0.000496826
0.000492394
0.000490121
0.000489098
0.000488738
0.000488676
0.000488661
0.000488496
0.000488048
0.000487237
0.000486039
0.000484466
0.000482557
0.000480368
0.000477957
0.000475385
0.000472705
0.000469964
0.000467201
0.000464447
0.000461722
0.000459037
0.000456396
0.000453808
0.000451304
0.000448934
0.000446801
0.000444859
0.000443424
0.000440959
0.000953009
0.000740792
0.000629798
0.000586381
0.000566867
0.000556657
0.000551063
0.000548116
0.000546767
0.000546388
0.000546632
0.000547303
0.000548271
0.000549452
0.000550779
0.000552197
0.000553656
0.000555112
0.000556525
0.000557866
0.000559111
0.000560248
0.000561269
0.000562173
0.000562964
0.00056365
0.000564238
0.00056474
0.000565168
0.000565535
0.000565855
0.000566155
0.000566433
0.00056675
0.000566972
0.00167328
0.00116971
0.00101825
0.00106722
0.00122114
0.00141886
0.00163264
0.00184759
0.00205461
0.0022488
0.00242809
0.00259215
0.0027416
0.00287753
0.00300125
0.00311414
0.00321747
0.00331241
0.00340002
0.00348125
0.00355695
0.00362783
0.0036945
0.00375738
0.00381678
0.00387304
0.00392673
0.00397878
0.00403013
0.0040809
0.0041294
0.00417195
0.00420481
0.00422781
0.00425049
0.00166902
0.00114656
0.00089273
0.000752405
0.00066815
0.000616581
0.000588736
0.000583172
0.000602924
0.000652997
0.000737655
0.000858951
0.00101707
0.00121037
0.00143464
0.00168322
0.00194842
0.00222294
0.00250077
0.0027773
0.00304922
0.0033142
0.00357067
0.00381769
0.00405473
0.00428164
0.00449872
0.00470652
0.00490585
0.00509753
0.00528198
0.00545862
0.00562596
0.00578231
0.00592889
0.000833623
0.000594893
0.000530398
0.000508996
0.000502905
0.000503417
0.000506718
0.000511111
0.000515755
0.000520251
0.000524352
0.000527859
0.000530629
0.000532561
0.00053361
0.000533788
0.000533151
0.000531794
0.00052983
0.000527382
0.000524568
0.000521497
0.000518263
0.000514942
0.000511595
0.000508264
0.000504971
0.000501731
0.000498552
0.000495459
0.000492515
0.000489795
0.000487512
0.000485428
0.00048476
0.000715762
0.000540989
0.000462568
0.000432828
0.000419269
0.000412195
0.00040832
0.000406292
0.000405384
0.000405171
0.000405414
0.000405971
0.000406759
0.000407721
0.000408821
0.000410028
0.000411316
0.000412665
0.000414056
0.000415474
0.000416906
0.000418341
0.000419771
0.000421187
0.000422581
0.000423949
0.000425292
0.000426615
0.000427921
0.000429199
0.000430415
0.000431521
0.000432485
0.000433325
0.000434379
0.00166082
0.00118081
0.00109118
0.00117606
0.00132774
0.00150096
0.00167471
0.00183867
0.00198863
0.00212377
0.00224478
0.00235303
0.00245004
0.00253727
0.00261603
0.00268748
0.00275263
0.00281236
0.00286745
0.00291857
0.00296632
0.00301124
0.00305375
0.00309411
0.00313247
0.00316896
0.00320394
0.00323816
0.00327258
0.00330751
0.00334157
0.00337114
0.00339205
0.00340271
0.00341205
0.00071139
0.000533433
0.000455006
0.000426231
0.000413219
0.000406374
0.000402645
0.000400706
0.000399851
0.000399681
0.00039996
0.000400539
0.000401311
0.000402199
0.000403138
0.000404079
0.000404978
0.000405803
0.00040653
0.000407146
0.000407644
0.000408025
0.000408295
0.000408465
0.000408548
0.000408557
0.000408506
0.000408407
0.000408273
0.000408119
0.000407948
0.000407778
0.000407574
0.000407448
0.000406945
0.000950906
0.000641125
0.000576618
0.000561176
0.000561754
0.000569429
0.000579972
0.000591254
0.000602241
0.000612516
0.000621936
0.000630471
0.000638141
0.000644977
0.000650996
0.000656205
0.000660613
0.000664241
0.000667126
0.000669319
0.000670891
0.000671918
0.000672486
0.000672679
0.000672575
0.00067224
0.000671715
0.000671029
0.000670201
0.000669266
0.000668329
0.000667513
0.000667296
0.00066723
0.000670583
0.00160989
0.00114124
0.00106601
0.00113429
0.00124941
0.001375
0.00149657
0.00160821
0.0017087
0.00179824
0.00187756
0.0019475
0.00200895
0.00206267
0.00210932
0.00214951
0.00218381
0.00221274
0.00223687
0.00225673
0.00227289
0.0022859
0.00229629
0.00230456
0.00231117
0.0023165
0.00232087
0.00232456
0.00232781
0.00233088
0.00233404
0.00233737
0.00234122
0.00234396
0.00235148
0.00167113
0.00117906
0.00105101
0.0011146
0.00126573
0.00145124
0.00164774
0.00184168
0.0020251
0.00219415
0.00234739
0.0024853
0.00260871
0.00271855
0.00281568
0.00290088
0.00297493
0.00303863
0.00309285
0.00313857
0.00317677
0.0032085
0.00323477
0.00325655
0.00327473
0.00329006
0.00330316
0.00331445
0.00332428
0.00333296
0.003341
0.00334908
0.00335876
0.00337016
0.0033899
0.00136223
0.000908877
0.000858367
0.000917388
0.000994163
0.00106629
0.00112938
0.0011834
0.00122944
0.00126897
0.00130305
0.00133233
0.0013572
0.00137794
0.00139477
0.00140793
0.0014177
0.00142443
0.00142849
0.0014303
0.00143028
0.0014288
0.00142623
0.00142287
0.00141899
0.00141482
0.00141051
0.00140618
0.0014019
0.00139769
0.00139367
0.00138992
0.00138716
0.0013844
0.00138717
0.00102793
0.000673021
0.000627608
0.00063927
0.000662213
0.000687478
0.000711958
0.000734555
0.000755086
0.00077361
0.000790243
0.000805078
0.000818254
0.000829875
0.000840029
0.000848792
0.000856242
0.000862459
0.000867536
0.000871575
0.000874689
0.000877001
0.000878636
0.000879715
0.000880356
0.000880661
0.000880716
0.000880594
0.000880366
0.000880109
0.000879917
0.000879796
0.00088002
0.00087958
0.000882186
0.000726743
0.000503192
0.000444634
0.00042544
0.000420004
0.000420262
0.000422979
0.000426678
0.000430712
0.000434797
0.000438804
0.00044268
0.00044641
0.000449997
0.000453448
0.000456766
0.000459945
0.000462974
0.000465839
0.000468527
0.00047103
0.000473343
0.000475467
0.000477408
0.000479176
0.000480782
0.000482238
0.000483555
0.000484752
0.000485849
0.000486884
0.000487873
0.000488936
0.000489853
0.000491695
0.00121099
0.000772603
0.000709034
0.000733365
0.000775992
0.000820482
0.000862406
0.000900263
0.000933802
0.000963386
0.000989573
0.0010129
0.00103385
0.00105283
0.00107019
0.00108626
0.00110127
0.00111543
0.00112891
0.00114182
0.00115431
0.00116645
0.00117832
0.00118992
0.00120124
0.00121226
0.00122308
0.00123398
0.00124526
0.00125699
0.00126853
0.00127842
0.001285
0.001288
0.00128987
0.000694927
0.000525
0.000444554
0.000414075
0.000400246
0.000392959
0.000388946
0.000386806
0.000385791
0.000385478
0.000385626
0.000386095
0.000386794
0.000387661
0.000388648
0.000389717
0.000390833
0.000391965
0.000393084
0.00039417
0.000395204
0.000396174
0.000397072
0.000397895
0.000398643
0.000399318
0.000399923
0.000400467
0.000400954
0.000401397
0.000401799
0.00040218
0.000402521
0.000402892
0.000403077
0.00154635
0.00107828
0.00101125
0.00107536
0.00117516
0.00127887
0.00137626
0.00146415
0.00154216
0.00161103
0.00167177
0.00172537
0.0017729
0.00181536
0.00185357
0.00188816
0.00191964
0.00194841
0.00197478
0.00199901
0.00202131
0.00204189
0.00206094
0.00207862
0.00209503
0.00211026
0.00212442
0.00213779
0.00215081
0.00216388
0.00217691
0.00218885
0.00219828
0.0022027
0.00220846
0.00108091
0.000690392
0.000632305
0.000644693
0.000672934
0.000704071
0.000734156
0.000761689
0.000786304
0.000808187
0.000827676
0.000845141
0.000860922
0.000875312
0.000888574
0.000900934
0.000912574
0.000923635
0.000934236
0.000944474
0.000954432
0.000964174
0.00097374
0.00098313
0.00099232
0.0010013
0.00101016
0.00101911
0.00102838
0.00103798
0.00104738
0.00105539
0.00106073
0.00106336
0.00106523
0.000772044
0.000531609
0.000471499
0.000451624
0.00044637
0.000447806
0.000452244
0.000457781
0.000463595
0.000469297
0.000474716
0.000479771
0.000484433
0.000488693
0.000492536
0.000495945
0.000498905
0.000501412
0.000503469
0.000505098
0.000506328
0.000507201
0.000507764
0.000508069
0.000508161
0.000508083
0.000507864
0.000507524
0.000507079
0.000506555
0.000506019
0.000505554
0.000505413
0.000505428
0.000506986
0.000862999
0.000662526
0.000562315
0.000523416
0.000506247
0.000497589
0.00049296
0.000490602
0.000489587
0.000489391
0.000489726
0.000490431
0.000491407
0.000492589
0.000493932
0.000495402
0.000496974
0.000498625
0.000500338
0.000502099
0.000503896
0.00050572
0.000507561
0.00050941
0.000511259
0.000513103
0.000514945
0.000516792
0.000518646
0.000520491
0.000522275
0.000523928
0.000525412
0.000526706
0.000528453
0.00167278
0.00117878
0.00104534
0.00110609
0.00125983
0.00145157
0.00165599
0.00185852
0.00205073
0.00222859
0.00239082
0.00253766
0.00267
0.00278899
0.00289576
0.00299131
0.00307646
0.003152
0.00321864
0.00327715
0.00332827
0.00337279
0.00341152
0.00344525
0.00347475
0.00350073
0.00352378
0.0035444
0.00356302
0.00358005
0.003596
0.00361137
0.00362731
0.00364335
0.00366642
0.00104339
0.000679802
0.000641512
0.000661622
0.000690707
0.000720275
0.000747756
0.000772143
0.000793377
0.000811594
0.000826674
0.000838478
0.000846901
0.000851967
0.000853875
0.000852962
0.000849646
0.000844384
0.000837629
0.000829787
0.000821209
0.000812188
0.000802957
0.000793708
0.000784584
0.000775664
0.000766949
0.000758359
0.000749808
0.000741354
0.000733415
0.000726799
0.000722813
0.000720936
0.00072294
0.00104994
0.000684561
0.000636412
0.00064775
0.000672087
0.000699246
0.000724937
0.000747936
0.000768061
0.000785397
0.000799892
0.000811364
0.000819685
0.000824852
0.000827007
0.000826427
0.00082349
0.000818622
0.000812254
0.000804791
0.000796583
0.000787927
0.000779057
0.000770147
0.000761318
0.000752632
0.000744105
0.000735736
0.000727562
0.000719714
0.000712478
0.000706142
0.00070124
0.000696601
0.000694875
0.000816003
0.000543233
0.000485467
0.000471678
0.000471957
0.000477693
0.000485338
0.000493324
0.000501099
0.000508463
0.000515368
0.000521825
0.000527868
0.000533566
0.000538988
0.000544199
0.00054925
0.000554175
0.000558999
0.000563737
0.000568397
0.000572982
0.000577487
0.000581901
0.000586208
0.000590394
0.000594461
0.000598438
0.000602375
0.000606299
0.000610158
0.000613754
0.000616899
0.000619351
0.000621718
0.00141684
0.000932363
0.00085108
0.000885439
0.000947879
0.00101497
0.00107932
0.00113805
0.0011902
0.00123589
0.00127573
0.00131036
0.00134031
0.00136605
0.0013879
0.00140612
0.00142097
0.00143275
0.00144178
0.00144841
0.00145299
0.00145589
0.00145746
0.001458
0.00145778
0.00145703
0.00145588
0.00145439
0.00145259
0.00145054
0.00144847
0.00144675
0.00144653
0.00144741
0.00145535
0.000952164
0.000642491
0.000579066
0.000564905
0.000565257
0.000571599
0.000580422
0.000589942
0.000599238
0.00060799
0.000616161
0.000623734
0.000630747
0.000637247
0.000643269
0.000648834
0.000653944
0.000658595
0.000662782
0.000666507
0.000669781
0.000672628
0.000675078
0.000677171
0.000678952
0.00068046
0.000681731
0.000682791
0.000683666
0.000684388
0.00068503
0.00068565
0.000686554
0.000687367
0.000690451
0.0016709
0.00115384
0.00091862
0.000829818
0.000851885
0.000970854
0.00116143
0.00139525
0.00165202
0.00191729
0.00218047
0.0024344
0.00267445
0.00289784
0.00310291
0.00328884
0.00345546
0.0036033
0.0037334
0.00384725
0.00394656
0.00403317
0.00410889
0.00417543
0.00423436
0.00428705
0.0043347
0.00437832
0.00441879
0.00445688
0.00449329
0.00452853
0.00456328
0.00459655
0.00463353
0.000830219
0.000632479
0.000538165
0.000502316
0.000486538
0.000478559
0.00047426
0.00047203
0.000471047
0.000470853
0.000471177
0.000471862
0.000472806
0.000473944
0.000475232
0.000476638
0.000478139
0.00047971
0.000481333
0.00048299
0.000484666
0.000486347
0.00048802
0.000489674
0.0004913
0.000492889
0.000494438
0.000495947
0.000497419
0.000498853
0.000500237
0.000501552
0.000502772
0.000503867
0.000505075
0.000698394
0.000525406
0.000447517
0.000417821
0.000404078
0.000396781
0.000392829
0.000390823
0.000389957
0.000389776
0.000390032
0.000390576
0.000391315
0.000392181
0.000393121
0.000394089
0.000395043
0.000395949
0.000396781
0.00039752
0.000398156
0.000398686
0.000399111
0.000399438
0.000399676
0.000399835
0.000399925
0.000399958
0.000399945
0.000399897
0.000399827
0.000399762
0.000399689
0.00039972
0.000399448
0.000734047
0.000555197
0.000471818
0.000439898
0.000425192
0.000417503
0.000413424
0.000411388
0.000410546
0.000410418
0.000410738
0.000411345
0.000412135
0.000413032
0.000413976
0.000414913
0.0004158
0.000416601
0.000417293
0.00041786
0.000418298
0.000418609
0.000418802
0.000418888
0.000418881
0.000418795
0.000418643
0.000418438
0.000418192
0.00041792
0.000417634
0.00041737
0.000417106
0.000416998
0.000416462
0.00166897
0.0011462
0.000892357
0.000751713
0.000666452
0.000612455
0.000579539
0.00056454
0.000568607
0.00059564
0.000650553
0.000737446
0.000858793
0.00101554
0.00120656
0.00142771
0.00167228
0.00193258
0.00220154
0.00247358
0.00274462
0.00301178
0.00327308
0.00352714
0.00377306
0.00401031
0.00423877
0.00445865
0.0046705
0.00487494
0.00507223
0.00526175
0.00544193
0.00561097
0.00576935
0.00148669
0.00102961
0.000977658
0.00103818
0.00111976
0.00120045
0.00127405
0.00133904
0.00139517
0.00144281
0.00148202
0.00151282
0.00153531
0.00154988
0.00155723
0.00155831
0.00155418
0.00154595
0.00153461
0.00152107
0.00150605
0.00149016
0.00147387
0.00145757
0.00144153
0.0014259
0.00141065
0.00139556
0.00138039
0.0013652
0.00135089
0.00133936
0.00133356
0.00133345
0.00134109
0.0014804
0.0010205
0.000962913
0.00101899
0.00110027
0.00118281
0.00125782
0.00132375
0.00138064
0.00142891
0.00146869
0.00149998
0.00152293
0.00153789
0.00154555
0.0015468
0.00154273
0.00153444
0.00152299
0.00150932
0.0014942
0.00147825
0.00146196
0.00144565
0.00142954
0.00141371
0.00139815
0.00138284
0.00136788
0.00135365
0.00134093
0.00133052
0.00132328
0.0013168
0.00131354
0.000750491
0.00057376
0.000485284
0.000452569
0.000437838
0.000429982
0.000425673
0.000423375
0.000422225
0.000421743
0.000421625
0.000421654
0.00042167
0.00042155
0.000421215
0.000420622
0.000419757
0.000418631
0.000417272
0.000415716
0.000414004
0.000412176
0.00041027
0.000408318
0.000406348
0.000404381
0.000402432
0.000400511
0.000398629
0.000396802
0.000395051
0.000393432
0.000391889
0.000390711
0.000388709
0.000664568
0.000499394
0.00042008
0.000391825
0.000379289
0.000372686
0.000369151
0.000367302
0.000366412
0.000366087
0.000366069
0.000366174
0.000366259
0.000366219
0.000365983
0.00036551
0.00036479
0.000363832
0.000362665
0.000361321
0.000359839
0.000358255
0.000356604
0.000354915
0.000353209
0.000351507
0.00034982
0.000348162
0.000346543
0.000344981
0.000343483
0.000342085
0.000340717
0.000339642
0.000337796
0.00166907
0.00114816
0.000894537
0.000754196
0.000669744
0.000617816
0.000589519
0.000583667
0.000603874
0.000655999
0.000745038
0.000873186
0.0010402
0.00124358
0.00147777
0.00173469
0.00200542
0.00228188
0.00255764
0.00282807
0.00308983
0.00334125
0.00358165
0.00381099
0.0040296
0.00423813
0.00443738
0.00462824
0.00481173
0.00498887
0.00516046
0.0053266
0.00548656
0.00563863
0.00578326
0.00167372
0.00116781
0.000992204
0.00101152
0.00115202
0.00135244
0.00157854
0.00181219
0.00204164
0.0022597
0.00246265
0.00264909
0.00281894
0.00297276
0.00311129
0.00323534
0.00334567
0.00344311
0.00352855
0.00360297
0.00366745
0.00372312
0.00377114
0.00381265
0.00384873
0.00388036
0.00390834
0.00393335
0.00395592
0.00397656
0.00399589
0.0040146
0.00403414
0.0040544
0.00408225
0.0015187
0.00104499
0.00097566
0.00103427
0.00112552
0.00121975
0.00130794
0.00138715
0.00145703
0.00151835
0.00157227
0.00161993
0.00166232
0.00170035
0.00173475
0.00176614
0.00179502
0.00182182
0.00184688
0.0018705
0.00189295
0.00191445
0.00193516
0.00195517
0.00197447
0.00199308
0.00201114
0.0020291
0.00204751
0.00206657
0.00208541
0.00210168
0.00211271
0.00211735
0.00212066
0.000715587
0.000536026
0.00045447
0.00042341
0.000409654
0.0004027
0.000398974
0.000397073
0.000396264
0.000396139
0.000396458
0.000397084
0.000397926
0.000398928
0.000400056
0.000401283
0.00040259
0.000403959
0.000405376
0.000406828
0.000408303
0.000409793
0.000411286
0.000412774
0.00041425
0.000415706
0.000417142
0.000418557
0.000419952
0.00042132
0.00042264
0.000423888
0.000425041
0.000426081
0.000427317
0.000765826
0.000580813
0.000493547
0.00046185
0.000448062
0.00044094
0.000437049
0.000434946
0.000433931
0.000433565
0.000433594
0.000433862
0.000434245
0.000434642
0.000434972
0.000435172
0.000435203
0.000435042
0.000434686
0.000434145
0.000433437
0.000432588
0.000431624
0.000430573
0.00042946
0.000428308
0.000427136
0.00042596
0.000424791
0.000423641
0.000422519
0.000421457
0.000420423
0.000419626
0.000418346
0.00132926
0.00088328
0.000827162
0.00086228
0.000915323
0.000969243
0.00101953
0.00106487
0.00110522
0.001141
0.00117264
0.00120052
0.00122505
0.00124654
0.00126525
0.00128141
0.00129521
0.00130684
0.0013165
0.00132438
0.00133071
0.00133568
0.00133952
0.00134242
0.00134459
0.00134619
0.00134735
0.00134821
0.00134887
0.00134948
0.00135017
0.00135097
0.00135221
0.00135247
0.00135696
0.000794745
0.000614798
0.000521932
0.000486757
0.000471054
0.000462909
0.000458562
0.000456322
0.000455294
0.000454978
0.000455067
0.00045534
0.000455635
0.000455826
0.000455821
0.000455565
0.000455035
0.000454232
0.000453178
0.000451907
0.000450459
0.000448874
0.000447191
0.000445445
0.000443664
0.000441871
0.000440084
0.000438318
0.000436584
0.0004349
0.000433275
0.000431753
0.000430275
0.000429134
0.000427235
0.000852568
0.00066801
0.000570276
0.000532266
0.000515217
0.000506343
0.000501548
0.000499001
0.000497747
0.000497256
0.000497199
0.00049735
0.000497537
0.000497628
0.000497529
0.000497182
0.00049656
0.000495662
0.000494506
0.000493125
0.000491557
0.000489842
0.000488021
0.000486128
0.000484197
0.000482253
0.000480315
0.000478398
0.000476513
0.000474674
0.000472896
0.00047123
0.000469634
0.00046841
0.000466459
0.00167273
0.00116098
0.000976269
0.000983616
0.00111374
0.00130689
0.0015286
0.00176151
0.00199407
0.00221838
0.00242978
0.00262612
0.00280697
0.00297288
0.00312484
0.00326421
0.00339231
0.00351039
0.00361959
0.0037209
0.00381522
0.00390335
0.00398594
0.00406352
0.00413649
0.00420524
0.00427031
0.0043325
0.00439269
0.00445128
0.00450743
0.00455865
0.00460208
0.00463668
0.00466901
0.000689629
0.000514434
0.000438589
0.00041246
0.00040081
0.000394771
0.000391629
0.000390028
0.000389302
0.00038907
0.000389077
0.000389128
0.000389075
0.00038881
0.000388266
0.000387416
0.000386263
0.000384836
0.000383176
0.00038133
0.000379346
0.00037727
0.000375138
0.000372983
0.000370828
0.00036869
0.000366583
0.00036452
0.000362516
0.000360595
0.00035877
0.000357077
0.000355414
0.000354039
0.000351699
0.000806893
0.000618985
0.000529419
0.000496645
0.000481876
0.000474102
0.000469932
0.000467778
0.000466787
0.000466442
0.000466407
0.000466439
0.000466357
0.000466031
0.000465382
0.000464381
0.000463032
0.000461367
0.000459434
0.000457286
0.000454976
0.000452556
0.000450069
0.000447553
0.000445037
0.000442544
0.000440084
0.000437664
0.000435292
0.000432994
0.000430811
0.000428831
0.000427012
0.000425658
0.000423352
0.00167002
0.00115394
0.000904508
0.000775922
0.000720062
0.000726275
0.000796104
0.000927196
0.00110883
0.00132759
0.00157041
0.0018245
0.00207851
0.00232395
0.00255513
0.00276869
0.00296295
0.00313739
0.00329237
0.00342884
0.00354818
0.00365203
0.00374217
0.0038204
0.00388846
0.00394796
0.00400033
0.00404674
0.00408817
0.00412548
0.0041596
0.0041917
0.0042237
0.00425676
0.0042958
0.00164287
0.00116536
0.00107159
0.00113524
0.00125929
0.00140375
0.00154957
0.00168727
0.00181301
0.00192588
0.00202632
0.00211532
0.00219402
0.00226346
0.00232451
0.00237787
0.00242413
0.00246387
0.00249766
0.00252609
0.0025498
0.00256942
0.00258558
0.00259889
0.0026099
0.00261911
0.00262688
0.00263348
0.00263909
0.0026439
0.00264827
0.00265267
0.00265856
0.00266547
0.0026819
0.000752989
0.000565483
0.000483582
0.000453738
0.000440348
0.000433353
0.000429564
0.000427625
0.000426804
0.000426689
0.000427037
0.000427694
0.000428553
0.000429537
0.000430582
0.00043164
0.000432668
0.000433632
0.000434507
0.000435276
0.00043593
0.000436467
0.000436892
0.000437214
0.000437443
0.000437591
0.000437673
0.0004377
0.000437687
0.000437646
0.000437585
0.000437517
0.000437416
0.000437357
0.000437052
0.000765433
0.0005786
0.000491549
0.00045894
0.000444162
0.000436472
0.000432426
0.000430453
0.000429692
0.000429634
0.000429994
0.000430607
0.000431355
0.000432151
0.000432925
0.000433617
0.000434184
0.000434598
0.000434845
0.000434923
0.00043484
0.000434612
0.000434258
0.000433799
0.000433257
0.000432649
0.000431993
0.000431302
0.000430591
0.000429875
0.000429171
0.000428518
0.000427904
0.000427488
0.000426744
0.000703802
0.000527759
0.000446317
0.000416485
0.000403086
0.000396146
0.000392499
0.000390695
0.00038997
0.000389879
0.000390167
0.000390675
0.000391288
0.000391917
0.000392488
0.000392946
0.000393252
0.000393387
0.000393343
0.000393127
0.000392756
0.000392249
0.00039163
0.000390923
0.000390148
0.000389326
0.000388471
0.000387597
0.000386717
0.000385846
0.000384997
0.000384211
0.000383452
0.000382936
0.00038183
0.00152811
0.00105599
0.000987687
0.00105087
0.00114941
0.00125223
0.00134921
0.00143686
0.0015145
0.00158281
0.00164298
0.00169622
0.00174361
0.00178606
0.00182439
0.0018593
0.00189136
0.00192104
0.00194874
0.00197479
0.00199951
0.00202313
0.00204584
0.00206774
0.00208884
0.00210915
0.00212887
0.00214849
0.00216862
0.00218946
0.00220998
0.00222761
0.00223938
0.00224425
0.00224738
0.00166884
0.00114343
0.000889266
0.000748345
0.000662093
0.000605134
0.000565235
0.000535953
0.000513642
0.000496116
0.000482007
0.000470423
0.000460772
0.000452659
0.000445831
0.000440143
0.000435542
0.000432069
0.000429858
0.000429147
0.000430299
0.000433817
0.000440373
0.000450842
0.000466343
0.000488306
0.000518554
0.000559411
0.000613782
0.000685149
0.000777416
0.000894581
0.00104014
0.00121641
0.00142034
0.000741843
0.000563878
0.000480457
0.000448306
0.000433539
0.000425703
0.000421427
0.00041923
0.000418272
0.000418052
0.0004183
0.000418863
0.000419642
0.000420567
0.000421583
0.000422643
0.000423704
0.000424731
0.000425695
0.000426573
0.000427352
0.000428026
0.000428595
0.000429063
0.000429436
0.000429726
0.000429941
0.000430092
0.00043019
0.000430248
0.000430276
0.000430303
0.000430315
0.000430417
0.000430252
0.00077722
0.000525329
0.000467196
0.000449629
0.000445532
0.000447343
0.000451808
0.000457279
0.000462899
0.000468397
0.000473659
0.000478623
0.000483275
0.000487621
0.000491661
0.000495387
0.000498789
0.000501852
0.000504568
0.000506935
0.000508964
0.000510673
0.000512089
0.000513247
0.000514179
0.000514919
0.000515492
0.000515919
0.000516218
0.000516414
0.000516561
0.000516717
0.000517089
0.000517495
0.000519239
0.000917781
0.000598581
0.000532631
0.000519958
0.000523396
0.000532597
0.000543597
0.000554717
0.000565317
0.000575203
0.000584338
0.000592759
0.000600548
0.000607811
0.000614657
0.000621179
0.000627453
0.000633536
0.000639475
0.000645302
0.000651041
0.000656706
0.000662301
0.000667815
0.000673231
0.000678538
0.000683753
0.00068894
0.000694172
0.000699449
0.000704604
0.000709244
0.000713013
0.000715806
0.000718713
0.000816018
0.000538588
0.00048105
0.00046695
0.000466754
0.00047203
0.000479322
0.00048716
0.00049492
0.000502351
0.000509345
0.000515851
0.000521852
0.00052735
0.000532346
0.00053684
0.000540835
0.000544337
0.000547356
0.000549912
0.000552033
0.000553757
0.000555129
0.000556198
0.000557011
0.000557616
0.000558054
0.000558365
0.000558591
0.000558781
0.000558978
0.000559174
0.000559445
0.000559344
0.0005603
0.000779507
0.000586914
0.000499806
0.000467281
0.000452612
0.000445027
0.000440904
0.000438763
0.000437806
0.000437581
0.000437838
0.000438434
0.000439281
0.000440319
0.000441507
0.000442815
0.000444214
0.000445684
0.000447205
0.000448765
0.00045035
0.000451952
0.000453561
0.000455168
0.000456766
0.000458349
0.00045992
0.000461486
0.000463049
0.000464595
0.000466077
0.000467433
0.000468619
0.00046965
0.00047096
0.00168119
0.00120074
0.00109924
0.00119751
0.00138123
0.00159193
0.00180567
0.00201097
0.0022022
0.00237724
0.00253596
0.00267928
0.00280862
0.00292552
0.00303144
0.00312769
0.00321548
0.00329585
0.00336973
0.00343793
0.00350121
0.00356022
0.00361553
0.00366754
0.00371647
0.00376256
0.00380624
0.00384837
0.00389002
0.00393165
0.00397191
0.00400709
0.00403281
0.00404724
0.00405994
0.00166935
0.0011939
0.00110198
0.00120479
0.00138713
0.00159296
0.00179772
0.00199002
0.00216533
0.00232259
0.00246208
0.00258456
0.00269084
0.0027817
0.00285803
0.0029208
0.00297117
0.00301048
0.00304018
0.00306178
0.00307674
0.00308644
0.00309209
0.00309474
0.00309527
0.0030944
0.0030927
0.00309056
0.00308823
0.00308589
0.00308374
0.00308205
0.00308189
0.00308255
0.00309047
0.00078094
0.000599054
0.000509549
0.000476142
0.000461366
0.000453735
0.000449624
0.000447416
0.000446336
0.00044593
0.000445929
0.000446155
0.000446468
0.000446754
0.000446927
0.000446925
0.000446713
0.000446275
0.000445618
0.000444759
0.000443725
0.000442548
0.000441259
0.000439891
0.00043847
0.000437021
0.000435563
0.000434111
0.000432677
0.000431274
0.00042991
0.000428625
0.00042737
0.000426424
0.000424732
0.00167412
0.00120689
0.00112546
0.00122539
0.00139419
0.00158316
0.00177047
0.00194408
0.00210018
0.00223827
0.00235873
0.00246219
0.00254927
0.00262068
0.00267736
0.00272051
0.00275163
0.00277239
0.00278457
0.00278988
0.00278991
0.00278603
0.00277941
0.00277099
0.00276151
0.00275151
0.0027413
0.00273105
0.00272079
0.00271058
0.00270077
0.002692
0.002686
0.00268283
0.00268942
0.00156061
0.00109008
0.0010173
0.00107824
0.00117573
0.00127784
0.00137329
0.00145807
0.00153157
0.00159453
0.00164772
0.0016917
0.00172694
0.00175388
0.00177312
0.00178538
0.00179158
0.00179269
0.00178973
0.00178364
0.00177529
0.00176539
0.00175454
0.00174319
0.0017317
0.00172029
0.00170908
0.00169809
0.0016873
0.00167674
0.00166667
0.00165745
0.00165038
0.00164459
0.00164684
0.00166914
0.00115022
0.000896707
0.000755925
0.000669861
0.000613836
0.000576614
0.000553337
0.000542819
0.00054637
0.000567043
0.000608816
0.00067575
0.000771596
0.000899838
0.00106325
0.00126263
0.00149576
0.00175744
0.00204038
0.00233646
0.00263791
0.00293808
0.00323183
0.00351559
0.00378715
0.0040454
0.00429006
0.00452144
0.00474028
0.00494761
0.00514443
0.00533173
0.00550938
0.00567887
0.0016781
0.00119681
0.00108557
0.00117244
0.00134698
0.00155234
0.00176407
0.00196788
0.00215608
0.00232627
0.00247777
0.00261065
0.00272519
0.00282194
0.00290172
0.00296568
0.0030153
0.00305236
0.00307875
0.00309636
0.00310698
0.00311221
0.00311344
0.00311184
0.00310835
0.00310366
0.00309823
0.00309234
0.00308611
0.00307966
0.00307343
0.00306818
0.00306583
0.00306672
0.00307815
0.000948996
0.000673918
0.000600074
0.000576482
0.000570819
0.000572484
0.000577216
0.000583089
0.000589245
0.000595332
0.000601208
0.000606834
0.000612234
0.000617441
0.000622494
0.000627423
0.000632251
0.000636996
0.00064167
0.000646284
0.000650847
0.000655369
0.00065985
0.000664278
0.000668631
0.000672893
0.000677088
0.000681296
0.000685618
0.000690058
0.000694395
0.00069812
0.000700732
0.000702094
0.000703603
0.000940939
0.00064106
0.000575479
0.000557578
0.000555928
0.000561873
0.000571074
0.000581264
0.000591295
0.00060075
0.000609464
0.000617381
0.000624487
0.000630775
0.000636238
0.000640863
0.000644652
0.000647627
0.000649834
0.000651338
0.000652217
0.000652563
0.000652468
0.000652024
0.000651311
0.000650396
0.00064932
0.000648109
0.000646782
0.000645376
0.000643997
0.000642788
0.000642168
0.00064187
0.000644014
0.00154905
0.00108643
0.00102196
0.00108673
0.00118308
0.00128078
0.00137019
0.00144886
0.00151679
0.00157481
0.00162373
0.00166413
0.00169641
0.00172098
0.0017384
0.00174939
0.00175476
0.00175543
0.00175231
0.00174627
0.00173806
0.00172837
0.00171772
0.00170656
0.00169523
0.00168397
0.00167296
0.00166224
0.00165176
0.00164146
0.00163149
0.0016223
0.00161532
0.00161004
0.00161281
0.00166602
0.00119886
0.00112134
0.00121611
0.00137383
0.00154879
0.00172028
0.00187842
0.00201955
0.00214307
0.00224931
0.00233874
0.00241184
0.00246937
0.00251241
0.00254236
0.00256095
0.00257005
0.00257155
0.00256723
0.00255863
0.00254707
0.00253361
0.00251907
0.00250407
0.002489
0.00247409
0.0024594
0.00244492
0.00243075
0.00241733
0.0024054
0.00239668
0.0023907
0.00239338
0.000995244
0.000773922
0.000659576
0.000615167
0.000595832
0.000586017
0.000580658
0.000577825
0.00057652
0.000576193
0.000576507
0.000577269
0.000578353
0.000579681
0.000581196
0.000582858
0.000584634
0.000586492
0.000588407
0.000590353
0.000592311
0.000594261
0.000596188
0.000598078
0.000599919
0.000601703
0.000603426
0.000605089
0.000606694
0.000608244
0.000609732
0.000611149
0.000612466
0.000613661
0.000614868
0.00167238
0.00118993
0.00108459
0.00116968
0.0013336
0.00152441
0.00171972
0.00190779
0.00208272
0.00224213
0.00238544
0.00251294
0.00262526
0.00272312
0.00280734
0.0028788
0.00293848
0.00298747
0.00302697
0.00305825
0.00308259
0.00310122
0.00311528
0.00312577
0.00313359
0.00313948
0.00314404
0.00314772
0.00315087
0.00315378
0.00315676
0.00316004
0.00316446
0.00316877
0.00317972
0.0015167
0.00106336
0.00100077
0.00105006
0.00112554
0.00120326
0.001276
0.00134141
0.00139925
0.00145013
0.00149496
0.00153466
0.00157008
0.00160197
0.00163095
0.0016575
0.00168204
0.00170488
0.00172631
0.00174655
0.0017658
0.00178423
0.00180197
0.00181908
0.00183553
0.0018513
0.00186655
0.00188167
0.0018972
0.00191331
0.00192916
0.00194251
0.00195086
0.00195318
0.00195453
0.00166881
0.00114258
0.000888032
0.000746919
0.000660624
0.000603666
0.000563776
0.000534503
0.000512197
0.000494667
0.000480535
0.000468898
0.000459143
0.00045084
0.00044368
0.000437439
0.000431947
0.000427079
0.000422737
0.000418853
0.000415374
0.00041227
0.000409526
0.000407149
0.000405163
0.000403622
0.000402607
0.000402236
0.000402675
0.000404145
0.000406938
0.000411435
0.000418118
0.000427583
0.00044007
0.00167099
0.00115188
0.000917814
0.000831226
0.000854313
0.000969995
0.00115247
0.00137633
0.00162433
0.00188358
0.00214388
0.00239797
0.00264144
0.00287185
0.00308794
0.00328923
0.00347572
0.00364766
0.0038055
0.00394982
0.00408135
0.00420098
0.00430967
0.00440848
0.00449848
0.00458069
0.00465609
0.00472561
0.00479016
0.00485064
0.0049079
0.0049625
0.00501507
0.00506494
0.00511707
0.000757028
0.000566301
0.000479765
0.000450197
0.000437131
0.000430338
0.000426758
0.000424902
0.000424027
0.0004237
0.000423639
0.000423627
0.000423503
0.000423148
0.000422489
0.000421497
0.000420178
0.000418562
0.000416696
0.000414631
0.00041242
0.000410112
0.000407747
0.000405358
0.000402972
0.000400607
0.000398276
0.000395997
0.000393786
0.000391671
0.000389665
0.000387801
0.000385956
0.000384414
0.00038175
0.000849944
0.000656353
0.000560672
0.000525419
0.000509622
0.000501341
0.000496903
0.000494615
0.000493575
0.000493211
0.00049316
0.000493167
0.000493038
0.000492635
0.000491881
0.000490745
0.000489237
0.000487394
0.000485269
0.000482919
0.000480403
0.000477775
0.000475082
0.000472363
0.000469648
0.00046696
0.000464308
0.000461701
0.000459145
0.000456673
0.000454329
0.000452213
0.000450278
0.000448834
0.000446373
0.00160901
0.00116324
0.00112667
0.00123679
0.00138168
0.00152428
0.00165348
0.00176635
0.00186415
0.00194868
0.00202162
0.0020841
0.00213693
0.00218069
0.00221598
0.00224343
0.00226379
0.0022779
0.00228666
0.00229102
0.00229185
0.00228999
0.00228613
0.00228089
0.00227478
0.00226818
0.00226142
0.00225467
0.00224803
0.00224152
0.00223527
0.0022295
0.0022253
0.002222
0.00222601
0.00167133
0.00117738
0.00104584
0.00110819
0.00126118
0.00145012
0.00165071
0.00184906
0.00203685
0.00220999
0.00236702
0.00250805
0.00263382
0.00274517
0.00284288
0.00292774
0.00300058
0.00306234
0.00311406
0.00315686
0.00319193
0.00322042
0.00324348
0.00326218
0.00327744
0.00329005
0.00330062
0.00330957
0.0033172
0.0033238
0.00332988
0.00333623
0.00334464
0.00335521
0.00337559
0.00158407
0.00110066
0.00101055
0.00106332
0.00116339
0.00127582
0.00138636
0.00148875
0.0015807
0.00166194
0.00173317
0.00179534
0.00184937
0.00189598
0.00193578
0.00196923
0.00199684
0.00201914
0.00203671
0.00205017
0.00206013
0.00206722
0.00207201
0.00207505
0.00207678
0.00207757
0.00207767
0.0020772
0.00207624
0.00207489
0.00207347
0.0020725
0.00207347
0.00207618
0.00208703
0.000913877
0.000607885
0.000542879
0.000528123
0.00052927
0.00053662
0.000546216
0.000556246
0.000565952
0.000575073
0.000583554
0.000591424
0.000598768
0.000605669
0.000612214
0.00061848
0.000624532
0.00063042
0.000636184
0.000641857
0.000647465
0.000653028
0.000658552
0.000664026
0.000669431
0.000674761
0.000680061
0.000685435
0.000690987
0.000696679
0.000702192
0.000706902
0.000710241
0.000712332
0.000714432
0.000819485
0.000548745
0.000486515
0.000469612
0.000468018
0.000472553
0.000479448
0.000486996
0.000494467
0.000501589
0.000508284
0.000514563
0.000520475
0.000526072
0.000531415
0.000536563
0.000541562
0.000546448
0.000551252
0.000555996
0.0005607
0.000565379
0.000570036
0.00057466
0.000579234
0.000583752
0.000588251
0.00059282
0.000597548
0.000602401
0.000607104
0.000611121
0.000613965
0.000615748
0.000617566
0.00166884
0.00114373
0.000889433
0.000748432
0.000662154
0.000605182
0.000565277
0.000535996
0.000513695
0.0004962
0.000482156
0.000470698
0.000461275
0.000453556
0.000447376
0.000442717
0.000439702
0.000438598
0.000439827
0.000443975
0.000451806
0.000464266
0.000482503
0.000507912
0.000542199
0.000587446
0.000646092
0.000720775
0.000814051
0.000928085
0.00106437
0.00122355
0.00140527
0.00160811
0.00182649
0.00165997
0.00118268
0.00109751
0.00119322
0.00135645
0.00153823
0.00171799
0.0018865
0.00204015
0.00217832
0.00230176
0.00241189
0.00251036
0.00259875
0.00267842
0.00275053
0.00281607
0.00287587
0.00293063
0.00298095
0.00302735
0.00307034
0.00311034
0.00314765
0.0031825
0.00321505
0.00324558
0.00327464
0.00330304
0.00333135
0.00335911
0.00338411
0.00340334
0.00341405
0.00342346
0.000807824
0.000612512
0.000524622
0.000491515
0.00047647
0.000468629
0.000464344
0.000462114
0.000461128
0.000460915
0.000461207
0.000461848
0.000462745
0.000463839
0.000465086
0.000466454
0.000467915
0.000469446
0.000471027
0.00047264
0.000474273
0.000475915
0.000477555
0.000479184
0.000480792
0.000482375
0.000483933
0.000485474
0.000487002
0.000488505
0.000489937
0.000491241
0.000492375
0.000493344
0.000494611
0.00167285
0.00118177
0.00104208
0.00110017
0.00126008
0.00146314
0.00168137
0.00189793
0.0021017
0.00228562
0.00244473
0.00257669
0.00268161
0.0027608
0.00281664
0.00285221
0.0028709
0.00287607
0.00287082
0.00285778
0.00283916
0.0028167
0.00279184
0.00276572
0.00273916
0.00271266
0.00268626
0.00265972
0.00263265
0.00260531
0.00257959
0.00255956
0.00255087
0.00255565
0.00257009
0.000923837
0.000614978
0.000548783
0.000534403
0.000535684
0.000542792
0.000551977
0.000561585
0.000570929
0.000579759
0.000587999
0.000595664
0.00060281
0.00060952
0.000615883
0.000621977
0.000627862
0.000633589
0.000639198
0.000644719
0.000650173
0.000655577
0.000660931
0.000666224
0.000671438
0.000676565
0.000681637
0.000686732
0.000691925
0.000697183
0.000702266
0.0007067
0.000710081
0.000712495
0.000715035
0.00166897
0.0011463
0.000892393
0.000751693
0.000666232
0.000611694
0.000577605
0.000560374
0.000560591
0.000581585
0.00062793
0.000703811
0.000812173
0.000954869
0.00113234
0.00134247
0.00158007
0.00183785
0.00210802
0.0023837
0.00265962
0.00293208
0.00319873
0.00345803
0.00370905
0.00395121
0.0041843
0.00440848
0.00462431
0.00483251
0.0050334
0.0052264
0.00540988
0.00558199
0.00574298
0.000943863
0.000618874
0.000552029
0.000539646
0.000543265
0.000552593
0.000563757
0.000575079
0.000585898
0.000596008
0.000605366
0.000614008
0.000622009
0.000629475
0.000636516
0.000643229
0.000649687
0.00065595
0.000662066
0.00066807
0.000673987
0.000679834
0.000685616
0.00069132
0.00069693
0.000702435
0.000707863
0.000713288
0.000718788
0.000724344
0.000729741
0.000734524
0.000738296
0.000741056
0.000743931
0.000841293
0.00064189
0.000552257
0.000518191
0.0005027
0.00049468
0.000490349
0.000488134
0.00048719
0.000487034
0.000487393
0.00048811
0.000489089
0.000490267
0.000491604
0.000493064
0.00049462
0.000496249
0.00049793
0.000499646
0.000501386
0.000503137
0.000504889
0.000506634
0.00050836
0.000510063
0.000511742
0.000513407
0.000515066
0.000516708
0.000518285
0.000519727
0.00052097
0.000522002
0.00052332
0.00166787
0.0012027
0.0011265
0.00122361
0.00138384
0.00156048
0.00173279
0.00189148
0.00203321
0.00215715
0.00226347
0.00235261
0.00242517
0.00248207
0.00252454
0.00255411
0.0025725
0.00258158
0.00258321
0.00257909
0.00257073
0.00255938
0.00254607
0.00253162
0.00251666
0.00250165
0.0024869
0.00247249
0.00245834
0.00244436
0.00243081
0.00241853
0.00240974
0.00240478
0.00241009
0.000763669
0.000580778
0.000494521
0.000461691
0.000447012
0.000439471
0.000435403
0.000433311
0.0004324
0.000432225
0.000432539
0.000433189
0.000434078
0.000435145
0.000436347
0.000437648
0.00043902
0.000440436
0.000441872
0.000443309
0.000444731
0.000446124
0.000447481
0.000448792
0.000450053
0.000451259
0.000452412
0.00045352
0.000454588
0.000455619
0.000456592
0.000457482
0.000458239
0.000458891
0.000459453
0.00166931
0.00115123
0.000898245
0.000759107
0.000677688
0.000632538
0.000617251
0.000633004
0.000684001
0.000773608
0.000902695
0.00107028
0.00127327
0.00150533
0.00175738
0.00201971
0.00228401
0.00254423
0.00279655
0.00303864
0.00326907
0.00348709
0.00369235
0.00388487
0.00406494
0.0042331
0.00439009
0.00453674
0.00467395
0.00480264
0.00492382
0.00503858
0.00514847
0.00525431
0.00535977
0.000892565
0.000687661
0.000583434
0.0005432
0.000525069
0.000515582
0.000510381
0.000507626
0.000506342
0.000505966
0.000506179
0.000506799
0.000507705
0.000508819
0.000510079
0.000511435
0.000512841
0.000514255
0.000515643
0.000516975
0.000518229
0.000519391
0.000520453
0.000521411
0.000522267
0.000523026
0.000523695
0.000524283
0.0005248
0.000525259
0.00052567
0.000526058
0.000526411
0.000526799
0.000527026
0.000876112
0.000622867
0.000556099
0.000535181
0.000529733
0.000530798
0.000534599
0.00053952
0.000544714
0.000549753
0.000554422
0.000558575
0.000562098
0.000564902
0.000566938
0.000568189
0.00056868
0.00056847
0.000567642
0.000566294
0.000564528
0.000562442
0.000560126
0.00055766
0.000555107
0.000552515
0.000549915
0.000547322
0.000544746
0.000542204
0.000539755
0.000537481
0.000535634
0.000534028
0.000534003
0.00167611
0.00118771
0.00107385
0.00115769
0.00132888
0.0015316
0.00174124
0.00194471
0.00213526
0.00231021
0.00246916
0.00261296
0.00274291
0.00286045
0.00296702
0.00306392
0.00315234
0.00323338
0.003308
0.00337704
0.00344128
0.0035014
0.00355797
0.00361138
0.00366187
0.00370967
0.00375525
0.00379947
0.00384342
0.00388745
0.00393006
0.00396735
0.00399487
0.00401105
0.00402642
0.00133744
0.000892875
0.000849113
0.000909342
0.000984296
0.00105387
0.00111437
0.00116597
0.00120937
0.00124645
0.00127831
0.00130556
0.00132854
0.00134745
0.00136251
0.00137393
0.001382
0.00138707
0.00138954
0.00138984
0.00138839
0.00138558
0.00138177
0.00137726
0.00137231
0.00136712
0.00136187
0.00135665
0.00135151
0.00134647
0.00134161
0.00133707
0.00133355
0.00133027
0.00133193
0.00124299
0.000816504
0.000771784
0.000815451
0.000871611
0.000924583
0.000970981
0.00101051
0.00104365
0.00107195
0.00109623
0.00111693
0.00113422
0.00114824
0.00115909
0.00116697
0.00117209
0.00117476
0.00117531
0.00117411
0.00117151
0.00116784
0.00116339
0.00115842
0.00115314
0.00114772
0.00114228
0.00113691
0.00113164
0.00112646
0.00112145
0.00111675
0.00111303
0.00110959
0.0011108
0.00166319
0.00118087
0.00107971
0.00115498
0.00130087
0.00147162
0.00164571
0.00181223
0.00196616
0.0021059
0.00223163
0.00234434
0.00244526
0.00253566
0.0026167
0.00268934
0.00275436
0.00281241
0.00286408
0.00290992
0.00295045
0.00298621
0.00301774
0.00304555
0.00307018
0.0030921
0.00311171
0.00312938
0.00314544
0.00316021
0.0031741
0.00318746
0.00320115
0.00321442
0.00323379
0.000707397
0.000530021
0.000451592
0.000422942
0.000410088
0.000403369
0.000399714
0.000397814
0.000396979
0.00039682
0.000397114
0.000397717
0.000398541
0.000399525
0.000400628
0.000401812
0.000403047
0.000404306
0.000405564
0.000406801
0.000408002
0.000409155
0.000410252
0.000411288
0.000412261
0.000413171
0.000414022
0.00041482
0.000415574
0.00041629
0.000416956
0.000417561
0.00041806
0.000418502
0.000418712
0.00166989
0.00118278
0.00106866
0.00113973
0.00128876
0.00146739
0.00165378
0.00183542
0.00200551
0.00216118
0.0023018
0.00242799
0.0025408
0.00264134
0.00273062
0.00280949
0.00287872
0.00293902
0.00299112
0.0030358
0.00307384
0.00310608
0.00313333
0.00315641
0.00317607
0.00319296
0.00320762
0.00322046
0.0032318
0.00324195
0.00325137
0.00326065
0.00327121
0.00328274
0.00330316
0.00159344
0.00113093
0.00106901
0.00113841
0.00124253
0.00134993
0.00145041
0.00154077
0.00162064
0.00169087
0.00175267
0.00180732
0.00185594
0.00189955
0.00193898
0.0019749
0.00200789
0.00203841
0.00206686
0.00209356
0.00211882
0.00214288
0.00216594
0.00218809
0.00220935
0.00222971
0.00224936
0.00226879
0.00228864
0.00230915
0.00232932
0.00234658
0.00235793
0.00236204
0.00236515
0.00166887
0.00114471
0.000890541
0.000749577
0.000663289
0.000606294
0.000566368
0.000537074
0.000514775
0.000497307
0.000483334
0.000472024
0.000462875
0.000455634
0.000450246
0.000446853
0.000445788
0.000447598
0.000453063
0.000463221
0.000479397
0.000503259
0.000536905
0.000582977
0.000644749
0.000726063
0.000831033
0.000963535
0.0011266
0.00132192
0.00154946
0.00180741
0.00209217
0.00239861
0.00271712
0.00167711
0.00119902
0.00109297
0.00118214
0.00135526
0.00155864
0.00176812
0.00196944
0.00215477
0.0023199
0.00246323
0.00258416
0.0026829
0.00276046
0.00281846
0.00285908
0.00288478
0.00289818
0.00290181
0.00289794
0.00288855
0.00287526
0.00285938
0.00284197
0.00282382
0.00280551
0.00278739
0.0027695
0.00275173
0.00273399
0.00271678
0.00270159
0.00269138
0.00268759
0.00269435
0.00167675
0.00119811
0.00109395
0.00118802
0.00136601
0.00157076
0.00177811
0.00197526
0.00215547
0.00231622
0.00245627
0.00257522
0.00267302
0.0027503
0.00280835
0.00284909
0.0028749
0.00288831
0.00289186
0.00288786
0.00287831
0.0028649
0.00284895
0.00283153
0.00281337
0.00279498
0.00277663
0.00275841
0.00274039
0.00272284
0.00270644
0.00269227
0.00268207
0.00267539
0.00267587
0.00142999
0.000949839
0.000875365
0.000919197
0.000990674
0.00106405
0.00113225
0.00119337
0.00124728
0.00129469
0.00133639
0.00137319
0.00140589
0.00143521
0.00146175
0.00148595
0.0015082
0.00152877
0.00154787
0.00156567
0.00158231
0.00159794
0.00161265
0.00162654
0.00163963
0.00165193
0.00166352
0.00167462
0.00168561
0.0016968
0.00170801
0.00171814
0.00172579
0.00172883
0.00173329
0.00166938
0.00115204
0.000899299
0.000759392
0.00067569
0.000625617
0.000601175
0.000602028
0.000632094
0.000696522
0.000799076
0.000941508
0.00112402
0.00134429
0.00159624
0.00187048
0.00215621
0.00244328
0.00272345
0.00299087
0.00324191
0.00347473
0.00368887
0.0038848
0.00406361
0.00422675
0.00437582
0.00451247
0.00463828
0.00475473
0.00486322
0.00496503
0.00506169
0.00515355
0.00524466
0.00167289
0.00120063
0.001108
0.00120117
0.00136827
0.00156098
0.0017574
0.0019449
0.00211674
0.00226881
0.00239938
0.00250773
0.00259407
0.00265948
0.00270581
0.00273545
0.00275107
0.00275538
0.00275092
0.00273993
0.00272429
0.00270551
0.00268479
0.00266307
0.00264107
0.00261925
0.00259778
0.00257654
0.00255524
0.00253387
0.00251343
0.00249637
0.0024867
0.00248612
0.0024959
0.000565896
0.000404427
0.00034167
0.000320249
0.000310624
0.000305562
0.000302782
0.000301321
0.000300669
0.000300539
0.000300754
0.000301206
0.000301826
0.000302563
0.000303377
0.000304238
0.000305117
0.000305991
0.000306839
0.000307645
0.000308398
0.000309091
0.00030972
0.000310286
0.000310791
0.000311239
0.000311635
0.000311987
0.000312303
0.000312591
0.000312847
0.000313074
0.000313243
0.000313409
0.000313418
0.00167099
0.00115684
0.000917035
0.000813405
0.000808013
0.000891799
0.00105025
0.00126051
0.00150215
0.00175796
0.00201307
0.00225587
0.0024784
0.00267647
0.00284875
0.00299589
0.00311963
0.00322214
0.00330578
0.00337288
0.00342572
0.00346644
0.00349707
0.00351946
0.00353528
0.00354599
0.00355276
0.00355648
0.00355774
0.00355701
0.00355504
0.00355325
0.00355431
0.00356037
0.00357501
0.00164097
0.00117798
0.00110459
0.00118887
0.00133071
0.00148982
0.00164679
0.00179198
0.00192101
0.00203251
0.00212549
0.00219969
0.0022556
0.00229441
0.00231786
0.00232814
0.00232761
0.0023187
0.00230357
0.0022841
0.00226181
0.00223785
0.0022131
0.00218815
0.00216334
0.0021388
0.0021145
0.00209052
0.00206733
0.00204599
0.00202819
0.00201528
0.00200725
0.00199874
0.00198419
0.00165656
0.00118799
0.00110606
0.0011972
0.00135296
0.00152798
0.00170164
0.00186364
0.00200912
0.00213556
0.00224124
0.00232608
0.00239067
0.0024363
0.00246492
0.00247899
0.00248115
0.002474
0.0024599
0.00244082
0.00241834
0.00239376
0.00236812
0.00234222
0.00231662
0.00229161
0.00226711
0.00224269
0.00221786
0.00219275
0.00216915
0.00215099
0.00214388
0.00214978
0.00216615
0.00166935
0.00115106
0.000898161
0.000759802
0.000680648
0.000640711
0.000635662
0.000668605
0.000744127
0.000863418
0.00102418
0.00122231
0.00145151
0.00170286
0.00196629
0.00223228
0.00249426
0.00274791
0.00299074
0.00322149
0.00343965
0.00364517
0.00383825
0.00401931
0.00418891
0.00434773
0.00449657
0.00463628
0.00476779
0.00489207
0.00501011
0.00512272
0.00523068
0.0053334
0.00543435
0.00167521
0.00117371
0.000995932
0.00101589
0.00116855
0.00138932
0.00163643
0.00188756
0.00212876
0.00235021
0.00254736
0.00271815
0.00286183
0.00297896
0.00307113
0.00314075
0.00319075
0.00322425
0.00324432
0.00325376
0.00325499
0.00325007
0.0032407
0.00322826
0.00321386
0.00319835
0.00318228
0.00316589
0.00314919
0.00313221
0.00311554
0.00310077
0.00309098
0.00308819
0.00309574
0.00167558
0.00117578
0.001006
0.00103469
0.00118616
0.00139462
0.00162458
0.00185794
0.00208244
0.00228965
0.00247532
0.00263678
0.00277269
0.00288308
0.00296921
0.0030333
0.00307819
0.00310698
0.0031227
0.00312815
0.00312578
0.00311767
0.00310551
0.00309064
0.00307408
0.00305652
0.0030384
0.00301997
0.00300147
0.00298333
0.00296645
0.00295211
0.00294197
0.00293557
0.00293472
0.000846871
0.000570604
0.000510349
0.000494884
0.000494107
0.000499318
0.000506796
0.000514866
0.000522776
0.000530317
0.000537432
0.000544104
0.000550364
0.000556278
0.000561909
0.000567301
0.000572487
0.000577489
0.000582315
0.000586969
0.000591453
0.00059577
0.000599925
0.000603916
0.000607732
0.000611365
0.000614828
0.000618178
0.000621503
0.000624857
0.000628161
0.000631096
0.000633316
0.000634396
0.000635603
0.000659974
0.000495199
0.000419756
0.000392476
0.00038042
0.000374139
0.000370716
0.000368859
0.000367947
0.000367599
0.000367593
0.000367788
0.000368073
0.000368357
0.000368567
0.000368651
0.000368575
0.000368324
0.000367898
0.000367309
0.000366575
0.00036572
0.000364771
0.00036375
0.000362681
0.000361584
0.000360475
0.000359366
0.000358268
0.000357192
0.000356144
0.000355157
0.000354188
0.00035346
0.000352147
0.00167034
0.00115527
0.000905601
0.0007738
0.000711705
0.000709859
0.000774685
0.000910399
0.00110742
0.00134775
0.00161336
0.00188743
0.00215453
0.00240265
0.00262398
0.00281446
0.00297307
0.00310098
0.00320072
0.00327561
0.0033292
0.00336504
0.00338639
0.00339609
0.00339655
0.00338974
0.00337725
0.00336051
0.00334104
0.00332076
0.00330193
0.00328645
0.00327451
0.00326226
0.00324188
0.00167033
0.00115526
0.000905572
0.000773709
0.000711431
0.000709179
0.000773383
0.000908481
0.00110515
0.00134543
0.00161124
0.00188565
0.00215308
0.00240151
0.00262308
0.00281373
0.00297246
0.00310047
0.00320032
0.00327531
0.00332899
0.00336487
0.00338623
0.00339603
0.00339681
0.00339061
0.00337894
0.00336273
0.00334272
0.00332006
0.00329727
0.00327871
0.00326969
0.00327262
0.00328185
0.00167066
0.00117221
0.00103634
0.00110043
0.00126247
0.00146307
0.0016753
0.00188489
0.00208396
0.00226881
0.00243828
0.00259257
0.00273265
0.00285975
0.00297525
0.00308046
0.00317663
0.0032649
0.00334629
0.00342171
0.00349197
0.00355781
0.0036198
0.00367839
0.00373384
0.00378643
0.00383668
0.00388552
0.003934
0.00398245
0.00402933
0.00407073
0.00410219
0.00412244
0.0041401
0.000733403
0.000539244
0.000459959
0.000432286
0.00041992
0.000413488
0.000410009
0.000408231
0.00040749
0.000407415
0.000407779
0.000408442
0.000409315
0.000410337
0.00041146
0.000412646
0.000413861
0.000415074
0.000416261
0.000417401
0.000418477
0.000419481
0.000420406
0.000421251
0.000422018
0.00042271
0.000423335
0.000423901
0.000424419
0.000424898
0.000425336
0.000425729
0.000426045
0.000426318
0.000426451
0.00167478
0.00117113
0.000999162
0.00102527
0.00117301
0.00137727
0.00160439
0.00183745
0.00206493
0.00227968
0.00247751
0.00265676
0.00281684
0.00295764
0.00307948
0.0031831
0.00326969
0.00334079
0.0033982
0.00344383
0.0034796
0.0035073
0.0035286
0.00354495
0.00355757
0.00356744
0.00357527
0.00358155
0.0035866
0.00359072
0.00359455
0.00359908
0.00360642
0.00361724
0.00363819
0.000985576
0.00067301
0.000610784
0.000600027
0.000604058
0.000613309
0.000624133
0.000634993
0.000645368
0.000655098
0.000664157
0.000672564
0.000680398
0.000687751
0.00069472
0.00070139
0.000707823
0.000714065
0.000720145
0.000726082
0.00073188
0.000737543
0.000743065
0.000748436
0.000753638
0.000758657
0.000763491
0.000768167
0.000772739
0.000777251
0.000781691
0.000785891
0.000789734
0.000792773
0.000796368
0.00063569
0.000470862
0.000397763
0.000371089
0.000358975
0.000352629
0.000349268
0.000347598
0.000346922
0.000346825
0.000347077
0.000347537
0.000348105
0.000348704
0.000349272
0.000349759
0.000350129
0.000350361
0.000350445
0.000350383
0.000350186
0.000349869
0.000349449
0.000348947
0.00034838
0.000347765
0.000347114
0.000346441
0.000345757
0.000345076
0.000344412
0.000343798
0.000343208
0.000342812
0.000341982
0.00132036
0.000855746
0.00078507
0.000818916
0.000875731
0.000934012
0.000988112
0.00103654
0.00107929
0.00111694
0.00115012
0.00117949
0.00120559
0.00122908
0.00125043
0.00127007
0.00128833
0.00130547
0.00132171
0.00133722
0.00135212
0.0013665
0.00138045
0.00139396
0.00140705
0.00141969
0.00143195
0.00144401
0.0014561
0.00146829
0.00148026
0.00149107
0.00149971
0.00150566
0.00151117
0.00101941
0.000710162
0.000642741
0.000629274
0.000631582
0.00063933
0.000648781
0.00065843
0.000667753
0.000676605
0.000684912
0.000692686
0.000699977
0.000706861
0.000713419
0.000719719
0.000725813
0.000731734
0.000737503
0.000743127
0.000748609
0.000753943
0.000759124
0.000764141
0.00076898
0.000773629
0.000778085
0.000782369
0.000786527
0.000790601
0.000794596
0.000798394
0.000801928
0.000804799
0.000808255
0.000859873
0.000563526
0.00050054
0.000486495
0.000487445
0.00049407
0.000502746
0.000511824
0.000520607
0.000528859
0.000536542
0.000543692
0.000550369
0.000556655
0.000562621
0.000568336
0.000573855
0.000579222
0.000584473
0.000589639
0.000594745
0.000599811
0.000604844
0.000609835
0.000614767
0.000619631
0.000624465
0.000629369
0.000634448
0.000639687
0.000644798
0.000649187
0.000652274
0.000654107
0.000655853
0.000819033
0.000565547
0.000504335
0.000486543
0.000483652
0.000486807
0.000492346
0.000498628
0.00050499
0.000511187
0.000517114
0.000522726
0.00052803
0.000533073
0.000537899
0.000542538
0.000547014
0.000551338
0.000555511
0.000559532
0.000563399
0.000567111
0.000570671
0.000574076
0.00057732
0.000580397
0.000583319
0.000586128
0.000588899
0.000591681
0.000594422
0.000596877
0.000598786
0.000599724
0.000601005
0.0016732
0.0011674
0.0010064
0.00104801
0.00120659
0.0014168
0.00164506
0.00187462
0.00209596
0.00230401
0.0024966
0.0026733
0.00283464
0.0029817
0.00311578
0.00323822
0.00335033
0.00345331
0.00354827
0.00363622
0.00371807
0.00379464
0.00386661
0.00393448
0.0039986
0.0040593
0.00411716
0.00417318
0.00422851
0.00428354
0.0043367
0.00438387
0.00442039
0.00444483
0.00446684
0.00165596
0.00118344
0.0010997
0.00117995
0.00132009
0.00147799
0.00163491
0.00178234
0.00191702
0.00203817
0.00214613
0.00224162
0.00232551
0.00239862
0.00246172
0.00251556
0.00256089
0.00259851
0.00262925
0.00265396
0.00267351
0.00268876
0.0027005
0.00270948
0.00271633
0.00272162
0.00272579
0.00272919
0.00273213
0.00273487
0.00273769
0.00274077
0.00274471
0.002748
0.00275698
0.00167062
0.00115561
0.000911351
0.000797099
0.000773163
0.000834295
0.000974044
0.00117216
0.00140641
0.00165895
0.00191457
0.00216135
0.00239112
0.00259909
0.00278302
0.00294245
0.00307811
0.00319148
0.00328454
0.00335954
0.00341887
0.0034649
0.00349989
0.0035259
0.00354474
0.00355795
0.00356674
0.00357208
0.00357473
0.00357548
0.00357534
0.00357562
0.00357819
0.00358362
0.00359485
0.00145978
0.00098971
0.000922163
0.000976677
0.00106176
0.00114878
0.00122924
0.00130094
0.001364
0.00141925
0.00146776
0.00151052
0.00154839
0.00158222
0.00161274
0.00164058
0.00166622
0.00169006
0.00171239
0.00173345
0.00175343
0.00177247
0.00179066
0.00180806
0.0018247
0.00184058
0.00185574
0.00187035
0.00188468
0.00189892
0.00191298
0.00192614
0.00193754
0.00194599
0.00195431
0.000824835
0.000627704
0.00053234
0.000495579
0.000479332
0.000471152
0.000466791
0.000464578
0.000463637
0.000463473
0.000463811
0.0004645
0.000465444
0.000466581
0.00046787
0.000469278
0.000470782
0.000472362
0.000474003
0.00047569
0.000477413
0.000479163
0.000480931
0.000482709
0.000484487
0.000486264
0.00048804
0.000489823
0.000491614
0.000493397
0.00049512
0.000496721
0.000498165
0.000499432
0.000501185
0.00167382
0.00116864
0.000996451
0.00102077
0.00116456
0.00136507
0.00158906
0.00181957
0.0020457
0.00226064
0.00246071
0.00264425
0.00281077
0.00296052
0.00309409
0.00321226
0.00331592
0.00340606
0.00348379
0.00355034
0.00360699
0.00365507
0.00369589
0.00373067
0.00376054
0.00378649
0.00380936
0.00382988
0.00384871
0.00386645
0.00388365
0.00390053
0.0039174
0.00393262
0.00395155
0.000520721
0.000370278
0.000313019
0.000293366
0.000284522
0.000279887
0.000277356
0.000276031
0.000275447
0.000275338
0.000275543
0.000275965
0.000276538
0.000277213
0.000277954
0.00027873
0.000279514
0.000280283
0.00028102
0.00028171
0.000282344
0.000282916
0.000283424
0.00028387
0.000284258
0.000284591
0.000284877
0.000285123
0.000285337
0.000285527
0.000285691
0.000285835
0.000285928
0.000286035
0.000285957
0.00167228
0.00115647
0.000943762
0.000903163
0.000990292
0.00116457
0.00138719
0.00163459
0.00189165
0.00214726
0.00239392
0.00262737
0.00284562
0.00304796
0.00323453
0.00340586
0.00356264
0.00370567
0.00383583
0.003954
0.00406116
0.00415828
0.00424635
0.00432632
0.00439909
0.00446549
0.00452633
0.00458255
0.00463525
0.00468547
0.00473371
0.0047792
0.00482022
0.00485396
0.00488513
0.00167252
0.00117735
0.00105139
0.00112336
0.00128614
0.00148359
0.0016905
0.00189307
0.00208399
0.00226016
0.00242085
0.00256662
0.00269863
0.00281823
0.00292677
0.00302555
0.00311576
0.00319849
0.00327471
0.0033453
0.00341103
0.0034726
0.00353058
0.00358538
0.00363724
0.0036864
0.00373335
0.00377901
0.00382444
0.00386999
0.00391407
0.00395264
0.00398116
0.00399824
0.00401421
0.00167063
0.00115583
0.000909515
0.000788098
0.000748277
0.000782718
0.000889714
0.00105743
0.00126842
0.00150705
0.00175875
0.00200952
0.00224759
0.00246456
0.00265535
0.00281768
0.00295142
0.00305801
0.00313993
0.00320017
0.00324197
0.00326846
0.00328253
0.00328671
0.00328309
0.00327339
0.00325899
0.00324107
0.00322097
0.00320039
0.00318144
0.00316604
0.00315456
0.0031436
0.00312601
0.00167058
0.00115567
0.000909169
0.00078719
0.00074618
0.000778815
0.000883951
0.00105041
0.00126094
0.00149986
0.00175238
0.00200418
0.00224322
0.00246096
0.0026523
0.00281499
0.00294897
0.00305577
0.00313793
0.00319846
0.00324057
0.00326738
0.00328179
0.0032864
0.00328343
0.00327468
0.00326139
0.00324435
0.00322408
0.00320158
0.00317919
0.00316108
0.00315252
0.00315595
0.00316609
0.000877277
0.000590374
0.00052705
0.000511634
0.000511898
0.0005182
0.000526723
0.000535722
0.000544426
0.000552596
0.000560228
0.000567355
0.000574042
0.000580363
0.000586391
0.000592188
0.000597803
0.000603274
0.000608633
0.000613906
0.000619117
0.000624284
0.000629417
0.000634505
0.000639529
0.000644474
0.00064937
0.000654312
0.000659414
0.000664678
0.000669844
0.000674323
0.000677541
0.000679343
0.000681314
0.000767573
0.000520205
0.000460842
0.000443241
0.000440143
0.00044291
0.000448029
0.0004539
0.000459808
0.000465507
0.000470937
0.000476091
0.000480994
0.000485687
0.000490211
0.000494602
0.000498887
0.000503089
0.000507225
0.000511309
0.000515355
0.000519373
0.000523367
0.000527328
0.000531238
0.000535083
0.000538888
0.000542725
0.000546682
0.000550756
0.000554739
0.000558171
0.000560607
0.000561974
0.000563232
0.000694978
0.000467917
0.00041356
0.000397378
0.000394614
0.000397169
0.000401748
0.000406972
0.000412264
0.000417387
0.000422267
0.000426893
0.000431273
0.000435443
0.00043945
0.000443333
0.000447124
0.000450845
0.000454511
0.000458131
0.00046171
0.000465249
0.000468741
0.000472178
0.000475545
0.00047883
0.000482036
0.000485189
0.000488329
0.000491468
0.00049455
0.000497397
0.000499842
0.000501738
0.00050365
0.000673838
0.000501489
0.000425939
0.000397442
0.000384771
0.000378351
0.000374908
0.000373153
0.00037241
0.000372299
0.000372601
0.00037319
0.000373982
0.000374926
0.000375987
0.000377143
0.000378373
0.000379661
0.000380992
0.000382355
0.000383738
0.000385131
0.000386524
0.00038791
0.000389279
0.000390627
0.000391951
0.000393252
0.00039453
0.000395781
0.000396988
0.000398131
0.000399185
0.000400138
0.000401248
0.000817906
0.000628001
0.000533341
0.000498115
0.000482863
0.000475006
0.000470681
0.000468326
0.000467153
0.000466709
0.000466733
0.000467052
0.000467538
0.000468084
0.000468604
0.00046903
0.000469312
0.000469421
0.000469343
0.00046908
0.000468646
0.000468059
0.000467345
0.000466528
0.000465634
0.000464686
0.000463704
0.000462705
0.000461701
0.000460707
0.000459731
0.000458805
0.000457898
0.0004572
0.000456089
0.00167462
0.0011731
0.00101186
0.00105
0.00120208
0.00140505
0.00162812
0.00185469
0.00207378
0.00227912
0.0024675
0.00263789
0.00279016
0.0029246
0.00304168
0.00314214
0.00322702
0.00329764
0.00335554
0.00340233
0.00343971
0.00346928
0.00349256
0.00351091
0.00352549
0.00353723
0.00354685
0.00355481
0.00356143
0.00356706
0.0035723
0.00357812
0.0035866
0.00359827
0.00362007
0.000661331
0.00048934
0.000416862
0.000392131
0.000380991
0.000375141
0.000372069
0.000370487
0.000369755
0.000369513
0.000369514
0.000369576
0.000369556
0.000369352
0.000368898
0.000368164
0.000367151
0.000365883
0.000364394
0.000362729
0.000360931
0.000359041
0.000357096
0.000355125
0.00035315
0.00035119
0.000349255
0.00034736
0.000345516
0.000343744
0.000342058
0.000340494
0.000338963
0.000337723
0.000335591
0.000721292
0.00054558
0.000465938
0.000437278
0.00042428
0.000417383
0.000413662
0.000411733
0.000410833
0.000410518
0.00041049
0.000410537
0.000410497
0.000410255
0.00040974
0.000408922
0.000407803
0.000406408
0.000404775
0.000402949
0.000400979
0.000398906
0.000396771
0.000394607
0.00039244
0.000390289
0.000388166
0.000386077
0.00038403
0.000382047
0.00038016
0.000378443
0.000376851
0.000375666
0.000373598
0.00166967
0.00115292
0.000901451
0.000766702
0.000696438
0.000675168
0.000703052
0.000784024
0.000917151
0.00109565
0.00131036
0.00155059
0.00180448
0.00206153
0.00231347
0.0025548
0.00278215
0.00299357
0.00318813
0.00336562
0.0035264
0.00367126
0.00380135
0.003918
0.00402268
0.00411687
0.00420195
0.00427918
0.00434964
0.00441432
0.00447425
0.00453065
0.00458544
0.00463977
0.00469856
0.000661723
0.000485558
0.000413669
0.000388317
0.000376995
0.000371138
0.000367984
0.000366378
0.000365714
0.000365649
0.000365977
0.000366572
0.000367351
0.00036825
0.00036922
0.00037022
0.000371217
0.000372182
0.000373092
0.00037393
0.000374684
0.000375351
0.000375928
0.00037642
0.000376834
0.000377177
0.000377458
0.000377687
0.000377876
0.000378035
0.000378168
0.000378283
0.000378348
0.000378427
0.000378288
0.00138541
0.000924602
0.000861123
0.000902589
0.000965319
0.0010285
0.00108631
0.00113749
0.00118241
0.00122185
0.00125662
0.00128747
0.00131501
0.00133977
0.00136221
0.00138266
0.00140139
0.00141857
0.00143436
0.00144885
0.00146214
0.00147432
0.00148547
0.00149568
0.00150504
0.00151362
0.00152151
0.00152876
0.00153549
0.00154179
0.00154783
0.00155364
0.00155971
0.00156489
0.0015756
0.000590568
0.000413944
0.000368731
0.000354649
0.000350995
0.000351401
0.000353539
0.00035633
0.000359268
0.000362099
0.000364623
0.000366677
0.000368138
0.000368928
0.000369028
0.000368467
0.000367306
0.000365631
0.000363542
0.000361134
0.000358496
0.000355709
0.000352838
0.000349938
0.000347053
0.000344212
0.000341424
0.000338686
0.000335993
0.000333367
0.000330895
0.000328721
0.000327063
0.000325782
0.000325156
0.000556046
0.000371143
0.000326319
0.00031204
0.000308179
0.000308445
0.000310328
0.000312816
0.000315447
0.000317992
0.000320275
0.000322148
0.000323498
0.000324254
0.000324394
0.000323938
0.00032294
0.000321479
0.000319644
0.000317524
0.000315204
0.000312755
0.000310239
0.000307702
0.000305178
0.000302687
0.00030024
0.000297843
0.000295511
0.000293276
0.000291195
0.000289328
0.000287752
0.000286292
0.000285197
0.00166905
0.0011477
0.000894056
0.00075365
0.000668948
0.00061625
0.000585989
0.000575755
0.000587332
0.000624662
0.000691832
0.000791795
0.000926375
0.0010962
0.00129955
0.00153153
0.0017848
0.00205125
0.00232347
0.00259553
0.00286304
0.0031231
0.00337399
0.00361482
0.00384536
0.00406578
0.00427657
0.00447843
0.0046722
0.00485876
0.00503902
0.00521352
0.00538235
0.00554494
0.00570147
0.000726591
0.000542048
0.000463164
0.000434743
0.000422063
0.000415492
0.000411953
0.000410155
0.000409412
0.000409337
0.000409698
0.000410355
0.000411208
0.000412187
0.000413234
0.000414303
0.000415356
0.000416362
0.000417294
0.000418135
0.000418875
0.000419509
0.00042004
0.000420474
0.000420819
0.000421086
0.000421286
0.000421431
0.000421533
0.000421606
0.000421654
0.00042169
0.000421685
0.000421704
0.000421504
0.0016696
0.00114838
0.000898272
0.000770516
0.000717048
0.000727981
0.00080618
0.000949924
0.00114806
0.00138689
0.00165341
0.00193485
0.00222027
0.00250166
0.00277395
0.00303411
0.00328038
0.00351233
0.00372997
0.00393364
0.0041239
0.00430144
0.00446704
0.00462151
0.00476566
0.0049003
0.00502632
0.00514477
0.00525695
0.00536409
0.00546677
0.00556413
0.00565406
0.00573391
0.00580743
0.000774624
0.000517402
0.000461537
0.000445316
0.000442478
0.00044574
0.000451675
0.000458477
0.000465328
0.000471905
0.000478093
0.000483833
0.000489116
0.000493947
0.000498325
0.000502241
0.000505686
0.000508654
0.000511152
0.000513197
0.000514818
0.000516055
0.000516957
0.000517574
0.000517955
0.000518142
0.000518169
0.000518055
0.000517821
0.000517493
0.000517139
0.000516843
0.000516867
0.000517029
0.00051874
0.000865776
0.000664171
0.000566247
0.000528276
0.000511421
0.000502904
0.000498372
0.000496089
0.000495134
0.000494989
0.000495367
0.000496111
0.000497122
0.000498338
0.000499715
0.000501219
0.000502824
0.000504507
0.00050625
0.000508038
0.00050986
0.000511705
0.000513565
0.000515431
0.000517293
0.000519146
0.000520992
0.00052284
0.000524694
0.000526539
0.000528324
0.000529975
0.000531441
0.0005327
0.00053431
0.000712105
0.000535027
0.000456067
0.000426229
0.000412803
0.000405914
0.000402203
0.000400307
0.000399491
0.000399334
0.00039961
0.00040019
0.000400994
0.000401969
0.000403079
0.000404296
0.000405595
0.000406958
0.000408368
0.000409812
0.000411281
0.000412766
0.000414259
0.000415752
0.000417238
0.000418713
0.000420179
0.000421642
0.000423105
0.000424554
0.000425946
0.000427224
0.000428346
0.000429326
0.000430523
0.00101342
0.000678048
0.000638382
0.0006503
0.000671258
0.00069379
0.000715508
0.000735216
0.000752651
0.000767811
0.000780548
0.00079069
0.000798093
0.000802725
0.000804701
0.000804257
0.000801702
0.000797393
0.000791707
0.000784989
0.000777545
0.000769636
0.000761476
0.00075324
0.000745065
0.00073704
0.000729193
0.000721487
0.000713873
0.000706375
0.000699263
0.000693045
0.000688762
0.000685729
0.000687109
0.000764526
0.000501434
0.000452869
0.000444226
0.000447309
0.000454583
0.000462932
0.00047116
0.000478802
0.000485664
0.000491573
0.000496357
0.000499892
0.000502117
0.000503049
0.000502771
0.000501419
0.000499164
0.00049619
0.000492673
0.000488777
0.000484639
0.000480374
0.000476068
0.000471786
0.000467564
0.00046342
0.000459359
0.000455398
0.000451581
0.000448016
0.000444804
0.000442215
0.00043972
0.000438985
0.00163014
0.00116988
0.00111136
0.001201
0.00133717
0.00148144
0.00161929
0.00174571
0.0018595
0.00196096
0.00205102
0.00213095
0.00220206
0.00226553
0.00232236
0.00237335
0.00241919
0.00246042
0.00249749
0.00253079
0.00256069
0.00258753
0.00261167
0.00263345
0.00265314
0.00267097
0.00268721
0.0027022
0.00271645
0.00273047
0.00274439
0.00275746
0.0027685
0.00277469
0.00278292
0.00167339
0.00116588
0.000999285
0.00103201
0.00117947
0.001378
0.00159687
0.00182059
0.00203921
0.00224665
0.00243983
0.00261768
0.00278041
0.00292894
0.00306446
0.00318835
0.00330193
0.00340641
0.00350287
0.0035923
0.00367559
0.00375352
0.00382671
0.00389562
0.00396062
0.00402205
0.00408052
0.00413692
0.00419217
0.00424646
0.00429829
0.00434427
0.00438096
0.00440808
0.00443473
0.00166954
0.00115305
0.000900622
0.000761167
0.000678696
0.000631623
0.000613425
0.000625609
0.000673491
0.000761937
0.000892612
0.00106454
0.00127492
0.00151746
0.00178244
0.00205833
0.00233404
0.00260047
0.00285118
0.00308229
0.00329213
0.00348058
0.00364864
0.00379796
0.0039305
0.00404834
0.00415347
0.00424772
0.00433269
0.00440979
0.00448038
0.00454589
0.0046083
0.00466887
0.00473241
0.0016653
0.00119279
0.00111474
0.00121623
0.00138254
0.00156657
0.00174924
0.0019219
0.00208096
0.00222534
0.00235524
0.00247179
0.00257633
0.00267017
0.00275446
0.00283021
0.00289831
0.00295948
0.00301438
0.00306356
0.00310758
0.00314698
0.0031823
0.00321405
0.00324265
0.0032685
0.00329198
0.0033136
0.00333401
0.00335388
0.00337338
0.00339166
0.00340725
0.00341737
0.00342727
0.00166921
0.00114806
0.000895025
0.000757005
0.000679074
0.000642211
0.000644
0.000690128
0.000786664
0.000933766
0.00112608
0.00135606
0.00161461
0.00189139
0.00217651
0.00246197
0.00274196
0.00301256
0.00327148
0.00351748
0.00374998
0.00396896
0.0041748
0.00436806
0.00454955
0.00472021
0.00488101
0.00503305
0.00517763
0.005316
0.00544902
0.0055764
0.00569678
0.00580795
0.00591225
0.00158501
0.00111485
0.0010451
0.00111495
0.00122392
0.00133703
0.0014426
0.00153703
0.00162051
0.00169404
0.00175893
0.00181641
0.00186756
0.00191333
0.00195453
0.00199181
0.00202567
0.00205652
0.00208465
0.00211034
0.0021338
0.00215522
0.00217479
0.00219269
0.00220908
0.00222412
0.00223794
0.0022507
0.00226257
0.00227375
0.00228448
0.0022948
0.00230517
0.00231426
0.00232946
0.000670427
0.00050198
0.000427693
0.000401174
0.000389086
0.000382627
0.000379115
0.000377289
0.000376423
0.000376109
0.000376077
0.000376128
0.000376116
0.000375935
0.000375518
0.000374834
0.000373881
0.00037268
0.000371261
0.000369665
0.000367933
0.000366104
0.000364214
0.000362292
0.000360364
0.000358448
0.000356554
0.000354691
0.000352866
0.0003511
0.000349416
0.000347877
0.000346433
0.000345343
0.000343434
0.000716989
0.000535114
0.000457482
0.000430538
0.000418421
0.00041209
0.000408776
0.000407102
0.000406362
0.000406159
0.000406225
0.000406358
0.000406407
0.00040626
0.000405846
0.00040513
0.000404111
0.000402812
0.000401272
0.000399535
0.00039765
0.000395661
0.000393606
0.000391519
0.000389425
0.000387344
0.000385289
0.000383273
0.00038131
0.00037942
0.000377617
0.000375941
0.000374309
0.00037299
0.000370794
0.000559125
0.000410716
0.000347727
0.000325878
0.000316024
0.000310816
0.000308038
0.000306598
0.000305923
0.000305693
0.0003057
0.000305788
0.000305839
0.000305765
0.000305508
0.000305039
0.00030435
0.000303456
0.000302382
0.00030116
0.000299823
0.000298404
0.000296932
0.000295432
0.000293923
0.00029242
0.000290935
0.000289476
0.000288054
0.000286684
0.000285373
0.000284152
0.000282956
0.000282012
0.000280367
0.000586168
0.000436618
0.000369876
0.000345895
0.000334932
0.000329033
0.000325792
0.00032407
0.000323217
0.000322869
0.000322789
0.000322809
0.000322801
0.000322671
0.000322358
0.000321831
0.000321083
0.000320128
0.000318989
0.000317697
0.000316285
0.000314787
0.000313232
0.000311646
0.00031005
0.00030846
0.000306887
0.000305339
0.000303822
0.000302353
0.000300948
0.000299656
0.000298429
0.0002975
0.000295871
0.00129941
0.000874139
0.000819523
0.00084751
0.000891686
0.000937175
0.000980036
0.00101889
0.00105335
0.00108382
0.00111084
0.00113489
0.00115649
0.0011761
0.00119407
0.00121071
0.00122626
0.00124089
0.00125475
0.00126795
0.00128057
0.0012927
0.00130441
0.00131571
0.00132657
0.00133699
0.001347
0.00135684
0.00136684
0.00137717
0.00138744
0.00139637
0.00140253
0.00140451
0.00140743
0.001617
0.00116311
0.0011171
0.0012243
0.00137225
0.00152091
0.00165746
0.0017785
0.00188439
0.00197663
0.00205672
0.00212582
0.00218481
0.00223438
0.00227516
0.00230781
0.00233307
0.00235176
0.00236478
0.00237305
0.00237746
0.00237885
0.00237796
0.00237542
0.00237177
0.00236746
0.00236281
0.00235805
0.00235331
0.00234865
0.00234422
0.00234022
0.00233771
0.00233562
0.00234158
0.0016689
0.00114521
0.000891272
0.000750373
0.000664097
0.000607247
0.000567825
0.000539776
0.000520116
0.000507726
0.000502839
0.000506816
0.000521956
0.000551215
0.000597831
0.000665075
0.000756225
0.000874368
0.00102159
0.00119794
0.00140099
0.00162618
0.0018678
0.00212004
0.00237778
0.00263699
0.00289481
0.0031494
0.00339978
0.00364549
0.00388628
0.00412164
0.00435048
0.00457118
0.00478138
0.00128464
0.00085136
0.00079353
0.000823135
0.000870692
0.000919623
0.000965387
0.00100657
0.00104313
0.00107552
0.00110424
0.00112974
0.00115251
0.00117306
0.00119177
0.00120893
0.00122479
0.0012395
0.0012532
0.00126598
0.0012779
0.00128905
0.0012995
0.0013093
0.00131847
0.00132705
0.00133507
0.00134269
0.00135016
0.00135772
0.0013653
0.00137222
0.00137764
0.00137986
0.00138335
0.000802583
0.000543468
0.000493788
0.000482349
0.00048243
0.000487573
0.0004947
0.000502201
0.000509206
0.000515406
0.000520546
0.000524403
0.000526799
0.000527661
0.000527031
0.000525047
0.000521906
0.00051783
0.000513044
0.000507749
0.000502128
0.000496329
0.000490471
0.000484654
0.000478946
0.000473376
0.00046792
0.000462516
0.000457129
0.000451858
0.000447054
0.000443295
0.000441234
0.000440511
0.000440543
0.00072592
0.000495423
0.000445884
0.000432329
0.000430886
0.000434502
0.000439893
0.000445648
0.000451147
0.000456009
0.000460031
0.000463024
0.000464839
0.000465404
0.00046474
0.000462949
0.000460188
0.000456638
0.000452485
0.000447911
0.000443069
0.000438087
0.000433063
0.000428066
0.000423132
0.000418277
0.000413506
0.000408847
0.000404379
0.000400251
0.000396652
0.000393667
0.000391177
0.000388278
0.000384544
0.00167148
0.00119978
0.00111529
0.00120864
0.00136636
0.00154331
0.00172
0.00188587
0.00203659
0.00217137
0.00229047
0.00239457
0.00248437
0.00256058
0.00262393
0.00267526
0.00271562
0.00274624
0.00276849
0.00278373
0.00279331
0.00279845
0.00280025
0.00279965
0.00279741
0.00279412
0.00279016
0.00278571
0.00278087
0.00277574
0.0027707
0.00276652
0.00276512
0.0027668
0.00277907
0.00167435
0.00116242
0.000966552
0.000956507
0.00107829
0.00127874
0.0015172
0.00177117
0.00202646
0.00227382
0.00250791
0.00272631
0.00292847
0.00311477
0.00328605
0.0034434
0.00358795
0.00372084
0.00384319
0.00395603
0.00406036
0.00415709
0.00424704
0.00433087
0.00440912
0.00448222
0.00455078
0.00461572
0.00467824
0.00473917
0.00479787
0.00485149
0.00489606
0.00492887
0.00495755
0.00133783
0.000887839
0.000829323
0.000870072
0.000930446
0.000991359
0.00104798
0.0010988
0.00114358
0.00118288
0.00121752
0.00124824
0.0012757
0.00130047
0.00132303
0.00134379
0.00136307
0.00138113
0.00139821
0.00141447
0.0014301
0.00144521
0.00145991
0.00147423
0.00148813
0.00150163
0.00151482
0.00152804
0.00154171
0.00155593
0.00156996
0.00158198
0.00158993
0.00159314
0.0015949
0.00087199
0.000572989
0.000518256
0.00051289
0.000520342
0.000531298
0.000542492
0.000552905
0.000562253
0.000570583
0.000578032
0.000584638
0.000590367
0.000595166
0.000599
0.000601859
0.000603767
0.000604781
0.000604988
0.000604495
0.000603418
0.000601874
0.000599973
0.000597816
0.000595492
0.000593073
0.00059062
0.000588169
0.000585744
0.000583362
0.000581067
0.000578905
0.000577128
0.000575385
0.000575313
0.000895739
0.000589372
0.000532692
0.000526854
0.000534276
0.000545407
0.000556879
0.000567588
0.000577267
0.000585995
0.000593819
0.000600794
0.000606901
0.000612095
0.000616346
0.000619645
0.000622011
0.000623492
0.000624169
0.000624137
0.000623507
0.00062239
0.000620893
0.000619116
0.000617146
0.00061506
0.000612917
0.000610759
0.000608611
0.000606497
0.000604462
0.000602546
0.000601008
0.00059943
0.000599757
0.0016696
0.00115128
0.000900621
0.000769832
0.000708654
0.000703819
0.000755679
0.000864611
0.00102547
0.0012303
0.00147011
0.00173401
0.00200999
0.00228706
0.00255665
0.00281286
0.00305211
0.00327274
0.00347453
0.00365794
0.00382449
0.00397582
0.00411361
0.00423949
0.00435494
0.00446132
0.00455983
0.00465149
0.0047372
0.00481778
0.00489408
0.00496705
0.00503814
0.00510793
0.00518054
0.0012481
0.000805911
0.000750205
0.000783994
0.000835911
0.000888339
0.000936325
0.000978978
0.00101657
0.00104967
0.00107887
0.00110472
0.00112773
0.00114837
0.00116698
0.00118385
0.0011992
0.00121317
0.00122589
0.00123744
0.00124791
0.00125739
0.00126598
0.00127376
0.00128082
0.00128724
0.00129309
0.00129848
0.00130362
0.0013087
0.0013138
0.00131862
0.00132288
0.00132481
0.00132974
0.00166952
0.0011529
0.000900458
0.00076195
0.00068206
0.000640631
0.000633135
0.000662851
0.000735156
0.000852744
0.00101435
0.001216
0.00145116
0.00171058
0.00198361
0.00225994
0.0025309
0.00278997
0.00303275
0.00325674
0.00346095
0.0036456
0.00381165
0.00396061
0.00409421
0.0042143
0.00432267
0.00442103
0.00451086
0.0045935
0.00467017
0.00474201
0.00481059
0.00487635
0.00494423
0.0016697
0.00114754
0.000897766
0.000770955
0.000719603
0.000734266
0.00081695
0.000963529
0.00116096
0.00139544
0.00165519
0.00192947
0.00220891
0.00248631
0.00275664
0.00301672
0.00326471
0.00349981
0.0037219
0.00393125
0.00412842
0.00431413
0.00448915
0.00465425
0.00481008
0.00495729
0.00509663
0.00522915
0.00535615
0.00547857
0.00559605
0.00570617
0.00580537
0.00589132
0.00597073
0.000759199
0.000510271
0.000453485
0.000436934
0.00043391
0.000436475
0.000441322
0.000446963
0.000452774
0.000458499
0.000463989
0.000469157
0.00047396
0.000478369
0.000482361
0.000485918
0.00048903
0.000491695
0.00049392
0.000495725
0.000497139
0.0004982
0.000498952
0.000499444
0.000499721
0.000499828
0.000499804
0.000499683
0.000499501
0.000499297
0.000499109
0.000498939
0.000498852
0.00049854
0.000498852
0.00167311
0.00115983
0.000959932
0.00094274
0.00105544
0.00124741
0.00147918
0.00172839
0.00198067
0.00222633
0.00245965
0.00267794
0.00288038
0.00306706
0.00323859
0.00339583
0.00353967
0.00367106
0.00379092
0.00390018
0.00399973
0.00409047
0.00417326
0.0042489
0.00431812
0.00438159
0.00443998
0.00449417
0.00454526
0.00459427
0.00464149
0.00468568
0.00472447
0.00475494
0.00478111
0.00137288
0.000927871
0.000875775
0.000920088
0.000983754
0.00104695
0.00110474
0.00115631
0.00120188
0.00124208
0.00127751
0.00130883
0.00133669
0.00136167
0.00138424
0.00140477
0.00142354
0.00144075
0.00145656
0.00147108
0.00148441
0.00149666
0.00150792
0.00151829
0.00152785
0.00153666
0.00154479
0.00155239
0.0015597
0.001567
0.00157433
0.00158119
0.00158709
0.00158976
0.00159644
0.00167006
0.00115017
0.000905012
0.000790397
0.000764459
0.000819733
0.000949661
0.0011369
0.00136325
0.00161516
0.00188125
0.00215165
0.00241866
0.00267677
0.00292236
0.00315321
0.0033681
0.00356653
0.00374857
0.00391474
0.0040659
0.00420317
0.00432786
0.00444132
0.00454491
0.00463986
0.00472737
0.00480859
0.00488468
0.00495681
0.00502581
0.0050918
0.00515432
0.00521139
0.00526697
0.0016749
0.00117957
0.0010438
0.0011074
0.00126929
0.00147029
0.00168393
0.0018961
0.00209868
0.00228746
0.00246093
0.00261908
0.00276276
0.00289331
0.00301211
0.00312047
0.0032196
0.00331056
0.00339425
0.00347143
0.00354276
0.00360881
0.00367008
0.00372699
0.00377988
0.00382909
0.00387496
0.00391794
0.00395866
0.00399769
0.00403524
0.0040707
0.00410301
0.0041305
0.00415735
0.000761763
0.000522356
0.000467831
0.000451954
0.00044895
0.000451371
0.00045601
0.000461447
0.000467086
0.000472654
0.000477999
0.000483022
0.000487677
0.000491925
0.000495739
0.000499097
0.000501988
0.000504411
0.000506379
0.000507913
0.000509051
0.000509833
0.00051031
0.000510532
0.000510548
0.000510404
0.000510141
0.000509793
0.000509393
0.000508977
0.000508585
0.000508224
0.000507987
0.000507537
0.000507909
0.000710917
0.000536167
0.00045666
0.000427131
0.000413729
0.000406674
0.000402807
0.00040076
0.000399818
0.000399578
0.000399798
0.000400324
0.000401045
0.000401879
0.000402759
0.00040363
0.000404449
0.000405182
0.000405806
0.00040631
0.000406689
0.000406945
0.000407089
0.000407132
0.000407089
0.000406975
0.000406803
0.000406589
0.000406343
0.000406081
0.000405807
0.000405539
0.000405241
0.000405049
0.000404402
0.00140618
0.00094555
0.000888242
0.0009443
0.00102627
0.00110818
0.00118282
0.00124888
0.00130685
0.00135769
0.00140236
0.00144175
0.00147662
0.00150764
0.00153533
0.00156012
0.00158233
0.00160221
0.00161997
0.00163579
0.00164984
0.0016623
0.00167335
0.00168316
0.00169191
0.00169972
0.00170674
0.00171314
0.00171916
0.00172506
0.00173099
0.00173666
0.00174178
0.00174445
0.00175002
0.0012442
0.000824446
0.000771849
0.000801526
0.000845599
0.00089019
0.000931609
0.00096879
0.00100185
0.00103118
0.00105712
0.00107999
0.00110003
0.00111744
0.00113239
0.00114503
0.00115551
0.001164
0.00117068
0.00117575
0.00117943
0.00118193
0.00118346
0.00118423
0.0011844
0.00118416
0.00118361
0.00118287
0.00118202
0.00118115
0.00118039
0.00117978
0.00117969
0.00117904
0.00118193
0.00166902
0.00114658
0.000892865
0.000752513
0.000668045
0.000615944
0.000587008
0.000579426
0.000595748
0.000640525
0.000717801
0.000829711
0.000976838
0.00115836
0.00137113
0.00160935
0.00186566
0.00213264
0.00240402
0.00267505
0.00294241
0.00320384
0.00345788
0.00370356
0.00394029
0.00416774
0.00438591
0.00459517
0.00479625
0.00498998
0.00517675
0.0053559
0.00552569
0.0056842
0.00583264
0.00166904
0.00114714
0.000893523
0.000753236
0.000668895
0.000617108
0.000588865
0.000582679
0.000601597
0.000650814
0.000734961
0.00085644
0.00101565
0.00121094
0.00143761
0.00168817
0.00195392
0.00222722
0.00250192
0.00277359
0.00303913
0.00329651
0.00354452
0.00378252
0.00401028
0.0042279
0.00443579
0.00463466
0.00482551
0.00500942
0.00518708
0.00535822
0.00552149
0.00567495
0.00581958
0.00130445
0.000895141
0.000838446
0.000857603
0.000893594
0.000932546
0.000970142
0.00100465
0.00103559
0.00106313
0.00108764
0.0011096
0.00112943
0.00114753
0.00116421
0.00117974
0.00119431
0.00120811
0.00122125
0.00123384
0.00124597
0.00125772
0.00126915
0.00128026
0.00129102
0.0013014
0.00131148
0.00132151
0.00133183
0.00134254
0.00135306
0.00136193
0.0013676
0.00136927
0.00137105
0.00166892
0.00114565
0.000891663
0.000750752
0.000664504
0.000607761
0.000568615
0.000541169
0.000522691
0.000512436
0.000511139
0.000520732
0.000544043
0.000584365
0.000645072
0.000729507
0.000840961
0.000982134
0.00115406
0.00135529
0.0015818
0.00182778
0.00208673
0.00235252
0.0026201
0.00288581
0.00314725
0.00340314
0.00365298
0.00389681
0.00413474
0.00436656
0.00459135
0.00480761
0.00501359
0.00167205
0.0011577
0.000936011
0.000877513
0.000946371
0.0011119
0.00133371
0.00158293
0.00184248
0.00210045
0.00234842
0.00258085
0.00279437
0.002987
0.00315775
0.00330691
0.00343542
0.00354479
0.00363694
0.00371398
0.00377808
0.00383132
0.00387562
0.00391272
0.00394413
0.00397107
0.00399453
0.00401522
0.00403366
0.00405034
0.00406598
0.00408163
0.00409934
0.00412002
0.00414936
0.00166892
0.00114575
0.000891662
0.000750706
0.00066448
0.000607872
0.000569088
0.00054243
0.000525491
0.00051802
0.000521431
0.000538464
0.000572702
0.000627921
0.000707633
0.000814997
0.000952514
0.00112109
0.00131915
0.00154261
0.00178571
0.00204219
0.00230633
0.00257344
0.00283998
0.00310339
0.00336196
0.00361459
0.00386077
0.00410038
0.00433338
0.00455941
0.00477746
0.00498608
0.00518364
0.00166917
0.00115006
0.000896734
0.000756549
0.000672312
0.000620803
0.000593149
0.000587877
0.000607785
0.000657445
0.000740817
0.000860151
0.00101625
0.00120798
0.00143097
0.00167764
0.00193902
0.00220684
0.00247476
0.00273862
0.00299563
0.00324411
0.00348305
0.00371179
0.00392997
0.00413748
0.00433446
0.00452125
0.00469837
0.00486646
0.00502632
0.00517882
0.00532506
0.00546548
0.00560274
0.00166947
0.00115206
0.000899651
0.00076197
0.000684356
0.000647743
0.000648904
0.000691759
0.000780467
0.000914836
0.00109081
0.00130209
0.00153987
0.00179363
0.00205328
0.00231089
0.00256106
0.00280018
0.00302637
0.00323853
0.00343606
0.00361888
0.0037873
0.003942
0.0040839
0.00421412
0.0043338
0.00444409
0.00454607
0.00464074
0.00472919
0.00481262
0.00489279
0.00497078
0.00505109
0.00167074
0.00115648
0.00091269
0.000799168
0.000775411
0.000834664
0.000970305
0.00116434
0.00139594
0.00164655
0.00189968
0.00214195
0.00236483
0.00256424
0.00273863
0.00288793
0.00301298
0.00311528
0.00319678
0.00325979
0.00330674
0.00334009
0.00336219
0.00337521
0.00338111
0.00338151
0.00337771
0.00337055
0.00336059
0.00334838
0.00333511
0.00332319
0.00331648
0.00331801
0.00332913
0.0016707
0.00115624
0.000911249
0.000794407
0.000763816
0.000812251
0.000934824
0.00111579
0.00133551
0.0015767
0.00182381
0.00206392
0.00228876
0.00249347
0.00267532
0.00283304
0.00296647
0.0030764
0.00316444
0.00323278
0.00328396
0.00332059
0.00334525
0.00336024
0.0033676
0.00336901
0.00336578
0.00335899
0.00334959
0.00333866
0.00332763
0.00331816
0.00331188
0.00330851
0.00330748
0.0016537
0.00118941
0.00112246
0.00122186
0.00137672
0.00154219
0.00170076
0.00184607
0.00197648
0.00209224
0.00219425
0.00228348
0.00236088
0.00242723
0.00248328
0.00252979
0.00256755
0.00259746
0.00262048
0.00263761
0.00264985
0.00265813
0.00266331
0.00266615
0.0026673
0.00266731
0.00266659
0.00266546
0.00266414
0.00266278
0.00266161
0.00266082
0.00266132
0.0026618
0.00266968
0.0016707
0.00115605
0.000910928
0.000792785
0.000759336
0.000802983
0.000918965
0.00109209
0.00130421
0.00154002
0.00178547
0.0020277
0.00225646
0.00246471
0.00264835
0.00280553
0.0029361
0.00304126
0.00312316
0.00318449
0.00322815
0.00325703
0.00327385
0.00328106
0.00328081
0.00327489
0.00326457
0.00325064
0.00323361
0.00321424
0.00319436
0.00317757
0.00316878
0.0031712
0.00318228
0.00167076
0.00115621
0.00091114
0.00079307
0.000759653
0.000803136
0.000918768
0.00109146
0.00130293
0.00153763
0.00178168
0.00202275
0.00225092
0.0024592
0.00264339
0.00280138
0.0029328
0.00303866
0.00312101
0.00318251
0.00322611
0.00325475
0.00327121
0.00327793
0.00327699
0.00327009
0.00325856
0.00324354
0.00322617
0.00320791
0.00319065
0.00317633
0.003166
0.00315765
0.00314644
0.00105926
0.000706622
0.000647282
0.000641408
0.000650408
0.000664512
0.000680063
0.000695375
0.000709713
0.000722877
0.00073491
0.000745935
0.00075611
0.000765592
0.000774519
0.000782998
0.000791118
0.000798944
0.000806521
0.000813887
0.000821074
0.00082811
0.000835009
0.000841761
0.000848334
0.000854704
0.000860917
0.000867117
0.000873493
0.000880084
0.000886529
0.00089194
0.000895487
0.000896592
0.000898739
0.00167061
0.00118318
0.00107218
0.00115701
0.00132497
0.00152162
0.0017248
0.00192301
0.00210998
0.00228283
0.00244069
0.00258388
0.00271328
0.00282997
0.002935
0.00302939
0.00311404
0.00318975
0.00325728
0.00331733
0.0033706
0.00341782
0.00345969
0.00349692
0.00353012
0.00355986
0.00358667
0.00361115
0.00363404
0.00365603
0.00367747
0.00369776
0.00371571
0.00372876
0.00374134
0.00167023
0.00115539
0.000904632
0.000769543
0.000698638
0.000677087
0.00070623
0.000791615
0.00093331
0.00112436
0.00135494
0.00161277
0.00188251
0.0021482
0.00239648
0.00261832
0.00280909
0.00296773
0.00309562
0.00319561
0.00327123
0.00332623
0.00336421
0.00338843
0.00340168
0.00340628
0.00340412
0.00339675
0.0033856
0.00337226
0.00335861
0.0033466
0.00333756
0.00333044
0.00332181
0.00167021
0.00115534
0.000904554
0.000769433
0.000698481
0.000676891
0.000706022
0.000791373
0.000932912
0.00112375
0.00135415
0.00161172
0.00188096
0.00214586
0.00239312
0.00261392
0.00280385
0.002962
0.00308983
0.00319017
0.00326646
0.00332235
0.00336135
0.00338666
0.00340111
0.0034071
0.00340646
0.00340053
0.00339025
0.00337659
0.00336125
0.00334729
0.00333904
0.00333984
0.00334895
0.00167558
0.00117092
0.00101042
0.00105406
0.0012148
0.00142599
0.00165559
0.00188784
0.00211306
0.00232569
0.00252309
0.00270457
0.00287055
0.00302207
0.00316039
0.00328685
0.00340268
0.00350911
0.00360721
0.00369802
0.00378244
0.00386132
0.00393536
0.00400508
0.00407084
0.00413298
0.00419209
0.00424917
0.00430538
0.00436112
0.0044148
0.00446229
0.00449903
0.00452358
0.00454722
0.00137757
0.000939742
0.000882885
0.000914023
0.000963461
0.00101463
0.00106291
0.0011067
0.00114562
0.00118001
0.00121042
0.00123748
0.00126176
0.00128376
0.00130391
0.00132254
0.00133991
0.00135624
0.00137169
0.0013864
0.00140048
0.00141403
0.00142713
0.00143979
0.001452
0.00146371
0.00147502
0.00148622
0.00149769
0.00150958
0.00152133
0.00153129
0.00153773
0.0015394
0.00154193
0.00166889
0.0011449
0.000890852
0.000749918
0.000663618
0.000606657
0.000566911
0.000538112
0.000516923
0.000501672
0.000491799
0.000487623
0.000490241
0.000501451
0.000523607
0.000559405
0.000611719
0.000683614
0.000778306
0.000898678
0.00104636
0.00122097
0.00141995
0.0016391
0.00187348
0.00211821
0.00236907
0.00262274
0.00287679
0.00312955
0.00337984
0.00362661
0.00386859
0.00410414
0.00432992
0.000716467
0.000479527
0.000421462
0.000403853
0.000400559
0.00040292
0.000407446
0.000412671
0.000417996
0.000423179
0.000428114
0.000432794
0.000437224
0.000441443
0.000445499
0.00044943
0.000453268
0.000457037
0.000460753
0.000464426
0.000468061
0.000471659
0.000475217
0.000478725
0.000482167
0.000485532
0.000488824
0.000492074
0.000495322
0.000498577
0.000501768
0.000504697
0.000507176
0.000509094
0.00051098
0.00162766
0.0011637
0.00110082
0.00119206
0.00133134
0.00147956
0.00162203
0.00175319
0.00187157
0.00197729
0.00207133
0.00215478
0.00222868
0.00229404
0.0023517
0.00240239
0.00244675
0.00248536
0.00251876
0.00254745
0.00257197
0.00259284
0.00261059
0.00262571
0.00263866
0.00264985
0.00265964
0.00266834
0.00267634
0.002684
0.00269164
0.00269915
0.00270647
0.00271163
0.00271963
0.00167064
0.00115113
0.000912989
0.000817165
0.000826513
0.000929806
0.00110684
0.00133168
0.00158524
0.00185377
0.00212618
0.00239409
0.00265194
0.00289631
0.00312539
0.00333836
0.00353501
0.00371563
0.00388078
0.00403123
0.00416794
0.004292
0.00440458
0.00450688
0.00460006
0.00468524
0.00476347
0.00483585
0.00490359
0.00496783
0.00502933
0.00508782
0.00514225
0.00519016
0.00523645
0.00161732
0.00117855
0.00113864
0.00123491
0.00136384
0.00149293
0.00161079
0.00171527
0.00180645
0.00188479
0.0019506
0.0020041
0.0020456
0.00207575
0.00209551
0.00210613
0.00210903
0.00210569
0.0020975
0.00208573
0.00207146
0.00205555
0.00203872
0.00202151
0.00200434
0.00198749
0.00197107
0.001955
0.00193908
0.00192324
0.00190798
0.00189463
0.00188588
0.00188207
0.00188824
0.00162177
0.00116907
0.00111613
0.00120478
0.0013326
0.00146473
0.00158783
0.00169733
0.00179322
0.00187597
0.00194586
0.00200313
0.00204808
0.00208129
0.00210364
0.00211633
0.00212079
0.00211856
0.00211114
0.00209987
0.00208593
0.00207028
0.00205366
0.00203665
0.00201964
0.00200285
0.00198638
0.00197021
0.00195434
0.00193896
0.00192461
0.0019121
0.00190287
0.00189579
0.00189583
0.00121301
0.000792186
0.000727652
0.000744872
0.000780199
0.000818392
0.000855023
0.000888484
0.000918396
0.00094497
0.000968596
0.000989704
0.0010087
0.00102596
0.0010418
0.00105651
0.00107031
0.00108338
0.00109588
0.00110791
0.00111958
0.00113097
0.00114211
0.00115302
0.00116366
0.00117404
0.00118426
0.00119457
0.0012052
0.00121612
0.0012267
0.00123563
0.00124167
0.00124483
0.00124776
0.000751311
0.000500946
0.000446219
0.000430546
0.000427835
0.00043085
0.00043637
0.000442691
0.00044904
0.000455153
0.000460929
0.000466316
0.000471308
0.000475918
0.000480151
0.000484004
0.00048747
0.00049054
0.000493212
0.000495494
0.000497402
0.000498963
0.000500214
0.000501193
0.000501942
0.000502497
0.000502885
0.000503127
0.00050324
0.000503252
0.000503224
0.000503224
0.000503513
0.000503836
0.000506014
0.00120539
0.000781318
0.000717376
0.000736146
0.000772097
0.000810157
0.000846315
0.000879235
0.000908669
0.000934861
0.000958123
0.000978903
0.000997607
0.00101459
0.0010302
0.00104468
0.00105828
0.00107116
0.00108346
0.00109531
0.00110681
0.00111801
0.00112897
0.00113967
0.00115011
0.00116028
0.00117028
0.00118031
0.00119059
0.00120107
0.00121119
0.00121979
0.00122581
0.00122936
0.00123255
0.00167214
0.00115986
0.000936249
0.000873117
0.000936396
0.00109988
0.00132438
0.00157819
0.00184051
0.00209699
0.00233825
0.00255779
0.00275299
0.00292269
0.00306694
0.00318704
0.00328513
0.0033638
0.0034258
0.00347375
0.00351011
0.00353707
0.00355654
0.00357018
0.00357939
0.00358536
0.00358902
0.00359105
0.00359189
0.00359181
0.00359122
0.0035909
0.00359271
0.00359774
0.00361108
0.00167025
0.00115155
0.000908022
0.000797645
0.00077961
0.000845567
0.000986018
0.00118258
0.00141773
0.00167737
0.0019489
0.00222162
0.00248755
0.00274127
0.00297943
0.00320008
0.00340232
0.00358601
0.00375169
0.00390034
0.00403332
0.00415218
0.00425857
0.00435412
0.00444035
0.00451868
0.00459036
0.00465653
0.00471824
0.0047765
0.00483216
0.00488565
0.00493719
0.00498536
0.00503429
0.001669
0.00114733
0.000893617
0.000752845
0.000666975
0.000611405
0.000575135
0.000553776
0.000546925
0.000557032
0.000588482
0.00064631
0.000734881
0.000857405
0.00101578
0.00120961
0.0014352
0.00168542
0.00195171
0.00222591
0.00250136
0.00277334
0.00303886
0.00329626
0.00354468
0.00378401
0.00401475
0.00423755
0.00445326
0.00466279
0.00486682
0.00506541
0.00525772
0.00544207
0.0056181
0.000722982
0.000495976
0.000440496
0.000424259
0.000421162
0.000423064
0.000426913
0.00043147
0.000436215
0.000440913
0.00044545
0.00044977
0.000453875
0.00045779
0.00046154
0.000465141
0.000468603
0.000471927
0.000475108
0.000478138
0.000481013
0.000483729
0.000486289
0.000488696
0.00049095
0.000493053
0.000495018
0.000496873
0.000498667
0.000500444
0.000502192
0.000503782
0.000505101
0.000505743
0.000506957
0.00156538
0.00107859
0.000996208
0.00105951
0.00116635
0.00127953
0.00138657
0.00148359
0.00156991
0.00164618
0.00171347
0.00177294
0.00182572
0.00187286
0.00191532
0.0019539
0.00198926
0.00202195
0.00205244
0.00208107
0.00210817
0.00213397
0.00215864
0.00218229
0.00220494
0.00222664
0.00224758
0.00226809
0.00228862
0.00230923
0.00232926
0.00234697
0.00236057
0.0023695
0.00237779
0.00167113
0.00115186
0.000919611
0.000837307
0.000867317
0.000990713
0.00117945
0.00140809
0.00166014
0.00192322
0.00218739
0.00244549
0.0026929
0.00292672
0.00314589
0.00334993
0.00353885
0.00371308
0.00387325
0.00402013
0.00415465
0.00427777
0.00439047
0.00449372
0.00458846
0.00467556
0.00475592
0.00483057
0.00490072
0.00496753
0.00503154
0.00509198
0.00514698
0.00519383
0.00523667
0.00110068
0.000722619
0.000671592
0.000684739
0.000711164
0.000741167
0.000771066
0.000798539
0.000823304
0.000845385
0.000864981
0.000882322
0.000897649
0.000911171
0.000923041
0.000933363
0.000942221
0.000949697
0.00095588
0.000960879
0.000964814
0.000967821
0.000970041
0.000971615
0.000972673
0.000973324
0.000973643
0.000973675
0.000973448
0.000973003
0.000972484
0.000972065
0.000972489
0.000973137
0.000979016
0.000977586
0.000635363
0.000581056
0.000577706
0.000588241
0.000603847
0.000619963
0.000635157
0.000648775
0.000660492
0.0006701
0.000677365
0.000682141
0.000684414
0.000684306
0.000682063
0.000678012
0.000672517
0.000665934
0.000658592
0.000650771
0.000642697
0.000634542
0.000626428
0.000618425
0.000610555
0.000602822
0.00059525
0.000587946
0.000581135
0.000575154
0.000570209
0.000566356
0.000561998
0.000557817
0.00137161
0.000913357
0.0008443
0.000868647
0.000912667
0.000959314
0.00100366
0.00104371
0.00107926
0.00111071
0.0011386
0.00116349
0.00118589
0.00120625
0.00122495
0.00124228
0.00125848
0.00127376
0.00128827
0.00130214
0.00131549
0.00132842
0.00134101
0.00135326
0.00136513
0.00137661
0.00138779
0.00139895
0.00141048
0.0014225
0.00143436
0.0014444
0.00145075
0.00145267
0.00145375
0.000729302
0.00051043
0.000452313
0.0004338
0.000429144
0.000430162
0.000433279
0.00043711
0.000441032
0.00044468
0.000447804
0.000450186
0.000451672
0.000452179
0.000451701
0.000450301
0.000448092
0.000445214
0.000441818
0.000438047
0.000434028
0.000429869
0.000425654
0.000421445
0.000417281
0.00041318
0.00040915
0.000405209
0.000401401
0.000397821
0.0003946
0.000391825
0.000389487
0.000387083
0.000384456
0.000940247
0.000633276
0.00057899
0.000571639
0.0005767
0.000586576
0.000597927
0.000609172
0.000619528
0.000628628
0.000636236
0.000642095
0.000646005
0.000647889
0.000647814
0.000645961
0.000642584
0.00063797
0.000632407
0.000626158
0.000619452
0.000612477
0.000605395
0.000598336
0.000591394
0.000584614
0.000577986
0.000571453
0.000564969
0.000558612
0.000552716
0.000547865
0.000544846
0.000543255
0.000543366
0.001223
0.000792051
0.000735241
0.00075693
0.000794842
0.000835608
0.000873395
0.000907047
0.000936243
0.000961
0.000981257
0.000996842
0.0010077
0.00101397
0.00101596
0.0010142
0.00100928
0.00100189
0.000992626
0.000982067
0.000970683
0.00095885
0.000946859
0.000934913
0.000923128
0.00091154
0.000900139
0.00088893
0.000878038
0.000867792
0.000858771
0.000851449
0.000846222
0.000840805
0.000836823
0.00167092
0.00115641
0.000916203
0.000811589
0.000806301
0.000892758
0.00105533
0.00126807
0.00150921
0.00176215
0.00201252
0.00224832
0.00246118
0.00264704
0.00280431
0.00293328
0.00303558
0.00311367
0.0031705
0.00320917
0.00323269
0.00324389
0.00324533
0.00323926
0.00322756
0.00321165
0.00319243
0.00317031
0.00314562
0.00311939
0.0030943
0.00307514
0.00306754
0.00307318
0.00308435
0.00167095
0.00115649
0.000916473
0.000812502
0.000808669
0.000897361
0.0010622
0.00127655
0.0015185
0.00177154
0.00202153
0.00225668
0.00246871
0.00265369
0.00281011
0.00293829
0.00303985
0.00311729
0.00317354
0.00321172
0.00323486
0.00324579
0.00324704
0.00324074
0.00322858
0.00321189
0.00319172
0.00316906
0.00314519
0.00312189
0.00310134
0.00308528
0.00307335
0.00306049
0.00303749
0.000702634
0.000499011
0.000445799
0.000429309
0.000425383
0.000426409
0.000429314
0.000432779
0.000436309
0.000439716
0.000442886
0.000445723
0.000448127
0.000450014
0.000451333
0.000452062
0.000452212
0.000451823
0.000450955
0.00044968
0.000448075
0.000446216
0.000444173
0.000442008
0.000439776
0.000437519
0.00043527
0.000433047
0.00043086
0.000428718
0.00042665
0.000424712
0.000423049
0.000421583
0.000420734
0.00167643
0.00118085
0.00103321
0.00108868
0.0012533
0.00146232
0.00168663
0.00191042
0.00212337
0.0023204
0.00249908
0.00265861
0.00279887
0.00292011
0.00302289
0.00310818
0.00317739
0.00323221
0.00327455
0.00330637
0.00332957
0.00334592
0.00335697
0.00336406
0.00336832
0.00337058
0.00337147
0.00337135
0.00337045
0.00336901
0.00336754
0.00336696
0.00336928
0.00337508
0.00339118
0.00128738
0.0008529
0.00079038
0.00081238
0.000851489
0.000893507
0.000933268
0.00096884
0.000999859
0.00102655
0.00104908
0.00106753
0.00108193
0.00109237
0.00109906
0.00110232
0.00110256
0.00110027
0.00109595
0.00109007
0.00108309
0.00107535
0.00106718
0.00105881
0.00105042
0.00104212
0.00103397
0.00102598
0.00101814
0.00101049
0.00100324
0.000996609
0.00099142
0.000986707
0.000987554
0.00128123
0.000868735
0.000818115
0.000847761
0.000890837
0.000934293
0.000974529
0.00101021
0.00104124
0.00106788
0.00109035
0.00110873
0.00112306
0.00113341
0.00114
0.00114316
0.0011433
0.00114089
0.00113643
0.00113039
0.00112319
0.0011152
0.00110672
0.001098
0.00108924
0.00108059
0.00107211
0.00106383
0.00105571
0.00104774
0.00104006
0.00103304
0.00102768
0.0010234
0.00102433
0.00166888
0.00114483
0.000890739
0.000749802
0.000663508
0.000606517
0.000566638
0.000537494
0.000515553
0.000498829
0.000486273
0.000477495
0.000472637
0.000472339
0.00047772
0.000490358
0.000512225
0.000545633
0.000593202
0.000657882
0.000742848
0.000851085
0.000984728
0.00114446
0.00132926
0.00153651
0.00176246
0.00200287
0.00225362
0.00251107
0.00277239
0.00303551
0.0032986
0.00355978
0.0038154
0.00166945
0.00114956
0.000898029
0.000764178
0.000696307
0.000679674
0.000715012
0.000805676
0.000949047
0.00113727
0.00136147
0.00161209
0.0018789
0.00215228
0.00242441
0.00268953
0.00294362
0.00318404
0.00340935
0.00361907
0.00381347
0.0039932
0.00415948
0.00431356
0.00445667
0.00458999
0.00471464
0.00483171
0.00494233
0.0050476
0.00514846
0.00524529
0.00533794
0.00542486
0.0055087
0.000750579
0.000490608
0.000444627
0.000436544
0.000439615
0.000447019
0.000455645
0.000464131
0.000471857
0.000478522
0.000483944
0.000487965
0.000490449
0.000491345
0.000490714
0.000488702
0.000485519
0.000481397
0.000476572
0.000471261
0.000465648
0.000459884
0.00045408
0.000448316
0.00044263
0.000437039
0.000431548
0.000426189
0.000421065
0.000416362
0.000412319
0.000409029
0.000406336
0.000403005
0.000398632
0.000755201
0.000493975
0.000448224
0.000439633
0.000441899
0.000448732
0.000457131
0.000465598
0.000473383
0.00048015
0.000485703
0.000489842
0.000492417
0.000493379
0.000492792
0.000490813
0.000487654
0.00048355
0.000478732
0.000473418
0.00046779
0.000461997
0.000456158
0.000450373
0.000444711
0.000439191
0.000433785
0.000428421
0.000423065
0.000417832
0.000413113
0.000409533
0.000407782
0.000407395
0.000407789
0.00164867
0.00116512
0.00107588
0.00115758
0.0013014
0.00146254
0.00162181
0.00177077
0.00190635
0.00202808
0.00213675
0.0022336
0.00232005
0.00239751
0.00246726
0.0025305
0.00258821
0.00264124
0.0026903
0.00273599
0.00277881
0.00281917
0.00285738
0.00289365
0.00292811
0.00296088
0.00299224
0.0030227
0.00305284
0.0030828
0.00311173
0.00313746
0.00315766
0.00317168
0.00318464
0.001341
0.000874093
0.000803182
0.00083876
0.000897255
0.000956825
0.00101202
0.00106146
0.00110515
0.00114367
0.00117768
0.00120781
0.00123466
0.00125882
0.00128079
0.001301
0.00131978
0.00133741
0.0013541
0.00137003
0.00138535
0.00140015
0.00141451
0.00142845
0.00144195
0.00145502
0.00146774
0.00148034
0.00149305
0.00150591
0.00151845
0.00152952
0.00153795
0.00154346
0.00154851
0.00167484
0.00118806
0.0010595
0.00112868
0.00129319
0.00149556
0.00170996
0.00192096
0.00211853
0.00229633
0.00245038
0.00257826
0.00268015
0.00275732
0.002812
0.00284708
0.00286582
0.00287142
0.00286688
0.00285476
0.0028372
0.00281584
0.00279216
0.00276725
0.00274193
0.0027167
0.0026917
0.0026667
0.00264133
0.00261567
0.0025912
0.0025714
0.00256151
0.00256396
0.00257728
0.000919378
0.000647895
0.000591439
0.000578293
0.000578125
0.000583436
0.000590834
0.000598667
0.000606228
0.000613194
0.000619335
0.000624473
0.000628453
0.000631176
0.000632624
0.000632845
0.00063194
0.000630054
0.000627354
0.000624007
0.000620174
0.000616002
0.000611614
0.000607115
0.000602591
0.000598106
0.000593697
0.000589374
0.000585131
0.000580979
0.000577
0.000573353
0.000570427
0.000567966
0.000567352
0.000977353
0.000677089
0.000609712
0.000594156
0.000594562
0.000601356
0.000610304
0.000619571
0.000628379
0.000636405
0.000643427
0.00064924
0.000653696
0.000656709
0.000658272
0.000658455
0.000657391
0.000655255
0.000652245
0.00064856
0.000644383
0.000639876
0.000635177
0.000630392
0.000625603
0.000620862
0.000616197
0.000611618
0.00060714
0.000602797
0.000598691
0.000594934
0.00059184
0.000588975
0.000588182
0.00166986
0.00115216
0.000903413
0.0007779
0.0007289
0.000747058
0.000833466
0.000983541
0.00118514
0.00142474
0.00168886
0.0019641
0.0022385
0.00250295
0.00275168
0.00298146
0.0031907
0.00337953
0.00354901
0.00370056
0.0038359
0.00395682
0.00406508
0.00416236
0.0042502
0.00432998
0.00440291
0.00447
0.00453207
0.0045899
0.00464433
0.0046964
0.00474782
0.0047995
0.00485609
0.00167179
0.00115866
0.000928965
0.000850536
0.00088874
0.00102248
0.00121886
0.00144977
0.00169681
0.00194508
0.00218221
0.00240047
0.002595
0.00276351
0.00290575
0.00302292
0.00311708
0.00319077
0.00324672
0.00328765
0.00331615
0.00333458
0.00334505
0.00334936
0.00334903
0.00334524
0.00333887
0.00333058
0.00332091
0.00331051
0.00330041
0.00329194
0.00328687
0.0032853
0.00328883
0.00167217
0.00116031
0.000936288
0.000870294
0.000926794
0.00107815
0.00128722
0.00152627
0.00177738
0.00202599
0.0022607
0.00247434
0.0026625
0.00282348
0.00295761
0.00306666
0.00315313
0.0032199
0.00326986
0.00330576
0.00333008
0.00334506
0.00335264
0.00335452
0.00335215
0.0033467
0.00333905
0.00332973
0.00331901
0.00330715
0.00329494
0.00328419
0.0032781
0.00327905
0.00328963
0.000656236
0.000446789
0.000393523
0.000374841
0.000368841
0.000368498
0.000370694
0.000373931
0.000377523
0.000381115
0.000384546
0.000387718
0.000390553
0.000392993
0.000394997
0.000396535
0.000397603
0.000398216
0.000398409
0.000398229
0.000397731
0.000396974
0.000396016
0.000394909
0.000393699
0.00039242
0.000391094
0.000389733
0.00038835
0.000386965
0.000385634
0.000384439
0.00038356
0.000382917
0.000383099
0.00167319
0.001159
0.000953191
0.000926036
0.0010275
0.00120748
0.0014257
0.00166167
0.00190315
0.00214123
0.00236992
0.00258586
0.00278765
0.00297503
0.00314837
0.00330835
0.00345579
0.00359153
0.00371634
0.00383098
0.00393616
0.00403259
0.00412097
0.004202
0.00427636
0.0043447
0.00440766
0.00446592
0.00452024
0.00457139
0.00462002
0.00466623
0.00470995
0.00474987
0.00479104
0.00167701
0.00118291
0.00103308
0.00108471
0.00125021
0.00146582
0.00169849
0.00193021
0.00214968
0.00235129
0.00253246
0.00269205
0.00282964
0.00294551
0.00304055
0.0031162
0.00317442
0.00321751
0.00324787
0.00326786
0.00327968
0.00328524
0.00328618
0.00328386
0.00327935
0.00327345
0.0032667
0.00325942
0.00325177
0.00324393
0.00323639
0.00322998
0.00322656
0.00322667
0.00323583
0.00167117
0.00118334
0.00106771
0.00114156
0.00129679
0.00148199
0.00167438
0.00186138
0.00203594
0.00219516
0.00233824
0.00246562
0.00257815
0.00267668
0.00276198
0.00283484
0.00289613
0.00294686
0.00298815
0.00302121
0.00304724
0.00306744
0.00308294
0.00309476
0.00310378
0.00311072
0.00311609
0.00312025
0.00312341
0.00312582
0.00312798
0.00313068
0.0031358
0.00314353
0.00316117
0.00113673
0.000754381
0.000698471
0.000705958
0.000726478
0.000749141
0.000770959
0.000790975
0.000809051
0.000825378
0.000840148
0.000853551
0.000865803
0.000877106
0.000887645
0.000897577
0.000907017
0.000916047
0.000924722
0.000933075
0.000941126
0.000948884
0.000956352
0.000963528
0.000970405
0.000976972
0.000983232
0.000989215
0.000994992
0.00100063
0.00100618
0.00101147
0.00101653
0.0010205
0.00102655
0.00144231
0.000974586
0.000907253
0.000948333
0.00101315
0.00107964
0.00114093
0.00119505
0.00124191
0.001282
0.00131567
0.00134303
0.00136424
0.00137954
0.0013893
0.00139409
0.00139459
0.00139153
0.00138567
0.00137771
0.00136828
0.0013579
0.00134697
0.00133583
0.0013247
0.00131372
0.00130296
0.0012924
0.00128204
0.00127195
0.00126244
0.00125389
0.00124744
0.00124179
0.00124344
0.00140554
0.00096737
0.000916356
0.000963194
0.00102679
0.00108933
0.0011463
0.00119622
0.00123933
0.00127614
0.00130694
0.00133188
0.00135105
0.00136467
0.00137311
0.00137693
0.00137674
0.00137324
0.00136713
0.00135904
0.00134954
0.0013391
0.00132812
0.0013169
0.00130569
0.00129466
0.0012839
0.00127338
0.00126303
0.00125281
0.00124296
0.00123407
0.00122762
0.00122307
0.00122561
0.000611456
0.000398188
0.000352627
0.000341304
0.00034145
0.000345621
0.000351012
0.000356607
0.000362038
0.000367176
0.00037198
0.000376456
0.000380625
0.000384517
0.000388157
0.000391562
0.000394742
0.000397701
0.00040044
0.000402957
0.000405255
0.000407341
0.000409226
0.000410927
0.000412458
0.000413834
0.000415074
0.000416205
0.000417267
0.000418299
0.000419319
0.000420261
0.000421098
0.000421446
0.000422524
0.00166967
0.00115175
0.000901137
0.000770401
0.000709649
0.000706239
0.000760959
0.000873846
0.00103875
0.00124683
0.00148869
0.00175362
0.00203003
0.00230728
0.00257683
0.00283269
0.00307126
0.00329092
0.00349149
0.00367372
0.00383894
0.00398872
0.00412471
0.00424852
0.00436168
0.00446558
0.00456149
0.00465056
0.00473383
0.00481227
0.00488679
0.00495807
0.00502697
0.00509282
0.00515981
0.00166934
0.00114901
0.000896819
0.000760969
0.000688232
0.000661842
0.000681124
0.000750762
0.000872279
0.00104151
0.0012517
0.00149467
0.00176033
0.00203805
0.00231843
0.0025944
0.00286105
0.00311522
0.00335512
0.00357996
0.00378968
0.0039847
0.00416593
0.00433447
0.0044915
0.00463821
0.00477573
0.00490522
0.00502791
0.00514499
0.00525741
0.00536536
0.0054683
0.00556452
0.00565615
0.00167035
0.00114979
0.000907643
0.000801796
0.000792685
0.000872019
0.0010272
0.00123612
0.00147966
0.00174388
0.00201729
0.00229067
0.00255717
0.00281241
0.0030542
0.00328135
0.00349332
0.00369035
0.00387299
0.00404194
0.00419802
0.00434213
0.0044752
0.00459813
0.00471182
0.00481709
0.00491485
0.00500615
0.00509224
0.00517433
0.00525296
0.00532723
0.00539504
0.00545371
0.00550702
0.00166887
0.00114456
0.000890402
0.000749439
0.000663143
0.000606152
0.000566264
0.000537089
0.000515078
0.000498216
0.000485408
0.000476201
0.000470656
0.000469314
0.000473186
0.000483745
0.000502871
0.000532766
0.000575896
0.000634997
0.000713049
0.000812984
0.000937077
0.0010863
0.00125997
0.00145577
0.00167023
0.00189927
0.00213888
0.00238552
0.00263633
0.00288908
0.00314177
0.0033923
0.00363674
0.00165406
0.00117427
0.00107748
0.00114526
0.00127751
0.00143282
0.00159092
0.00174109
0.00187812
0.00200093
0.00210978
0.00220547
0.0022889
0.00236088
0.00242213
0.00247333
0.00251525
0.00254879
0.00257494
0.00259475
0.00260926
0.00261946
0.00262628
0.00263056
0.00263297
0.00263408
0.00263425
0.0026337
0.00263253
0.0026309
0.00262923
0.00262823
0.00262971
0.00263385
0.00264738
0.00121598
0.000775771
0.000710581
0.000735312
0.000779811
0.000826333
0.000869874
0.000908959
0.000943516
0.000973973
0.00100079
0.00102459
0.00104582
0.00106497
0.00108245
0.0010986
0.00111369
0.00112792
0.00114146
0.00115443
0.00116694
0.00117905
0.0011908
0.0012022
0.00121325
0.00122392
0.00123425
0.00124436
0.00125445
0.00126461
0.00127465
0.00128388
0.00129151
0.00129687
0.00130202
0.000844176
0.000578846
0.000526291
0.00051401
0.00051385
0.000518951
0.000526135
0.000533791
0.000540978
0.000547377
0.000552709
0.000556743
0.000559284
0.000560249
0.000559678
0.000557706
0.000554534
0.000550389
0.000545497
0.000540069
0.000534293
0.000528324
0.000522286
0.000516284
0.000510389
0.000504633
0.000498997
0.000493424
0.000487877
0.000482447
0.000477467
0.000473493
0.000471173
0.000470187
0.000470014
0.000604143
0.000445916
0.000378065
0.000354598
0.000343858
0.00033814
0.000335077
0.000333499
0.000332763
0.00033249
0.000332416
0.000332349
0.000332149
0.000331722
0.000331017
0.000330022
0.000328753
0.000327246
0.000325543
0.00032369
0.000321733
0.00031971
0.000317655
0.000315594
0.000313547
0.000311526
0.000309534
0.000307577
0.000305665
0.000303835
0.000302133
0.000300634
0.000299263
0.000298209
0.000296134
0.000604495
0.000445792
0.000378071
0.000354885
0.000344337
0.000338745
0.000335749
0.000334196
0.000333457
0.000333171
0.00033308
0.000332997
0.000332784
0.000332346
0.000331634
0.000330634
0.000329361
0.000327851
0.000326148
0.000324295
0.000322337
0.000320314
0.000318259
0.000316193
0.000314137
0.000312105
0.000310109
0.000308164
0.00030629
0.000304512
0.000302836
0.000301269
0.000299668
0.000298231
0.000295763
0.000630095
0.000404056
0.000355259
0.000342781
0.00034227
0.000346186
0.000351543
0.000357205
0.000362756
0.000368046
0.000373023
0.000377673
0.000382006
0.000386031
0.000389759
0.000393195
0.000396343
0.000399203
0.000401775
0.000404064
0.000406078
0.000407832
0.000409348
0.000410651
0.000411765
0.000412717
0.000413532
0.000414237
0.00041487
0.000415469
0.000416062
0.000416618
0.000417126
0.000417302
0.000417747
0.00167535
0.00117891
0.0010191
0.00105845
0.00121624
0.00143011
0.00166601
0.00190399
0.00213091
0.00233801
0.00252057
0.00267647
0.00280496
0.00290705
0.0029847
0.00304062
0.00307794
0.0030999
0.00310959
0.00310977
0.00310279
0.00309055
0.0030747
0.00305653
0.00303705
0.00301697
0.00299668
0.00297624
0.00295549
0.00293447
0.00291415
0.00289691
0.00288674
0.00288586
0.0028953
0.00166046
0.00117272
0.00106776
0.00113989
0.00128463
0.00145572
0.00163092
0.00179888
0.00195445
0.00209596
0.00222351
0.00233805
0.00244088
0.00253339
0.00261698
0.00269283
0.00276202
0.00282553
0.00288418
0.00293869
0.00298965
0.00303759
0.00308288
0.00312578
0.00316646
0.00320513
0.00324219
0.00327834
0.00331429
0.00335001
0.00338408
0.00341348
0.00343537
0.00344986
0.00346443
0.0016705
0.00115563
0.00090935
0.000788613
0.000750345
0.00078772
0.000899119
0.00107185
0.00128665
0.0015259
0.00177423
0.00201871
0.00224991
0.00246265
0.00265406
0.00282278
0.0029685
0.00309179
0.00319393
0.00327672
0.00334231
0.00339298
0.00343103
0.00345866
0.00347789
0.0034905
0.00349793
0.00350127
0.00350127
0.00349858
0.00349422
0.00349004
0.00348916
0.00349424
0.00350796
0.00167046
0.00115539
0.000908518
0.000786165
0.000744605
0.000776662
0.000881641
0.00104834
0.00125818
0.00149402
0.00174099
0.00198637
0.00222094
0.00243861
0.00263548
0.0028093
0.0029592
0.00308547
0.00318938
0.00327291
0.00333848
0.00338864
0.00342593
0.00345272
0.00347109
0.00348282
0.00348932
0.00349175
0.00349105
0.00348824
0.00348455
0.00348152
0.00348095
0.00348321
0.00348956
0.00166886
0.00114447
0.000890219
0.000749211
0.000662906
0.000605906
0.000565992
0.000536749
0.000514589
0.000497432
0.000484087
0.000473959
0.000466916
0.000463247
0.000463657
0.000469278
0.000481644
0.000502643
0.000534441
0.000579461
0.000640423
0.000720297
0.000821953
0.000947521
0.00109776
0.00127175
0.00146703
0.00168007
0.00190691
0.00214375
0.00238732
0.00263496
0.00288434
0.00313316
0.00337655
0.000669081
0.000448687
0.000401677
0.000389599
0.0003884
0.000391324
0.00039576
0.000400603
0.000405323
0.000409676
0.00041345
0.00041646
0.000418567
0.000419693
0.000419834
0.000419054
0.000417457
0.000415176
0.000412351
0.000409118
0.000405601
0.000401906
0.00039812
0.000394315
0.000390547
0.000386849
0.000383228
0.000379672
0.000376169
0.000372752
0.000369553
0.000366797
0.000364805
0.000363379
0.000362763
0.00070799
0.000479409
0.000426799
0.000411984
0.000409669
0.00041228
0.000416592
0.000421333
0.00042599
0.000430308
0.00043407
0.000437079
0.000439185
0.000440306
0.000440426
0.000439598
0.000437923
0.000435536
0.000432582
0.000429204
0.000425534
0.000421683
0.000417742
0.000413783
0.000409852
0.00040598
0.000402178
0.000398455
0.000394833
0.000391367
0.000388157
0.000385299
0.000382917
0.000380675
0.000379013
0.00155434
0.00110011
0.00104614
0.00112487
0.00123834
0.00135551
0.00146523
0.00156326
0.00164819
0.00171993
0.00177852
0.00182415
0.00185727
0.00187867
0.0018895
0.0018912
0.00188551
0.00187411
0.0018585
0.00184001
0.00181974
0.00179848
0.00177686
0.00175528
0.00173396
0.00171294
0.00169217
0.00167171
0.00165197
0.00163388
0.00161885
0.00160797
0.00160111
0.00159315
0.00157993
0.00167129
0.00115754
0.000923238
0.000833255
0.000852589
0.000966746
0.00115024
0.00137549
0.00162217
0.00187385
0.00211663
0.00233973
0.00253657
0.00270477
0.00284413
0.00295597
0.0030426
0.00310687
0.00315188
0.00318068
0.00319618
0.00320099
0.00319747
0.00318764
0.00317321
0.00315539
0.00313492
0.0031121
0.00308711
0.0030608
0.0030357
0.0030165
0.00300895
0.00301506
0.00302783
0.00167145
0.00115802
0.000924909
0.000838039
0.000863014
0.000983973
0.00117305
0.00140166
0.00164958
0.00190079
0.00214198
0.00236293
0.00255733
0.00272305
0.00286003
0.00296968
0.00305431
0.00311679
0.0031602
0.0031876
0.0032019
0.00320573
0.00320138
0.00319077
0.00317536
0.00315632
0.00313452
0.0031108
0.00308623
0.00306245
0.00304158
0.0030254
0.00301387
0.00300231
0.00298218
0.00167004
0.00117275
0.00104238
0.0011108
0.00127354
0.00147199
0.00167923
0.00188143
0.0020716
0.00224681
0.00240637
0.00255083
0.00268132
0.00279928
0.00290614
0.00300333
0.00309213
0.00317366
0.00324891
0.00331871
0.00338376
0.00344468
0.00350196
0.00355595
0.0036069
0.00365507
0.00370085
0.0037449
0.00378796
0.00383027
0.00387092
0.00390751
0.00393741
0.00395981
0.00398051
0.000835364
0.000574868
0.000516563
0.000500488
0.00049883
0.000503226
0.000509707
0.000516586
0.000523167
0.000529019
0.000533885
0.000537533
0.000539787
0.00054057
0.000539907
0.000537916
0.00053478
0.000530713
0.000525932
0.00052065
0.000515048
0.000509277
0.000503449
0.000497647
0.000491919
0.00048628
0.000480739
0.000475321
0.00047011
0.000465269
0.000461016
0.000457467
0.000454542
0.000451257
0.000447286
0.00167685
0.00118674
0.00104772
0.0011108
0.00127852
0.00148747
0.00170905
0.00192772
0.00213329
0.00232
0.00248445
0.00262467
0.00273991
0.00283066
0.00289851
0.00294591
0.00297583
0.00299136
0.00299549
0.00299091
0.00297993
0.00296443
0.00294593
0.00292561
0.00290428
0.00288249
0.00286054
0.00283858
0.00281683
0.00279582
0.0027766
0.00276056
0.0027492
0.00274123
0.00273718
0.00167481
0.00117324
0.000994908
0.00101042
0.00115411
0.00136475
0.00160371
0.00184956
0.00208795
0.00230882
0.00250564
0.00267475
0.0028149
0.00292675
0.00301233
0.00307452
0.0031167
0.00314234
0.0031547
0.00315669
0.00315081
0.0031391
0.00312328
0.00310473
0.00308452
0.00306346
0.00304195
0.00302003
0.00299755
0.00297463
0.00295248
0.002934
0.00292371
0.00292402
0.00293504
0.00166937
0.00115032
0.000897949
0.000761925
0.000688721
0.000661209
0.000678111
0.000743539
0.000859301
0.0010226
0.00122836
0.00146963
0.0017366
0.00201766
0.00230167
0.00257979
0.00284609
0.0030971
0.00333123
0.00354783
0.00374773
0.00393215
0.00410249
0.00426014
0.00440648
0.00454276
0.00467013
0.00478962
0.00490216
0.00500862
0.00510991
0.00520691
0.00530075
0.00539175
0.0054835
0.00165246
0.00118221
0.00111239
0.00121251
0.0013701
0.0015415
0.0017092
0.00186586
0.00200892
0.00213799
0.00225366
0.00235708
0.00244948
0.00253211
0.00260605
0.00267222
0.00273142
0.00278431
0.00283148
0.00287346
0.00291074
0.00294385
0.00297327
0.00299949
0.00302294
0.00304399
0.003063
0.00308042
0.00309681
0.00311273
0.00312841
0.00314321
0.00315615
0.00316449
0.00317516
0.00163647
0.00115517
0.00106982
0.00114645
0.00128004
0.00142788
0.00157242
0.00170655
0.00182792
0.00193644
0.00203301
0.00211889
0.00219545
0.002264
0.00232575
0.00238175
0.00243287
0.0024799
0.00252347
0.00256413
0.00260233
0.00263845
0.00267277
0.00270545
0.00273658
0.00276629
0.00279489
0.00282292
0.00285097
0.00287903
0.0029059
0.00292903
0.00294602
0.00295682
0.00296738
0.00166946
0.00114849
0.000897231
0.000764988
0.000701044
0.000692222
0.000740227
0.000847081
0.00100733
0.00121146
0.0014502
0.00171394
0.00199233
0.00227555
0.00255604
0.00282837
0.00308898
0.00333587
0.0035681
0.00378539
0.00398797
0.00417639
0.00435145
0.00451408
0.00466529
0.00480616
0.00493777
0.00506128
0.00517803
0.00528931
0.00539596
0.00549773
0.00559336
0.00568062
0.00576251
0.00076856
0.000542894
0.000486027
0.000467267
0.000462474
0.000463588
0.000467278
0.000472003
0.000477023
0.000482021
0.000486874
0.000491533
0.000496005
0.000500317
0.000504503
0.000508586
0.000512585
0.000516513
0.000520374
0.000524172
0.000527909
0.000531588
0.000535207
0.000538756
0.000542216
0.000545573
0.000548845
0.000552097
0.000555407
0.000558787
0.00056207
0.000564861
0.000566795
0.000567663
0.000568875
0.00166896
0.00114659
0.000892839
0.00075202
0.000665961
0.000609812
0.00057214
0.000547827
0.000535358
0.000535703
0.000551679
0.000587184
0.000646232
0.000732256
0.000848007
0.000995355
0.00117432
0.00138224
0.00161398
0.00186299
0.00212262
0.00238709
0.00265188
0.0029138
0.00317073
0.00342138
0.00366515
0.00390198
0.00413222
0.00435651
0.00457542
0.00478895
0.00499628
0.00519583
0.00538648
0.00167322
0.00116214
0.000953439
0.000920617
0.00102113
0.00120993
0.0014435
0.00169627
0.0019525
0.00220113
0.00243487
0.0026495
0.00284309
0.00301456
0.00316363
0.00329097
0.00339794
0.0034864
0.00355853
0.00361664
0.003663
0.00369975
0.00372879
0.00375179
0.00377018
0.00378509
0.00379739
0.00380769
0.0038164
0.00382392
0.00383089
0.00383828
0.00384806
0.00386105
0.0038832
0.00115894
0.000756646
0.000702057
0.00071525
0.000742353
0.000772951
0.000803136
0.000831106
0.000856116
0.000878139
0.000897396
0.00091406
0.000928249
0.000940057
0.000949581
0.000956924
0.000962231
0.000965693
0.000967537
0.000968007
0.000967351
0.000965807
0.000963596
0.000960914
0.00095792
0.000954733
0.000951419
0.000948003
0.000944494
0.000940928
0.000937485
0.000934418
0.000932586
0.000931394
0.000935671
0.00117438
0.00077344
0.000728488
0.000758209
0.000799607
0.000840178
0.000876427
0.00090777
0.0009343
0.000957037
0.000976517
0.000993018
0.00100663
0.00101741
0.00102543
0.00103086
0.00103391
0.00103483
0.00103395
0.00103159
0.00102807
0.00102366
0.00101864
0.00101321
0.00100757
0.00100185
0.000996163
0.000990564
0.000985069
0.000979675
0.000974462
0.00096956
0.000965673
0.000962059
0.00096306
0.00128639
0.000866892
0.000828248
0.000874152
0.000933107
0.000991442
0.00104487
0.00109191
0.00113221
0.00116564
0.00119246
0.00121284
0.00122679
0.00123456
0.00123665
0.00123381
0.0012269
0.00121678
0.00120424
0.00119007
0.00117493
0.00115929
0.00114349
0.00112779
0.0011123
0.00109705
0.00108199
0.00106717
0.00105287
0.00103973
0.0010287
0.00102043
0.0010148
0.001008
0.000998014
0.00123653
0.000823617
0.000781964
0.000818239
0.000867783
0.000918419
0.000965808
0.00100801
0.0010443
0.00107452
0.00109887
0.0011173
0.00112982
0.00113666
0.0011383
0.00113543
0.00112884
0.00111932
0.00110766
0.00109452
0.00108043
0.00106583
0.00105106
0.00103641
0.00102207
0.00100812
0.000994472
0.000980843
0.000967008
0.000953164
0.000940444
0.000930994
0.000927622
0.000930057
0.000937324
0.00166882
0.00114308
0.000888719
0.000747689
0.000661409
0.000604445
0.000564547
0.000535267
0.000512955
0.000495424
0.000481302
0.000469689
0.000459987
0.000451785
0.000444809
0.000438884
0.000433922
0.000429909
0.000426911
0.00042508
0.000424663
0.000426011
0.000429597
0.000436016
0.000445999
0.00046043
0.000480374
0.000507133
0.000542301
0.000587784
0.00064573
0.000718349
0.000807606
0.000914845
0.00103778
0.00167306
0.00116362
0.000961173
0.000939119
0.00104859
0.00123979
0.00147191
0.00172193
0.00197469
0.00221908
0.00244869
0.0026598
0.00285023
0.00301904
0.00316614
0.0032922
0.00339852
0.00348687
0.00355932
0.00361806
0.00366527
0.003703
0.00373311
0.00375722
0.00377674
0.00379283
0.00380646
0.00381834
0.00382901
0.00383887
0.0038483
0.00385773
0.00386837
0.00387995
0.00389868
0.00166581
0.0012114
0.00115234
0.00125515
0.00140992
0.00157484
0.00173285
0.00187703
0.0020051
0.00211651
0.00221131
0.00228979
0.00235243
0.00240011
0.00243409
0.00245594
0.00246745
0.00247048
0.00246683
0.00245814
0.00244583
0.00243106
0.00241476
0.00239766
0.00238035
0.0023632
0.00234644
0.00233006
0.00231391
0.00229792
0.00228247
0.00226873
0.00225926
0.00225454
0.00226024
0.00166131
0.00120101
0.00113688
0.00123407
0.00138389
0.00154461
0.00169901
0.0018395
0.00196402
0.00207244
0.00216493
0.00224187
0.00230367
0.00235103
0.002385
0.00240699
0.00241868
0.00242188
0.00241841
0.0024099
0.0023978
0.00238329
0.00236733
0.00235063
0.00233371
0.0023169
0.00230035
0.00228409
0.00226811
0.00225257
0.00223799
0.00222517
0.00221575
0.00220889
0.00221005
0.00167489
0.00117249
0.000994017
0.00100986
0.00115223
0.00135903
0.00159304
0.00183455
0.00207052
0.00229249
0.00249553
0.00267686
0.00283536
0.00297092
0.00308418
0.00317654
0.00324995
0.00330676
0.00334944
0.00338043
0.00340203
0.00341624
0.00342481
0.0034292
0.00343062
0.00343005
0.00342824
0.00342571
0.00342277
0.00341959
0.00341642
0.00341377
0.00341317
0.00341498
0.00342504
0.00167426
0.00117561
0.00101991
0.00106669
0.0012287
0.00144106
0.00167136
0.00190227
0.00212378
0.00233026
0.002519
0.00268897
0.00283995
0.00297223
0.00308644
0.00318347
0.00326454
0.00333111
0.00338485
0.00342754
0.00346097
0.00348681
0.00350662
0.00352174
0.00353335
0.00354241
0.00354971
0.00355584
0.00356123
0.00356621
0.0035711
0.00357625
0.00358268
0.00358962
0.00360357
0.00166887
0.00114458
0.000890438
0.000749489
0.000663203
0.000606213
0.000566304
0.000537055
0.000514865
0.00049762
0.000484074
0.000473525
0.000465669
0.00046052
0.000458387
0.000459871
0.00046586
0.00047754
0.000496387
0.000524186
0.000563092
0.000615677
0.000684868
0.000773642
0.000884499
0.00101893
0.00117712
0.00135794
0.00155937
0.00177898
0.00201435
0.00226321
0.0025234
0.00279253
0.00306565
0.00166938
0.00115203
0.000899334
0.000759162
0.000674585
0.000622444
0.000593852
0.000587465
0.000606547
0.000656556
0.00074242
0.000866895
0.00103092
0.00123361
0.001471
0.00173545
0.00201682
0.00230445
0.00258876
0.00286243
0.00312055
0.00336038
0.00358089
0.0037823
0.0039656
0.00413227
0.00428399
0.00442245
0.00454926
0.00466592
0.00477389
0.00487466
0.00497017
0.00506163
0.00515361
0.00167112
0.00115325
0.000922839
0.000845169
0.000883554
0.00101703
0.00121457
0.00144957
0.00170508
0.00196847
0.00222988
0.00248247
0.00272201
0.00294615
0.00315379
0.00334456
0.00351859
0.00367632
0.00381845
0.00394594
0.00405992
0.00416166
0.00425251
0.00433383
0.00440691
0.00447297
0.00453308
0.0045883
0.00463969
0.00468827
0.00473481
0.00477936
0.00482153
0.00485925
0.00489703
0.00132809
0.000872291
0.000806697
0.000833323
0.000878628
0.000926435
0.000971857
0.001013
0.00104932
0.00108093
0.00110827
0.00113163
0.00115123
0.00116725
0.00117988
0.00118931
0.00119583
0.00119975
0.00120146
0.00120132
0.00119973
0.00119701
0.00119349
0.00118942
0.00118503
0.00118045
0.00117579
0.00117106
0.00116627
0.00116144
0.00115677
0.00115255
0.00114986
0.00114803
0.00115317
0.00167308
0.00116626
0.000968476
0.000952292
0.00106557
0.00125687
0.00148687
0.00173213
0.00197588
0.0022057
0.00241266
0.00259094
0.00273894
0.0028572
0.00294777
0.00301367
0.0030584
0.00308555
0.00309849
0.00310025
0.00309342
0.00308018
0.00306236
0.00304145
0.00301862
0.00299466
0.00296992
0.00294433
0.00291769
0.0028904
0.0028645
0.00284424
0.00283536
0.00284032
0.00285455
0.00167398
0.00117
0.000982012
0.000982363
0.00111131
0.00131054
0.00154144
0.00178284
0.00201989
0.0022417
0.00244074
0.00261195
0.00275346
0.00286593
0.00295134
0.00301266
0.00305333
0.00307689
0.00308671
0.0030858
0.00307676
0.00306172
0.00304243
0.00302027
0.00299622
0.00297094
0.00294481
0.00291821
0.00289176
0.00286668
0.00284478
0.00282781
0.00281622
0.00280602
0.00279088
0.0015944
0.00111281
0.0010317
0.00109935
0.00121444
0.00133813
0.00145615
0.00156361
0.00165942
0.00174416
0.00181903
0.00188536
0.00194438
0.00199722
0.00204485
0.00208814
0.00212777
0.00216433
0.00219835
0.00223023
0.00226036
0.00228903
0.00231647
0.0023428
0.00236806
0.0023923
0.0024158
0.00243912
0.00246292
0.00248731
0.00251106
0.00253133
0.00254499
0.00255145
0.00255633
0.00164201
0.00118973
0.00113218
0.00122653
0.00136917
0.0015217
0.00166793
0.00180075
0.00191847
0.00202048
0.00210654
0.00217653
0.00223083
0.00227028
0.00229627
0.00231054
0.00231504
0.00231172
0.00230242
0.00228876
0.00227209
0.00225349
0.0022338
0.0022137
0.00219371
0.00217411
0.002155
0.00213617
0.00211733
0.00209843
0.00208036
0.00206529
0.00205694
0.00205635
0.00206651
0.00165568
0.00120344
0.00114646
0.00124664
0.00139783
0.00156017
0.00171609
0.00185797
0.00198399
0.00209363
0.0021866
0.00226285
0.00232264
0.00236672
0.00239637
0.00241332
0.00241959
0.00241727
0.00240837
0.00239466
0.00237765
0.00235854
0.00233827
0.00231753
0.00229678
0.00227628
0.00225608
0.0022362
0.0022167
0.00219796
0.00218086
0.00216656
0.00215654
0.00214909
0.00214691
0.00119815
0.00080077
0.000759863
0.000787348
0.000825377
0.000864546
0.000901578
0.000934857
0.00096346
0.000987597
0.00100717
0.00102207
0.00103221
0.00103769
0.00103887
0.00103629
0.00103056
0.00102237
0.00101232
0.00100096
0.000988755
0.000976093
0.000963268
0.000950527
0.000938044
0.000925891
0.000914002
0.000902183
0.000890265
0.000878394
0.000867418
0.000858941
0.000855128
0.000855617
0.000859976
0.0013456
0.000911314
0.000865769
0.00091153
0.000971439
0.00103057
0.00108481
0.00113282
0.00117391
0.0012087
0.0012372
0.00125933
0.00127506
0.00128464
0.00128857
0.00128757
0.00128249
0.00127418
0.00126345
0.00125101
0.00123743
0.00122319
0.00120868
0.00119419
0.00117997
0.00116611
0.00115257
0.00113916
0.0011257
0.00111227
0.0010997
0.00108963
0.00108453
0.00108408
0.00108941
0.00167024
0.00115514
0.000904735
0.000770334
0.000701509
0.000685184
0.000725332
0.000829641
0.000997221
0.00121692
0.00147337
0.00174917
0.00202613
0.00228862
0.00252575
0.00273157
0.00290414
0.0030443
0.0031546
0.00323845
0.00329961
0.00334177
0.00336841
0.00338263
0.00338714
0.00338412
0.00337518
0.00336141
0.00334359
0.00332288
0.00330159
0.00328381
0.00327465
0.00327685
0.00328588
0.00167025
0.00115518
0.000904821
0.000770534
0.000701991
0.000686208
0.000727143
0.000832259
0.00100038
0.00122022
0.00147643
0.00175178
0.00202826
0.0022904
0.00252736
0.00273318
0.00290582
0.00304604
0.00315633
0.00324009
0.00330108
0.00334303
0.00336942
0.0033833
0.00338724
0.00338337
0.00337339
0.00335878
0.00334108
0.00332214
0.00330416
0.00328912
0.00327756
0.00326643
0.00324894
0.00166929
0.00114686
0.000894426
0.000759119
0.000687712
0.000663616
0.000686154
0.000759468
0.000884396
0.00105647
0.00126887
0.00151349
0.00178074
0.00206062
0.00234435
0.00262528
0.00289892
0.00316255
0.00341475
0.00365493
0.00388304
0.0040994
0.00430453
0.00449903
0.00468347
0.00485845
0.00502468
0.00518317
0.00533514
0.00548151
0.00562203
0.00575462
0.00587605
0.00598424
0.00608431
0.00102078
0.000686151
0.000633269
0.000632389
0.000645034
0.000661828
0.000679478
0.000696482
0.000712205
0.000726528
0.000739546
0.000751406
0.000762295
0.000772395
0.000781863
0.000790819
0.000799364
0.000807568
0.000815482
0.000823146
0.000830594
0.000837855
0.000844947
0.000851862
0.00085857
0.000865047
0.000871335
0.000877581
0.000883981
0.000890593
0.000897078
0.00090255
0.000906157
0.00090721
0.000909141
0.000621293
0.000408545
0.000366071
0.000355873
0.000355721
0.000359601
0.000364922
0.000370485
0.000375716
0.000380297
0.00038405
0.000386818
0.000388483
0.000389
0.000388404
0.000386802
0.000384346
0.000381202
0.000377541
0.000373519
0.000369269
0.0003649
0.000360506
0.000356159
0.000351907
0.000347756
0.000343674
0.000339604
0.000335536
0.000331605
0.000328172
0.000325755
0.000324816
0.000324843
0.000324824
0.000622039
0.00040891
0.000366573
0.000356563
0.000356571
0.000360567
0.000365963
0.000371579
0.000376846
0.000381454
0.000385223
0.000388002
0.000389673
0.00039019
0.000389588
0.000387973
0.000385497
0.00038233
0.000378644
0.0003746
0.000370336
0.000365959
0.000361555
0.000357178
0.000352858
0.000348606
0.00034443
0.000340367
0.000336511
0.00033302
0.000330069
0.000327681
0.000325606
0.000322818
0.000318629
0.00166909
0.00114708
0.000893556
0.000754044
0.000671925
0.000625248
0.000607228
0.000619045
0.000665634
0.000751658
0.000878912
0.00104659
0.00125186
0.00148912
0.00175036
0.00202651
0.00230917
0.0025916
0.00286905
0.00313848
0.00339814
0.00364713
0.00388516
0.00411221
0.0043285
0.00453434
0.00473024
0.00491697
0.0050956
0.00526716
0.00543214
0.00558979
0.00573819
0.00587527
0.00600339
0.00154822
0.00109739
0.00104818
0.00112947
0.00123949
0.00134699
0.00144327
0.00152695
0.00159838
0.0016593
0.00171117
0.00175484
0.00179082
0.00181951
0.00184138
0.001857
0.00186704
0.00187226
0.00187347
0.00187145
0.00186697
0.00186066
0.00185309
0.00184473
0.00183594
0.00182702
0.00181818
0.00180951
0.00180104
0.00179274
0.00178469
0.00177718
0.00177139
0.00176664
0.0017698
0.0016693
0.00114824
0.000895859
0.000760162
0.000687982
0.000662774
0.000684258
0.000757549
0.000884257
0.00105967
0.00127612
0.00152449
0.00179426
0.00207467
0.00235676
0.00263417
0.0029027
0.00315981
0.00340403
0.0036346
0.00385104
0.00405375
0.00424327
0.00442031
0.00458573
0.00474045
0.00488543
0.00502168
0.00515027
0.00527231
0.00538874
0.00550009
0.00560647
0.00570722
0.00580449
0.00166919
0.00114853
0.000895527
0.000756657
0.000676224
0.000633612
0.000624001
0.000650856
0.000720345
0.000835805
0.000995788
0.00119597
0.00143009
0.00168958
0.00196448
0.00224567
0.00252575
0.0027993
0.0030627
0.00331375
0.00355133
0.00377515
0.00398555
0.00418325
0.00436917
0.00454431
0.00470974
0.00486655
0.00501592
0.00515905
0.00529684
0.00542946
0.00555628
0.00567558
0.0057889
0.00160011
0.00112419
0.00105103
0.00112171
0.00123488
0.00135456
0.00146817
0.00157126
0.00166308
0.00174432
0.00181601
0.00187938
0.00193563
0.00198591
0.00203115
0.00207209
0.00210933
0.00214337
0.00217457
0.00220326
0.00222971
0.00225417
0.00227688
0.00229802
0.00231771
0.00233601
0.00235309
0.00236927
0.00238511
0.00240104
0.00241691
0.00243134
0.00244241
0.00244747
0.00245325
0.000560187
0.000376129
0.000332771
0.00031995
0.000317086
0.000318267
0.000321099
0.000324465
0.000327807
0.000330828
0.000333346
0.000335202
0.000336282
0.000336529
0.000335956
0.000334633
0.000332665
0.000330177
0.000327292
0.000324127
0.000320785
0.000317348
0.000313886
0.000310456
0.000307094
0.000303809
0.00030058
0.000297369
0.000294173
0.000291089
0.00028837
0.000286379
0.000285418
0.00028516
0.000284718
0.000561225
0.000376614
0.000333488
0.000321024
0.000318478
0.000319896
0.000322874
0.000326329
0.000329731
0.000332788
0.000335324
0.000337191
0.000338274
0.000338517
0.000337931
0.000336585
0.000334587
0.000332062
0.000329136
0.000325932
0.000322554
0.000319087
0.000315594
0.00031212
0.00030869
0.000305312
0.000301997
0.000298771
0.000295704
0.000292906
0.000290501
0.000288507
0.000286735
0.000284507
0.000281198
0.0016699
0.00114747
0.000901163
0.000784559
0.000754139
0.000801685
0.000922477
0.0011021
0.00132368
0.00157364
0.00184018
0.00211304
0.00238434
0.00264863
0.0029025
0.00314402
0.00337231
0.00358724
0.00378913
0.00397863
0.00415654
0.00432375
0.00448114
0.00462952
0.00476957
0.00490195
0.00502748
0.00514729
0.0052627
0.00537445
0.00548171
0.00558137
0.00566943
0.00574417
0.00581271
0.00162446
0.00116433
0.00111047
0.00121317
0.00136128
0.00151551
0.00166214
0.0017964
0.00191724
0.00202513
0.00212112
0.00220637
0.00228193
0.00234905
0.00240863
0.00246144
0.00250813
0.00254924
0.0025853
0.00261676
0.00264412
0.00266784
0.00268841
0.00270629
0.00272189
0.00273561
0.00274776
0.00275871
0.00276888
0.00277871
0.00278846
0.00279787
0.00280646
0.00281218
0.00281954
0.00166884
0.00114383
0.000889539
0.000748523
0.000662233
0.000605251
0.000565335
0.000536041
0.000513727
0.000496217
0.000482159
0.000470695
0.000461292
0.000453652
0.00044768
0.00044347
0.000441329
0.000441793
0.00044566
0.000454004
0.000468176
0.000489777
0.000520642
0.000562847
0.000618746
0.000690936
0.000782005
0.000894113
0.00102853
0.00118536
0.00136351
0.00156085
0.00177447
0.00200084
0.00223266
0.00167256
0.00116144
0.000941373
0.000883915
0.000951503
0.00111127
0.00132399
0.00156267
0.00180976
0.00205118
0.00227684
0.00248038
0.00265799
0.00280829
0.0029318
0.0030303
0.00310635
0.00316283
0.00320268
0.00322877
0.00324371
0.00324984
0.00324919
0.00324347
0.00323403
0.00322193
0.00320789
0.00319245
0.00317613
0.00315963
0.00314412
0.00313107
0.00312208
0.0031166
0.0031147
0.00167286
0.00116315
0.00094995
0.00090545
0.000988207
0.00115821
0.00137565
0.00161609
0.00186317
0.00210339
0.00232691
0.00252695
0.00269975
0.00284433
0.00296167
0.00305399
0.00312419
0.0031754
0.0032107
0.00323295
0.00324473
0.00324825
0.00324543
0.00323792
0.00322706
0.00321393
0.00319922
0.00318328
0.0031662
0.00314819
0.00313031
0.00311496
0.00310612
0.00310639
0.00311686
0.00167526
0.00117098
0.000987839
0.000997948
0.00113909
0.00134958
0.00158924
0.00183723
0.00207983
0.00230833
0.00251845
0.00270763
0.00287462
0.00301907
0.00314135
0.00324259
0.00332453
0.00338934
0.00343939
0.0034771
0.00350475
0.00352442
0.00353794
0.00354683
0.00355238
0.00355555
0.00355707
0.0035574
0.00355683
0.00355563
0.00355435
0.00355389
0.00355618
0.00356185
0.00357718
0.00165551
0.001172
0.00107797
0.00115838
0.00130606
0.00147461
0.00164305
0.00180177
0.00194696
0.00207785
0.00219511
0.0023
0.00239393
0.00247833
0.00255449
0.00262358
0.00268663
0.00274451
0.00279799
0.00284773
0.0028943
0.0029382
0.00297982
0.00301938
0.00305703
0.00309291
0.00312746
0.00316143
0.00319566
0.00323022
0.00326351
0.00329195
0.00331181
0.00332274
0.00333265
0.00131414
0.000866454
0.000808568
0.000843592
0.000897431
0.000953186
0.00100482
0.00105022
0.00108939
0.00112227
0.00114891
0.00116927
0.00118338
0.00119151
0.00119417
0.00119206
0.00118601
0.00117689
0.00116549
0.00115255
0.00113864
0.00112424
0.00110968
0.00109521
0.00108094
0.0010669
0.00105306
0.00103943
0.00102624
0.00101402
0.00100361
0.000995651
0.000990297
0.000984255
0.000977187
0.00148784
0.00104192
0.00099007
0.0010511
0.00113723
0.00122514
0.00130714
0.00137982
0.0014426
0.00149547
0.0015384
0.00157158
0.00159522
0.00160983
0.00161631
0.00161581
0.0016096
0.00159896
0.00158504
0.00156881
0.00155113
0.00153262
0.00151382
0.00149512
0.00147681
0.00145903
0.00144166
0.00142437
0.00140682
0.00138916
0.0013727
0.00136013
0.00135524
0.00135838
0.00136891
0.00138428
0.000929708
0.000864049
0.000899639
0.000958134
0.0010205
0.00108021
0.00113443
0.00118216
0.00122384
0.00126008
0.00129139
0.00131816
0.00134069
0.00135924
0.00137405
0.0013854
0.00139363
0.00139912
0.0014023
0.00140356
0.00140331
0.0014019
0.00139967
0.00139687
0.00139371
0.0013903
0.00138668
0.00138286
0.0013789
0.00137504
0.00137169
0.00137002
0.00136973
0.00137601
0.000800513
0.000565461
0.000504029
0.000483468
0.00047762
0.000477888
0.000480847
0.00048495
0.000489449
0.000493991
0.000498443
0.00050275
0.000506911
0.000510948
0.000514884
0.000518741
0.000522533
0.00052627
0.000529956
0.000533593
0.000537184
0.000540731
0.000544233
0.000547676
0.000551043
0.000554319
0.000557525
0.000560723
0.000563989
0.000567327
0.000570562
0.000573298
0.000575186
0.000576042
0.000577414
0.00167477
0.00119646
0.00109095
0.0011786
0.00134848
0.00154761
0.0017528
0.00195067
0.00213333
0.002296
0.00243603
0.00255206
0.0026442
0.00271368
0.00276256
0.00279352
0.00280949
0.00281344
0.00280813
0.00279593
0.00277884
0.00275842
0.00273598
0.0027125
0.00268874
0.00266517
0.00264195
0.00261888
0.00259562
0.00257221
0.00254983
0.00253142
0.00252157
0.0025223
0.00253393
0.00167633
0.00120106
0.00110073
0.00119217
0.00136393
0.00156329
0.0017668
0.00196176
0.00214102
0.00230075
0.00243877
0.00255394
0.00264613
0.00271617
0.00276581
0.00279751
0.00281411
0.00281853
0.00281351
0.0028015
0.00278453
0.00276427
0.002742
0.00271866
0.00269491
0.00267112
0.00264747
0.00262403
0.00260102
0.00257905
0.00255931
0.00254319
0.00253198
0.00252348
0.00251729
)
;
boundaryField
{
inlet
{
type calculated;
value uniform 0.002985;
}
parede
{
type symmetry;
}
outlet
{
type calculated;
value nonuniform List<scalar>
3136
(
0.00603252
0.00525477
0.000771294
0.00291176
0.000882814
0.00530041
0.00162983
0.00451721
0.00450283
0.00155649
0.00169582
0.00149603
0.001574
0.000595998
0.00418869
0.00398606
0.00353713
0.00215759
0.000414279
0.00497393
0.00099289
0.00256773
0.00268997
0.00122341
0.00102455
0.00594823
0.000492063
0.00406212
0.000578862
0.000512637
0.00142657
0.0047085
0.00139637
0.00125573
0.0042465
0.00141058
0.00243529
0.00101276
0.000501537
0.000537196
0.00249292
0.00547709
0.00484911
0.00322967
0.00481399
0.00213902
0.00223447
0.00558777
0.0058627
0.00342491
0.00243713
0.00130663
0.00384218
0.00596233
0.00548599
0.00233193
0.00284995
0.00198047
0.00175494
0.00549555
0.00479687
0.000530668
0.00552247
0.00410032
0.00303414
0.00514886
0.000552841
0.000583418
0.00559464
0.00396567
0.00556261
0.00236669
0.00247626
0.00599323
0.00179939
0.00292631
0.00129873
0.000750163
0.00120103
0.000404687
0.00302854
0.00442412
0.00552491
0.00274373
0.00236882
0.00405657
0.00310353
0.00146268
0.000798147
0.000760252
0.00439396
0.000986722
0.00529436
0.00435781
0.00370641
0.00571321
0.00255457
0.000730069
0.00496332
0.00592116
0.00590021
0.00259361
0.000574672
0.00293297
0.00240627
0.0021841
0.00332872
0.00419172
0.00252921
0.00381628
0.00396835
0.00214996
0.000517541
0.00392011
0.00576507
0.00345004
0.000464343
0.00417323
0.00078276
0.00479171
0.000868105
0.000614973
0.00215776
0.00301607
0.000504963
0.00565419
0.000520644
0.000508149
0.000746226
0.00408896
0.000828819
0.000747878
0.0031135
0.000992931
0.00462937
0.000805115
0.00208292
0.000555878
0.00168759
0.00241937
0.00521191
0.00275692
0.00285901
0.00310617
0.00355257
0.00315351
0.000676654
0.00588623
0.00331863
0.00436412
0.00403638
0.000326566
0.000327218
0.000914212
0.00034184
0.000338812
0.00143651
0.0014237
0.00388603
0.00204542
0.000557713
0.000475371
0.00203835
0.00612119
0.00116551
0.00476576
0.00301873
0.0034941
0.0034546
0.0017755
0.00409388
0.00552112
0.0052987
0.00453693
0.00558411
0.000501055
0.00234296
0.00242921
0.00118216
0.00177505
0.00181758
0.000834041
0.000499895
0.000921544
0.00216238
0.0048766
0.000536147
0.000517858
0.00596848
0.00428411
0.000502423
0.000352338
0.000496308
0.000528977
0.000661405
0.000471195
0.00333486
0.00193023
0.000782961
0.00284966
0.00488448
0.00427248
0.00317087
0.000700499
0.000533032
0.00308711
0.00315186
0.0046439
0.00249955
0.00262709
0.00259325
0.000978701
0.00461996
0.00382358
0.000979729
0.000471119
0.00139519
0.00397185
0.00272558
0.0018225
0.00186976
0.00140886
0.0060348
0.00452437
0.00276884
0.00283289
0.00597248
0.00471222
0.000590023
0.000569941
0.00386247
0.000691727
0.00434895
0.000765198
0.00137074
0.000429935
0.000423721
0.00292999
0.00300807
0.00177225
0.000456189
0.00418557
0.00173607
0.00547515
0.000523606
0.000890157
0.000862853
0.0037172
0.00181855
0.00162905
0.000991326
0.00120884
0.00533385
0.000785073
0.00471237
0.0041096
0.00236131
0.00167677
0.00356935
0.000675446
0.000726526
0.00289934
0.00317696
0.00536425
0.000292047
0.00341036
0.00158057
0.000489116
0.00048329
0.000696213
0.00524265
0.000555106
0.000967468
0.00148824
0.000677901
0.00213318
0.00567473
0.0032657
0.000547816
0.0010968
0.00392671
0.00142322
0.000479934
0.00562602
0.00435398
0.00332354
0.0014465
0.00458676
0.00610266
0.00429481
0.000492506
0.000700366
0.00286501
0.00223157
0.000519363
0.000735157
0.000872068
0.00438659
0.00562708
0.0060795
0.000484599
0.00223031
0.00235611
0.00295456
0.00566185
0.00559386
0.00280249
0.00291291
0.000529881
0.000546355
0.000670616
0.001567
0.00556025
0.000968063
0.00521483
0.00295443
0.00111341
0.00187129
0.000642352
0.00164337
0.00225072
0.000477527
0.00046018
0.000523464
0.000510053
0.00350265
0.00360677
0.00049464
0.0050267
0.00153125
0.00447736
0.00196049
0.00262828
0.000532528
0.000468228
0.00457681
0.000498721
0.000548633
0.00421706
0.00609955
0.00193121
0.00178147
0.000622757
0.00497577
0.000415369
0.000602837
0.00186247
0.002016
0.0022118
0.0060598
0.00520173
0.00566437
0.000550393
0.00455732
0.0037806
0.00569792
0.00163408
0.000479208
0.000552244
0.000642534
0.00241059
0.00084602
0.00551307
0.00560138
0.00177187
0.000378856
0.000384328
0.0003421
0.000324323
0.00417557
0.00507847
0.00229082
0.00552623
0.000443842
0.000487241
0.000523868
0.0057156
0.0056894
0.00306647
0.00217494
0.000522481
0.00170093
0.000524698
0.00529915
0.00276167
0.00150807
0.00206393
0.00241006
0.00606023
0.000687822
0.00591229
0.00576673
0.000499044
0.000474775
0.000695794
0.000617009
0.00123658
0.0033765
0.00226831
0.0040868
0.000354779
0.000499021
0.00399211
0.00329591
0.000404525
0.00153743
0.00179622
0.00573657
0.00312542
0.00292301
0.000466949
0.000762175
0.000604469
0.000594656
0.000481255
0.00146275
0.00123861
0.00124624
0.000406424
0.000371166
0.00117197
0.00122584
0.00536197
0.00372559
0.00376134
0.000527333
0.00285989
0.00076359
0.00409482
0.000484721
0.00124655
0.00237809
0.00335924
0.00163341
0.000453648
0.000724995
0.00578754
0.00423144
0.00535894
0.00509782
0.000851727
0.000852403
0.00372787
0.00548751
0.00519744
0.00604926
0.000377711
0.000439842
0.000567069
0.00431353
0.00595502
0.00048525
0.000435022
0.00347064
0.000407025
0.000670449
0.00235047
0.00338904
0.00138187
0.000881736
0.000492093
0.00131343
0.000403188
0.00222901
0.00108403
0.000506955
0.000529356
0.00366795
0.000704054
0.000699453
0.000626223
0.00145438
0.000690587
0.00463023
0.000505592
0.000399503
0.000416509
0.00579401
0.00129659
0.001328
0.000388263
0.000338091
0.0057949
0.00408265
0.00215801
0.000427816
0.000418102
0.00135644
0.000427419
0.000465969
0.00472023
0.00035237
0.000422409
0.00429302
0.00268105
0.000437167
0.000426802
0.0003819
0.00228901
0.00141936
0.000430311
0.0005193
0.000725769
0.000560625
0.000471781
0.00412093
0.00308035
0.00042442
0.00268813
0.00164724
0.00567738
0.0030763
0.000711054
0.000643913
0.00159634
0.00239499
0.000615358
0.00317353
0.00198907
0.000440042
0.00512618
0.000382563
0.000445352
0.00221557
0.00337414
0.0020857
0.0007239
0.000625589
0.00182609
0.00346337
0.000495426
0.00247558
0.000722682
0.00576712
0.000751636
0.000524353
0.00238136
0.000460025
0.00535769
0.000527141
0.000534027
0.00408984
0.00132588
0.00110486
0.0032365
0.000419129
0.00330303
0.00240617
0.00271588
0.00265109
0.00268163
0.00175322
0.00523841
0.00243353
0.000313629
0.00353947
0.00202669
0.00207401
0.00543289
0.00305033
0.00294347
0.000640968
0.000351931
0.00327928
0.0031926
0.004206
0.000426777
0.00363618
0.000800829
0.000342046
0.00152934
0.000811801
0.000664835
0.000605256
0.00453553
0.00275338
0.00359733
0.0019723
0.000502027
0.00395171
0.000286128
0.00490988
0.00407983
0.00316252
0.0030779
0.00069014
0.000569989
0.000507373
0.000401706
0.000455907
0.00361821
0.000336136
0.000372859
0.00469554
0.000378471
0.00157795
0.000321997
0.000286233
0.00570949
0.000421654
0.00583755
0.000518727
0.000535308
0.000431289
0.000673961
0.000440425
0.00280062
0.00449514
0.00472952
0.00344806
0.00593361
0.0023341
0.000342899
0.00037129
0.000280669
0.000295499
0.00142807
0.00233257
0.00479213
0.00139628
0.000429256
0.000390803
0.00277688
0.00501122
0.00162404
0.00057338
0.000598051
0.00517912
0.00133673
0.00493548
0.00602187
0.0004989
0.0048125
0.00160696
0.00527837
0.00418269
0.000507758
0.00040445
0.00175699
0.00118022
0.00585853
0.00584035
0.00139349
0.00502505
0.00414711
0.00519678
0.00560249
0.00504832
0.00327181
0.0033187
0.00266275
0.00310283
0.00317241
0.000911952
0.00375869
0.00334045
0.00328278
0.00461471
0.00156721
0.00433672
0.00051493
0.00272379
0.00525447
0.00185092
0.00190154
0.00126852
0.000506044
0.00125136
0.0035883
0.00503719
0.00562969
0.000509401
0.00240958
0.00526337
0.000978634
0.000567016
0.00147939
0.000388151
0.000531073
0.000849834
0.00298558
0.00308483
0.000419061
0.00338917
0.000988683
0.00101275
0.00381827
0.00551609
0.000406653
0.000395718
0.0032257
0.00156918
0.00249258
0.000562786
0.000589169
0.00485373
0.00329525
0.00324272
0.000383134
0.00480703
0.00323469
0.00315952
0.00103128
0.00124582
0.00120746
0.000423906
0.00515691
0.00566784
0.00553645
0.00364001
0.00264558
0.00131667
0.000458968
0.000295649
0.000296772
0.000418567
0.0028332
0.00351587
0.00346483
0.0034954
0.00337854
0.000357913
0.000380889
0.00161774
0.00292819
0.00302753
0.00402787
0.000454001
0.00275167
0.00286318
0.00548422
0.00319121
0.00301117
0.00578313
0.000574769
0.0053983
0.00388109
0.000935311
0.000956938
0.00102394
0.000891046
0.00103748
0.00388743
0.00222519
0.00221414
0.00340732
0.00359453
0.00306625
0.00515081
0.00490694
0.00115255
0.00275776
0.00282897
0.00260287
0.00201078
0.00215972
0.000825292
0.00105209
0.00320111
0.0032829
0.00613161
0.000922591
0.000315687
0.000325653
0.006032
0.0017578
0.00581691
0.00580134
0.00247927
0.000278431
0.000286259
0.00587256
0.00282797
0.00223253
0.00312631
0.00305581
0.0035754
0.00339083
0.000998704
0.00130803
0.00137516
0.000583175
0.0024611
0.00253728
0.00604312
0.00527575
0.000765038
0.00292838
0.000881317
0.0053195
0.0016297
0.00451158
0.00450266
0.00154466
0.00163506
0.00149064
0.00154099
0.000595196
0.00417756
0.00397951
0.00353275
0.00214955
0.000414789
0.00499582
0.000991431
0.00254016
0.00257687
0.00115866
0.001009
0.00595559
0.000488499
0.00404742
0.000578734
0.00051311
0.0014167
0.0047061
0.00131878
0.00123547
0.00424606
0.00141084
0.00243088
0.00101263
0.000501308
0.000536216
0.00249829
0.00548489
0.00485278
0.00323206
0.00480629
0.00211584
0.00213025
0.00558833
0.00586988
0.00342701
0.00241862
0.0013001
0.00384978
0.00596133
0.00548018
0.00233276
0.00284742
0.00196828
0.00176441
0.00549574
0.0048212
0.000529858
0.00552594
0.00410031
0.00304991
0.00514452
0.000549641
0.000583855
0.00561241
0.00394869
0.00556093
0.00236885
0.00247246
0.00600132
0.00180401
0.00292619
0.00129642
0.000746488
0.00120823
0.000402703
0.00300509
0.00442569
0.00552588
0.00275967
0.00237995
0.00406071
0.00309865
0.00146247
0.000788261
0.000725721
0.00438651
0.000985235
0.00529776
0.0043512
0.00372677
0.00571534
0.0025428
0.000729514
0.00496337
0.00592197
0.00590074
0.00259031
0.000570721
0.00290325
0.00239132
0.00216889
0.00334644
0.00417388
0.00243258
0.0038188
0.00398845
0.00214436
0.000503134
0.0039045
0.00577672
0.00342862
0.000464305
0.0041758
0.00078254
0.00478306
0.000872031
0.000614288
0.00216142
0.00302352
0.000504312
0.00564874
0.00052035
0.00050714
0.000747922
0.00408797
0.000823272
0.000742509
0.00311312
0.000995278
0.0046321
0.000806609
0.00207954
0.000556136
0.00167438
0.00243287
0.00521205
0.00273292
0.0027535
0.00310534
0.00352809
0.00317014
0.000675398
0.00588347
0.00331978
0.00436721
0.00403622
0.000325873
0.000326712
0.000915273
0.000341037
0.000338113
0.00144404
0.00142834
0.00388029
0.00205509
0.000558081
0.00047204
0.00204701
0.006132
0.00116583
0.00478881
0.00302013
0.00345298
0.00345342
0.00177599
0.00409701
0.00552143
0.00529204
0.00452388
0.00558572
0.000500932
0.00233692
0.00238368
0.00118611
0.00176557
0.00176777
0.000838541
0.000499733
0.00091351
0.00216215
0.00487584
0.000536423
0.000518321
0.0059849
0.00427439
0.000502584
0.000346564
0.00049332
0.000528829
0.000662359
0.000470455
0.00334482
0.0019314
0.000786977
0.00284506
0.00487699
0.00429088
0.00313613
0.000700535
0.000533004
0.00307746
0.00308359
0.00464475
0.00247453
0.00251343
0.00259469
0.000979526
0.00463996
0.00380631
0.000976413
0.000470922
0.00140077
0.00397323
0.00272729
0.00183306
0.00187079
0.00141705
0.00604662
0.00451263
0.00268943
0.00282049
0.00598637
0.00473428
0.000590032
0.000570402
0.00386488
0.000694117
0.00435581
0.000763601
0.00137856
0.000428597
0.000423007
0.00291223
0.00291875
0.00175102
0.000456217
0.00419581
0.00173503
0.00547525
0.000523286
0.000883949
0.000837062
0.00371941
0.00172456
0.00160803
0.000981865
0.00115826
0.00533621
0.000785046
0.00471773
0.00411173
0.00236107
0.00167421
0.00357051
0.000662965
0.000687375
0.00289994
0.00319538
0.00535865
0.000292256
0.00341328
0.00157742
0.000488553
0.000482586
0.000699059
0.00525638
0.000555611
0.000973063
0.00148861
0.000680081
0.00214492
0.0056727
0.00326087
0.000548216
0.00109741
0.00394654
0.0014319
0.000479232
0.00562171
0.00436687
0.00332465
0.00144293
0.00457932
0.00611527
0.00429574
0.000492358
0.000699839
0.00285871
0.00223933
0.000519564
0.00073858
0.000854465
0.00440246
0.00562859
0.00608515
0.000484418
0.0022024
0.00224318
0.00288597
0.00566223
0.00559266
0.00277541
0.00280145
0.000530098
0.000546882
0.00067057
0.00156168
0.00556646
0.000960661
0.00520852
0.00295618
0.00111383
0.00187209
0.000642379
0.00164124
0.00226448
0.000476812
0.000460605
0.00052338
0.000510365
0.00351491
0.00360091
0.000494532
0.0050444
0.00152962
0.00447948
0.00196129
0.00263838
0.000532849
0.000468667
0.00457855
0.000490173
0.000521731
0.00421972
0.00611472
0.00183017
0.00175584
0.000622708
0.00497584
0.000414965
0.000605619
0.00186413
0.0020041
0.00214156
0.00606325
0.00520296
0.00566175
0.000550352
0.0045594
0.00379734
0.00569412
0.00162205
0.000479479
0.000552222
0.000643056
0.00242089
0.00084947
0.00553512
0.00561746
0.00175924
0.00037776
0.000383577
0.000332103
0.000320609
0.00416125
0.00508001
0.0022874
0.00553034
0.000443789
0.000487207
0.000520567
0.00571126
0.00570988
0.00308158
0.0021756
0.000522923
0.00169833
0.000525051
0.00529796
0.00276542
0.00149153
0.00204953
0.00232513
0.00606802
0.000691261
0.00593153
0.00576349
0.000499513
0.000474082
0.000686328
0.000616039
0.00123573
0.00339246
0.00228038
0.00408823
0.000354882
0.000487417
0.0040144
0.00331418
0.000404659
0.001524
0.00172198
0.0057499
0.00310589
0.00294091
0.000466908
0.000762104
0.00060374
0.00059326
0.000481242
0.00146059
0.00123188
0.00121391
0.000405686
0.00037005
0.00116939
0.00120491
0.00538505
0.00372708
0.0037355
0.000527331
0.00287253
0.000763645
0.00411614
0.000484921
0.00123781
0.00239159
0.0033793
0.00155859
0.000453016
0.000728732
0.00580657
0.00424468
0.00535871
0.00511019
0.00085555
0.000855951
0.0037245
0.00551061
0.00521231
0.00605937
0.000376571
0.000439177
0.000566776
0.00433291
0.00595885
0.000481948
0.000435361
0.00349135
0.000407029
0.000666726
0.00235131
0.00337714
0.00138239
0.000881889
0.00049133
0.00132101
0.000402999
0.00223575
0.00109018
0.000504664
0.000529845
0.00366074
0.000699626
0.000683273
0.00062596
0.00144496
0.000688924
0.00463181
0.000505576
0.000399162
0.000416075
0.0057984
0.00128723
0.00128381
0.000387985
0.000337397
0.00579866
0.00407322
0.0021707
0.000427915
0.000418046
0.00135687
0.000426697
0.000465802
0.00472936
0.000351321
0.000421867
0.0042822
0.00267225
0.000437187
0.000426171
0.000381284
0.00230279
0.00141916
0.000429999
0.000517805
0.000726839
0.000560767
0.00047222
0.00414395
0.00308196
0.00042433
0.00267076
0.00163295
0.00567801
0.00305758
0.000714014
0.000639746
0.00159642
0.00236938
0.000615276
0.00317463
0.00200197
0.000440036
0.00511888
0.000381492
0.000444722
0.00221676
0.00335959
0.00207314
0.000727256
0.000628553
0.0018259
0.00347738
0.000495849
0.00245637
0.000724713
0.00577357
0.000753285
0.000524841
0.00238128
0.000460264
0.00535576
0.000526885
0.000531268
0.00411326
0.00132641
0.00110527
0.00323084
0.000419285
0.0032935
0.00242101
0.00271559
0.00264855
0.00264221
0.00175988
0.00523995
0.00242455
0.000313691
0.00353992
0.00193265
0.00205541
0.0054342
0.00304816
0.00289635
0.000642879
0.000351862
0.00319093
0.00317477
0.0042276
0.000426881
0.00361488
0.000800024
0.0003415
0.0015312
0.000810909
0.000668125
0.000606739
0.00455919
0.00275425
0.00356792
0.00197079
0.000502495
0.00395339
0.000286173
0.00491804
0.00410342
0.00307378
0.00306001
0.000693512
0.000572668
0.000507362
0.000401763
0.000455863
0.00359809
0.000335153
0.000372421
0.00468816
0.000378515
0.0015755
0.000321085
0.000282953
0.00570722
0.000421687
0.0058475
0.000516473
0.000535809
0.000431694
0.000671413
0.00043456
0.00280613
0.00451165
0.00472466
0.00345465
0.00594057
0.00233043
0.000342543
0.00037027
0.00028002
0.000295244
0.00143556
0.00233377
0.00479416
0.00140049
0.000425366
0.000380455
0.00275913
0.00503055
0.00163395
0.000573391
0.000598064
0.00517409
0.00133887
0.00493756
0.00603938
0.000498952
0.00482288
0.00161022
0.00528256
0.0041781
0.000507781
0.000404443
0.00175918
0.00118046
0.00586627
0.00584684
0.00140205
0.0050277
0.00412874
0.00519857
0.00560091
0.00504399
0.00326753
0.00326786
0.00266381
0.00309084
0.00309504
0.000917188
0.00376423
0.00327697
0.00327547
0.00463974
0.00157672
0.00433742
0.000515095
0.00272564
0.00526057
0.00184701
0.00186856
0.00127493
0.000504154
0.00125652
0.00359051
0.00503945
0.00563327
0.000510202
0.00241499
0.00527223
0.000974017
0.000548465
0.00148886
0.00038083
0.000527391
0.000817571
0.00296192
0.00298522
0.000418963
0.00336882
0.000978113
0.00101194
0.00381868
0.00551913
0.000393727
0.000391394
0.00323292
0.00157275
0.00247819
0.000562172
0.000583725
0.00484515
0.00325454
0.00324037
0.000380623
0.00480019
0.00321371
0.00314254
0.0010298
0.00122844
0.00120596
0.000424325
0.00515836
0.00567192
0.00554624
0.00364034
0.00262878
0.00131704
0.00045528
0.000295026
0.000296205
0.000418812
0.00282583
0.00353001
0.00346384
0.00345748
0.00337831
0.000356475
0.00037526
0.00153811
0.0029052
0.00292631
0.00403609
0.000442034
0.00269282
0.00285308
0.00548036
0.00319628
0.00302216
0.00578997
0.000577152
0.00540176
0.00386233
0.000927098
0.000957175
0.000971576
0.000878732
0.00103734
0.00388946
0.00222301
0.00218311
0.00340959
0.00359616
0.00306626
0.00514877
0.00491073
0.00114298
0.00273838
0.00273235
0.00261719
0.00200253
0.0021076
0.000816066
0.00104329
0.00318532
0.00319816
0.00614686
0.000927825
0.000311679
0.000316423
0.00604104
0.00175874
0.00581263
0.00580555
0.00248794
0.00027557
0.000279684
0.0058923
0.00283081
0.00223223
0.00307344
0.00304953
0.0035559
0.00340969
0.000951678
0.00129393
0.00136362
0.00058555
0.00244969
0.00246964
0.0060056
0.00521654
0.000765129
0.00288034
0.000880095
0.00525747
0.00163017
0.00449106
0.00449669
0.00159011
0.00162499
0.00152095
0.00153853
0.000594322
0.00417742
0.00397355
0.00351204
0.00214999
0.000412876
0.00493064
0.000988029
0.00262577
0.00254834
0.00114118
0.00105285
0.00592386
0.00049687
0.00404788
0.000579123
0.00051241
0.00141759
0.00467545
0.00129748
0.00129225
0.00424329
0.00142138
0.00242936
0.00100242
0.00050172
0.000536045
0.00247841
0.00543757
0.00481146
0.00319918
0.00480439
0.00219451
0.00210413
0.00557436
0.0058258
0.00344002
0.00242025
0.00130038
0.00382182
0.00594273
0.00547364
0.00235176
0.002825
0.00196981
0.00173507
0.00549794
0.00475539
0.00052976
0.00548516
0.00410056
0.00300086
0.00511915
0.000549656
0.00058327
0.00555953
0.00395133
0.00555845
0.00234253
0.00246363
0.00597327
0.00178746
0.00292647
0.00129523
0.000760613
0.00118965
0.000407521
0.003007
0.00443173
0.00552928
0.00271522
0.00234672
0.00404503
0.00308973
0.00146275
0.000815397
0.000716264
0.00438242
0.000983035
0.00528348
0.0043392
0.00366763
0.00570783
0.00254354
0.000724802
0.00496357
0.00590109
0.00587155
0.00257319
0.000570668
0.0029044
0.00239307
0.00216995
0.0032922
0.0041747
0.00241287
0.00384089
0.00392804
0.0021442
0.000500103
0.00390738
0.00572556
0.0034309
0.000466028
0.00413674
0.000787346
0.00478313
0.000861409
0.000612371
0.00214718
0.00299672
0.000504215
0.00563848
0.000520827
0.00050694
0.000742324
0.00405516
0.000823573
0.000742648
0.00311238
0.000986983
0.00464319
0.000801016
0.00207726
0.000555458
0.00167522
0.00239508
0.00517571
0.00281322
0.00272971
0.00307701
0.00353018
0.00312098
0.000674857
0.00586786
0.00331984
0.00435662
0.00403642
0.000325919
0.000326016
0.00091082
0.000340334
0.000338347
0.0014209
0.0014095
0.00386592
0.00202362
0.000557314
0.00047191
0.0020167
0.00608928
0.00116903
0.00472616
0.00301691
0.00345209
0.00349418
0.00177679
0.00411543
0.00552105
0.00527781
0.00452478
0.00557942
0.000500658
0.00237937
0.00238121
0.00117331
0.0018095
0.00176198
0.000826901
0.000499513
0.000913515
0.00214053
0.00487271
0.000535875
0.000517681
0.00593556
0.00427752
0.000502059
0.000345315
0.000500859
0.00052922
0.00065856
0.000470342
0.00331128
0.00192721
0.00077656
0.00284061
0.00487055
0.00423847
0.00313681
0.000701639
0.000533029
0.0031367
0.00307565
0.00464043
0.00256012
0.00248717
0.00261104
0.000975993
0.00457722
0.00380891
0.000976293
0.000470757
0.00138348
0.00397838
0.00274086
0.00180327
0.00188083
0.00139309
0.00600847
0.00451482
0.0026776
0.00288512
0.00593432
0.00467401
0.000591122
0.000569742
0.00388072
0.000687147
0.00433007
0.000763165
0.00135655
0.000427885
0.000423532
0.00298342
0.0029028
0.00175123
0.000455757
0.00416031
0.00175585
0.0054756
0.000523183
0.000904884
0.000833225
0.00371259
0.0017004
0.00167635
0.00101172
0.00114797
0.00532973
0.000790048
0.00469774
0.00412401
0.0023606
0.00166935
0.00357358
0.000691032
0.000674592
0.00292698
0.00314609
0.00533942
0.000291342
0.00340231
0.00157666
0.000488464
0.000482501
0.000691657
0.00520101
0.00055477
0.000958424
0.00149111
0.000673616
0.00210764
0.00564632
0.00324565
0.000547391
0.00109497
0.00388803
0.00140707
0.000479149
0.00561768
0.0043253
0.00335349
0.00144264
0.00456984
0.00607488
0.00429062
0.000492106
0.000704762
0.00285786
0.00220761
0.000518619
0.000730132
0.000853004
0.00435425
0.00562506
0.00604896
0.000484229
0.00228849
0.00221402
0.0028786
0.00566345
0.0055826
0.0028603
0.00277442
0.000529525
0.000545902
0.000670724
0.00156193
0.00554416
0.00096066
0.005205
0.00297685
0.00111242
0.00187
0.000642574
0.00162985
0.00222735
0.000476729
0.000460022
0.000523036
0.000509671
0.00347583
0.00359303
0.000494223
0.00498452
0.00151696
0.00449039
0.00196669
0.00260628
0.000532293
0.000468036
0.00458658
0.000508334
0.000512777
0.00423484
0.00606535
0.00180356
0.00183265
0.000622872
0.00497547
0.000414883
0.000598664
0.00185739
0.00206061
0.00213191
0.00603055
0.00519767
0.00565926
0.000549881
0.00455497
0.00374518
0.0056746
0.00162307
0.000478866
0.000552206
0.000637587
0.00238859
0.000839565
0.00547068
0.00555882
0.0017599
0.000377022
0.000384054
0.000328141
0.000326683
0.00416375
0.0050855
0.00227528
0.00550983
0.00044395
0.000487268
0.000520441
0.00570462
0.00565106
0.00303412
0.00217873
0.000522233
0.00169095
0.000524489
0.00529498
0.00275063
0.00154868
0.00211241
0.00231062
0.00603109
0.000682447
0.00587523
0.00575597
0.000498735
0.000474004
0.00068571
0.000621243
0.00122391
0.00334595
0.00224219
0.00408962
0.000354539
0.000485498
0.00395525
0.00326355
0.000404261
0.00157567
0.0017076
0.00570743
0.00310705
0.00289289
0.000466999
0.00076243
0.000602413
0.000599245
0.000481181
0.00145197
0.00126175
0.0012105
0.000406245
0.000369378
0.0011874
0.00120396
0.00532086
0.00375656
0.00373722
0.000529123
0.00283044
0.000764469
0.00405846
0.0004844
0.00123856
0.00234984
0.00332478
0.00154141
0.000452929
0.000719165
0.00574581
0.00419387
0.00534818
0.00506958
0.000845141
0.00084582
0.00369658
0.00544569
0.00516585
0.00601377
0.000376014
0.000439837
0.000566657
0.00427358
0.00593213
0.000481777
0.000434781
0.00343378
0.000406896
0.000666626
0.00235072
0.00337712
0.00138737
0.000881686
0.000490852
0.00129833
0.000402874
0.00221262
0.00107229
0.000504541
0.000529065
0.00365847
0.000714558
0.000681305
0.000621497
0.00144539
0.000688649
0.00463352
0.000505081
0.000399084
0.000416
0.00577299
0.00132291
0.00127734
0.000388247
0.000337216
0.00578447
0.00407196
0.0021339
0.000427465
0.000418237
0.00135633
0.000426585
0.000466167
0.00468002
0.000350922
0.000422438
0.00428521
0.00267243
0.000437015
0.000426086
0.0003812
0.00226218
0.00141998
0.000429918
0.000517627
0.000720107
0.000560071
0.000471495
0.00408272
0.00309169
0.000424569
0.00267279
0.00163384
0.0056787
0.00305955
0.0007067
0.000639608
0.00161156
0.00237044
0.000614796
0.00317971
0.00196739
0.000440063
0.00510875
0.000380998
0.000445316
0.00222684
0.00336008
0.00207374
0.00071844
0.00062108
0.00182602
0.00343483
0.000495111
0.00253152
0.000717601
0.00574814
0.00074604
0.000523877
0.00240744
0.000459688
0.00535747
0.000526752
0.000531281
0.00405085
0.00133217
0.00111092
0.00322748
0.000418846
0.00329283
0.0023801
0.00271642
0.0026865
0.00264169
0.00173806
0.00524625
0.00247644
0.000313453
0.00357203
0.00191087
0.00212903
0.00543454
0.00308802
0.00289453
0.000637128
0.000352023
0.00317293
0.00324333
0.00416402
0.000426515
0.0036161
0.000795497
0.000341417
0.00151355
0.000807271
0.000659642
0.000602116
0.00449259
0.00275644
0.00356916
0.00195263
0.000501776
0.00395085
0.000285972
0.00488893
0.0040395
0.00305703
0.00312928
0.000684962
0.000566112
0.000503716
0.000401342
0.000455996
0.00359896
0.000334831
0.000372863
0.00469092
0.000378285
0.0015728
0.000323496
0.000282436
0.00569844
0.000421482
0.00581394
0.000516326
0.000534919
0.000431019
0.000682121
0.000433946
0.00278502
0.00445467
0.00472759
0.00342991
0.00591608
0.00232528
0.000342841
0.00036998
0.000279839
0.000295449
0.00141415
0.00234239
0.00478229
0.00138595
0.000433529
0.000376982
0.0027609
0.00497469
0.00160551
0.000575131
0.000599565
0.00517493
0.00133035
0.00494643
0.00598736
0.000498595
0.00478717
0.00159783
0.00526773
0.00415207
0.000507639
0.000404345
0.00175026
0.00118144
0.00583877
0.00582377
0.00137954
0.00501491
0.0041302
0.00518448
0.00560071
0.00504638
0.00331639
0.00326502
0.00267001
0.00315525
0.00308434
0.000903971
0.00374288
0.00327035
0.00333025
0.00457383
0.00155101
0.00432977
0.000511257
0.0027191
0.00523853
0.00187903
0.00186739
0.00125543
0.000503981
0.00123891
0.00361225
0.00503408
0.00561955
0.00050743
0.00238452
0.00524133
0.000974077
0.000543565
0.00146333
0.000378834
0.000536626
0.000811092
0.0030379
0.00296198
0.000420452
0.00337043
0.000978072
0.00102215
0.00381495
0.00550886
0.000389274
0.000400014
0.0031936
0.00155297
0.00254708
0.000566051
0.000583369
0.00484689
0.00325391
0.00328128
0.000380505
0.00478315
0.00321581
0.00314323
0.00102489
0.00122812
0.00122182
0.000422618
0.00516019
0.00565707
0.0055129
0.00363631
0.00262975
0.00130258
0.000463348
0.000295137
0.000295584
0.00041769
0.00287808
0.00348189
0.00350184
0.00345721
0.00337577
0.000360147
0.000374347
0.0015183
0.00298268
0.00290442
0.00399066
0.000438355
0.00268796
0.0029125
0.00547901
0.00317662
0.00298105
0.00576585
0.000571245
0.00538809
0.0038641
0.000927197
0.000962922
0.000957818
0.00091428
0.00103757
0.00390034
0.00225383
0.00218289
0.00342683
0.00360449
0.00306504
0.00515137
0.00489735
0.00114343
0.00281516
0.0027144
0.0025727
0.00204898
0.00210314
0.000842749
0.00107268
0.00325239
0.00318309
0.00609916
0.000914216
0.000317739
0.000312385
0.00601047
0.00177024
0.00579928
0.00579019
0.00245915
0.000279749
0.000276812
0.0058335
0.00281955
0.00223213
0.00307027
0.00310109
0.00355793
0.00335459
0.000940522
0.0013419
0.001364
0.000579842
0.00250961
0.00246156
0.00599572
0.00519654
0.000770866
0.00286272
0.000881772
0.00523662
0.00163036
0.00449759
0.00449763
0.00161326
0.00167419
0.0015323
0.00156653
0.000595218
0.00418943
0.00398092
0.00351706
0.00215859
0.000412651
0.00490683
0.000989687
0.00268036
0.00263613
0.00119079
0.00108187
0.00591731
0.000503355
0.00406356
0.000579358
0.000511812
0.00142682
0.00467825
0.00135748
0.00133069
0.0042442
0.0014219
0.00243422
0.00100245
0.000502114
0.000536907
0.00247592
0.00542874
0.00480708
0.00319619
0.0048129
0.00223946
0.00218434
0.00557466
0.00581812
0.00343817
0.00243732
0.00130732
0.00381832
0.00594453
0.00548036
0.00235225
0.0028279
0.00198159
0.00172426
0.00549795
0.00472923
0.000530581
0.00548137
0.00410077
0.0029833
0.0051243
0.000552669
0.000582692
0.00554388
0.00396636
0.00556068
0.00233981
0.002468
0.00596802
0.00178495
0.00292674
0.0012978
0.000767708
0.0011823
0.000411119
0.00302854
0.00443109
0.00552858
0.00269872
0.00233719
0.00404451
0.00309532
0.00146312
0.000833729
0.000742585
0.00439073
0.000984719
0.00528168
0.00434675
0.00364582
0.00570793
0.00255606
0.00072537
0.00496375
0.00590097
0.00587147
0.002577
0.0005747
0.00293088
0.00240802
0.00218572
0.00327295
0.00419352
0.00248895
0.00383942
0.00390538
0.00215025
0.00051158
0.00392186
0.00571281
0.00345084
0.000466245
0.00413359
0.000788102
0.00479259
0.000857769
0.000613132
0.00214598
0.00299278
0.000504901
0.00564491
0.000521333
0.000507807
0.000741187
0.00405623
0.000828912
0.000748033
0.00311311
0.000985661
0.00464011
0.000800355
0.00208105
0.000555223
0.00168877
0.00238253
0.00517562
0.0028603
0.00281118
0.00307792
0.00355221
0.00310125
0.000676238
0.00587149
0.00332057
0.00435677
0.00403729
0.00032705
0.000326125
0.000910744
0.000340702
0.000339487
0.0014121
0.00140373
0.00387254
0.00201206
0.000556914
0.000475389
0.00200616
0.00607871
0.00116907
0.00470298
0.00301765
0.00348665
0.00350131
0.00177741
0.00411264
0.00552176
0.00528552
0.00453873
0.0055797
0.000500783
0.00239314
0.00241996
0.00117052
0.00182874
0.0018033
0.000821928
0.000499685
0.000921894
0.00214073
0.00487398
0.000535501
0.000517083
0.00592078
0.00428641
0.000501831
0.000349935
0.000506315
0.000529485
0.000658286
0.000471025
0.00330483
0.0019277
0.000772188
0.00284579
0.00487899
0.00422207
0.00316722
0.000701876
0.000533111
0.00315918
0.0031312
0.00464083
0.0026088
0.00257506
0.00261035
0.000976157
0.00455459
0.0038256
0.000979872
0.000470967
0.00137906
0.0039783
0.00273954
0.0017925
0.00188018
0.00138407
0.00599904
0.00452709
0.00274178
0.00291213
0.00591984
0.00465288
0.000591317
0.00056914
0.00387866
0.000685138
0.00432755
0.00076491
0.00134837
0.000428757
0.000424719
0.00301995
0.00297338
0.00177008
0.000455697
0.0041543
0.00175944
0.00547576
0.000523527
0.000916654
0.000854423
0.00371315
0.00177261
0.00171642
0.00102958
0.00118818
0.00532982
0.00079052
0.00469645
0.00412219
0.00236122
0.00167229
0.00357406
0.000714142
0.000703658
0.00292877
0.00312798
0.005346
0.000291322
0.00340244
0.00158011
0.00048906
0.000483179
0.000688199
0.00518511
0.000554145
0.000952609
0.00149136
0.000670881
0.0020947
0.00564897
0.00325123
0.000546952
0.00109533
0.00386473
0.00139759
0.000479851
0.00562277
0.00431612
0.00335481
0.00144652
0.00457829
0.00606348
0.00429082
0.000492262
0.000706013
0.00286474
0.00219805
0.00051876
0.000726617
0.000868023
0.00434145
0.00562525
0.00604343
0.000484423
0.00234208
0.00230086
0.00293505
0.0056633
0.00558457
0.00291285
0.00285939
0.000529227
0.000545283
0.000670773
0.00156764
0.00554171
0.000968447
0.00521217
0.00297612
0.00111291
0.00187069
0.000642891
0.00163227
0.00221392
0.000477402
0.000459475
0.000523113
0.000509345
0.00346681
0.00359969
0.000494332
0.00496418
0.00151876
0.00448845
0.00196641
0.00259873
0.000531863
0.000467475
0.0045854
0.000523716
0.000532254
0.00423232
0.00605001
0.00188035
0.00188026
0.000622941
0.00497632
0.000415314
0.000595395
0.00185759
0.0020851
0.00218941
0.00602733
0.00519796
0.0056625
0.000549904
0.00455541
0.00372484
0.00567925
0.00163516
0.000478586
0.000552286
0.000636868
0.00238049
0.000836569
0.00544715
0.00554118
0.00177315
0.000377647
0.000385298
0.000335082
0.000333245
0.0041782
0.00508429
0.00227922
0.00550688
0.000444056
0.000487351
0.000523912
0.00570983
0.00563132
0.00301596
0.00217904
0.000521663
0.00169395
0.000524021
0.0052967
0.00274987
0.00158057
0.00214171
0.0023788
0.00602358
0.000678532
0.00585584
0.00576001
0.000498159
0.000474684
0.000693972
0.000623231
0.0012248
0.00333198
0.00222808
0.00409008
0.000354469
0.00049503
0.00393272
0.0032464
0.000404154
0.00160203
0.00176679
0.00569712
0.00312736
0.00287497
0.000467089
0.000762559
0.000603228
0.000601984
0.000481249
0.00145443
0.00127516
0.00123757
0.000407476
0.000370059
0.00119311
0.00122209
0.00529747
0.00375786
0.00375958
0.000529304
0.00281495
0.000764759
0.00403812
0.000484217
0.00124716
0.00233527
0.00330425
0.00159996
0.000453591
0.000714968
0.0057255
0.0041776
0.00534915
0.00506115
0.000840457
0.000841426
0.00370043
0.00542166
0.00515431
0.0060033
0.000376787
0.000440959
0.000566972
0.00425049
0.00592889
0.00048476
0.000434379
0.00341205
0.000406945
0.000670583
0.00235148
0.0033899
0.00138717
0.000882186
0.000491695
0.00128987
0.000403077
0.00220846
0.00106523
0.000506986
0.000528453
0.00366642
0.00072294
0.000694875
0.000621718
0.00145535
0.000690451
0.00463353
0.000505075
0.000399448
0.000416462
0.00576935
0.00134109
0.00131354
0.000388709
0.000337796
0.00578326
0.00408225
0.00212066
0.000427317
0.000418346
0.00135696
0.000427235
0.000466459
0.00466901
0.000351699
0.000423352
0.0042958
0.0026819
0.000437052
0.000426744
0.00038183
0.00224738
0.00142034
0.000430252
0.000519239
0.000718713
0.0005603
0.00047096
0.00405994
0.00309047
0.000424732
0.00268942
0.00164684
0.00567887
0.00307815
0.000703603
0.000644014
0.00161281
0.00239338
0.000614868
0.00317972
0.00195453
0.00044007
0.00511707
0.00038175
0.000446373
0.00222601
0.00337559
0.00208703
0.000714432
0.000617566
0.00182649
0.00342346
0.000494611
0.00257009
0.000715035
0.00574298
0.000743931
0.00052332
0.00241009
0.000459453
0.00535977
0.000527026
0.000534003
0.00402642
0.00133193
0.0011108
0.00323379
0.000418712
0.00330316
0.00236515
0.00271712
0.00269435
0.00267587
0.00173329
0.00524466
0.0024959
0.000313418
0.00357501
0.00198419
0.00216615
0.00543435
0.00309574
0.00293472
0.000635603
0.000352147
0.00324188
0.00328185
0.0041401
0.000426451
0.00363819
0.000796368
0.000341982
0.00151117
0.000808255
0.000655853
0.000601005
0.00446684
0.00275698
0.00359485
0.00195431
0.000501185
0.00395155
0.000285957
0.00488513
0.00401421
0.00312601
0.00316609
0.000681314
0.000563232
0.00050365
0.000401248
0.000456089
0.00362007
0.000335591
0.000373598
0.00469856
0.000378288
0.0015756
0.000325156
0.000285197
0.00570147
0.000421504
0.00580743
0.00051874
0.00053431
0.000430523
0.000687109
0.000438985
0.00278292
0.00443473
0.00473241
0.00342727
0.00591225
0.00232946
0.000343434
0.000370794
0.000280367
0.000295871
0.00140743
0.00234158
0.00478138
0.00138335
0.000440543
0.000384544
0.00277907
0.00495755
0.0015949
0.000575313
0.000599757
0.00518054
0.00132974
0.00494423
0.00597073
0.000498852
0.00478111
0.00159644
0.00526697
0.00415735
0.000507909
0.000404402
0.00175002
0.00118193
0.00583264
0.00581958
0.00137105
0.00501359
0.00414936
0.00518364
0.00560274
0.00505109
0.00332913
0.00330748
0.00266968
0.00318228
0.00314644
0.000898739
0.00374134
0.00332181
0.00334895
0.00454722
0.00154193
0.00432992
0.00051098
0.00271963
0.00523645
0.00188824
0.00189583
0.00124776
0.000506014
0.00123255
0.00361108
0.00503429
0.0056181
0.000506957
0.00237779
0.00523667
0.000979016
0.000557817
0.00145375
0.000384456
0.000543366
0.000836823
0.00308435
0.00303749
0.000420734
0.00339118
0.000987554
0.00102433
0.0038154
0.0055087
0.000398632
0.000407789
0.00318464
0.00154851
0.00257728
0.000567352
0.000588182
0.00485609
0.00328883
0.00328963
0.000383099
0.00479104
0.00323583
0.00316117
0.00102655
0.00124344
0.00122561
0.000422524
0.00515981
0.00565615
0.00550702
0.00363674
0.00264738
0.00130202
0.000470014
0.000296134
0.000295763
0.000417747
0.0028953
0.00346443
0.00350796
0.00348956
0.00337655
0.000362763
0.000379013
0.00157993
0.00302783
0.00298218
0.00398051
0.000447286
0.00273718
0.00293504
0.0054835
0.00317516
0.00296738
0.00576251
0.000568875
0.00538648
0.0038832
0.000935671
0.00096306
0.000998014
0.000937324
0.00103778
0.00389868
0.00226024
0.00221005
0.00342504
0.00360357
0.00306565
0.00515361
0.00489703
0.00115317
0.00285455
0.00279088
0.00255633
0.00206651
0.00214691
0.000859976
0.00108941
0.00328588
0.00324894
0.00608431
0.000909141
0.000324824
0.000318629
0.00600339
0.0017698
0.00580449
0.0057889
0.00245325
0.000284718
0.000281198
0.00581271
0.00281954
0.00223266
0.0031147
0.00311686
0.00357718
0.00333265
0.000977187
0.00136891
0.00137601
0.000577414
0.00253393
0.00251729
)
;
}
coolant_to_cladding
{
type compressible::alphatWallFunction;
Prt 0.85;
value uniform 0;
}
}
// ************************************************************************* //
|
|
495e19a7ec83c8ee495b4f4471ae5cb6611c322c
|
72aca11f973b7c337012475ad3111cd20a5dd589
|
/openjudge/1.05-Loop/34-Factorial.cpp
|
e0d9840bf076e21e26d3523fc565caffbd6e9c51
|
[] |
no_license
|
aplqo/exercises
|
a4cee1acbef91e64aee2bd096cd7e0bb834926a4
|
e28f14eaf89481c34bc1a27206e8cea2d2d94869
|
refs/heads/master
| 2021-06-25T06:34:09.535835
| 2021-04-08T13:52:39
| 2021-04-08T13:52:39
| 217,698,619
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 192
|
cpp
|
34-Factorial.cpp
|
#include <iostream>
using namespace std;
int main()
{
int n, last = 1, ans = 0;
cin >> n;
for (int i = 1; i <= n; i++) {
last *= i;
ans += last;
}
cout << ans;
return 0;
}
|
16ac75b2e3f40a7d50b24fc44cb1f59759d97973
|
d3d4b3ee12abc93bacba24b326b8328a39ffb697
|
/Assignment2/OgreApp1/src/Player.cpp
|
4ae35a9ad035da6903afb6ddad0f50f66e00e723
|
[] |
no_license
|
roccivic/ogre3d
|
4447ae36a0809d5a88704aa2bf5986ed968949ee
|
d6cd36ac939a5548ff58bbbb38d41c9fc2a1780b
|
refs/heads/master
| 2021-06-01T11:57:03.005012
| 2021-05-21T15:49:32
| 2021-05-21T15:49:32
| 18,532,041
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 8,109
|
cpp
|
Player.cpp
|
#include "Player.h"
Player::Player(Ogre::SceneManager* mSceneMgr) {
this->mSceneMgr = mSceneMgr;
rotated = false;
position[0] = 0;
position[1] = 0;
direction = Direction::NORTH;
mRotating = false;
mRotatingLeft = false;
walking = false;
dying = false;
dyingProgress = 1.0;
nextKey = 0;
}
Player::~Player() {
}
int* Player::getPosition() {
return position;
}
void Player::die() {
dying = true;
}
bool Player::isWalking() {
return walking;
}
void Player::reset() {
Ogre::String floorTileName = "N" + Ogre::StringConverter::toString(4-position[1]) + Ogre::StringConverter::toString(position[0]);
Ogre::SceneNode* floorTile = mSceneMgr->getSceneNode(floorTileName);
Ogre::Vector3 floorTilePos = floorTile->getPosition();
floorTilePos.y = 0;
floorTile->setPosition(floorTilePos);
mPlayerNode->setPosition(Ogre::Vector3(-400, 0, 400));
rotated = false;
position[0] = 0;
position[1] = 0;
mRotating = false;
mRotatingLeft = false;
walking = false;
dying = false;
dyingProgress = 1.0;
nextKey = 0;
}
void Player::makePlayer() {
mPlayer1 = mSceneMgr->createEntity("Ninja", "ninja.mesh");
mPlayer1->setCastShadows(true);
mPlayer2 = mSceneMgr->createEntity("Jaiqua", "jaiqua.mesh");
mPlayer2->setCastShadows(true);
mPlayer2->setVisible(false);
mPlayer3 = mSceneMgr->createEntity("Robot", "robot.mesh");
mPlayer3->setCastShadows(true);
mPlayer3->setVisible(false);
mPlayerNode = mSceneMgr->getRootSceneNode()->createChildSceneNode("PlayerNode");
mPlayerNode->attachObject(mPlayer1);
mPlayerNode->createChildSceneNode("JaiquaNode");
mSceneMgr->getSceneNode("JaiquaNode")->scale(10, 10, 10);
mSceneMgr->getSceneNode("JaiquaNode")->attachObject(mPlayer2);
mSceneMgr->getSceneNode("JaiquaNode")->translate(Ogre::Vector3(0, 0, 500));
mPlayerNode->createChildSceneNode("RobotNode");
mSceneMgr->getSceneNode("RobotNode")->scale(2, 2, 2);
mSceneMgr->getSceneNode("RobotNode")->attachObject(mPlayer3);
mSceneMgr->getSceneNode("RobotNode")->translate(Ogre::Vector3(0, 0, 0));
mSceneMgr->getSceneNode("RobotNode")->yaw(Ogre::Degree(90));
mPlayerNode->translate(Ogre::Vector3(-400, 0, 400));
Ogre::Light* spotLight = mSceneMgr->createLight("PlayerLight");
spotLight->setType(Ogre::Light::LT_SPOTLIGHT);
spotLight->setDiffuseColour(0.3, 0.3, 0.3);
spotLight->setSpecularColour(0.3, 0.3, 0.3);
spotLight->setDirection(0, -1, 0);
spotLight->setPosition(Ogre::Vector3(0, 300, 0));
spotLight->setSpotlightRange(Ogre::Degree(30), Ogre::Degree(60));
mPlayerNode->attachObject(spotLight);
mPlayerAnimation1 = mPlayer1->getAnimationState("Idle2");
mPlayerAnimation1->setLoop(true);
mPlayerAnimation1->setEnabled(true);
mPlayerAnimation3 = mPlayer3->getAnimationState("Idle");
mPlayerAnimation3->setLoop(true);
mPlayerAnimation3->setEnabled(true);
}
bool Player::tick(const Ogre::FrameEvent& evt) {
if (! mRotating && ! walking && ! dying && nextKey != 0) {
if (nextKey == 1) {
this->keyUp();
} else if (nextKey == 2) {
this->keyDown();
} else if (nextKey == 3) {
this->keyLeft();
} else if (nextKey == 4) {
this->keyRight();
}
nextKey = 0;
}
bool retval = false;
mPlayerAnimation1 = mPlayer1->getAnimationState("Idle2");
mPlayerAnimation1->setLoop(true);
mPlayerAnimation1->setEnabled(true);
mPlayerAnimation3 = mPlayer3->getAnimationState("Idle");
mPlayerAnimation3->setLoop(true);
mPlayerAnimation3->setEnabled(true);
if (mRotating) {
mPlayerAnimation1 = mPlayer1->getAnimationState("Walk");
mPlayerAnimation1->setLoop(true);
mPlayerAnimation1->setEnabled(true);
mPlayerAnimation3 = mPlayer3->getAnimationState("Walk");
mPlayerAnimation3->setLoop(true);
mPlayerAnimation3->setEnabled(true);
mRotatingTarget -= 2.25;
if (mRotatingTarget < 0.0) {
mRotating = false;
} else {
if (mRotatingLeft) {
mPlayerNode->yaw(Ogre::Degree(2.25));
} else {
mPlayerNode->yaw(Ogre::Degree(-2.25));
}
}
retval = true;
} else if (dying) {
dyingProgress -= evt.timeSinceLastFrame;
Ogre::Real move = -1000 * evt.timeSinceLastFrame;
Ogre::String floorTileName = "N" + Ogre::StringConverter::toString(4-position[1]) + Ogre::StringConverter::toString(position[0]);
mSceneMgr->getSceneNode(floorTileName)->translate(Ogre::Vector3(0, move, 0));
mPlayerNode->translate(Ogre::Vector3(0, move, 0));
if (dyingProgress < 0.0) {
reset();
}
retval = true;
} else if (walking) {
mPlayerAnimation1 = mPlayer1->getAnimationState("Walk");
mPlayerAnimation1->setLoop(true);
mPlayerAnimation1->setEnabled(true);
mPlayerAnimation3 = mPlayer3->getAnimationState("Walk");
mPlayerAnimation3->setLoop(true);
mPlayerAnimation3->setEnabled(true);
mDirection = mDestination - mPlayerNode->getPosition();
mDistance = mDirection.normalise();
Ogre::Real move = 400 * evt.timeSinceLastFrame;
mDistance -= move;
if (mDistance <= 0.0f) {
mPlayerNode->setPosition(mDestination);
walking = false;
} else {
mPlayerNode->translate(mDirection * move);
}
mPlayerAnimation1->addTime(evt.timeSinceLastFrame);
mPlayerAnimation3->addTime(evt.timeSinceLastFrame);
retval = true;
}
mPlayerAnimation1->addTime(evt.timeSinceLastFrame);
mPlayerAnimation3->addTime(evt.timeSinceLastFrame);
return retval;
}
void Player::keyUp() {
if (! mRotating && ! walking && ! dying) {
if (updatePosition(direction)) {
walking = true;
mDestination = Ogre::Vector3(position[0]*200-400, 0, -(position[1]*200-400));
mDirection = mDestination - mPlayerNode->getPosition();
}
} else {
nextKey = 1;
}
}
void Player::keyDown() {
if (! mRotating && ! walking && ! dying) {
int dir = direction + 4;
if (dir > 7) {
dir -= 8;
}
if (updatePosition(dir)) {
walking = true;
mDestination = Ogre::Vector3(position[0]*200-400, 0, -(position[1]*200-400));
mDirection = mDestination - mPlayerNode->getPosition();
}
} else {
nextKey = 2;
}
}
void Player::keyLeft() {
if (! mRotating && ! walking && ! dying) {
mRotating = true;
mRotatingLeft = true;
direction--;
if (direction < 0) {
direction = 7;
}
rotated = !rotated;
mRotatingTarget = 45.0;
} else {
nextKey = 3;
}
}
void Player::keyRight() {
if (! mRotating && ! walking && ! dying) {
mRotating = true;
mRotatingLeft = false;
direction++;
if (direction > 7) {
direction = 0;
}
rotated = !rotated;
mRotatingTarget = 45.0;
} else {
nextKey = 4;
}
}
bool Player::updatePosition(int dir) {
bool moved = false;
if (dir == Direction::NORTH && position[1] < 4) {
position[1]++;
moved = true;
} else if (dir == Direction::NORTH_EAST && position[1] < 4 && position[0] < 4) {
position[0]++;
position[1]++;
moved = true;
} else if (dir == Direction::EAST && position[0] < 4) {
position[0]++;
moved = true;
} else if (dir == Direction::SOUTH_EAST && position[1] > 0 && position[0] < 4) {
position[0]++;
position[1]--;
moved = true;
} else if (dir == Direction::SOUTH && position[1] > 0) {
position[1]--;
moved = true;
} else if (dir == Direction::SOUTH_WEST && position[1] > 0 && position[0] > 0) {
position[0]--;
position[1]--;
moved = true;
} else if (dir == Direction::WEST && position[0] > 0) {
position[0]--;
moved = true;
} else if (dir == Direction::NORTH_WEST && position[1] < 4 && position[0] > 0) {
position[0]--;
position[1]++;
moved = true;
}
return moved;
}
void Player::character1() {
if (! dying) {
mPlayer1->setVisible(true);
mPlayer2->setVisible(false);
mPlayer3->setVisible(false);
}
}
void Player::character2() {
if (! dying) {
mPlayer1->setVisible(false);
mPlayer2->setVisible(true);
mPlayer3->setVisible(false);
}
}
void Player::character3() {
if (! dying) {
mPlayer1->setVisible(false);
mPlayer2->setVisible(false);
mPlayer3->setVisible(true);
}
}
|
4eca7d677c73eafeb03e040378ae1c1e9dd5760a
|
ca5757f0b877bbb752e6ab49bebfdd19072b3a90
|
/tests/src/basic_types/integer.cpp
|
900a693996509b08aa1fd131b0f9a1b2502687d5
|
[] |
no_license
|
andrewstalin/asn.1
|
a593b8cf4a9af2b5864dd391976e6851e8be5c07
|
dc759d70dea8816b7e7d76cafbc319a3a2d25b94
|
refs/heads/master
| 2021-01-12T06:28:06.956067
| 2017-05-31T04:32:16
| 2017-05-31T04:32:16
| 77,364,838
| 0
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,049
|
cpp
|
integer.cpp
|
// Licensed under the MIT License <http://opensource.org/licenses/MIT>
// Author: Andrew Stalin <andrew.stalin@gmail.com>
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
#include "basic_decoder_test.h"
#include "basic_encoder_test.h"
#include "asn1/basic_types/integer.h"
#include "gtest/gtest.h"
using namespace asn1;
void IntegerDecodeTest(const std::vector<byte_type>& bytes, int64_t expected)
{
test::BasicDecoderTestEventHandler event_handler([&](Asn1Value&& val)
{
auto integer = static_cast<Integer&>(val);
EXPECT_EQ(expected, integer.to_int64());
});
IntegerDecoder decoder(&event_handler);
test::BasicDecoderTest decoder_test(&decoder);
decoder_test.execute(bytes);
EXPECT_TRUE(event_handler.fire);
}
void IntegerEncodeTest(int64_t val, const std::vector<uint8_t>& expected)
{
test::BasicEncoderTest encoder_test;
encoder_test.execute(Integer(val), expected);
}
TEST(integer_case, positive_integer_encode_test)
{
IntegerEncodeTest(65345634324, { 0x02, 0x05, 0x0F, 0x36, 0xE7, 0x40, 0x14 });
}
TEST(integer_case, negative_integer_encode_test)
{
IntegerEncodeTest(-45675367564634, { 0x02, 0x06, 0xD6, 0x75, 0x5F, 0xF0, 0xFA, 0xA6 });
}
TEST(integer_decoder_case, positive_integer_decode_test)
{
std::vector<uint8_t> data = { 0x02, 0x05, 0x0F, 0x36, 0xE7, 0x00, 0x14 };
int64_t expected{ 65345617940 };
IntegerDecodeTest(data, expected);
}
TEST(integer_decoder_case, negative_integer_decode_test)
{
std::vector<uint8_t> data = { 0x02, 0x06, 0xD6, 0x75, 0xFF, 0x00, 0xFA, 0xA6 };
int64_t expected{ -45672698938714 };
IntegerDecodeTest(data, expected);
}
|
fb46b25c3ba7990dfd5822d69ec8e011ddd892a9
|
fc9d6ab3315ba46a1f03955053c1517397df8c1f
|
/NeoAnimation/NeoAnimation.ino
|
151da0c25203beeac91d4a4c93af833874876bc7
|
[] |
no_license
|
bradenjarvis/NeoPixel-Arrays
|
733ce3d4af087919259f082fc399d99bc383d6c4
|
e3b6b8f95593e3693df52ae21d321783d8e7ca05
|
refs/heads/main
| 2023-03-09T07:24:26.243437
| 2021-02-15T20:09:38
| 2021-02-15T20:09:38
| 339,194,008
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 634
|
ino
|
NeoAnimation.ino
|
#include <Adafruit_NeoPixel.h>
Adafruit_NeoPixel strand(64, 0);
#include "frames.h"
int colors[4][3] {
{0, 0, 0},
{255, 0, 155},
{0, 0, 255},
{200, 200, 0}
};
int whichFrame = 0;
void setup() {
strand.begin();
strand.clear();
strand.setBrightness(10);
}
void loop() {
for (int i = 0; i < strand.numPixels(); i++) {
int whichColor = animation [whichFrame][i];
int red = colors [whichColor] [0];
int green = colors [whichColor] [1];
int blue = colors [whichColor] [2];
strand.setPixelColor(i, red, green, blue);
}
strand.show();
whichFrame = (whichFrame + 1) % 5;
delay(500);
}
|
0f068fcd6c37e7094c470bfd0f21473c56c42ea2
|
099cb48fffffd57ef1cb96b0e3ef08618ab7d6ce
|
/CAndAsm/c.cpp
|
ec0c2f88b73407cde99c4931fedfc47050c6b52f
|
[] |
no_license
|
pokerfaceOo/OS
|
c592e3b0e7f778c4062ff339e64c8b6639d663b2
|
8ad90e772cfb4dc5a8c89510f07e39e1ab85e6b9
|
refs/heads/master
| 2021-01-23T02:35:18.436250
| 2012-01-25T17:11:09
| 2012-01-25T17:11:09
| 2,838,780
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 227
|
cpp
|
c.cpp
|
#include <iostream>
#include <cmath>
using namespace std;
extern "C" {
void asinb (double, int);
void printNumber(double a) {
cout << a;
}
}
int main() {
asinb(M_PI / 2, 3); // 3 * sin (PI / 2)
return 0;
}
|
0b89c3d2c3c71da162cd128c5635ed2b4d54df4c
|
0433091a40752313e015bf761b327abb319ec1d1
|
/GameClicker/qgcbroadcaster.cpp
|
bae027edee528cfe92f9e78a26d0374f9c4554ac
|
[
"MIT"
] |
permissive
|
alexzk1/game_clicker
|
8c08bfeb419d801444eb25a2a764319255f8cd65
|
43f4ebb7640ab2bfa0af075d971d4276ab8f4066
|
refs/heads/master
| 2021-01-20T04:49:45.865445
| 2017-04-28T19:56:32
| 2017-04-28T19:56:32
| 89,739,554
| 0
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 173
|
cpp
|
qgcbroadcaster.cpp
|
#include "qgcbroadcaster.h"
QGcBroadcaster::QGcBroadcaster(QObject *parent) :
QObject(parent)
{
}
bool QGcBroadcaster::signalBroadcast(QString signal)
{
}
|
821e0876981ac80b55334ab7365bf860edabf08d
|
ad6330253f40fe769f341414ec88f7bdc5616118
|
/src/scoring.hpp
|
0d60009bee6a630cda74d51b5850e2b0f7fdafab
|
[] |
no_license
|
huggle/extension-scoring
|
4591e38addc0619cd7af5bc55083fb4b7043755b
|
d953cf08d62d32fac5aecb15faf1cc975d293da1
|
refs/heads/master
| 2021-01-17T09:21:27.887704
| 2020-04-13T08:29:38
| 2020-04-13T08:29:38
| 41,301,025
| 1
| 1
| null | 2018-12-24T22:41:51
| 2015-08-24T12:12:05
|
C++
|
UTF-8
|
C++
| false
| false
| 2,437
|
hpp
|
scoring.hpp
|
//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.
#ifndef SCORING_HPP
#define SCORING_HPP
#define HUGGLE_EXTENSION
#include <huggle_core/iextension.hpp>
#include <huggle_core/collectable_smartptr.hpp>
#include <huggle_core/webserverquery.hpp>
#include <QAction>
#include <QHash>
class QTimer;
namespace Huggle
{
class WikiPage;
class WikiEdit;
class WikiSite;
class Query;
}
class scoring : public QObject, public Huggle::iExtension
{
Q_OBJECT
#if QT_VERSION >= 0x050000
Q_PLUGIN_METADATA(IID "org.huggle.extension.qt" FILE "scoring_helper.json")
#endif
Q_INTERFACES(Huggle::iExtension)
public:
scoring();
~scoring();
bool Register();
bool IsWorking();
QString GetExtensionName() { return "Scoring Helper"; }
QString GetExtensionAuthor() { return "Petr Bena"; }
QString GetExtensionDescription() { return "Interface to ORES"; }
QString GetExtensionVersion() { return "1.0.0"; }
//bool Hook_EditBeforeScore(void *edit);
void Hook_Shutdown();
void Hook_MainWindowOnLoad(void *window);
bool Hook_EditIsReady(void *edit);
bool Hook_EditBeforeScore(void *edit);
void Hook_EditBeforePostProcessing(void *edit);
void Hook_GoodEdit(void *edit);
bool RequestCore() { return true; }
bool RequestNetwork() { return true; }
bool RequestConfiguration() { return true; }
double GetAmplifier(Huggle::WikiSite *site);
public slots:
void Refresh();
private:
bool compute_scores(long *final, QJsonObject score, Huggle::WikiEdit *wiki_edit);
QString GetServer(Huggle::WikiSite *w);
QHash<Huggle::WikiSite*, QString> server_url;
QHash<Huggle::WikiSite*, bool> enabled;
QHash<Huggle::WikiSite*, double> amplifiers;
QTimer *tm;
QAction *System;
QHash<void*, Huggle::Collectable_SmartPtr<Huggle::WebserverQuery>> Edits;
};
#endif // SCORING_HPP
|
0a2379845e1be883f92a746de5b80c97324d106e
|
cc63466d8a66bb8925508791c007c0054149ce5a
|
/msj_archives/code/BugSlayer/TraceSrv/Trace.cpp
|
f6793a0ffadf2a1229b4f2fd2ce7476c2c478929
|
[
"Unlicense"
] |
permissive
|
liumorgan/misc-code
|
9675cc258162064083126a22d97902dae36739c9
|
d47a8d1cc41f19701ce628c9f15976bb5baa239d
|
refs/heads/master
| 2022-06-29T20:41:54.288305
| 2020-05-13T00:20:05
| 2020-05-13T00:20:05
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 10,939
|
cpp
|
Trace.cpp
|
/*----------------------------------------------------------------------
John Robbins
Microsoft Systems Journal, December 1997 - Bugslayer Column!
----------------------------------------------------------------------*/
#include "stdafx.h"
#include "TraceSrv.h"
#include "Trace.h"
IMPLEMENT_MEMDEBUG ( CTrace ) ;
// The memory dumping and validating code for this class.
#ifdef _DEBUG
void CTrace :: ClassDumper ( const void * pData )
{
CTrace * pClass = (CTrace*)pData ;
_RPT1 ( _CRT_WARN ,
" CTrace instance : 0x%08X\n" ,
pClass ) ;
}
void CTrace :: ClassValidator ( const void * ,
const void * )
{
// The validator is not need for this class.
}
#endif
STDMETHODIMP CTrace :: InterfaceSupportsErrorInfo ( REFIID riid )
{
ASSERT ( this ) ;
static const IID* arr[] =
{
&IID_ITrace,
} ;
for ( int i = 0 ; i < (sizeof(arr)/sizeof(arr[0])) ; i++ )
{
if ( InlineIsEqualGUID ( *arr[ i ] , riid ) )
{
return ( S_OK ) ;
}
}
return ( S_FALSE ) ;
}
STDMETHODIMP CTrace :: Trace ( BSTR bstrText )
{
ASSERT ( this ) ;
return ( FullTrace ( bstrText , 0 ) ) ;
}
STDMETHODIMP CTrace :: FullTrace ( BSTR bstrText ,
long dwPID )
{
ASSERT ( this ) ;
return ( ProcessTrace ( bstrText , dwPID ) ) ;
}
STDMETHODIMP CTrace :: get_ShowTimeStamps ( VARIANT_BOOL * pVal )
{
ASSERT ( this ) ;
*pVal = m_vbShowTimeStamps ;
return ( S_OK ) ;
}
STDMETHODIMP CTrace :: put_ShowTimeStamps ( VARIANT_BOOL newVal )
{
ASSERT ( this ) ;
m_vbShowTimeStamps = newVal ;
Fire_ChangeShowTimeStamps ( newVal ) ;
return ( S_OK ) ;
}
STDMETHODIMP CTrace :: get_ShowTraceAsODS ( VARIANT_BOOL * pVal )
{
ASSERT ( this ) ;
*pVal = (VARIANT_BOOL)m_vbShowTraceAsODS ;
return ( S_OK ) ;
}
STDMETHODIMP CTrace :: put_ShowTraceAsODS ( VARIANT_BOOL newVal )
{
ASSERT ( this ) ;
m_vbShowTraceAsODS = newVal ;
Fire_ChangeShowTraceAsODS ( newVal ) ;
return ( S_OK ) ;
}
STDMETHODIMP CTrace :: get_ShowItemNumber ( VARIANT_BOOL * pVal )
{
ASSERT ( this ) ;
*pVal = (VARIANT_BOOL)m_vbShowItemNumber ;
return ( S_OK ) ;
}
STDMETHODIMP CTrace :: put_ShowItemNumber ( VARIANT_BOOL newVal )
{
ASSERT ( this ) ;
m_vbShowItemNumber = newVal ;
Fire_ChangeShowItemNumber ( newVal ) ;
return ( S_OK ) ;
}
STDMETHODIMP CTrace :: get_ShowPID ( VARIANT_BOOL * pVal )
{
ASSERT ( this ) ;
*pVal = (VARIANT_BOOL)m_vbShowPID ;
return ( S_OK ) ;
}
STDMETHODIMP CTrace :: put_ShowPID ( VARIANT_BOOL newVal )
{
ASSERT ( this ) ;
m_vbShowPID = newVal ;
Fire_ChangeShowPID ( newVal ) ;
return ( S_OK ) ;
}
STDMETHODIMP CTrace :: get_AddCRLF ( VARIANT_BOOL * pVal )
{
ASSERT ( this ) ;
*pVal = (VARIANT_BOOL)m_vbAddCRLF ;
return ( S_OK ) ;
}
STDMETHODIMP CTrace :: put_AddCRLF ( VARIANT_BOOL newVal )
{
ASSERT ( this ) ;
m_vbAddCRLF = newVal ;
Fire_ChangeAddCRLF ( newVal ) ;
return ( S_OK ) ;
}
HRESULT CTrace :: ProcessTrace ( BSTR bstrText , long dwPID )
{
// Always double check everything. Trust nothing.
ASSERT ( this ) ;
ASSERT ( NULL != bstrText ) ;
// The length of the input string. This is read after the pointer
// is validated and for everyone else to use.
int iInputLen = 0 ;
if ( NULL == bstrText )
{
return ( Error ( IDS_NULLSTRINGPASSED ,
GUID_NULL ,
E_INVALIDARG ) ) ;
}
// We have some form of pointer in bstrText. Make sure what it holds
// is valid.
ASSERT ( FALSE == IsBadReadPtr ( bstrText , sizeof ( BSTR ) ) ) ;
ASSERT ( L'\0' != *bstrText ) ;
if ( ( TRUE == IsBadReadPtr ( bstrText , sizeof ( BSTR ) ) ) ||
( L'\0' == *bstrText ) )
{
return ( Error ( IDS_INVALIDSTRING ,
GUID_NULL ,
E_INVALIDARG ) ) ;
}
// Get the input length now that the pointer is validated.
iInputLen = lstrlenW ( bstrText ) ;
// Could this string blow the buffer?
UINT uiSize = ( iInputLen * sizeof ( OLECHAR) ) +
k_SIZE_FULLFORMATBYTES ;
// If this is the first time through, then m_lBuffSize is zero so
// this serves as the initial allocation point.
if ( uiSize >= m_cOutput.BufferSize ( ) )
{
// Delete the existing buffer and allocate a bigger one.
m_cOutput.Free ( ) ;
UINT uiAllocSize = uiSize * 2 ;
// Make sure we get a minimum buffer size.
if ( k_MIN_TRACE_BUFF_SIZE > uiAllocSize )
{
uiAllocSize = k_MIN_TRACE_BUFF_SIZE ;
}
OLECHAR * pTemp = m_cOutput.Allocate ( uiAllocSize ) ;
ASSERT ( NULL != pTemp ) ;
if ( NULL == pTemp )
{
return ( Error ( IDS_OUTOFMEMORY ,
GUID_NULL ,
E_OUTOFMEMORY ) ) ;
}
}
// Now start the real work, everything checked out.
// Increment the total.
m_dwCurrCount++ ;
// Is it time to wrap?
if ( 100000 == m_dwCurrCount )
{
m_dwCurrCount = 0 ;
}
// Have the marker pointer start at the beginning of the output
// buffer.
OLECHAR * pCurr = m_cOutput.GetDataBuffer ( ) ;
if ( -1 == m_vbShowItemNumber )
{
pCurr += wsprintfW ( pCurr , L"%05d " , m_dwCurrCount ) ;
}
if ( -1 == m_vbShowTimeStamps )
{
// Show the timestamp based on the user's local (here at the
// server, not at the client!). It is forced to just be the
// 24 hour military time.
int iLen = GetTimeFormatW ( LOCALE_USER_DEFAULT ,
LOCALE_NOUSEROVERRIDE |
TIME_FORCE24HOURFORMAT |
TIME_NOTIMEMARKER ,
NULL ,
NULL ,
pCurr ,
m_cOutput.BufferSize ( ) -
k_SIZE_FULLFORMATBYTES ) ;
// BUG BUG
// I need more error checking here.
ASSERT ( 0 != iLen ) ;
// Move the pointer along but remember to account for the
// null character counted item.
pCurr += ( iLen - 1 ) ;
// GetTimeFormat does not stick in the extra space on the end
// so do it now.
*pCurr = L' ' ;
pCurr++ ;
}
if ( -1 == m_vbShowPID )
{
pCurr += wsprintfW ( pCurr , L"[%04X] " , dwPID ) ;
}
// Now put the actual message in and copy the NULL terminator as
// well.
lstrcpynW ( pCurr , bstrText , iInputLen + 1 ) ;
// Move pCurr to point at the NULL terminator.
pCurr += iInputLen ;
// Finally check if the string needs CRLFs.
if ( -1 == m_vbAddCRLF )
{
if ( ( L'\x0D' != *(pCurr - 2) ) ||
( L'\x0A' != *(pCurr - 1) ) )
{
*(pCurr) = L'\x0D' ;
*(pCurr + 1) = L'\x0A' ;
pCurr += 2 ;
*pCurr = L'\0' ;
}
}
// Is it supposed to get shot to a kernel debugger?
if ( -1 == m_vbShowTraceAsODS )
{
OutputDebugStringW ( (BSTR)m_cOutput ) ;
}
// Calculate the actual string length for the string.
m_cOutput.GetStringByteLength ( ) ;
// Finally, let any viewers know.
Fire_TraceEvent ( m_cOutput ) ;
return ( S_OK ) ;
}
void CTrace :: LoadSettings ( void )
{
ASSERT ( this ) ;
m_vbShowTimeStamps =
(VARIANT_BOOL)GetPrivateProfileInt ( k_STR_SECTION ,
k_STR_SHOWTIMESTAMPS ,
k_DEFVAL_SHOWTIMESTAMPS,
k_STR_INIFILE );
m_vbShowTraceAsODS =
(VARIANT_BOOL)GetPrivateProfileInt ( k_STR_SECTION ,
k_STR_SHOWTRACEASODS ,
k_DEFVAL_SHOWTRACEASODS,
k_STR_INIFILE );
m_vbShowItemNumber =
(VARIANT_BOOL)GetPrivateProfileInt ( k_STR_SECTION ,
k_STR_SHOWITEMNUMBER ,
k_DEFVAL_SHOWITEMNUMBER,
k_STR_INIFILE );
m_vbShowPID =
(VARIANT_BOOL)GetPrivateProfileInt ( k_STR_SECTION ,
k_STR_SHOWPID ,
k_DEFVAL_SHOWPID ,
k_STR_INIFILE );
m_vbAddCRLF =
(VARIANT_BOOL)GetPrivateProfileInt ( k_STR_SECTION ,
k_STR_ADDCRLF ,
k_DEFVAL_ADDCRLF ,
k_STR_INIFILE );
}
void CTrace :: SaveSettings ( void )
{
ASSERT ( this ) ;
WritePrivateProfileString ( k_STR_SECTION ,
k_STR_SHOWTIMESTAMPS ,
( m_vbShowTimeStamps == -1 ) ?
k_STR_VBTRUE : k_STR_VBFALSE ,
k_STR_INIFILE );
WritePrivateProfileString ( k_STR_SECTION ,
k_STR_SHOWTRACEASODS ,
( m_vbShowTraceAsODS == -1 ) ?
k_STR_VBTRUE : k_STR_VBFALSE ,
k_STR_INIFILE );
WritePrivateProfileString ( k_STR_SECTION ,
k_STR_SHOWITEMNUMBER ,
( m_vbShowItemNumber == -1 ) ?
k_STR_VBTRUE : k_STR_VBFALSE ,
k_STR_INIFILE );
WritePrivateProfileString ( k_STR_SECTION ,
k_STR_SHOWPID ,
( m_vbShowPID == -1 ) ?
k_STR_VBTRUE : k_STR_VBFALSE ,
k_STR_INIFILE );
WritePrivateProfileString ( k_STR_SECTION ,
k_STR_ADDCRLF ,
( m_vbAddCRLF == -1 ) ?
k_STR_VBTRUE : k_STR_VBFALSE ,
k_STR_INIFILE );
}
|
2911b20d451b134348c1471f6ea67d50eacf186b
|
a3d6556180e74af7b555f8d47d3fea55b94bcbda
|
/chrome/browser/ui/ash/app_access_notifier.h
|
893b0a839554acbb7092c7a992288b4d59669ffd
|
[
"BSD-3-Clause"
] |
permissive
|
chromium/chromium
|
aaa9eda10115b50b0616d2f1aed5ef35d1d779d6
|
a401d6cf4f7bf0e2d2e964c512ebb923c3d8832c
|
refs/heads/main
| 2023-08-24T00:35:12.585945
| 2023-08-23T22:01:11
| 2023-08-23T22:01:11
| 120,360,765
| 17,408
| 7,102
|
BSD-3-Clause
| 2023-09-10T23:44:27
| 2018-02-05T20:55:32
| null |
UTF-8
|
C++
| false
| false
| 4,888
|
h
|
app_access_notifier.h
|
// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_UI_ASH_APP_ACCESS_NOTIFIER_H_
#define CHROME_BROWSER_UI_ASH_APP_ACCESS_NOTIFIER_H_
#include <list>
#include <map>
#include <string>
#include <vector>
#include "base/memory/weak_ptr.h"
#include "base/scoped_observation.h"
#include "components/account_id/account_id.h"
#include "components/services/app_service/public/cpp/app_capability_access_cache.h"
#include "components/services/app_service/public/cpp/capability_access_update.h"
#include "components/session_manager/core/session_manager_observer.h"
#include "components/user_manager/user_manager.h"
#include "third_party/abseil-cpp/absl/types/optional.h"
namespace apps {
class AppCapabilityAccessCache;
class AppRegistryCache;
} // namespace apps
namespace session_manager {
class SessionManager;
} // namespace session_manager
// This class is responsible for observing AppCapabilityAccessCache, notifying
// to appropriate entities when an app is accessing camera/microphone.
class AppAccessNotifier
: public apps::AppCapabilityAccessCache::Observer,
public session_manager::SessionManagerObserver,
public user_manager::UserManager::UserSessionStateObserver {
public:
AppAccessNotifier();
AppAccessNotifier(const AppAccessNotifier&) = delete;
AppAccessNotifier& operator=(const AppAccessNotifier&) = delete;
~AppAccessNotifier() override;
// apps::AppCapabilityAccessCache::Observer
void OnCapabilityAccessUpdate(
const apps::CapabilityAccessUpdate& update) override;
void OnAppCapabilityAccessCacheWillBeDestroyed(
apps::AppCapabilityAccessCache* cache) override;
// session_manager::SessionManagerObserver
void OnSessionStateChanged() override;
// user_manager::UserManager::UserSessionStateObserver
void ActiveUserChanged(user_manager::User* active_user) override;
// Get the app short name of the app with `app_id`.
static absl::optional<std::u16string> GetAppShortNameFromAppId(
std::string app_id);
// Launch the native settings page of the app with `app_id`.
static void LaunchAppSettings(const std::string& app_id);
// Returns names of apps accessing camera.
std::vector<std::u16string> GetAppsAccessingCamera();
// Returns names of apps accessing microphone.
std::vector<std::u16string> GetAppsAccessingMicrophone();
protected:
// Returns the active user's account ID if we have an active user, an empty
// account ID otherwise.
virtual AccountId GetActiveUserAccountId();
// Compares the active user's account ID to our last known value and, if the
// ID has changed, then updates the AppCapabilityAccessCache that we observe
// as well as the last known account ID.
void CheckActiveUserChanged();
private:
friend class AppAccessNotifierBaseTest;
// Returns the AppCapabilityAccessCache associated with the active user's
// account ID.
apps::AppCapabilityAccessCache* GetActiveUserAppCapabilityAccessCache();
// Get the current active instance of AppRegistryCache.
static apps::AppRegistryCache* GetActiveUserAppRegistryCache();
// List of IDs of apps that have attempted to use the microphone, in order of
// most-recently-launched.
using MruAppIdList = std::list<std::string>;
// Each user has their own list of MRU apps. It's intended to persist across
// multiple logouts/logins, and we specifically don't ever clear it. This is
// used for the microphone and camera mute notifications.
using MruAppIdMap = std::map<AccountId, MruAppIdList>;
// A helper function for implementation of GetAppsAccessing*.
std::vector<std::u16string> GetAppsAccessingSensor(
const MruAppIdList* app_id_list,
base::OnceCallback<std::set<std::string>(apps::AppCapabilityAccessCache&)>
app_getter);
// A helper to check if `app_id` can be found in `id_map` for the active user.
bool MapContainsAppId(const MruAppIdMap& id_map, const std::string& app_id);
MruAppIdMap mic_using_app_ids_;
MruAppIdMap camera_using_app_ids_;
// Account ID of the last known active user.
AccountId active_user_account_id_ = EmptyAccountId();
// Observations.
base::ScopedObservation<session_manager::SessionManager,
session_manager::SessionManagerObserver>
session_manager_observation_{this};
base::ScopedObservation<user_manager::UserManager,
user_manager::UserManager::UserSessionStateObserver>
user_session_state_observation_{this};
base::ScopedObservation<apps::AppCapabilityAccessCache,
apps::AppCapabilityAccessCache::Observer>
app_capability_access_cache_observation_{this};
base::WeakPtrFactory<AppAccessNotifier> weak_ptr_factory_{this};
};
#endif // CHROME_BROWSER_UI_ASH_APP_ACCESS_NOTIFIER_H_
|
5f2101c75d14f020d7b0413afac418822459657a
|
39bd02bc9d5bdc3fe00433b9080c5466451f792e
|
/engine/runtime/libs/graphics/public/GxGraphics/Graphics/Gpu/GpuResources.hxx
|
42a6cc50a823386de307444dc366cad6211d05a0
|
[] |
no_license
|
selmentdev/graphyte-engine
|
7db986ec0b24b458348d4d632c661ce9f81ad671
|
ed7bcda3d077d2eaa47c2d738b9d03c57adf60f2
|
refs/heads/master
| 2022-03-05T11:09:07.598388
| 2021-01-10T00:42:54
| 2021-01-10T00:42:54
| 219,206,110
| 4
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,215
|
hxx
|
GpuResources.hxx
|
#pragma once
#include <GxGraphics/Graphics.module.hxx>
#include <GxGraphics/Graphics/PixelFormat.hxx>
#include <GxGraphics/Graphics/Gpu/GpuDefinitions.hxx>
namespace Graphyte::Graphics
{
class GpuResource
{
};
static_assert(!std::is_polymorphic_v<GpuResource>);
class GpuSampler : public GpuResource
{
};
static_assert(!std::is_polymorphic_v<GpuSampler>);
class GpuBuffer : public GpuResource
{
public:
uint32_t m_Size;
GpuBufferUsage m_Usage;
};
static_assert(!std::is_polymorphic_v<GpuBuffer>);
class GpuIndexBuffer : public GpuBuffer
{
public:
uint32_t m_Stride;
};
static_assert(!std::is_polymorphic_v<GpuIndexBuffer>);
class GpuVertexBuffer : public GpuBuffer
{
};
static_assert(!std::is_polymorphic_v<GpuVertexBuffer>);
class GpuUniformBuffer : public GpuBuffer
{
};
static_assert(!std::is_polymorphic_v<GpuUniformBuffer>);
class GpuStructuredBuffer : public GpuBuffer
{
};
static_assert(!std::is_polymorphic_v<GpuStructuredBuffer>);
class GpuGraphicsPipelineState : public GpuResource
{
};
static_assert(!std::is_polymorphic_v<GpuGraphicsPipelineState>);
class GpuComputePipelineState : public GpuResource
{
};
static_assert(!std::is_polymorphic_v<GpuComputePipelineState>);
class GpuQuery : public GpuResource
{
};
static_assert(!std::is_polymorphic_v<GpuQuery>);
class GpuOcclusionQuery : public GpuQuery
{
};
static_assert(!std::is_polymorphic_v<GpuOcclusionQuery>);
class GpuRenderTarget : public GpuResource
{
};
static_assert(!std::is_polymorphic_v<GpuRenderTarget>);
class GpuTexture : public GpuResource
{
};
static_assert(!std::is_polymorphic_v<GpuTexture>);
class GpuViewport : public GpuResource
{
};
static_assert(!std::is_polymorphic_v<GpuViewport>);
class GpuResourceSet : public GpuResource
{
};
static_assert(!std::is_polymorphic_v<GpuResourceSet>);
class GpuShader : public GpuResource
{
public:
GpuShaderStage m_Stage;
};
static_assert(!std::is_polymorphic_v<GpuShader>);
}
|
5fb5ca3f53539c9ed1b274cc3b45eca7ec37c85a
|
0ed8ccb2e6fe8070087f687b492f77462bd4ffb9
|
/code/09.2 Lesson 2 Triangle rasterization and back face culling/Geometry.cpp
|
81507afc0a7ae1b286256a0b0a0207874a4db680
|
[] |
no_license
|
joyce725/RenderLearningPlan
|
b7921e8e925ad8fc7695f0b87eb9c82cd581a937
|
a44411da6761f634813173b36974bdf8a7e08fe0
|
refs/heads/master
| 2023-03-23T23:26:20.805506
| 2021-03-11T07:15:01
| 2021-03-11T07:15:01
| null | 0
| 0
| null | null | null | null |
BIG5
|
C++
| false
| false
| 10,249
|
cpp
|
Geometry.cpp
|
#include "geometry.h"
////////////////////////////////////////////////
vec3 Vector_Add(vec3& v1, vec3& v2)
{
return { v1.x + v2.x, v1.y + v2.y, v1.z + v2.z };
}
vec3 Vector_Sub(vec3& v1, vec3& v2)
{
return { v1.x - v2.x, v1.y - v2.y, v1.z - v2.z };
}
vec3 Vector_Mul(vec3& v1, float k)
{
return { v1.x * k, v1.y * k, v1.z * k };
}
vec3 Vector_Div(vec3& v1, float k)
{
return { v1.x / k, v1.y / k, v1.z / k };
}
float Vector_DotProduct(vec3& v1, vec3& v2)
{
return v1.x * v2.x + v1.y * v2.y + v1.z * v2.z;
}
float Vector_Length(vec3& v)
{
return sqrtf(Vector_DotProduct(v, v));
}
vec3 Vector_Normalise(vec3& v)
{
float l = Vector_Length(v);
return { v.x / l, v.y / l, v.z / l };
}
vec3 Vector_CrossProduct(vec3& v1, vec3& v2)
{
vec3 v;
v.x = v1.y * v2.z - v1.z * v2.y;
v.y = v1.z * v2.x - v1.x * v2.z;
v.z = v1.x * v2.y - v1.y * v2.x;
return v;
}
//(平面P, 朝向的法向量N, 待測線段起點, 待測線段終點) return intersect Point
vec3 Vector_IntersectPlane(vec3& plane_p, vec3& plane_n, vec3& lineStart, vec3& lineEnd)
{
plane_n = Vector_Normalise(plane_n);
float plane_d = -Vector_DotProduct(plane_n, plane_p);
float ad = Vector_DotProduct(lineStart, plane_n);
float bd = Vector_DotProduct(lineEnd, plane_n);
float t = (-plane_d - ad) / (bd - ad);
vec3 lineStartToEnd = Vector_Sub(lineEnd, lineStart);
vec3 lineToIntersect = Vector_Mul(lineStartToEnd, t);
return Vector_Add(lineStart, lineToIntersect);
}
vec3 barycentric(vec3 a, vec3 b, vec3 c, vec3 p) {
/* B
/\
/__\
/_P__\
A/______\C
*/
vec3 ac = Vector_Sub(c, a);
vec3 ab = Vector_Sub(b, a);
vec3 pa = Vector_Sub(a, p);
vec3 vx = { ac.x,ab.x,pa.x };
vec3 vy = { ac.y,ab.y,pa.y };
vec3 uv = Vector_CrossProduct(vx, vy);
/*
so `abs(u[2])` < 1 means `u[2]` is 0, that means
triangle is degenerate, in this case return something with negative coordinates */
if (std::abs(uv.z) > 1e-2)
return vec3{ 1.f - (uv.x + uv.y) / uv.z, uv.y / uv.z, uv.x / uv.z };
return vec3{ -1, 1, 1 };
}
////////////////////////////////////////////////
void MultiplyMatrixVector(mat4x4& m44, vec3& i, vec3& o)
{
/*
r\c
[a b c d] |x|
[e f g h] |y|
[i j k l] |z|
[m n o p] |w|
m44[0][1]=>b
m44[0][2]=>c
*/
o.x = i.x * m44.M[0][0] + i.y * m44.M[0][1] + i.z * m44.M[0][2] + m44.M[0][3];
o.y = i.x * m44.M[1][0] + i.y * m44.M[1][1] + i.z * m44.M[1][2] + m44.M[1][3];
o.z = i.x * m44.M[2][0] + i.y * m44.M[2][1] + i.z * m44.M[2][2] + m44.M[2][3];
float w = i.x * m44.M[3][0] + i.y * m44.M[3][1] + i.z * m44.M[3][2] + m44.M[3][3];
if (w != 0.0f)
{
o.x /= (float)w; o.y /= (float)w; o.z /= (float)w;
}
}
vec3 Matrix_MultiplyVector(mat4x4& m44, vec3& i) {
vec3 v;
v.x = i.x * m44.M[0][0] + i.y * m44.M[0][1] + i.z * m44.M[0][2] + m44.M[0][3];
v.y = i.x * m44.M[1][0] + i.y * m44.M[1][1] + i.z * m44.M[1][2] + m44.M[1][3];
v.z = i.x * m44.M[2][0] + i.y * m44.M[2][1] + i.z * m44.M[2][2] + m44.M[2][3];
v.w = i.x * m44.M[3][0] + i.y * m44.M[3][1] + i.z * m44.M[3][2] + m44.M[3][3];
return v;
}
mat4x4 Matrix_MultiplyMatrix(mat4x4& m1, mat4x4& m2)
{
/*mat4x4 m1 = {
1,2,3,4,
5,6,7,8,
9,10,11,12,
13,14,15,16
};
mat4x4 m2 = {
1,1,1,1,
2,2,2,2,
3,3,3,3,
4,4,4,4
};
mat4x4 m3 = Matrix_MultiplyMatrix(m1, m2);*/
mat4x4 matrix;
for (int i = 0; i < 4; i++)
for (int j = 0; j < 4; j++)
matrix.M[i][j] =
m1.M[i][0] * m2.M[0][j] +
m1.M[i][1] * m2.M[1][j] +
m1.M[i][2] * m2.M[2][j] +
m1.M[i][3] * m2.M[3][j];
return matrix;
}
mat4x4 Matrix_MakeIdentity()
{
mat4x4 matrix = {
1,0,0,0,
0,1,0,0,
0,0,1,0,
0,0,0,1
};
return matrix;
}
mat4x4 Matrix_MakeRotationX(float fAngleRad)
{
mat4x4 matrix = {
1,0,0,0,
0,cosf(fAngleRad),-sinf(fAngleRad),0,
0,sinf(fAngleRad),cosf(fAngleRad),0,
0,0,0,1
};
return matrix;
}
mat4x4 Matrix_MakeRotationY(float fAngleRad)
{
mat4x4 matrix = {
cosf(fAngleRad),0,sinf(fAngleRad),0,
0,1,0,0,
-sinf(fAngleRad),0,cosf(fAngleRad),0,
0,0,0,1
};
return matrix;
}
mat4x4 Matrix_MakeRotationZ(float fAngleRad)
{
mat4x4 matrix = {
cosf(fAngleRad),-sinf(fAngleRad),0,0,
sinf(fAngleRad),cosf(fAngleRad),0,0,
0,0,1,0,
0,0,0,1
};
return matrix;
}
mat4x4 Matrix_MakeTranslation(float tx, float ty, float tz)
{
mat4x4 matrix = {
1,0,0,tx,
0,1,0,ty,
0,0,1,tz,
0,0,0,1
};
return matrix;
}
// 視角、長寬比、近截面、遠截面
mat4x4 Matrix_MakeProjection(float fFovDegrees, float fAspectRatio, float fNear, float fFar)
{
float fFovRad = 1.0f / tanf(fFovDegrees * 0.5f / 180.0f * 3.14159f);
mat4x4 matrix = {
fAspectRatio * fFovRad,0,0,0,
0,fFovRad,0,0,
0,0,fFar / (fFar - fNear),(-fFar * fNear) / (fFar - fNear),
0,0,1,0
};
return matrix;
}
mat4x4 Matrix_PointAt(vec3& pos, vec3& target, vec3& up)
{
// Calculate new forward direction
vec3 newForward = Vector_Sub(target, pos);
newForward = Vector_Normalise(newForward);
// Calculate new Up direction
vec3 a = Vector_Mul(newForward, Vector_DotProduct(up, newForward));
vec3 newUp = Vector_Sub(up, a);
newUp = Vector_Normalise(newUp);
// New Right direction is easy, its just cross product
vec3 newRight = Vector_CrossProduct(newUp, newForward);
// Construct Dimensioning and Translation Matrix
mat4x4 matrix = {
newRight.x,newUp.x,newForward.x,pos.x,
newRight.y,newUp.y,newForward.y,pos.y,
newRight.z,newUp.z,newForward.z,pos.z,
0,0,0,1
};
return matrix;
}
mat4x4 Matrix_QuickInverse(mat4x4& m) // Only for Rotation/Translation Matrices
{
mat4x4 matrix = {
m.M[0][0], m.M[1][0], m.M[2][0], 0,
m.M[0][1], m.M[1][1], m.M[2][1], 0,
m.M[0][2], m.M[1][2], m.M[2][2], 0,
0, 0, 0, 1
};
matrix.M[0][3] = -(matrix.M[0][0] * m.M[0][3] + matrix.M[0][1] * m.M[1][3] + matrix.M[0][2] * m.M[2][3]);
matrix.M[1][3] = -(matrix.M[1][0] * m.M[0][3] + matrix.M[1][1] * m.M[1][3] + matrix.M[1][2] * m.M[2][3]);
matrix.M[2][3] = -(matrix.M[2][0] * m.M[0][3] + matrix.M[2][1] * m.M[1][3] + matrix.M[2][2] * m.M[2][3]);
return matrix;
}
////////////////////////////////////////
int Triangle_ClipAgainstPlane(vec3 plane_p, vec3 plane_n, triangle& ori_tri, triangle& ret_tri1, triangle& ret_tri2, bool debug = false)
{
// Make sure plane normal is indeed normal
plane_n = Vector_Normalise(plane_n);
// Return signed shortest distance from point to plane, plane normal must be normalised
auto dist = [&](vec3& p)
{
vec3 n = Vector_Normalise(p);
return (plane_n.x * p.x + plane_n.y * p.y + plane_n.z * p.z - Vector_DotProduct(plane_n, plane_p));
};
// Create two temporary storage arrays to classify points either side of plane
// If distance sign is positive, point lies on "inside" of plane
vec3* inside_points[3]; int nInsidePointCount = 0;
vec3* outside_points[3]; int nOutsidePointCount = 0;
// Get signed distance of each point in triangle to plane
float d0 = dist(ori_tri.p[0]);
float d1 = dist(ori_tri.p[1]);
float d2 = dist(ori_tri.p[2]);
if (d0 >= 0) { inside_points[nInsidePointCount++] = &ori_tri.p[0]; }
else { outside_points[nOutsidePointCount++] = &ori_tri.p[0]; }
if (d1 >= 0) { inside_points[nInsidePointCount++] = &ori_tri.p[1]; }
else { outside_points[nOutsidePointCount++] = &ori_tri.p[1]; }
if (d2 >= 0) { inside_points[nInsidePointCount++] = &ori_tri.p[2]; }
else { outside_points[nOutsidePointCount++] = &ori_tri.p[2]; }
// Now classify triangle points, and break the input triangle into
// smaller output triangles if required. There are four possible
// outcomes...
if (nInsidePointCount == 0)
{
// All points lie on the outside of plane, so clip whole triangle
// It ceases to exist
return 0; // No returned triangles are valid
}
if (nInsidePointCount == 3)
{
// All points lie on the inside of plane, so do nothing
// and allow the triangle to simply pass through
ret_tri1 = ori_tri;
return 1; // Just the one returned original triangle is valid
}
if (nInsidePointCount == 1 && nOutsidePointCount == 2)
{
// Triangle should be clipped. As two points lie outside
// the plane, the triangle simply becomes a smaller triangle
// Copy appearance info to new triangle
ret_tri1.col = ori_tri.col;
// debug
if (debug)
ret_tri1.col = 0x0000ff;
// The inside point is valid, so keep that...
ret_tri1.p[0] = *inside_points[0];
// but the two new points are at the locations where the
// original sides of the triangle (lines) intersect with the plane
ret_tri1.p[1] = Vector_IntersectPlane(plane_p, plane_n, *inside_points[0], *outside_points[0]);
ret_tri1.p[2] = Vector_IntersectPlane(plane_p, plane_n, *inside_points[0], *outside_points[1]);
return 1; // Return the newly formed single triangle
}
if (nInsidePointCount == 2 && nOutsidePointCount == 1)
{
// Triangle should be clipped. As two points lie inside the plane,
// the clipped triangle becomes a "quad". Fortunately, we can
// represent a quad with two new triangles
// Copy appearance info to new triangles
ret_tri1.col = ori_tri.col;
ret_tri2.col = ori_tri.col;
// debug
if (debug) {
ret_tri1.col = 0x00ff00;
ret_tri2.col = 0xff0000;
}
vec3 v1 = Vector_IntersectPlane(plane_p, plane_n, *inside_points[0], *outside_points[0]);
vec3 v2 = Vector_IntersectPlane(plane_p, plane_n, *inside_points[1], *outside_points[0]);
// The first triangle consists of the two inside points and a new
// point determined by the location where one side of the triangle
// intersects with the plane
ret_tri1.p[0] = *inside_points[0];
ret_tri1.p[1] = *inside_points[1];
ret_tri1.p[2] = v1;
// The second triangle is composed of one of he inside points, a
// new point determined by the intersection of the other side of the
// triangle and the plane, and the newly created point above
ret_tri2.p[0] = *inside_points[1];
ret_tri2.p[1] = v2;
ret_tri2.p[2] = v1;
// change v1 v2 保持以順時針建立三角形
//ret_tri2.p[0] = *inside_points[1];
//ret_tri2.p[1] = v1;
//ret_tri2.p[2] = v2;
return 2; // Return two newly formed triangles which form a quad
}
}
//////////////////////////////////////
void showMatrix(mat4x4 m) {
printf("------\n");
for (int i = 0; i < 4; i++) {
for (int j = 0; j < 4; j++) {
printf("%.3f\t", m.M[i][j]);
}
printf("\n");
}
printf("------\n");
}
|
f0abffa175bc0c4cd9eae078845aec00e0c95deb
|
6b2a8dd202fdce77c971c412717e305e1caaac51
|
/solutions_5708284669460480_0/C++/yuzmukhametov/b.cpp
|
2d3fa9d5fca13facb662cf7a55ff07550bee717d
|
[] |
no_license
|
alexandraback/datacollection
|
0bc67a9ace00abbc843f4912562f3a064992e0e9
|
076a7bc7693f3abf07bfdbdac838cb4ef65ccfcf
|
refs/heads/master
| 2021-01-24T18:27:24.417992
| 2017-05-23T09:23:38
| 2017-05-23T09:23:38
| 84,313,442
| 2
| 4
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,704
|
cpp
|
b.cpp
|
#include <iostream>
#include <sstream>
#include <cmath>
#include <string>
#include <string.h>
#include <cstdio>
#include <vector>
#include <queue>
#include <map>
#include <set>
#include <algorithm>
#include <cassert>
using namespace std;
#define all(x) (x).begin(), (x).end()
#define pb push_back
#define mp make_pair
#define sz(x) ((int)((x).size()))
#define rep(i, N) for (int i = 0; i < N; ++i)
#define foreach(it,v) for(__typeof(v.begin()) it=v.begin();it!=v.end();++it)
typedef long long lint;
typedef vector<string> vs;
typedef vector<int> vi;
typedef pair<int, int> pii;
int K, L, S;
string Ke, Ll;
char Str[1000];
double ans = 0.0;
double mx = 0.0;
double all = 0.0;
bool eq(int k) {
int start = k + 1 - sz(Ll);
for (int i = 0; i < sz(Ll); ++i) {
if (Ll[i] != Str[start + i]) {
return false;
}
}
return true;
}
void rec(int k, double cum) {
if (k == S) {
//Str[k] = 0;
//cout << cum << " " << string(Str) << endl;
ans += cum;
mx = max(cum, mx);
all = all + 1;
} else {
for (int i = 0; i < sz(Ke); ++i) {
Str[k] = Ke[i];
int add = 0;
if (k + 1 >= sz(Ll) && eq(k)) {
add = 1;
}
rec(k + 1, cum + add);
}
}
}
void solve(int num) {
ans = 0.0;
mx = 0.0;
all = 0.0;
cin >> K >> L >> S;
cin >> Ke >> Ll;
//double q = pow(sz(Ke), S);
rec(0, 0);
//cout << all << endl;
//cout << mx << endl;
//cout << ans << endl;
ans /= all;
ans = mx - ans;
printf("Case #%d: %0.12lf\n", num, ans);
}
int main() {
freopen("input.txt", "r", stdin);
//freopen("output.txt", "w", stdout);
int tst;
cin >> tst;
for (int i = 1; i <= tst; ++i) {
solve(i);
}
return 0;
}
|
61d42c3a27d424b1ae81f3d3651b88a5e0395459
|
eb57f329a82f96dd8e39ac2f3289338fdf993e34
|
/lcm_defs_local/exlcm/waypoint_t.hpp
|
0b9a3261dd311aa08644193d2e5aaff435e49fc8
|
[] |
no_license
|
pinakigupta/BehaviorUtilityTreeBased
|
2f391f9708d6bb04180e9373aa93f80b05c28b1b
|
c062f35b6d4e34ca0bffb0a66a8ca13ab0cce474
|
refs/heads/master
| 2020-09-11T18:14:44.377133
| 2019-11-16T19:40:37
| 2019-11-16T19:40:37
| 222,149,428
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 537
|
hpp
|
waypoint_t.hpp
|
/** THIS IS AN AUTOMATICALLY GENERATED FILE. DO NOT MODIFY
* BY HAND!!
*
* Generated by lcm-gen
**/
//#include <lcm/lcm_coretypes.h>
#ifndef __exlcm_waypoint_t_hpp__
#define __exlcm_waypoint_t_hpp__
namespace exlcm
{
class waypoint_t
{
public:
float station_m;
float east_m;
float north_m;
float up_m;
float heading_deg;
float v_mps;
float curve_im;
float grade_rad;
float bank_rad;
};
}
#endif
|
d0572f7aa3c0b1bf2bb9df93ecbce7aed946e672
|
8bd4a8c02f7b7a804e743cd38877811f547bb339
|
/CodeChef/JDELAY.cpp
|
38c1624d5ad43c439eb1a4ded53784f842ed5ede
|
[
"MIT"
] |
permissive
|
dkp1903/Competitive-Programming
|
c314257bf3ea7f40d720a60e259f0a0398de94a4
|
564d1730fb78a6bf0678dd7184a9f8669f53c9bf
|
refs/heads/master
| 2021-07-05T22:16:24.747709
| 2020-04-22T11:29:11
| 2020-04-22T11:29:11
| 187,431,446
| 2
| 1
|
MIT
| 2020-10-02T07:45:38
| 2019-05-19T03:54:41
|
C++
|
UTF-8
|
C++
| false
| false
| 430
|
cpp
|
JDELAY.cpp
|
/**
* Template for Contests
*
* @author Sanjeev
*/
#include <bits/stdc++.h>
using namespace std;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int t, n, s, e;
cin >>t;
while(t--){
cin >>n;
int ans = 0;
while(n--){
cin >>s >>e;
if(e-s > 5)
ans++;
}
cout <<ans <<"\n";
}
return 0;
}
|
f6371b99d3f207cda9e73bf69dcf805b9f76cd68
|
6b964321fd16a00b0f79fc8bb222165acd49a43f
|
/cs130/lab7/lab7.cpp
|
9722ea8621dd3ca615a4e272b0b789f73cd169cd
|
[] |
no_license
|
dkwired/coursework
|
f447659485fded8e33a826a35867c01246860175
|
014e5b8f39b84e20d85cd1655c5a5b2267da6433
|
refs/heads/master
| 2020-03-29T19:52:09.596267
| 2014-04-08T21:12:23
| 2014-04-08T21:12:23
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 9,288
|
cpp
|
lab7.cpp
|
// Name: David Klein
// Quarter, Year: Fall 2013
// Lab: 021
//
// This file is to be modified by the student.
// main.cpp
////////////////////////////////////////////////////////////
// FRONT VIEW - Drop z axis
// SIDE VIEW - Drop x axis
// TOP VIEW - Drop y axis
#include <GL/glut.h>
#include <math.h>
#include <iostream>
#include <vector>
using std::string;
using std::cout;
using std::cin;
using std::endl;
const int WINDOW_WIDTH = 800;
const int WINDOW_HEIGHT = 800;
struct S_POINT // point struct to store points of each side
{
double x;
double y;
double z;
S_POINT() : x(0.0), y(0.0), z(0.0) {}
S_POINT(const double & nx, const double & ny, const double & nz) : x(nx), y(ny), z(nz) {}
};
struct S_FACE // face struct to store sides of each triangle
{
int a;
int b;
int c;
double t;
int color_r;
int color_g;
int color_b;
S_FACE() : a(0), b(0), c(0) {}
S_FACE(const double & na, const double & nb, const double & nc) : a(na), b(nb), c(nc) {}
};
struct RAY // ray struct to store a ray
{
S_POINT pos;
S_POINT dir;
RAY() : pos(0.0, 0.0, 0.0), dir(0.0, 0.0, 0.0) {}
RAY(const S_POINT & ipos, const S_POINT & idir) : pos(ipos), dir(idir) {}
};
int NUM_POINTS = 0;
int NUM_FACES = 0;
std::vector<S_POINT> POINTS;
std::vector<S_FACE> FACES;
void GLMouseInput(int button, int state, int x, int y)
{
if (button == GLUT_LEFT_BUTTON && state == GLUT_DOWN)
cout << "x: " << x << " y: " << y << endl;
}
S_POINT Ray( double & t, S_POINT & Ro, S_POINT & Rd )
{
if( t >= 0 )
{
S_POINT result;
result.x = Ro.x + Rd.x*t;
result.y = Ro.y + Rd.y*t;
result.z = Ro.z + Rd.z*t;
return result;
}
}
double Intersection( S_POINT & Ro, S_POINT & Rd, S_POINT & Pa, S_POINT & Pb , S_POINT & Pc )
{
double detT = 0.0;
double detC = 0.0;
double detB = 0.0;
double detA = 0.0;
double t = 0.0;
double r = 0.0;
double s = 0.0;
S_POINT Eb;
S_POINT Ec;
Eb.x = Pb.x - Pa.x;
Eb.y = Pb.y - Pa.y;
Eb.z = Pb.z - Pa.z;
Ec.x = Pc.x - Pa.x;
Ec.y = Pc.y - Pa.y;
Ec.z = Pc.z - Pa.z;
detT = (-Eb.x)*((-Ec.y)*(Pa.z-Ro.z)-(Pa.y-Ro.y)*(-Ec.z)) + Ec.x*((-Eb.y)*(Pa.z-Ro.z)-(Pa.y-Ro.y)*(Eb.z)) + (Pa.x-Ro.x)*((-Eb.y)*(-Ec.z)-(-Ec.y)*(-Eb.z));
detC = (-Eb.x)*((Pa.y-Ro.y)*(Rd.z)-(Rd.y)*(Pa.z-Ro.z)) - (Pa.x-Ro.x)*((-Eb.y)*(Rd.z)-(Rd.y)*(-Eb.z)) + (Rd.x)*((-Eb.y)*(Pa.z-Ro.z)-(Pa.y-Ro.y)*(-Eb.z));
detB = (Pa.x-Ro.x)*((-Ec.y)*(Rd.z)-(Rd.y)*(-Ec.z)) + (Ec.x)*((Pa.y-Ro.y)*(Rd.z)-(Rd.y)*(Pa.z-Ro.z)) + (Rd.x)*((Pa.y-Ro.y)*(-Ec.z)+(Ec.y)*(Pa.z-Ro.z));
detA = (-Eb.x)*((-Ec.y)*(Rd.z)-(Rd.y)*(-Ec.z)) + (Ec.x)*((-Eb.y)*(Rd.z)-(Rd.y)*(-Eb.z)) + (Rd.x)*((-Eb.y)*(-Ec.z)-(Ec.y)*(-Eb.z));
t = detT/detA;
r = detB/detA;
s = detC/detA;
//cout << r << endl;
//cout << s << endl;
if( r >= 0 && r <= 1 )
{
if( s >= 0 && s <= 1 )
{
if( r + s <= 1 )
return t;
else return -1;
}
else return -1;
}
else return -1;
}
// Renders a quad at cell (x, y) with dimensions CELL_LENGTH
void renderPixel(int x, int y, float r = 1.0, float g = 1.0, float b = 1.0)
{
glBegin(GL_POINTS);
glVertex2i(x, y);
glEnd();
}
void DrawColors( S_POINT & Rd )
{
S_POINT Ro;
S_POINT Tri;
int a;
int b;
int c;
Ro.z = 0;
double t;
S_FACE tmin;
tmin.t = 999;
tmin.color_r = 0;
tmin.color_g = 0;
tmin.color_b = 0;
FACES[0].color_r = 1;
FACES[0].color_g = 0;
FACES[0].color_b = 0;
FACES[1].color_r = 0;
FACES[1].color_g = 1;
FACES[1].color_b = 0;
FACES[2].color_r = 0;
FACES[2].color_g = 0;
FACES[2].color_b = 1;
for(int i = 0; i < 800; i++ )
{
for( int j = 0; j < 800; j++ )
{
Ro.x = i;
Ro.y = j;
for( int k = 0; k < NUM_FACES; k++ )
{
a = FACES[k].a;
b = FACES[k].b;
c = FACES[k].c;
FACES[k].t = Intersection( Ro, Rd, POINTS[a], POINTS[b], POINTS[c] );
if( FACES[k].t > 0 && FACES[k].t < tmin.t)
{
tmin.t = FACES[k].t;
tmin.color_r = FACES[k].color_r;
tmin.color_g = FACES[k].color_g;
tmin.color_b = FACES[k].color_b;
glColor3f(tmin.color_r,tmin.color_g,tmin.color_b);
renderPixel( i, j );
}
}
// draw pt for that ray
/* if( t != 999 )
{
Tri = Ray( t, Ro, Rd );
glColor3f(tmin.color_r,tmin.color_g,tmin.color_b);
renderPixel( Tri.x, Tri.y );
}*/
tmin.t = 999;
tmin.color_r = 0;
tmin.color_g = 0;
tmin.color_b = 0;
}
}
}
void DDA(int x0, int y0, int x1, int y1 )
{
int dy = y1 - y0;
int dx = x1 - x0;
int m;
float xinc;
float yinc;
float x = x0;
float y = y0;
if( abs(dx) > abs(dy) )
{
m = abs(dx);
}
else
{
m = abs(dy);
}
xinc=(float) dx / (float) m;
yinc = (float) dy / (float) m;
renderPixel( round(x), round(y) );
for( int i = 0; i < m; i++ )
{
x += xinc;
y += yinc;
renderPixel( round(x), round(y) );
}
}
// draw n subdivisions
int Subdivision( S_POINT & p1, S_POINT & p2, S_POINT & p3, int i, int n )
{
if( i == 0 ) return 0;
else
{
S_POINT mp1; // create temporary points
S_POINT mp2;
S_POINT mp3;
mp1.x = (p1.x + p2.x)/2; // calculate midpoints for all sides
mp1.y = (p1.y + p2.y)/2;
mp1.z = (p1.z + p2.z)/2;
mp2.x = (p2.x + p3.x)/2;
mp2.y = (p2.y + p3.y)/2;
mp2.z = (p2.z + p3.z)/2;
mp3.x = (p3.x + p1.x)/2;
mp3.y = (p3.y + p1.y)/2;
mp3.z = (p3.z + p1.z)/2;
if( n == 0 ) // if we are drawing the front
{
DDA( mp1.x, mp1.y, mp2.x, mp2.y );
DDA( mp2.x, mp2.y, mp3.x, mp3.y );
DDA( mp3.x, mp3.y, mp1.x, mp1.y );
}
if( n == 1 ) // if we are drawing the side
{
DDA( mp1.z, mp1.y, mp2.z, mp2.y );
DDA( mp2.z, mp2.y, mp3.z, mp3.y );
DDA( mp3.z, mp3.y, mp1.z, mp1.y );
}
if( n == 2 ) // if we are drawing the top
{
DDA( mp1.x, mp1.z, mp2.x, mp2.z );
DDA( mp2.x, mp2.z, mp3.x, mp3.z );
DDA( mp3.x, mp3.z, mp1.x, mp1.z );
}
Subdivision(mp1, mp2, mp3, i-1, n); // recurse on left over triangles
Subdivision(p1, mp1, mp3, i-1, n);
Subdivision(mp1, p2, mp2, i-1, n);
Subdivision(p3, mp3, mp2, i-1, n);
//Subdivision(p3, mp3, mp2, i-1, n);
}
}
// draw the front of the triangle
void Draw_Front( S_FACE & face )
{
DDA( POINTS[face.a].x, POINTS[face.a].y, POINTS[face.b].x, POINTS[face.b].y );
DDA( POINTS[face.b].x, POINTS[face.b].y, POINTS[face.c].x, POINTS[face.c].y );
DDA( POINTS[face.c].x, POINTS[face.c].y, POINTS[face.a].x, POINTS[face.a].y );
//Subdivision(POINTS[face.a], POINTS[face.b], POINTS[face.c], 2, 0);
}
// draw the side of the triangle
void Draw_Side( S_FACE & face )
{
DDA( POINTS[face.a].z, POINTS[face.a].y, POINTS[face.b].z, POINTS[face.b].y );
DDA( POINTS[face.b].z, POINTS[face.b].y, POINTS[face.c].z, POINTS[face.c].y );
DDA( POINTS[face.c].z, POINTS[face.c].y, POINTS[face.a].z, POINTS[face.a].y );
//Subdivision(POINTS[face.a], POINTS[face.b], POINTS[face.c], 2, 1);
}
// draw the top of the triangle
void Draw_Top( S_FACE & face )
{
DDA( POINTS[face.a].x, POINTS[face.a].z, POINTS[face.b].x, POINTS[face.b].z );
DDA( POINTS[face.b].x, POINTS[face.b].z, POINTS[face.c].x, POINTS[face.c].z );
DDA( POINTS[face.c].x, POINTS[face.c].z, POINTS[face.a].x, POINTS[face.a].z );
//Subdivision(POINTS[face.a], POINTS[face.b], POINTS[face.c], 2, 2);
}
//Output function to OpenGL Buffer
void GL_render()
{
glClear(GL_COLOR_BUFFER_BIT);
for( int i = 0; i < NUM_FACES; i++ )
{
Draw_Front( FACES[i] ); // replace function with what want to draw
}
S_POINT Rd;
Rd.x = 0;
Rd.y = 0;
Rd.z = 1;
DrawColors(Rd);
glutSwapBuffers();
}
//Initializes OpenGL attributes
void GLInit(int* argc, char** argv)
{struct Point3D
{
double x;
double y;
double z;
Point3D() : x(0.0), y(0.0), z(0.0) {}
Point3D(const double & nx, const double & ny, const double & nz) : x(nx), y(ny), z(nz) {}
};
glutInit(argc, argv);
glutInitDisplayMode(GLUT_RGBA | GLUT_DOUBLE);
glutInitWindowSize(WINDOW_WIDTH, WINDOW_HEIGHT);
// ...
// Complete this function
// ...
glutCreateWindow("CS 130 - David Klein");
glutDisplayFunc(GL_render);
glutMouseFunc(GLMouseInput);
// The default view coordinates is (-1.0, -1.0) bottom left & (1.0, 1.0) top right.
// For the purposes of this lab, this is set to the number of pixels
// in each dimension.
glMatrixMode(GL_PROJECTION_MATRIX);
glOrtho(0, WINDOW_WIDTH, 0, WINDOW_HEIGHT, -1, 1);
}
int main(int argc, char** argv)
{
string lineInput; // input file
// get the number of points
cin >> lineInput;
NUM_POINTS = atoi( lineInput.c_str() );
// get the number of faces
cin >> lineInput;
NUM_FACES = atoi( lineInput.c_str() );
// get the list of points
int count = 0; // counter for input
S_POINT temp_point; // temp point for each loop
while (count < NUM_POINTS)
{
cin >> lineInput;
temp_point.x = 8 * atoi(lineInput.c_str()); // multiply by 8 to scale up
cin >> lineInput;
temp_point.y = 8 * atoi(lineInput.c_str()); // multiply by 8 to scale up
cin >> lineInput;
temp_point.z = 8 * atoi(lineInput.c_str()); // multiply by 8 to scale up
POINTS.push_back(temp_point);
count++;
}
count = 0; // reset counter for input
S_FACE temp_face; // temp face for each loop
while (count < NUM_FACES)
{
cin >> lineInput;
temp_face.a = atoi(lineInput.c_str());
cin >> lineInput;
temp_face.b = atoi(lineInput.c_str());
cin >> lineInput;
temp_face.c = atoi(lineInput.c_str());
FACES.push_back(temp_face);
count++;
}
GLInit(&argc, argv);
glutMainLoop();
return 0;
}
|
d5b5b150e8929278be2e063d233c1e16aadf0952
|
fa8b89fe6c88c2924dd8ab4cc9aee93e96381808
|
/KeyboardArrows.cpp
|
b70fcc7d4ae76f535555277424e51693692c4c74
|
[] |
no_license
|
xorde/xoStandardIO
|
d99f519569f2f494e762349fd5b7c6f50596623f
|
65f48e923a2e184b6c7d91be60cbdc594921e7b1
|
refs/heads/master
| 2022-11-23T03:42:53.338904
| 2020-07-17T12:38:09
| 2020-07-17T12:38:09
| 281,124,797
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,845
|
cpp
|
KeyboardArrows.cpp
|
#include "KeyboardArrows.h"
#include "helpers/GlobalKeyboard.h"
KeyboardArrows::KeyboardArrows(QObject *parent) : ComponentBase ("KeyboardArrows", "Generated triggers on arrow or WASD keys", parent)
{
setIcon(":/images/gamepad.svg");
createOutput("Up", m_arrowUp).sampling(0ms);
createOutput("Down", m_arrowDown).sampling(0ms);
createOutput("Left", m_arrowLeft).sampling(0ms);
createOutput("Right", m_arrowRight).sampling(0ms);
createOutput("Stop", m_arrowStop).sampling(0ms);
createSetting("AcceptWASD", m_acceptWASD);//.hint("Use WASD keys as well");
//createSetting("StopKey", m_stopKey)
}
void KeyboardArrows::onCreate()
{
GlobalKeyboard::Install();
m_connections << connect(GlobalKeyboard::Instance(), &GlobalKeyboard::keyPressed, [=](unsigned long key)
{
auto qkey = GlobalKeyboard::getQKeyIndex(key);
if (qkey == Qt::Key_Up || (m_acceptWASD && qkey == Qt::Key_W))
{
m_arrowUp = true;
// touchOutput("Up", true);
}
else if (qkey == Qt::Key_Down || (m_acceptWASD && qkey == Qt::Key_S))
{
m_arrowDown = true;
// touchOutput("Down", true);
}
else if (qkey == Qt::Key_Left || (m_acceptWASD && qkey == Qt::Key_A))
{
m_arrowLeft = true;
// touchOutput("Left", true);
}
else if (qkey == Qt::Key_Right || (m_acceptWASD && qkey == Qt::Key_D))
{
m_arrowRight = true;
// touchOutput("Right", true);
}
else if (qkey == m_stopKey || (m_acceptWASD && qkey == Qt::Key_X))
{
m_arrowStop = true;
// touchOutput("Stop", true);
}
});
m_connections << connect(GlobalKeyboard::Instance(), &GlobalKeyboard::keyReleased, [=](unsigned long key)
{
auto qkey = GlobalKeyboard::getQKeyIndex(key);
if (qkey == Qt::Key_Up || (m_acceptWASD && qkey == Qt::Key_W))
{
m_arrowUp = false;
// touchOutput("Up", true);
}
else if (qkey == Qt::Key_Down || (m_acceptWASD && qkey == Qt::Key_S))
{
m_arrowDown = false;
// touchOutput("Down", true);
}
else if (qkey == Qt::Key_Left || (m_acceptWASD && qkey == Qt::Key_A))
{
m_arrowLeft = false;
// touchOutput("Left", true);
}
else if (qkey == Qt::Key_Right || (m_acceptWASD && qkey == Qt::Key_D))
{
m_arrowRight = false;
// touchOutput("Right", true);
}
else if (qkey == m_stopKey || (m_acceptWASD && qkey == Qt::Key_X))
{
m_arrowStop = false;
// touchOutput("Stop", true);
}
});
}
void KeyboardArrows::onDestroy()
{
m_connections.clear();
GlobalKeyboard::Uninstall();
}
|
ff0d115b4615e2fe25f661df5007165fcbc1aab6
|
e8a705fc184997c48cf6270783d459b1954ce158
|
/C++/20_ValidParentheses_Easy.cpp
|
5b623d57e91ec8b7fc034070d310a147a3d09c5d
|
[] |
no_license
|
reckhhh/LeetCodeSolutons
|
3ba7b45d4f048eb7018a1e58512d73138546a649
|
80841c7ea0d450d62b2f96ceefd0f9d16f45ac73
|
refs/heads/master
| 2021-01-10T05:06:06.163822
| 2015-06-12T15:02:36
| 2015-06-12T15:02:36
| 36,565,084
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 720
|
cpp
|
20_ValidParentheses_Easy.cpp
|
/*
Given a string containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid.
The brackets must close in the correct order, "()" and "()[]{}" are all valid but "(]" and "([)]" are not.
Tags: Stack, String
*/
class Solution {
public:
bool isValid(string s) {
stack<char> stk;
stk.push('#');
for(int i = 0; i < s.length(); ++i) {
if(stk.top() == '(' && s[i] == ')') stk.pop();
else if(stk.top() == '[' && s[i] == ']') stk.pop();
else if(stk.top() == '{' && s[i] == '}') stk.pop();
else stk.push(s[i]);
}
return (stk.top() == '#') ? true : false;
}
};
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.