blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 3 264 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 5 140 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 905
values | visit_date timestamp[us]date 2015-08-09 11:21:18 2023-09-06 10:45:07 | revision_date timestamp[us]date 1997-09-14 05:04:47 2023-09-17 19:19:19 | committer_date timestamp[us]date 1997-09-14 05:04:47 2023-09-06 06:22:19 | github_id int64 3.89k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 22
values | gha_event_created_at timestamp[us]date 2012-06-07 00:51:45 2023-09-14 21:58:39 ⌀ | gha_created_at timestamp[us]date 2008-03-27 23:40:48 2023-08-21 23:17:38 ⌀ | gha_language stringclasses 141
values | src_encoding stringclasses 34
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 3 10.4M | extension stringclasses 115
values | content stringlengths 3 10.4M | authors listlengths 1 1 | author_id stringlengths 0 158 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
5efe6c0e5d3478b21190d37febca2139b1405401 | 89abed0f5e12ce5d5d8cf8924be9c51a6f8bdfa0 | /src/pedsim_utils/src/pedsim_utils/geometry.cpp | 65857942497b8c52edb8ca91727a2db06c898d8f | [] | no_license | timothijoe/next_dawn_ws | 01c3d997fe59daba88c64eceba96d2382b1753de | 7af87271bcca712529144227c8d52d0d3a4c1a48 | refs/heads/main | 2023-04-13T14:18:19.006430 | 2021-04-13T10:11:24 | 2021-04-13T10:11:24 | 356,363,050 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 4,544 | cpp |
#include <pedsim_utils/geometry.h>
namespace pedsim {
geometry_msgs::Quaternion angleToQuaternion(const double theta) {
Eigen::Matrix3f rotation_matrix(Eigen::Matrix3f::Identity());
rotation_matrix(0, 0) = std::cos(theta);
rotation_matrix(0, 1) = -std::sin(theta);
rotation_matrix(0, 2) = 0;
rotation_matrix(1, 0) = std::sin(theta);
rotation_matrix(1, 1) = std::cos(theta);
rotation_matrix(1, 2) = 0;
rotation_matrix(2, 0) = 0;
rotation_matrix(2, 1) = 0;
rotation_matrix(2, 2) = 1;
Eigen::Quaternionf quaternion(rotation_matrix);
return toQuaternionMsg(quaternion.normalized());
}
geometry_msgs::Quaternion rpyToQuaternion(const double roll, const double pitch,
const double yaw) {
Eigen::Quaternionf r_m = Eigen::AngleAxisf(roll, Eigen::Vector3f::UnitX()) *
Eigen::AngleAxisf(pitch, Eigen::Vector3f::UnitY()) *
Eigen::AngleAxisf(yaw, Eigen::Vector3f::UnitZ());
return toQuaternionMsg(r_m.normalized());
}
geometry_msgs::Quaternion toQuaternionMsg(
const Eigen::Quaternionf& quaternion) {
geometry_msgs::Quaternion gq;
gq.x = quaternion.x();
gq.y = quaternion.y();
gq.z = quaternion.z();
gq.w = quaternion.w();
return std::move(gq);
}
geometry_msgs::Quaternion poseFrom2DVelocity(const double vx, const double vy) {
const double theta = std::atan2(vy, vx);
//return rpyToQuaternion(M_PI / 2.0, theta + (M_PI / 2.0), 0.0);
return rpyToQuaternion(0, 0, theta);
}
std::vector<std::pair<float, float>> LineObstacleToCells(const float x1,
const float y1,
const float x2,
const float y2) {
int i; // loop counter
int ystep, xstep; // the step on y and x axis
int error; // the error accumulated during the increment
int errorprev; // *vision the previous value of the error variable
int y = y1 - 0.5, x = x1 - 0.5; // the line points
// int y = y1, x = x1; // the line points
int ddy, ddx; // compulsory variables: the double values of dy and dx
int dx = x2 - x1;
int dy = y2 - y1;
double unit_x, unit_y;
unit_x = 1;
unit_y = 1;
if (dy < 0) {
ystep = -unit_y;
dy = -dy;
} else {
ystep = unit_y;
}
if (dx < 0) {
xstep = -unit_x;
dx = -dx;
} else {
xstep = unit_x;
}
ddy = 2 * dy; // work with double values for full precision
ddx = 2 * dx;
std::vector<std::pair<float, float>> obstacle_cells; // TODO - reserve.
obstacle_cells.emplace_back(std::make_pair(x, y));
if (ddx >= ddy) {
// first octant (0 <= slope <= 1)
// compulsory initialization (even for errorprev, needed when dx==dy)
errorprev = error = dx; // start in the middle of the square
for (i = 0; i < dx; i++) {
// do not use the first point (already done)
x += xstep;
error += ddy;
if (error > ddx) {
// increment y if AFTER the middle ( > )
y += ystep;
error -= ddx;
// three cases (octant == right->right-top for directions
// below):
if (error + errorprev < ddx) {
// bottom square also
obstacle_cells.emplace_back(std::make_pair(x, y - ystep));
} else if (error + errorprev > ddx) {
// left square also
obstacle_cells.emplace_back(std::make_pair(x - xstep, y));
} else {
// corner: bottom and left squares also
obstacle_cells.emplace_back(std::make_pair(x, y - ystep));
obstacle_cells.emplace_back(std::make_pair(x - xstep, y));
}
}
obstacle_cells.emplace_back(std::make_pair(x, y));
errorprev = error;
}
} else {
// the same as above
errorprev = error = dy;
for (i = 0; i < dy; i++) {
y += ystep;
error += ddx;
if (error > ddy) {
x += xstep;
error -= ddy;
if (error + errorprev < ddy) {
obstacle_cells.emplace_back(std::make_pair(x - xstep, y));
} else if (error + errorprev > ddy) {
obstacle_cells.emplace_back(std::make_pair(x, y - ystep));
} else {
obstacle_cells.emplace_back(std::make_pair(x, y - ystep));
obstacle_cells.emplace_back(std::make_pair(x - xstep, y));
}
}
obstacle_cells.emplace_back(std::make_pair(x, y));
errorprev = error;
}
}
return obstacle_cells;
}
} // namespace pedsim
| [
"zt1301112@gmail.com"
] | zt1301112@gmail.com |
84386f997ec0ca7365dd865f09cbd7686c768810 | 154b1a744c916cd424b5c54d5ad36efbb1d43dc4 | /C++/168-Excel-Sheet-Column-Title.cpp | 70b1cd8dee5c204cfa7acb1ff97d313caf03dc37 | [] | no_license | fitzhu/LeetCode | e7a2073006c97774a40370f900661fe86c0d2df4 | f84b01b9dbf20605a5ec5206a06ce33f6edd32d7 | refs/heads/master | 2020-04-23T03:06:58.097819 | 2019-03-24T14:18:49 | 2019-03-24T14:18:49 | 170,864,724 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 339 | cpp | #include<string>
using namespace std;
// 26进制数
class Solution {
public:
string convertToTitle(int n) {
string res;
int dvd{n};
while (dvd) {
res.push_back((dvd - 1) % 26 + 'A');
dvd = (dvd - 1) / 26;
}
reverse(res.begin(), res.end());
return res;
}
}; | [
"hsh930628@163.com"
] | hsh930628@163.com |
ed32cbae364241838bf09dcca054180b6279f934 | 8fc2e907468f81ffc58d8075cd4b0d7a54caa4cd | /src/ui/touch/touch_widget.cpp | 7f19590893bce65f5e5ba8b3e813b3cc00f7f063 | [] | no_license | TSYJwct/QtFaceRecognitionTerminal | 31c6cdd43692615b325422b658bb353827c23240 | 386b147ae26d60145b89b865fa97349c44647b10 | refs/heads/master | 2023-02-02T15:25:04.178996 | 2020-12-24T05:07:13 | 2020-12-24T05:07:13 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,413 | cpp | #include "touch_widget.hpp"
#include <QTimer>
#include <QVBoxLayout>
#include <quface/logger.hpp>
using namespace suanzi;
TouchWidget::TouchWidget(int screen_width, int screen_height, QWidget *parent)
: screen_width_(screen_width),
screen_height_(screen_height),
parent_widget_(parent) /*, QStackedWidget(parent)*/ {
// setStyleSheet("QWidget {background-color:transparent;margin:0px;}");
// stacked_widget_ = new QStackedWidget(this);
MenuKeyWidget *menu_key_widget =
new MenuKeyWidget(screen_width, screen_height, this);
addWidget(menu_key_widget);
qrcode_widget_ = new QrcodeWidget(screen_width, screen_height, this);
addWidget(qrcode_widget_);
digit_key_widget_ = new DigitKeyWidget(screen_width, screen_height, this);
addWidget(digit_key_widget_);
connect(menu_key_widget, SIGNAL(switch_stacked_widget(int)), this,
SLOT(switch_stacked_widget(int)));
connect(qrcode_widget_, SIGNAL(switch_stacked_widget(int)), this,
SLOT(switch_stacked_widget(int)));
connect(digit_key_widget_, SIGNAL(switch_stacked_widget(int)), this,
SLOT(switch_stacked_widget(int)));
connect(menu_key_widget, SIGNAL(tx_menu_type(int)), digit_key_widget_,
SLOT(rx_menu_type(int)));
switch_stacked_widget(0);
}
TouchWidget::~TouchWidget() {}
void TouchWidget::switch_stacked_widget(int index) {
if (index == 0) {
setStyleSheet("QStackedWidget {background-color:transparent;margin:0px;}");
setFixedSize(100, 300);
move(screen_width_ - 100, (screen_height_ - 350) / 2);
// TODO: enable face recognition
emit tx_enable_face_recognition(true);
} else if (index == 1) {
setStyleSheet(
"QStackedWidget "
"{background-color:transparent;margin:0px;color:white;}");
setFixedSize(screen_width_, screen_height_);
move(0, 0);
qrcode_widget_->init();
// TODO: disable face recognition
emit tx_enable_face_recognition(false);
} else {
setStyleSheet(
"QStackedWidget {background-color:rgb(5, 0, "
"20);margin:0px;color:white;}");
setFixedSize(screen_width_, screen_height_);
move(0, 0);
digit_key_widget_->init();
// TODO: disable face recognition
emit tx_enable_face_recognition(false);
}
setCurrentIndex(index);
parent_widget_->repaint();
}
void TouchWidget::rx_display(bool invisible) {
if (invisible)
hide();
else
show();
}
| [
"niyayu@suanzi.ai"
] | niyayu@suanzi.ai |
73f0d3c0ed59efbfd1d84cb71580ea6467e79f9d | 90895261e08d3b50e10dfc7eeb37484bb7851c60 | /userActionAnalysis/complexActionDialog.h | 28c76231d83134e62fc43c6b88cd06237eeafbe7 | [] | no_license | qreal/tools | 8286c4cce3c6dc9c7d9daec79504dc489c33f5ae | e9df29b7b4d199e2fd296272352c133c2db9c510 | refs/heads/master | 2021-01-19T02:42:56.589267 | 2017-11-17T10:27:24 | 2017-11-17T10:27:24 | 1,831,652 | 1 | 4 | null | 2014-10-31T11:03:13 | 2011-06-01T12:53:14 | C++ | UTF-8 | C++ | false | false | 2,916 | h | #pragma once
#include <QtWidgets/QDialog>
#include <QListWidgetItem>
#include <QTreeWidgetItem>
#include "userAction/complexUserAction/complexUserActionGenerator.h"
#include "propertiesDialog.h"
#include "complexActionNameDialog.h"
#include "widgetItemProperty/widgetItemCustomPropertyList.h"
#include "userAction/complexUserAction/complexUserActionList.h"
#include "ruleElement.h"
namespace Ui {
class ComplexActionDialog;
}
class ComplexActionDialog : public QDialog
{
Q_OBJECT
public:
explicit ComplexActionDialog(QWidget *parent = 0
, BaseUserActionList baseUserActions = BaseUserActionList()
, ComplexUserActionList complexUserActions = ComplexUserActionList()
, ComplexUserActionList scenarios = ComplexUserActionList());
~ComplexActionDialog();
void prepareForComplexAction();
void prepareForScenarios();
public slots:
void addActionToRuleList();
void deleteActionFromRuleList();
void openProperties(QTreeWidgetItem *item);
void updateCustomProperties();
void openNameDialogComplexAction();
void openNameDialogScenario();
void saveComplexAction();
void addNewComplexAction(ComplexUserAction *action);
void addNewScenario(ComplexUserAction *scenario);
void clearBaseListSelection();
void clearComplexTreeSelection();
void startGroupInRuleList();
void finishGroupInRuleList();
void orInRuleList();
void startSetInRuleList();
void finishSetInRuleList();
signals:
void newComplexActionCreated(ComplexUserAction *complexUserAction);
void newScenarioCreated(ComplexUserAction *scenario);
private:
QStringList initComplexActionTreeWidget();
QStringList initBaseActionListWidget();
QStringList initScenarioWidget();
void initComplexAction(ComplexUserAction *complexUserAction, QTreeWidgetItem *item, int const &column);
void addBaseActionToRuleWidget(QTreeWidgetItem *parent
, const QString &name
, const QMap<QString, QString> &disabledProperties
, int const &repeatCountValue = 1
, bool const &isKeyActionValue = true
, Duration const &durationValue = Duration(0, 0)
, QTreeWidgetItem *topLevelParent = nullptr);
void addComplexActionToRuleWidget(QTreeWidgetItem *parent, ComplexUserAction *complexUserAction, QTreeWidgetItem *topLevelParent);
RuleElement *parseRuleTreeItem(QTreeWidgetItem *item);
void printRuleElements(QList<RuleElement *> ruleElements);
bool isTopLevelItemInRuleTree(QTreeWidgetItem *item);
void initButtonsState();
void openNameDialog(bool isScenario);
Ui::ComplexActionDialog *ui;
BaseUserActionList mBaseUserActions;
ComplexUserActionList mComplexUserActions;
ComplexUserActionList mScenarios;
PropertiesDialog *mPropertiesDialog;
ComplexActionNameDialog *mComplexActionNameDialog;
WidgetItemCustomPropertyList mWidgetItemCustomPropertyList;
QTreeWidgetItem *mOpenedRuleItem;
ComplexUserActionGenerator *mComplexUserActionGenerator;
QMap<QTreeWidgetItem *, QMap<QString, QString>> mDisabledProperties;
};
| [
"kuzenkovanastya@gmail.com"
] | kuzenkovanastya@gmail.com |
b03f9e1c7039fe8024728ce20179e41ca22b974c | f947dddcc697e82b4658765a3998ebad04467fff | /DataStruct/HashTable/Test.cpp | 79103c97998f7db0a18d3c492f17d93c2a86935a | [] | no_license | sworsman31415926/linux_send_message | 7bd987e37e24e608c036bc38d41c1273abf2c4a5 | 1f198018f1f1a19856f6c98395e2e26236bf9efe | refs/heads/master | 2023-02-01T00:12:32.270025 | 2020-12-15T05:52:10 | 2020-12-15T05:52:10 | 321,565,533 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,482 | cpp | /**************************************
*文件说明:测试哈希表
*作者:高小调
*创建时间:2017年04月18日 星期二 11时29分59秒
*开发环境:Kali Linux/g++ v6.3.0
****************************************/
#include<iostream>
#include<string>
#include"HashTable.hpp"
void TestHashTable(){
/*
//测试基本的插入、扩容、查找
HashTable<int,const char*> ht1(0);
ht1.Insert(1,"Hello"); //第一次开辟7个空间
ht1.Insert(2,"World");
ht1.Insert(3,"My");
ht1.Insert(4,"Name");
ht1.Insert(5,"Is");
ht1.Insert(6,"Gao");//在此负载因子大于0.7,为提高效率,需要进行扩容处理
ht1.Insert(7,"Xiao");
ht1.Insert(8,"Diao");
for(int i=1; i<=8; ++i){
std::pair<typename HashTable<int,const char*>::Node*,bool> ret;
ret = ht1.Find(i);
if(ret.second){
std::cout<<i<<":"<<ret.first->_value<<std::endl;
}else{
std::cout<<i<<":未找到"<<std::endl;
}
}
*/
//测试冲突、二次扩容后冲突处理、删除
HashTable<int,int> ht2(10);
ht2.Insert(0,15465123); //0
ht2.Insert(1,14565123); //1
ht2.Insert(2,15112123); //2
ht2.Insert(7,15465123); //0冲突 探测为3
ht2.Insert(8,15415623); //1冲突 探测为4
ht2.Insert(9,15456823); //2冲突 探测为5
for(int i=0; i<3; ++i){
std::pair<typename HashTable<int,int>::Node*,bool> ret1;
std::pair<typename HashTable<int,int>::Node*,bool> ret2;
ret1 = ht2.Find(i);
ret2 = ht2.Find(i+7);
if(ret1.second){
std::cout<<i<<":"<<ret1.first->_value<<std::endl;
}else{
std::cout<<i<<":没找到"<<std::endl;
}
if(ret2.second){
std::cout<<i+7<<":"<<ret2.first->_value<<std::endl;
}else{
std::cout<<i+7<<":没找到"<<std::endl;
}
}
std::cout<<std::endl;
ht2.Insert(3,4564561); //扩容为53
ht2.Insert(4,4564561);
ht2.Insert(5,4564561);
ht2.Insert(6,4564561);
//扩容后,再次打印
for(int i=0; i<10; ++i){
std::pair<typename HashTable<int,int>::Node*,bool> ret;
ret = ht2.Find(i);
if(ret.second){
std::cout<<i<<":"<<ret.first->_value<<std::endl;
}else{
std::cout<<i<<":没找到"<<std::endl;
}
}
std::cout<<std::endl;
ht2.Remove(1);
ht2.Remove(3);
ht2.Remove(5);
ht2.Remove(7);
ht2.Remove(9);
//删除后,再次打印
for(int i=0; i<10; ++i){
std::pair<typename HashTable<int,int>::Node*,bool> ret;
ret = ht2.Find(i);
if(ret.second){
std::cout<<i<<":"<<ret.first->_value<<std::endl;
}else{
std::cout<<i<<":没找到"<<std::endl;
}
}
}
int main(){
TestHashTable();
return 0;
}
| [
"hmf31415926@126.com"
] | hmf31415926@126.com |
370113de14bf314786686c7e4569177abb40de72 | 8f19b63873145658bcc8066723cbb78323ce75c8 | /src/sysdesktop/MusicPlayerContrController.cpp | 6276a11c08fd4884a5f0fb71913bdfa931e34557 | [
"Apache-2.0"
] | permissive | 0of/WebOS-Magna | c9dfcd310b3e16c4b4e19f34244d4413a3bf3c89 | a0fe2c9708fd4dd07928c11fcb03fb29fdd2d511 | refs/heads/master | 2021-01-13T13:00:29.907133 | 2016-02-01T07:48:41 | 2016-02-01T07:48:41 | 50,822,587 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,854 | cpp | #include "MusicPlayerContrController.h"
#include "render/LinearGradient.h"
using namespace Magna::GUI;
#include "basegui/ControllerImplementor.h"
#include "basegui/Controller_p.h"
#include "basegui/AbsoluteLayout.h"
namespace Magna{
namespace SystemComponent{
namespace Desktop{
class IconSet{
public:
static IconSet shared_icon_set;
static const String getAudioPlayResDir(){
static String _dir = L"/res/sysdesktop/audioplayer/";
return _dir;
}
IconSet()
:m_maxVol( getAudioPlayResDir() + L"Volume-high.png" )
,m_avgVol( getAudioPlayResDir() + L"Volume-medium.png" )
,m_minVol( getAudioPlayResDir() + L"Volume-low.png" )
,m_muted( getAudioPlayResDir() + L"Volume-mute.png" )
,m_playIcon( getAudioPlayResDir() + L"play.png" )
,m_pauseIcon( getAudioPlayResDir() + L"pause.png" )
,m_stopIcon( getAudioPlayResDir() + L"3.png" )
,m_nextIcon( getAudioPlayResDir() + L"1.png" )
,m_preIcon( getAudioPlayResDir() + L"2.png"){
m_maxVol.scale( 48, 48 );
m_avgVol.scale( 48, 48 );
m_minVol.scale( 48, 48 );
m_muted.scale( 48, 48 );
}
~IconSet(){
}
Image m_maxVol;
Image m_avgVol;
Image m_minVol;
Image m_muted;
Image m_playIcon;
Image m_pauseIcon;
Image m_stopIcon;
Image m_nextIcon;
Image m_preIcon;
};
IconSet IconSet::shared_icon_set = IconSet();
class VolumeAvgAdjustControllerImpl : public ControllerImplementor{
public:
VolumeAvgAdjustControllerImpl( VolumeAvgAdjustController& binding );
virtual ~VolumeAvgAdjustControllerImpl();
virtual void mousePressed( MouseEventArgs& event );
virtual void mouseReleased( MouseEventArgs& event );
virtual void rendering( RenderingEventArgs& eventArgs );
public:
//not a proper way
uint32 m_state;
IntegerDyadCoordinate m_pressedPos;
Image m_icon;
VolumeAvgAdjustController& m_binding;
};
VolumeAvgAdjustControllerImpl::VolumeAvgAdjustControllerImpl( VolumeAvgAdjustController& binding )
:ControllerImplementor()
,m_pressedPos()
,m_state( 1 )
,m_icon( IconSet::shared_icon_set.m_avgVol )
,m_binding( binding ){
}
VolumeAvgAdjustControllerImpl::~VolumeAvgAdjustControllerImpl(){
}
void VolumeAvgAdjustControllerImpl::mousePressed( MouseEventArgs& event ){
if( event.isAccepted() ){
m_pressedPos = event.getTriggeredCoord();
}
}
void VolumeAvgAdjustControllerImpl::mouseReleased( MouseEventArgs& event ){
if( event.isAccepted() ){
uint32 _state = 0;
Image _icon;
if( m_pressedPos.getX() > 40 ){
_state = 0;
_icon = IconSet::shared_icon_set.m_maxVol;
}
else if( m_pressedPos.getX() <= 40 && m_pressedPos.getX() > 26 ){
_state = 1;
_icon = IconSet::shared_icon_set.m_avgVol;
}
else if( m_pressedPos.getX() <= 26 && m_pressedPos.getX() > 14 ){
_state = 2;
_icon = IconSet::shared_icon_set.m_minVol;
}
else{
_state = 3;
_icon = IconSet::shared_icon_set.m_muted;
}
if( m_state != _state ){
m_icon = _icon;
m_binding.update();
}
}
}
void VolumeAvgAdjustControllerImpl::rendering( RenderingEventArgs& eventArgs ){
if( eventArgs.isAccepted() ){
auto *_2d_manager = eventArgs.getRenderManager2D();
if( _2d_manager != Nullptr ){
Canvas2DDrawer _drawer;
if( _2d_manager->retrieveDrawer( _drawer ) != false ){
_drawer.drawImage( IntegerDyadCoordinate( 0, 0 ), m_icon );
_2d_manager->pullbackDrawer( _drawer );
}
}
}
}
VolumeAvgAdjustController::VolumeAvgAdjustController()
:Controller(){
VolumeAvgAdjustControllerImpl *impl = new VolumeAvgAdjustControllerImpl( *this );
m_root->_impl_init( impl );
//size fixed
m_root->_size_set( IntegerSize( 48, 48 ) );
}
VolumeAvgAdjustController::~VolumeAvgAdjustController(){
}
//////////////////////////////////////////////////////////////////////////
MusicPlayerContrController::MusicPlayerContrController( uint32 width )
:Controller()
,m_startPauseButton( new Button(L"") )
,m_stopButton( new Button(L"") )
,m_playPreButton( new Button(L"") )
,m_playNextButton( new Button( L"") )
,m_adjustCtrl( new VolumeAvgAdjustController() ){
AbsoluteLayout *layout = new AbsoluteLayout;
//default height 160
setSize( IntegerSize( width , 160 ) );
m_startPauseButton->setSize( IntegerSize( 128, 128 ) );
m_stopButton->setSize( IntegerSize( 64, 64 ) );
m_playPreButton->setSize( IntegerSize( 64, 64 ) );
m_playNextButton->setSize( IntegerSize( 64, 64 ) );
m_startPauseButton->setPressedBrush( FillBrush() );
m_stopButton->setPressedBrush( FillBrush() );
m_playPreButton->setPressedBrush( FillBrush() );
m_playNextButton->setPressedBrush( FillBrush() );
m_startPauseButton->setIcon( IconSet::shared_icon_set.m_playIcon );
m_startPauseButton->setPressedIcon( IconSet::shared_icon_set.m_pauseIcon );
m_stopButton->setIcon( IconSet::shared_icon_set.m_stopIcon );
m_playPreButton->setIcon( IconSet::shared_icon_set.m_preIcon );
m_playNextButton->setIcon( IconSet::shared_icon_set.m_nextIcon );
//deploy
m_stopButton->setPos( IntegerDyadCoordinate( 6, 90 ) );
m_startPauseButton->setPos( IntegerDyadCoordinate( 48, 16 ) );
m_playPreButton->setPos( IntegerDyadCoordinate( 188 , 36 ) );
m_playNextButton->setPos( IntegerDyadCoordinate( 152, 86 ) );
m_adjustCtrl->setPos( IntegerDyadCoordinate( width - 52, 56 ) );
layout->addController( m_stopButton );
layout->addController( m_startPauseButton );
layout->addController( m_playPreButton );
layout->addController( m_playNextButton );
layout->addController( m_adjustCtrl );
setLayout(layout);
}
MusicPlayerContrController::~MusicPlayerContrController(){
}
}
}
}
| [
"Magnusbackyard@live.com"
] | Magnusbackyard@live.com |
d69338b7b9ea49e8da8cf50664e22ed63e478406 | 7f91029153a716d8d09ae43b11579f73c37be01d | /mdal/frmts/mdal_dynamic_driver.cpp | 2395fecf9c6c3807cb6015f6debb52f0f0d9783f | [
"MIT"
] | permissive | aashish24/MDAL | cc02221cd1a423d53685bd993fd1c35e506ca59c | 875d6ea1ddecafe99c4b92549fb5a580df8b75c9 | refs/heads/master | 2023-01-19T06:11:19.075445 | 2020-12-01T15:38:36 | 2020-12-01T15:38:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 15,161 | cpp | /*
MDAL - Mesh Data Abstraction Library (MIT License)
Copyright (C) 2020 Vincent Cloarec (vcloarec at gmail dot com)
*/
#include "mdal_dynamic_driver.hpp"
#include "mdal_logger.hpp"
#if not defined (WIN32)
#include <dlfcn.h>
#endif
#include <string.h>
#include <iostream>
MDAL::DriverDynamic::DriverDynamic( const std::string &name, const std::string &longName, const std::string &filters, int capabilityFlags, int maxVertexPerFace, const MDAL::Library &lib ):
Driver( name, longName, filters, capabilityFlags ),
mLibrary( lib ),
mCapabilityFlags( capabilityFlags ),
mMaxVertexPerFace( maxVertexPerFace )
{}
MDAL::Driver *MDAL::DriverDynamic::create()
{
std::unique_ptr<MDAL::DriverDynamic> driver( new DriverDynamic( name(), longName(), filters(), mCapabilityFlags, mMaxVertexPerFace, mLibrary ) );
if ( driver->loadSymbols() )
return driver.release();
else
return nullptr;
}
bool MDAL::DriverDynamic::canReadMesh( const std::string &uri )
{
if ( mCanReadMeshFunction )
{
return mCanReadMeshFunction( uri.c_str() );
}
return false;
}
std::unique_ptr<MDAL::Mesh> MDAL::DriverDynamic::load( const std::string &uri, const std::string &meshName )
{
if ( !mOpenMeshFunction )
return std::unique_ptr<MDAL::Mesh>();
int meshId = mOpenMeshFunction( uri.c_str(), meshName.c_str() );
if ( meshId != -1 )
{
if ( mMeshIds.find( meshId ) == mMeshIds.end() )
{
std::unique_ptr<MDAL::MeshDynamicDriver> mesh( new MeshDynamicDriver( name(), mMaxVertexPerFace, uri, mLibrary, meshId ) );
if ( mesh->loadSymbol() )
{
mMeshIds.insert( meshId );
mesh->setProjection();
if ( mesh->populateDatasetGroups() )
return mesh;
}
}
}
MDAL::Log::error( MDAL_Status::Err_UnknownFormat, name(), "Unable to load the mesh" );
return std::unique_ptr<MDAL::Mesh>();
}
MDAL::Driver *MDAL::DriverDynamic::create( const std::string &libFile )
{
Library library( libFile );
std::function<const char *()> driverNameFunction = library.getSymbol<const char *>( "MDAL_DRIVER_driverName" );
std::function<const char *()> driverLongNameFunction = library.getSymbol<const char *>( "MDAL_DRIVER_driverLongName" );
std::function<const char *()> driverFiltersFunction = library.getSymbol<const char *>( "MDAL_DRIVER_filters" );
std::function<int()> driverCapabilitiesFunction = library.getSymbol<int>( "MDAL_DRIVER_capabilities" );
std::function<int()> driverMaxVertexPerFaceFunction = library.getSymbol<int>( "MDAL_DRIVER_maxVertexPerFace" );
if ( !driverNameFunction ||
!driverLongNameFunction ||
!driverFiltersFunction ||
!driverCapabilitiesFunction ||
!driverMaxVertexPerFaceFunction )
{
// No log error here because MDAL can try any files to find the good one
return nullptr;
}
std::string name( driverNameFunction() );
std::string longName( driverLongNameFunction() );
std::string filters( driverFiltersFunction() );
MDAL::Capability capabilities = static_cast<MDAL::Capability>( driverCapabilitiesFunction() );
int maxVertexPerFace = driverMaxVertexPerFaceFunction();
std::unique_ptr<DriverDynamic> driver( new DriverDynamic( name, longName, filters, capabilities, maxVertexPerFace, library ) );
if ( !driver->loadSymbols() )
{
//Log error created by loadSymbols()
return nullptr;
}
return driver.release();
}
bool MDAL::DriverDynamic::loadSymbols()
{
mCanReadMeshFunction = mLibrary.getSymbol<bool, const char *>( "MDAL_DRIVER_canReadMesh" );
mOpenMeshFunction = mLibrary.getSymbol<int, const char *, const char *>( "MDAL_DRIVER_openMesh" );
if ( mCanReadMeshFunction == nullptr ||
mOpenMeshFunction == nullptr )
{
MDAL::Log::error( MDAL_Status::Err_MissingDriver, name(), "External driver is not valid" );
return false;
}
return true;
}
MDAL::MeshDynamicDriver::MeshDynamicDriver( const std::string &driverName,
size_t faceVerticesMaximumCount,
const std::string &uri,
const MDAL::Library &library,
int meshId ):
Mesh( driverName, faceVerticesMaximumCount, uri ),
mLibrary( library ),
mId( meshId )
{}
MDAL::MeshDynamicDriver::~MeshDynamicDriver()
{
mCloseMeshFunction( mId );
}
static int elementCount( int meshId, const std::function<int ( int )> &countFunction, const std::string &driverName )
{
if ( countFunction )
{
int count = countFunction( meshId );
if ( count >= 0 )
return count;
MDAL::Log::error( MDAL_Status::Err_InvalidData, driverName, "Invalid mesh" );
}
else
MDAL::Log::error( MDAL_Status::Err_MissingDriver, driverName, "Driver is not valid" );
return 0;
}
size_t MDAL::MeshDynamicDriver::verticesCount() const
{
return elementCount( mId, mMeshVertexCountFunction, driverName() );
}
size_t MDAL::MeshDynamicDriver::facesCount() const
{
return elementCount( mId, mMeshFaceCountFunction, driverName() );
}
size_t MDAL::MeshDynamicDriver::edgesCount() const
{
return elementCount( mId, mMeshEdgeCountFunction, driverName() );
}
MDAL::BBox MDAL::MeshDynamicDriver::extent() const
{
if ( mMeshExtentFunction )
{
double xMin, xMax, yMin, yMax;
mMeshExtentFunction( mId, &xMin, &xMax, &yMin, &yMax );
return BBox( xMin, xMax, yMin, yMax );
}
return BBox( std::numeric_limits<double>::quiet_NaN(),
std::numeric_limits<double>::quiet_NaN(),
std::numeric_limits<double>::quiet_NaN(),
std::numeric_limits<double>::quiet_NaN() );
}
void MDAL::MeshDynamicDriver::setProjection()
{
if ( !mMeshProjectionFunction )
return;
std::string projection = mMeshProjectionFunction( mId );
setSourceCrs( projection );
}
bool MDAL::MeshDynamicDriver::populateDatasetGroups()
{
if ( !mMeshDatasetGroupsCountFunction )
return false;
int datasetGroupCount = mMeshDatasetGroupsCountFunction( mId );
for ( int i = 0; i < datasetGroupCount; ++i )
{
const char *groupName = mDatasetgroupNameFunction( mId, i );
const char *referenceTime = mDatasetGroupReferencetimeFunction( mId, i );
bool isScalar = true;
int dataLocation = 0;
int datasetCount = 0;
if ( !mDatasetDescriptionFunction( mId, i, &isScalar, &dataLocation, &datasetCount ) )
return false;
std::shared_ptr<DatasetGroup> group = std::make_shared<DatasetGroup>( driverName(), this, uri() );
if ( groupName )
group->setName( groupName );
if ( referenceTime )
{
std::string referenceTimeIso8701 = referenceTime;
group->setReferenceTime( referenceTimeIso8701 );
}
group->setIsScalar( isScalar );
switch ( dataLocation )
{
case 1:
group->setDataLocation( MDAL_DataLocation::DataOnVertices );
break;
case 2:
group->setDataLocation( MDAL_DataLocation::DataOnFaces );
break;
case 3:
group->setDataLocation( MDAL_DataLocation::DataOnEdges );
break;
default:
group->setDataLocation( MDAL_DataLocation::DataInvalidLocation );
break;
}
size_t metadataCount = mDatasetGroupMetadataCountFunction( mId, i );
if ( metadataCount > 0 )
{
for ( size_t metaIndex = 0; metaIndex < metadataCount; ++metaIndex )
{
std::string key( mDatasetGroupMetadataKeyFunction( mId, i, metaIndex ) );
std::string value( mDatasetGroupMetadataValueFunction( mId, i, metaIndex ) );
group->setMetadata( key, value );
}
}
for ( int d = 0; d < datasetCount ; ++d )
{
std::shared_ptr<DatasetDynamicDriver> dataset = std::make_shared<DatasetDynamicDriver>( group.get(), mId, i, d, mLibrary );
dataset->setSupportsActiveFlag( mDatasetSupportActiveFlagFunction( mId, i, d ) );
if ( !dataset->loadSymbol() )
return false;
dataset->setStatistics( MDAL::calculateStatistics( dataset ) );
group->datasets.push_back( dataset );
}
group->setStatistics( MDAL::calculateStatistics( group ) );
datasetGroups.push_back( group );
}
return true;
}
bool MDAL::MeshDynamicDriver::loadSymbol()
{
mMeshVertexCountFunction = mLibrary.getSymbol<int, int>( "MDAL_DRIVER_M_vertexCount" ) ;
mMeshFaceCountFunction = mLibrary.getSymbol<int, int>( "MDAL_DRIVER_M_faceCount" ) ;
mMeshEdgeCountFunction = mLibrary.getSymbol<int, int>( "MDAL_DRIVER_M_edgeCount" ) ;
mMeshExtentFunction = mLibrary.getSymbol<void, int, double *, double *, double *, double *>( "MDAL_DRIVER_M_extent" );
mMeshProjectionFunction = mLibrary.getSymbol<const char *, int>( "MDAL_DRIVER_M_projection" ) ;
mMeshDatasetGroupsCountFunction = mLibrary.getSymbol<int, int>( "MDAL_DRIVER_M_datasetGroupCount" );
mDatasetgroupNameFunction = mLibrary.getSymbol<const char *, int, int>( "MDAL_DRIVER_G_groupName" );
mDatasetGroupReferencetimeFunction = mLibrary.getSymbol<const char *, int, int>( "MDAL_DRIVER_G_referenceTime" );
mDatasetGroupMetadataCountFunction = mLibrary.getSymbol<int, int, int>( "MDAL_DRIVER_G_metadataCount" );
mDatasetGroupMetadataKeyFunction = mLibrary.getSymbol<const char *, int, int, int>( "MDAL_DRIVER_G_metadataKey" );
mDatasetGroupMetadataValueFunction = mLibrary.getSymbol<const char *, int, int, int>( "MDAL_DRIVER_G_metadataValue" );
mDatasetDescriptionFunction = mLibrary.getSymbol<bool, int, int, bool *, int *, int *>( "MDAL_DRIVER_G_datasetsDescription" );
mDatasetSupportActiveFlagFunction = mLibrary.getSymbol<bool, int, int, int>( "MDAL_DRIVER_D_hasActiveFlagCapability" );
mCloseMeshFunction = mLibrary.getSymbol<void, int>( "MDAL_DRIVER_closeMesh" );
if ( mMeshVertexCountFunction == nullptr ||
mMeshFaceCountFunction == nullptr ||
mMeshEdgeCountFunction == nullptr ||
mMeshExtentFunction == nullptr ||
mMeshProjectionFunction == nullptr ||
mMeshDatasetGroupsCountFunction == nullptr ||
mDatasetgroupNameFunction == nullptr ||
mDatasetGroupReferencetimeFunction == nullptr ||
mDatasetGroupMetadataCountFunction == nullptr ||
mDatasetGroupMetadataKeyFunction == nullptr ||
mDatasetGroupMetadataValueFunction == nullptr ||
mDatasetDescriptionFunction == nullptr ||
mDatasetSupportActiveFlagFunction == nullptr ||
mCloseMeshFunction == nullptr )
{
MDAL::Log::error( MDAL_Status::Err_MissingDriver, driverName(), "Driver is not valid, unable to load mesh access functions" );
return false;
}
return true;
}
std::unique_ptr<MDAL::MeshVertexIterator> MDAL::MeshDynamicDriver::readVertices()
{
return std::unique_ptr<MeshVertexIteratorDynamicDriver>( new MeshVertexIteratorDynamicDriver( mLibrary, mId ) );
}
std::unique_ptr<MDAL::MeshEdgeIterator> MDAL::MeshDynamicDriver::readEdges()
{
return std::unique_ptr<MeshEdgeIterator>( new MeshEdgeIteratorDynamicDriver( mLibrary, mId ) );
}
std::unique_ptr<MDAL::MeshFaceIterator> MDAL::MeshDynamicDriver::readFaces()
{
return std::unique_ptr<MeshFaceIterator>( new MeshFaceIteratorDynamicDriver( mLibrary, mId ) );
}
MDAL::MeshVertexIteratorDynamicDriver::MeshVertexIteratorDynamicDriver( const Library &library, int meshId ):
mLibrary( library ),
mMeshId( meshId )
{}
size_t MDAL::MeshVertexIteratorDynamicDriver::next( size_t vertexCount, double *coordinates )
{
if ( !mVerticesFunction )
{
mVerticesFunction = mLibrary.getSymbol<int, int, int, int, double *>( "MDAL_DRIVER_M_vertices" );
if ( !mVerticesFunction )
return 0;
}
int effectiveVerticesCount = mVerticesFunction( mMeshId, mPosition, MDAL::toInt( vertexCount ), coordinates );
if ( effectiveVerticesCount < 0 )
{
MDAL::Log::error( MDAL_Status::Err_InvalidData, "Invalid mesh, unable to read vertices" );
return 0;
}
mPosition += effectiveVerticesCount;
return effectiveVerticesCount;
}
MDAL::MeshFaceIteratorDynamicDriver::MeshFaceIteratorDynamicDriver( const MDAL::Library &library, int meshId ):
mLibrary( library ),
mMeshId( meshId )
{}
size_t MDAL::MeshFaceIteratorDynamicDriver::next( size_t faceOffsetsBufferLen, int *faceOffsetsBuffer, size_t vertexIndicesBufferLen, int *vertexIndicesBuffer )
{
if ( !mFacesFunction )
{
mFacesFunction = mLibrary.getSymbol<int, int, int, int, int *, int, int *>( "MDAL_DRIVER_M_faces" );
if ( !mFacesFunction )
return 0;
}
int effectiveFacesCount = mFacesFunction( mMeshId, mPosition, MDAL::toInt( faceOffsetsBufferLen ), faceOffsetsBuffer, MDAL::toInt( vertexIndicesBufferLen ), vertexIndicesBuffer );
if ( effectiveFacesCount < 0 )
{
MDAL::Log::error( MDAL_Status::Err_InvalidData, "Invalid mesh, unable to read faces" );
return 0;
}
mPosition += effectiveFacesCount;
return effectiveFacesCount;
}
MDAL::MeshEdgeIteratorDynamicDriver::MeshEdgeIteratorDynamicDriver( const MDAL::Library &library, int meshId ):
mLibrary( library ),
mMeshId( meshId )
{}
size_t MDAL::MeshEdgeIteratorDynamicDriver::next( size_t edgeCount, int *startVertexIndices, int *endVertexIndices )
{
if ( !mEdgesFunction )
{
mEdgesFunction = mLibrary.getSymbol<int, int, int, int, int *, int *>( "MDAL_DRIVER_M_edges" );
if ( !mEdgesFunction )
return 0;
}
int effectiveEdgesCount = mEdgesFunction( mMeshId, mPosition, MDAL::toInt( edgeCount ), startVertexIndices, endVertexIndices );
if ( effectiveEdgesCount < 0 )
{
MDAL::Log::error( MDAL_Status::Err_InvalidData, "Invalid mesh, unable to read edges" );
return 0;
}
mPosition += effectiveEdgesCount;
return effectiveEdgesCount;
}
MDAL::DatasetDynamicDriver::DatasetDynamicDriver( MDAL::DatasetGroup *parentGroup, int meshId, int groupIndex, int datasetIndex, const MDAL::Library &library ):
Dataset2D( parentGroup )
, mMeshId( meshId )
, mGroupIndex( groupIndex )
, mDatasetIndex( datasetIndex )
, mLibrary( library )
{}
size_t MDAL::DatasetDynamicDriver::scalarData( size_t indexStart, size_t count, double *buffer )
{
if ( !mDataFunction )
return 0;
return mDataFunction( mMeshId, mGroupIndex, mDatasetIndex, MDAL::toInt( indexStart ), MDAL::toInt( count ), buffer );
}
size_t MDAL::DatasetDynamicDriver::vectorData( size_t indexStart, size_t count, double *buffer )
{
if ( !mDataFunction )
return 0;
return mDataFunction( mMeshId, mGroupIndex, mDatasetIndex, MDAL::toInt( indexStart ), MDAL::toInt( count ), buffer );
}
size_t MDAL::DatasetDynamicDriver::activeData( size_t indexStart, size_t count, int *buffer )
{
if ( !supportsActiveFlag() )
return Dataset2D::activeData( indexStart, count, buffer );
if ( !mActiveFlagsFunction )
return 0;
return mActiveFlagsFunction( mMeshId, mGroupIndex, mDatasetIndex, MDAL::toInt( indexStart ), MDAL::toInt( count ), buffer );
}
bool MDAL::DatasetDynamicDriver::loadSymbol()
{
mDataFunction = mLibrary.getSymbol<int, int, int, int, int, int, double *>( "MDAL_DRIVER_D_data" );
if ( supportsActiveFlag() )
mActiveFlagsFunction = mLibrary.getSymbol<int, int, int, int, int, int, int *>( "MDAL_DRIVER_D_activeFlags" );
if ( mDataFunction == nullptr ||
( supportsActiveFlag() && mActiveFlagsFunction == nullptr ) )
{
MDAL::Log::error( MDAL_Status::Err_MissingDriver, "Driver is not valid" );
return false;
}
return true;
}
| [
"zilolv@gmail.com"
] | zilolv@gmail.com |
4494050e09ab2e88cd1064fa324262d99aad5051 | 88ee2fb90bbb66499dcf3b67b93286e686a22bcb | /src/core/document/FloatRangeDocValuesField.cpp | 328f099afd27aefeeeddcd23a3f77184e9c550a5 | [] | no_license | finddit/lucene_cpp_20 | 83b4bb779557985dc1e04f49dbb72cb93ac6c649 | 98611d3ef0aa01a345cf8640fdc460c837d15182 | refs/heads/main | 2023-06-03T02:07:23.564842 | 2021-06-17T19:47:08 | 2021-06-17T19:47:08 | 377,941,462 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 94 | cpp | //
// Created by Ervin Bosenbacher on 17/06/2021.
//
#include "FloatRangeDocValuesField.hpp"
| [
"ervin@blueparrot.co"
] | ervin@blueparrot.co |
c30b83d710f45429fdf96296216021cfbcbe2530 | 9f520bcbde8a70e14d5870fd9a88c0989a8fcd61 | /pitzDaily/927/alphak | 91050210eaa8c968ec9dc10496243e6293f3631b | [] | no_license | asAmrita/adjoinShapOptimization | 6d47c89fb14d090941da706bd7c39004f515cfea | 079cbec87529be37f81cca3ea8b28c50b9ceb8c5 | refs/heads/master | 2020-08-06T21:32:45.429939 | 2019-10-06T09:58:20 | 2019-10-06T09:58:20 | 213,144,901 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 68,728 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v1806 |
| \\ / A nd | Web: www.OpenFOAM.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "927";
object alphak;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 0 -1 0 0 0 0];
internalField nonuniform List<scalar>
6400
(
0.912488025769
1.48999656413
2.38494097798
3.03278267606
3.64983761805
4.25821265601
4.98845358166
5.79937613188
6.36245208033
7.17707175077
8.51937049986
9.54708423088
10.4381776796
11.4106369586
12.5622485222
13.7791420275
14.91625735
15.9940514362
16.9163117579
17.5390404973
17.981847154
18.5947024931
19.5634848753
20.8468586865
22.2260345503
23.50122744
24.6152231473
25.6687353392
26.7543057034
27.8872068682
29.0120884118
29.9555431702
30.6412472823
31.1742207591
31.6060218286
31.9580339761
32.4677460243
33.1507641976
33.5607278869
33.777830935
34.3176131992
35.289218423
36.2394497431
36.8235580115
37.069609599
37.071795666
36.8935408633
36.5727148235
36.1220325528
35.559630957
34.8170391661
33.7076117544
32.1955271537
30.3714051183
28.6151848732
26.9226879963
24.7577611757
21.9572915724
19.0369940358
16.4065634651
13.7543144459
11.0022370263
8.53522436065
7.81436638728
10.1263741428
14.3001521379
16.898408619
16.323061073
14.1051275059
12.3380521973
11.3991681177
11.6264257829
12.2530902413
12.1976879742
14.4062840234
13.8971431726
15.8797235094
9.7723886755
12.8500053238
4.79734474371
3.18498750709
2.58656188418
3.2472408955
4.54389165267
4.59858492566
4.65659599499
4.99550692264
5.55363362036
6.32423103149
7.29033203199
8.4331317294
9.57815818161
10.6118566542
11.6100043566
12.637467044
13.8017354692
15.0310177142
16.202929421
17.3451730451
17.8149259747
18.1003325411
18.7043432959
19.6661269531
20.9437521796
22.4171960923
23.649016919
24.739873585
25.8233546112
26.9197171652
28.0260693986
29.1288920378
30.1398822546
30.8190507267
31.3435254173
31.7993865305
32.092445682
32.6359717798
33.3438892767
33.7265894348
33.8473246011
34.3655402862
35.6973425098
36.8505376826
37.3620455353
37.5629947616
37.5158411926
37.2769433709
36.9143677029
36.3541983141
35.6715905938
34.9744894377
34.221468293
32.8395128637
30.5929796752
28.9121381701
27.0678961628
24.533295441
21.7881356438
19.0255362048
16.2680477241
13.6269461491
11.2520601485
8.88109636964
8.30057309971
10.4565214489
15.3441348651
18.6537712339
17.1227285812
14.7429597358
12.6700983616
11.9139869471
12.3603283301
13.5579352678
13.0173629939
12.9509015472
12.5056752408
11.3868453255
9.60475547148
8.11382272622
4.19286561507
3.34712571325
2.99206117716
3.52534791398
3.9143381621
4.58938891357
5.11754495905
5.17213392377
5.43734526202
6.2152428015
7.25946218858
8.41510254276
9.57906448561
10.653847405
11.6505411021
12.5345427541
13.60353725
16.1141892882
18.135338568
18.7738708496
18.5618509411
17.9069231361
18.4326165471
19.7628575323
21.0846404623
22.3631688376
23.6431288616
24.8186263525
25.9040006869
26.9815059636
28.0801495094
29.1574437461
30.2386466769
30.9070894638
31.2556570974
31.9387500577
32.2533498168
32.5775988117
33.4159784908
33.8561113019
34.0465545337
34.5794262873
35.5226851322
36.4422934001
37.0255660962
37.2964555853
37.337922269
37.1923910668
36.879208464
36.4017318916
35.7778331535
35.0020239336
33.9622290573
32.5382905219
30.9301172383
29.2220739248
27.0194023218
24.4627954968
21.7639999582
19.017433282
16.3030286896
13.7052849372
11.209252858
9.39844367911
9.57757194139
12.6963549496
16.3756681175
18.117935254
17.9279431975
16.1645691232
14.3920790051
13.6622003454
13.5646279719
12.9021817985
12.343277096
12.4060117815
12.1624703208
11.2673446153
9.68874021606
7.25191229412
7.47060208227
3.47882489147
5.62794170549
3.95037804701
4.14668059021
4.89993901905
12.0029830927
10.4549709901
5.91097760621
6.16411851846
7.24097640884
8.43010782174
9.61652719852
10.665717498
11.6557802844
13.3264326256
15.3897878355
17.1536564243
17.8604125493
17.3642218302
17.1305467649
17.7640698806
18.6533034191
19.7663360204
21.0753949781
22.4297074534
23.7333778804
24.9306164689
26.0013729551
27.0885218389
28.1345481616
29.2982671546
30.2339466978
31.103742395
31.425408121
31.6114864063
32.3083113935
32.7184077014
33.1516997391
33.7268191378
34.2545517909
34.8757659342
35.6928304175
36.5026682531
37.0819472247
37.3897163423
37.4656774747
37.3460888025
37.0520202977
36.5921300675
35.9709420006
35.1675619259
34.1159403814
32.7707233711
31.1823473173
29.321958883
27.0751876918
24.5081370904
21.7959969746
19.0587517573
16.3923494212
13.9114332759
11.8546278679
10.8365244359
11.1653192431
12.7573838823
16.8763712689
19.807944719
19.6932732789
17.8597813206
15.3922440197
13.7058500427
12.8701715997
13.0547642056
14.5531902752
14.5556460093
13.2938305634
13.22559591
16.5897270504
12.9518142778
10.9366513062
5.91380055361
7.74347132685
4.85664536164
5.18087314751
6.87163614951
11.9062670087
8.60560409737
6.49028776708
6.69349530851
7.45136935133
8.55986571523
9.75526267888
11.2223117741
13.3902050018
14.51446436
15.1373056834
15.5445021412
15.8453987664
16.3543860319
17.1618122108
17.8753195748
18.7106248491
19.8509184766
21.158334928
22.5190134964
23.8437555117
25.0226224301
26.1826846164
27.1782576786
28.3437230855
29.3331178346
30.667910637
31.050307069
31.1594127404
31.655997853
31.9979451653
32.5683487586
33.2340078399
33.8826444003
34.4928384339
35.1459161696
35.8945113173
36.6285260528
37.1937451483
37.5266513754
37.6341738467
37.5414185813
37.2692895074
36.8283398162
36.2166867905
35.4106940899
34.3666721155
33.0536379096
31.4604855038
29.5310926311
27.2223499371
24.6329064471
21.9308303351
19.2546882823
16.7428235353
14.5944239704
13.1393945526
12.7055502309
12.6702806596
13.4707700509
16.7677034604
20.050200089
21.0622725
19.7048956183
16.8264986954
14.2416923565
13.8443545385
16.1318604829
17.0296909091
16.0269492771
15.1543188215
17.8931174587
20.957749601
16.2035692774
15.3076604092
10.1806535531
9.3794669507
6.05921963867
6.52384980322
12.2014233914
11.7214240649
7.27437484212
7.14290919151
7.35184419904
7.80750425959
8.77456095373
11.2845257669
14.3442510592
14.9343735448
14.8348567779
14.3794537976
14.5268301663
15.2685932651
16.396674975
17.1063807802
17.7915008672
18.7742523754
19.9725944021
21.2978327223
22.5997182949
23.9276933906
25.2864442443
26.2706974904
27.5475647548
28.3923220282
29.902634221
30.5073349683
31.4625831504
31.2926463617
31.2557890982
31.8198764482
32.6047398386
33.3783554215
34.0859395347
34.7465475924
35.4201665967
36.133448039
36.8185650877
37.3681765802
37.716405296
37.8504938572
37.7841498155
37.536488708
37.1187873838
36.5265901312
35.7363186569
34.7109612598
33.412287361
31.7977414163
29.8171923235
27.4805014447
24.91255709
22.2867207256
19.7674007011
17.5410004308
15.8420205442
14.9570437984
14.8823505456
14.1263531054
15.4980917571
18.9168465148
21.5801989056
22.4689523221
21.3031025348
17.8095779729
15.4899329803
17.1931302809
19.3623206445
18.8242301228
17.8489090442
17.9503783171
22.6276945627
24.2557411752
19.1737332086
18.9760128209
12.3365113065
9.39254753402
7.35451305454
6.8971684819
12.2057835188
8.89134492837
7.63093786402
7.78599080679
7.97205117471
8.7162327957
9.3295088074
13.8952105834
14.742575603
14.9484325426
14.0059720355
13.5447651642
14.1930343154
15.6149827073
16.3145262815
16.8464225005
17.7877552773
18.8640429319
20.0659849406
21.3867410332
22.8212213208
24.1966985918
25.2979612144
26.8430685224
27.6393375697
29.2208256042
29.7150690871
30.9281940128
31.0697192842
31.1131155895
31.1573924447
31.8144907771
32.708918436
33.5582629259
34.3127671172
35.0128508637
35.7076625167
36.4076132212
37.0653396317
37.6035078895
37.9621162388
38.1184806851
38.0784354431
37.8591329472
37.471681621
36.909915988
36.1486138486
35.1480989058
33.8594891224
32.2309925617
30.2352645419
27.9260229656
25.4520549918
22.9949171302
20.724679185
18.8178030674
17.4856912286
16.8012190533
16.3162550196
16.1950261953
17.5924361901
21.7960719339
23.2642930648
23.0533536804
21.672861518
19.2309829322
18.7650899976
21.1499360219
21.4827405442
20.6174667605
20.0231247774
22.0575582559
24.8918112611
26.4234250648
21.770256267
20.6201407813
12.1356817777
9.2166423148
8.5533164535
12.4684058627
12.3989787922
8.18910004363
8.33757495296
8.53017762266
8.63223945174
9.25953220899
13.5793439404
14.5775249965
14.8270874647
14.5711177329
13.0537611012
13.2187075675
14.8162728365
15.6905335879
15.9957359441
16.7136281142
17.7970841436
18.9895340882
20.2279645365
21.5915927108
22.8942563539
24.452208608
25.3429586968
26.8482250729
28.5356315362
29.352959424
29.476916583
30.5149709066
31.0793117414
30.7690037656
31.1782078778
31.9664778598
32.8727617272
33.7541693921
34.5545088203
35.2953637793
36.0151883383
36.7178318601
37.3651048839
37.8981589891
38.2656660058
38.4423226419
38.4300226135
38.2443541434
37.895446451
37.3750443118
36.6546228281
35.6887450723
34.4221299918
32.8098621085
30.8572029334
28.6558683576
26.3647258737
24.1376464691
22.0930642474
20.3824645843
19.2030949583
18.5700746181
18.3252200157
18.5123779567
18.4895957131
22.6398031343
25.4380870852
24.835077036
23.8453281928
22.6053818561
23.0946003642
24.1914845893
23.3567639304
22.607046006
22.7998885759
25.2258119361
25.9831247275
26.6533663353
23.7512333832
21.5899422862
11.5276028951
9.28408860948
9.24756476402
13.4944902057
11.5668810969
8.93754450201
9.10773181966
9.43440732594
10.4813404044
9.43108720067
14.3431990085
15.1381597534
14.896698054
13.5323760215
12.8137415857
13.3396418465
14.8492952148
15.4447053677
15.8866198497
16.7064176025
17.7747440949
19.0227261174
20.3449377496
22.0444108583
23.4978458147
24.4138948036
26.3560316297
26.7855766282
28.6440320331
28.9937722116
30.2701156925
30.0361028957
30.2638486557
30.7168836528
31.3523353597
32.1698977109
33.0701730831
33.9687733667
34.811736992
35.5978013058
36.3489334579
37.0654244997
37.7155619946
38.251316935
38.6292080124
38.8268075096
38.8458448009
38.7004798571
38.3990792031
37.9314495846
37.265894194
36.3527255305
35.1379781978
33.5960429004
31.7684510063
29.7696036529
27.7255557837
25.691384146
23.7219937584
22.0817978916
21.0946674962
20.7815756006
20.8304564058
20.8536366882
20.6348796795
21.1411924414
26.1540526054
27.1854094842
26.6163844195
26.7106181815
27.2762665891
26.565093257
25.3232321131
24.9964259359
25.9840312069
27.2829277247
27.2528720655
26.743511226
25.7717672784
24.4187715821
11.1465458074
9.83312634153
10.3946428128
13.6162433749
9.91350964904
9.97253215623
9.88241878396
10.1794434931
12.9931151708
11.855215103
15.1755220716
15.449203684
15.0276304803
13.00953016
12.8903460167
14.4215550027
15.0374506418
15.2234539355
15.834245928
16.813173856
17.8712340088
19.0632093911
20.2449926987
22.1385049399
24.3092876767
24.3535692605
26.2771417381
27.8017210997
28.8260162229
29.7977773432
29.7699115505
30.1705741222
30.0481337578
30.6552216778
31.5164912432
32.395677002
33.2961325412
34.2049332215
35.0849583309
35.9201534359
36.7121521148
37.4533312116
38.1166665624
38.6630179091
39.0560836289
39.278069066
39.3335828187
39.2364681649
38.9926677592
38.5905920876
37.9981296947
37.1666137306
36.0527564651
34.6591445002
33.0579456035
31.3474398091
29.5355575529
27.520708163
25.493076049
24.0953303175
23.6388830037
23.7868498746
23.9546781909
23.7612831842
23.1741184362
21.685487754
20.7472122803
29.3062369365
31.4819562148
31.7638789609
30.9541661625
29.0101998923
27.7124088599
27.7788230101
28.9272225281
29.3858549052
29.3488104651
29.2526573753
29.7216759599
29.9847805801
11.2846118693
10.7599577926
13.6680709182
13.9020517091
10.188626459
10.7766936877
10.657958375
11.0801856375
12.6707562909
15.1880282424
16.0715712175
15.7888055164
15.3522255651
13.1481366855
13.0631766721
14.8747097993
15.1572762185
15.2096691751
15.833218989
16.9020489659
18.1573909531
19.3831640934
20.3684011843
21.7514086834
24.4261938881
25.8233547858
25.9930707438
27.8581223229
27.9902527161
29.7762151764
30.5084405305
30.1551560361
30.0421380222
30.7564021063
31.703722642
32.6293450799
33.5450990452
34.4667965543
35.3769030038
36.2615214251
37.104881597
37.8831123313
38.5698598952
39.1348579567
39.549919555
39.8033298835
39.9030774033
39.8627841924
39.6869572295
39.364987084
38.8690246462
38.1596862213
37.2152432381
36.0704558354
34.8030392434
33.4122700582
31.6886197046
29.5201673625
27.6216824454
26.9845469584
27.4584468165
28.0229846423
28.1855910713
27.7247444825
26.6379596608
24.7142439028
22.1400728551
21.9094710055
33.2993502724
37.5534347504
35.4763202205
32.2784009186
30.8154397422
30.9192299616
31.619713586
32.1387277227
32.8877506638
33.8108067577
34.6189659906
35.4141912577
11.7717517306
11.6963086981
15.3486966167
14.7357831123
13.0195778236
12.046772752
11.6682739925
12.511783625
12.3059033724
16.1683831906
16.7997599529
16.2131603083
15.563372197
13.8664948817
13.8123213601
15.299211093
15.2128386239
15.3018622702
15.9206598343
16.9064310851
18.2468255836
19.7989452668
21.5532318031
21.8078613837
23.916597875
26.1206728158
25.913009577
28.020496546
29.2116813128
29.1639548238
29.8179467955
29.7617776505
30.2915193717
31.0452657851
31.94328948
32.8816639552
33.8193086705
34.7605181035
35.6941896625
36.6201450424
37.5229393799
38.3558733849
39.0781202288
39.6694389303
40.115352532
40.4108602455
40.5654679039
40.5915392439
40.4938112715
40.2668491464
39.8941240958
39.3581632031
38.6709452365
37.888189339
37.0267476483
35.869315183
34.1048858209
31.9910641974
30.6079035243
31.5416169817
33.927610199
34.6055737304
34.7127576085
34.0816820407
32.7316044038
30.2984756449
26.710636741
21.8878096031
28.6153750237
38.6597062779
40.5185927092
36.6917419093
35.0590474606
34.9351961181
35.1867281426
35.6911624896
37.5129971307
39.0695084805
39.2949338869
39.7035212967
12.4568789588
12.3954639597
15.1781164474
15.3148957175
15.3764928801
13.26697843
12.8032281809
15.2463137254
12.7975259401
17.037427528
17.3567050005
16.642541803
15.7616918955
14.555390421
16.1542236826
16.3183302395
15.4579030029
15.5339839458
16.1440689133
17.002481112
18.1617069276
19.766701328
22.6615756682
23.6971222063
23.4397295755
26.1025760416
27.3044197163
27.6063454095
29.1286595723
29.9451448603
30.0580571162
29.7995718043
30.4709561109
31.3418071234
32.235097041
33.1666033357
34.1134286298
35.0841638616
36.0553872097
37.0128029771
37.9636957295
38.8620539016
39.6404533538
40.2714386952
40.7585148299
41.1097289828
41.3333713378
41.4365378243
41.4251907731
41.3050515298
41.08254304
40.7793612704
40.4473184489
40.1179875324
39.6290527536
38.5777525712
37.3199544454
36.2561337306
34.8600830079
37.4833515765
36.6317087273
34.6116772266
31.896039386
28.7906785465
24.2612083038
18.517715774
15.334733954
0.283814128808
0.0119828737506
27.2065067815
36.4835878584
36.5269628792
32.1450035232
31.5769347525
33.8172485779
36.6433419329
41.4545339468
44.5209317002
44.8998504009
45.2789210943
13.1903168103
13.1430415153
12.7939904198
15.7000983672
15.9784620246
14.1208046166
13.8129671712
16.2973011541
13.5394592745
17.9498284682
17.8664919954
17.0831113993
16.0503082618
14.9251836074
17.2796042772
16.9800325609
15.967129809
15.9519424446
16.4823917365
17.2688605063
18.1952810142
19.5975244878
23.0755198392
24.7251035171
23.7366713504
26.0197568785
27.7396620398
27.223650435
28.7031658945
29.5727807922
29.4368810348
30.1000597348
30.8635083642
31.6873512693
32.5577838857
33.4968419788
34.4541152997
35.4262136097
36.4380038127
37.4526542319
38.4493895659
39.4038499995
40.2481784327
40.9386724364
41.4852148531
41.9107635728
42.2209273523
42.4113862045
42.4910604585
42.4840211119
42.4323395134
42.4229665454
42.5344774902
42.6669171409
42.3317784043
41.6515752365
42.0712651214
34.5542896728
26.6552798536
5.47144842795
2.0774592052e-10
4.21885169227e-14
1.46120846136e-16
1.49083867058e-17
1.18306876438e-18
3.33246601634e-19
3.9225632423e-18
4.007891027e-17
4.5273361396e-16
1.18249840498e-15
1.96363076797e-12
5.15443467678e-10
4.70350308213e-07
0.000243634601553
0.615788784961
38.6740405864
43.3206018391
48.1093194449
51.6543059911
51.9784568062
14.0982039554
14.1998819758
16.3537727258
16.4069004303
16.4990577217
14.8487766179
14.8812306941
17.2167128052
14.5990234265
18.7584058239
18.3625678577
17.5486910193
16.4173416718
15.349672931
17.5977357139
17.2717198307
16.4636783167
16.433811187
16.8714471272
17.5716399886
18.4075502356
19.53876727
22.5423446914
25.4839051819
25.7798421205
25.4433146129
27.8786022679
28.9758426733
27.860909475
28.3975312393
29.3511436376
30.297580613
31.1897879854
32.0487235607
32.9312719935
33.856696505
34.8280002129
35.8282513234
36.8508795848
37.9170071528
38.982490461
39.997207751
40.9042351665
41.6648881864
42.2951823284
42.8221136834
43.2420069573
43.5349061009
43.7028745658
43.7945475762
43.9277437812
44.2675461495
44.8563681821
45.2318237077
44.4435645499
42.6243160266
27.626189872
4.95513054651e-20
5.45012975348e-23
1.02170449449e-24
1.73185913412e-26
5.01069817055e-29
1.42393104272e-31
2.46479768367e-36
1.92797206105e-36
4.68067281924e-36
3.15514354885e-35
1.4778516229e-34
5.45919127194e-34
3.4692307397e-33
2.71633022543e-33
2.35656415469e-31
1.34127876162e-28
1.34827136044e-26
1.02311020502e-24
2.35597557746e-22
3.96584826756e-18
38.5813142643
55.721881559
51.2626758226
14.9535307416
15.1494044113
17.9902534774
17.154944443
16.726398701
15.5680873399
15.9066991238
18.0169095866
18.0004644242
19.7679074735
18.9318426228
18.1111460194
16.8735761445
15.9083486915
17.9336517643
17.4841608393
16.9201970656
16.9149184673
17.2712519729
17.8791902285
18.6647434909
19.706793719
22.0528546372
25.6871559547
27.0523800174
25.2494689824
27.3067114951
29.0391725611
29.2880729265
28.7103456192
29.3660461032
30.4622874966
31.5023727996
32.440115921
33.3083295661
34.2458858378
35.2271733479
36.2590667369
37.3175167557
38.4190389494
39.5526520636
40.6454863665
41.6164336519
42.4417612197
43.1737636442
43.8568032233
44.4392983549
44.8372300123
45.043603548
45.2119369069
45.5634307405
46.2832234229
47.3372745282
47.3028521114
39.1976046849
16.0462572788
2.7401409716e-26
1.10962485851e-28
3.20885546679e-30
4.67150535061e-32
3.79549937907e-35
6.33315444256e-38
4.46426963149e-39
0
0
0
0
0
0
0
0
6.20903774276e-43
2.09417988879e-40
3.13244674211e-38
1.81734528594e-35
2.53838535725e-32
1.37460054716e-27
2.08749687222e-23
1.62749251999e-16
61.5924755111
15.64594109
15.8634266337
20.074789919
17.7425939711
16.7169738277
16.1934674603
16.6465078914
18.167599349
19.5690110606
20.9101419961
19.6506958945
18.8072363529
17.5752004581
16.743406116
18.4729761235
17.8388483605
17.4420319283
17.4338664562
17.7049362864
18.2207543068
18.9265811636
19.8886586809
21.8253491961
25.5098961273
27.9795813665
27.4392929818
26.7703174043
28.3524590262
29.0928703723
28.8091661875
29.7343194773
30.842002701
31.9303576155
32.874650197
33.7722470792
34.6732365044
35.6723809753
36.7210878173
37.8225114113
38.969865358
40.1580262216
41.3345630724
42.4028449421
43.2979784889
44.1356511936
45.0082765541
45.7957299483
46.3022614121
46.5346069289
46.7634917639
47.3337042892
48.4892556378
49.6992300449
37.5737663203
0.0522777361593
3.96709598873e-29
1.30103475362e-32
5.26084721053e-34
7.17300680263e-36
1.96703340691e-38
0
0
0
0
0
0
0
0
0
0
0
0
0
8.00034442233e-42
7.95008207046e-41
1.74283024334e-39
8.4507428509e-38
4.69289141845e-34
3.90619203e-25
7.52981564864e-30
16.1724403201
16.3825346954
22.070247891
18.1868237439
16.9130059982
16.7560827494
17.4316879169
17.6676529547
20.4880975117
21.7221774064
20.3337187536
19.5103063634
18.4579653049
18.523154414
19.2306891248
18.4308417526
18.1523993608
18.1377963477
18.2430330005
18.6441849392
19.237302141
20.1124462421
21.7691713019
25.2928635055
28.3265511332
28.9999707365
26.7502845101
27.410243276
28.0497327536
28.8464012319
29.9810698304
31.2442107648
32.3548246199
33.3547616831
34.285343313
35.2389652742
36.1810319175
37.2419932232
38.3705170302
39.5510788951
40.8214106552
42.0962868877
43.2556382266
44.1820116778
45.0765020921
46.4295385883
48.0152401203
48.7490062102
48.4604603368
48.5640046224
49.2546028703
50.5790578934
37.1161491525
2.09931624435e-23
3.16394457986e-28
1.41939528468e-39
1.43431651895e-36
2.34040928614e-38
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1.23602813098e-40
8.37017834868e-40
1.54353028385e-37
94.6659105889
16.6057192341
16.7828312621
21.9364211708
17.7174196269
17.1485110356
17.2303655554
18.3119702869
17.7344290989
21.2704462285
22.4636379544
20.9663842536
20.148840592
19.1421638353
20.6148104534
20.2606755633
19.2167827949
18.9671101716
19.163807393
18.9977225864
19.2325203762
19.6430053146
20.38320203
21.8456723495
25.0618069294
28.1304505934
30.0212409456
29.0906974136
28.4967211478
28.6968842342
28.9793208125
30.1746443527
31.7324492945
32.7630165696
33.8474765365
34.9742184648
35.8224201382
36.7725429284
37.8530640951
39.0164039083
40.2270406682
41.5037886967
42.8606108039
44.1655119302
45.3854599703
46.6825626463
48.3697392115
49.9096386348
50.5094332249
50.8552370017
51.0857022493
51.3389876746
40.5823895208
9.54687114356e-23
8.71438690926e-28
1.14535145309e-31
1.55560680497e-33
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
3.80323863326e-40
2.76820101458e-29
17.0817228193
17.2342282834
21.5992218167
17.4386096246
17.4368250624
17.6068484792
19.0640655874
18.2089543839
21.9623873408
23.1858522608
21.5797812838
20.7662101963
19.6967210805
21.375929177
21.1999545979
20.0494531596
19.7594454299
20.0453731969
19.8947580553
20.0314217793
20.2363697958
20.7139114309
22.0787211193
24.9632775712
27.768746327
30.2413215488
30.1989228437
29.0841091
28.3422684267
29.3620486304
30.5388901471
32.0742977928
33.4299646099
34.6659994937
35.7506749342
36.5191740187
37.4469884605
38.5450500031
39.7418119351
41.0046974094
42.3180265481
43.7684589135
45.3407837033
47.0085665142
48.3370490252
49.4028429502
50.7967961939
52.1287479733
54.0709945418
55.1382458769
44.7869414959
8.69905615609e-22
1.15506858474e-27
1.99185655424e-31
4.08540036817e-34
9.89154016167e-36
3.3202542747e-38
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
6.39147043706e-41
8.45649917185e-41
17.7809993923
17.9326784225
21.3092611109
17.7166717195
17.9611463201
18.0683354317
19.105085318
18.9028726886
22.4720888209
23.867630356
22.2118922388
21.4141583903
20.343908234
22.0474562041
22.0240709518
20.9379306384
20.5835601558
20.8871341743
20.7642726953
20.9637147129
21.0791701589
21.193684544
22.5024139065
25.070445172
27.5483061363
30.2220305418
30.6980648149
29.8825446035
28.8393713847
29.5018175504
30.9795496291
32.2188549431
33.491378571
34.9122029248
36.5887043333
37.4987732545
38.3554134179
39.3491838131
40.5233585232
41.8649197278
43.2932612571
44.8782677753
46.9257028956
48.7448177174
49.5797705932
50.5788966432
52.5505062173
56.1385230667
62.0526457778
49.4066191809
2.48534743598e-22
4.1285984593e-29
1.70851058824e-33
5.60164550726e-37
3.51473214748e-39
7.1240772281e-39
1.093992426e-39
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
4.72412337794e-42
2.14508561298e-41
18.8455429226
18.9614878478
21.6164455194
18.6065497661
19.055444313
18.8826761157
19.4273028505
20.1455117575
22.5668795981
24.3841964001
22.891383539
22.1163889976
21.0816102241
22.8115471084
22.8662522536
21.9657588726
21.5635461825
21.8533384544
21.6350324233
21.9781985852
22.205040388
21.8747263932
23.0112514566
25.3909363991
27.5318289933
30.00794928
30.8760182589
30.5454181079
30.6166872928
30.257825723
31.2424318345
32.7876970859
34.584785877
35.4462521475
36.8869726968
38.4488265988
39.3899582983
40.4317237152
41.5301061434
42.8135128332
44.3751607894
46.5189961104
49.0402300152
50.2881141854
50.7549491521
52.3033816365
56.4428535145
62.5786776
55.9177947875
34.2707994402
6.25504952697e-31
5.83994162485e-36
3.99588057446e-38
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
20.3403872351
20.2404890299
22.4263976239
20.3937472705
20.9078555056
20.0846794982
20.3344307238
21.9412642787
22.8023572248
24.9891354348
23.6676484976
22.882286302
21.8841585859
23.6071169337
23.7004424412
23.0907998993
22.9815180873
23.1126522621
22.5945777414
23.0702423672
23.6013499545
22.8335270931
23.4055141606
25.8023388718
27.7270131287
29.8208022856
30.9477920933
30.6705542105
31.7256340502
31.733421021
32.1491207549
32.5184373355
34.3675554699
36.4783320564
37.7706866106
39.1904214115
40.4218810869
41.5189658244
42.734390263
44.0454107363
45.917852639
48.853468448
51.1337897107
51.9609835166
52.922185198
56.2623743923
63.1887348919
59.1589523754
34.4518919368
5.58211456432e-33
9.75871445515e-36
4.4683909222e-38
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
21.9131501584
21.4291320954
23.2827187506
22.7611025853
22.5293257321
21.4551330432
21.3105735714
23.0097980467
22.1181647139
25.4553480851
24.5230039026
23.70223318
22.7386227072
24.4013317765
24.465680647
24.0212262645
24.9025064318
24.6140190245
23.6529093788
24.2479438212
24.8436330482
24.0414186503
23.5432188675
25.724275289
27.8193405801
29.6493514523
30.904662564
30.6497903497
32.0449383013
32.9250407137
33.4706982148
33.1989718575
34.4184873961
36.3859474268
38.5888045497
40.3351604244
41.6727956622
42.7667191948
43.9805351495
45.6044190716
48.3688811517
51.4979518347
53.3992491974
54.5895613278
56.961600089
61.7828302996
60.8957108404
33.5308381714
1.50303270112e-32
2.17595694611e-35
7.62062100395e-38
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
22.6550626915
22.2209209738
23.7950310908
23.7341336475
23.5061343034
22.7204958777
22.3990860347
24.2836261083
23.0906322522
26.0461247786
25.3829811468
24.5487673257
23.6381754692
25.2042690735
25.2144776066
24.7724824792
25.8038429548
25.6455071615
24.6302040106
25.3584584807
25.4998644678
24.7593305113
24.387516851
24.5926342229
27.1406628428
28.9670383294
30.5212248398
30.4414501371
31.9682729447
33.3609973096
34.5309622157
34.8312647038
34.7624465981
36.3344041843
38.7193442851
41.1314889783
43.0322809642
44.3908287847
45.5992027547
47.9988407781
51.4186335496
54.2872271755
56.0111307686
57.9713559267
61.6160048113
58.2816413355
35.8217880674
25.5642097939
7.1526274306e-35
2.03710532207e-37
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
22.6559399679
22.6569624887
24.0541366834
23.8682411195
24.0744776502
23.6652467062
23.3186476273
25.5305601337
24.6507350331
26.7810757778
26.2806752011
25.4043374669
24.5772929123
26.0309925628
26.0069966282
25.6227480969
26.5265851678
26.5084889225
25.6113613807
26.2641676444
25.3436916319
25.3815894218
25.2580397762
25.4739087728
26.2275348942
27.3320691742
29.4013955515
29.9265879809
31.359060388
33.1927398776
34.8173721141
36.0410533792
36.1365689583
36.9892719611
38.8316096427
41.2731543755
43.911751382
46.0808672067
47.8942944339
51.0979860507
54.5826314592
57.0600511471
58.582157877
60.6035509453
56.3979751913
38.0327337857
40.0089906793
2.48450498747e-34
5.56552358683e-37
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
22.7755061543
22.908203436
24.2332281783
22.92814088
24.2503572126
24.1268604997
23.8840364094
26.0503995378
25.3899917821
27.4907359331
27.1806899671
26.2331698596
25.560559613
26.8687597379
26.8212114915
26.5911060299
27.3440626148
27.4772465391
26.7201960101
27.5464378545
26.5531483634
26.8290684723
26.3814775449
26.6616627582
27.8235375174
28.4175081939
28.723027715
29.283254262
30.6198851514
32.8184292594
34.5046333002
36.039458988
37.165683644
37.9013225054
39.8702465441
41.8473816399
44.5785290043
47.6120688567
50.6898970634
54.4922437504
57.7031435194
59.5987215948
59.7018484406
57.7711196632
58.0249212753
35.4063214786
2.08481325996e-33
4.74617940202e-36
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
23.3080989619
23.4068993187
24.4050795448
23.1764612603
24.3724421343
24.3119288173
24.220335675
26.1437822077
25.8449687624
27.9696698129
28.0250275197
26.9747284779
26.5730315639
27.6641049666
27.5687860768
27.5082912767
28.1155341901
28.5145973679
27.8733938282
28.8571324198
28.1924462539
28.6941524995
28.5603278807
27.5625747688
28.4921975872
29.3304788351
29.5398385754
28.6930057476
29.7480957715
32.324829411
34.2544697243
35.3884896264
36.6847647352
37.8986968297
40.0251348491
42.3181065948
45.3009777313
49.1164909076
53.6652213224
58.049022214
60.6820313472
61.3959923841
59.940935587
55.2690336015
35.7967893034
48.6984192865
3.30732439285e-35
1.34112739438e-37
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
24.0017314899
25.0220827601
24.6927751975
23.9364621055
24.7309285162
24.5224084949
24.509231923
26.1753946314
26.2263121997
28.086453791
28.8052014455
27.5879149065
27.4273730634
28.2610825547
28.2171383012
28.1478821429
28.341488285
29.4163955608
29.0545233513
29.9622241989
29.9249603119
29.887331887
29.7931814992
29.4200228055
28.697043611
29.2625070068
30.1107677402
27.7726794228
28.6814656662
31.1589962764
33.822302728
35.3903199163
36.7526801902
37.3664453506
39.3958819681
42.1486621676
45.5791912713
50.4595674631
56.6631943485
61.5699565863
63.3590875042
60.6205952844
59.2679741752
62.5813088673
42.4402356988
2.24173447481e-34
5.72144557643e-37
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
24.449110208
25.5194142468
25.1705403871
24.5712502163
25.1999763579
24.862101367
24.8279223716
26.2460636557
26.5651006479
27.912307584
29.4483486368
28.1211011018
27.8590431515
28.6795498676
28.8600192147
28.6542164476
28.4508117635
29.9984713823
30.2201365539
30.8772911393
31.0588857274
31.2987546268
30.2705442254
30.2703786812
29.7055177149
30.5132429155
31.0226281144
28.760526297
27.4589281694
29.3996743957
32.362356414
34.8385935237
36.410598055
37.1955337387
38.2496233914
41.0834848565
44.9611434639
51.3107771455
59.5059323909
65.1832505427
65.2303220442
61.6429703149
55.5198801177
32.0592941588
53.6479926475
6.60984640387e-36
2.22128377069e-38
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
24.6720784411
25.6422344778
25.5181094629
24.9080802877
25.6098293088
25.2858393304
25.1776869398
26.4185909886
26.904260375
27.3386477103
29.8020668795
28.6460367006
28.071719455
28.4754115123
29.4656430244
29.2220411996
28.8160211925
30.427002149
30.7909071243
31.5682721531
31.8530639298
32.386535132
32.5737012363
32.578277042
32.1671425698
31.4883781141
32.1424976639
30.0865813732
26.596698884
27.4087255579
29.4152007303
32.4580115783
34.9980532533
37.1029735086
37.5719023023
39.0241819469
42.7236992244
50.7511986022
62.0076650635
67.8127952028
65.7823111095
67.1892763031
67.434332327
35.5047770378
9.47052759149e-35
2.58942621559e-37
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
24.8231980477
25.687547569
25.7096465646
25.0196321223
25.8933812351
25.7567107823
25.4917086536
26.6361361903
27.361533016
26.6080737086
29.9295552341
29.220203071
28.3996673813
27.8794643189
29.96179845
29.82096036
29.4236232801
30.970130701
31.145985403
31.7796174582
32.6267329687
32.2670496291
33.7962408588
34.3199663381
34.3190656263
34.1057005757
34.0010143773
32.8855697382
28.048380204
25.8765533435
26.8915462579
28.7003568379
31.5582984927
33.908369098
36.4531326052
36.9916270829
38.8223405844
46.2775230657
64.6420558029
70.4931660195
63.8228421718
60.5797017393
68.4019715914
63.2834591333
3.21317929649e-36
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
24.9024163128
25.651674014
25.402488234
24.9648435282
26.0367753657
26.1307388798
25.6651622044
26.3674844809
28.0021041519
27.2446678118
29.9359337668
29.8497469628
28.9285704682
28.2935009085
30.4638133104
30.4194454836
30.2899650925
31.7080156287
31.7619246172
31.5880490464
33.4742095623
33.3676367702
34.6735782025
35.2771758938
35.8069484468
36.3431895109
36.6363163212
36.4753027369
33.8089993657
27.1932845029
25.8228106379
26.238870119
28.4956858906
29.9913107555
32.1304929414
33.8135552823
34.2616998826
35.9059403048
59.4330529049
72.4972157874
72.045196855
60.5330068256
18.8402624361
54.89309918
2.64530118443e-37
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
24.876159301
25.4987040258
24.9183483581
25.0252641173
26.1476249522
26.2021763014
25.7433217877
25.919672978
28.1530653502
27.8993008476
29.5366554591
30.4703706389
29.4815921743
29.2022987095
30.9471174037
30.9509533707
31.2579620121
32.3655723652
32.6484022681
32.5053593617
34.2831938185
34.6587053757
35.6845936267
35.9876593182
37.2997308787
37.9725704344
39.0953973805
40.0527757378
40.4645113239
35.8124756355
28.6642875242
27.2146240119
25.7169685564
27.2695751728
27.9450656414
28.1633966249
27.2098550577
20.8727221282
31.1449680888
62.6504887311
80.0118336884
83.6345781796
44.4376384652
6.57878038918e-36
8.05803225535e-39
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
24.8124304864
24.9599395009
25.1827121964
25.8104987978
26.3157311156
26.2414229165
25.8735076936
25.9160925595
27.7476386821
28.1757790182
28.9333603447
30.9072915325
29.9017029546
29.8293218079
31.0823503897
31.3632711835
31.5026617713
32.5395275484
33.409512958
33.6733742058
34.987439428
35.51593697
36.4106042444
37.4830494136
38.5674862889
38.7969278188
40.6894197179
42.2592003716
43.9621254004
45.0883445359
39.8809500635
32.3824041138
29.123720196
26.335600938
24.7163477706
22.7658937085
17.0288480654
13.520162767
0.155771395965
0.0256114317701
57.0385708366
85.1910644203
76.152162803
4.91657938797e-37
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
24.7188073131
24.814858964
26.4139859209
26.391347652
26.3175318064
26.1970182608
26.0528302155
26.0544001235
27.4887385138
28.4545700708
27.9194312758
30.8106539343
30.24740787
29.7695731679
30.3553245493
31.6749607029
31.4800885806
31.5869253922
33.7662422497
34.0455329724
35.2009598016
36.3211512196
36.2550178182
38.6697275677
39.658668437
40.999101855
42.3340042164
43.8898128843
45.986965229
48.3270733928
49.8449685281
45.8326141864
40.3475703384
35.5006976852
32.7292264005
31.0618921173
30.585772306
31.4457571075
20.5477737361
21.1003662957
1.38701267705e-06
38.1880522752
72.3923567731
6.21567047069e-38
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1.88554920931e-42
24.4652705201
24.7002341324
24.9801514006
25.9373859001
25.9757473863
26.0055252477
26.1717650873
26.025472861
27.2457113614
28.5455277662
27.9336296689
30.0694483566
30.7113807355
29.7496970943
29.3306272567
31.8075904693
31.6820648016
31.7076630984
33.8461022291
34.2451914277
34.501590154
37.1197030566
37.3851727079
39.2453697906
40.2677016317
42.4291994559
43.6513230022
45.3441955851
47.5221575356
49.9637484681
52.5620133783
55.3729637374
54.4584871869
52.0087923866
50.2107885308
49.7756161139
50.6587525446
53.2963178717
56.5092444216
63.1882315195
53.6059713547
1.22451533198e-11
2.00260644903e-36
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
4.72412337794e-42
24.0739328218
24.3480903045
24.2494118388
25.3508780813
25.7901100583
25.8130007745
26.0202703186
25.7368109519
26.3748196591
28.1924556134
28.0218167016
28.8550615933
31.0945891638
29.9948409015
29.8118086262
31.6091265037
32.0218749054
32.185715845
33.650519567
34.7158613281
35.1133138858
37.3464266677
38.1860744517
39.5537379995
41.3452912025
42.9193690704
44.7107049685
46.7464987238
48.7070654849
51.3667400771
53.612847686
57.4196254537
60.2684216299
62.8320441115
62.953335045
63.6342602568
64.8567390161
68.6304495865
75.3574129081
85.047216799
94.501017667
57.8860948858
2.70612815064e-37
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
4.72412337794e-42
4.72412337794e-42
23.6707719268
23.9674457542
24.5571646183
25.6982854481
25.9021832185
25.6146674154
25.6218907765
25.2983321638
25.5343357767
27.3115871769
28.030335009
27.1662072804
30.2393404758
30.3911118287
29.7766252202
30.3747230018
32.2339524924
32.1052814457
32.4303265754
34.8240830328
35.3811678166
37.1242650898
38.7324453909
39.0209007988
41.8158975984
42.6810037464
45.6776631848
47.2295748871
49.1847261739
52.0320445028
54.5213501777
57.2167001288
60.0147787491
62.98630833
65.0251193519
66.129308268
67.5546287452
70.3367364489
75.112870445
83.3761921445
99.9852325927
97.7889544835
3.76648518633e-38
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
2.3056667965e-42
4.72412337794e-42
4.72412337794e-42
23.2240450789
23.4819906647
24.8815919076
26.1889825698
25.5410334793
25.1876617631
25.0975181838
24.8513223192
24.920082278
26.4267845262
27.6671744651
27.3784006191
28.4971502555
30.9056996875
29.6854575354
29.4838567505
31.9587582566
32.0939685177
32.3294910444
34.5162110606
35.4434325023
36.1372939306
38.8924610212
39.6744606552
41.8032893289
43.5567108471
45.5219398671
47.2254288475
49.5505808831
51.6746045138
54.0966965589
56.3589622306
58.637147176
61.0131840263
62.9400141594
63.9339962388
63.7111855481
62.5126096965
59.7027992417
59.2647977578
64.6095123765
87.8145490081
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
2.87041611268e-42
4.72412337794e-42
7.57404615675e-41
7.99202413817e-41
22.7200441987
22.8938107495
23.9000062982
24.8162452384
24.7722196599
24.5379867345
24.4549264863
24.4148025394
24.2200227741
25.0089494803
26.596542592
27.248297355
26.3648809845
29.5332639406
29.9122223706
29.1765945656
30.1717337605
32.0315053812
32.0822860617
32.9707129593
35.4080883078
35.9563076465
38.3241250765
40.0136906427
40.4191568152
43.3995169085
45.1529416437
47.50215374
49.2803762647
51.2355714977
53.9997097724
55.9616720523
58.0672212907
60.0491705861
61.1459130623
62.008855155
60.5860822856
57.2815215413
37.8460655638
53.9616398196
1.29055851172e-10
2.98572585497e-37
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
5.87913570192e-41
1.98447268201e-40
2.95770410677e-40
22.2084852584
22.2888465906
23.1651609425
21.9665097425
23.5681039207
23.7725677852
23.7045866968
23.789757805
23.2814853824
23.6343520783
25.2642833989
26.6328952988
26.5675778482
27.293788332
29.914057458
29.1110096441
29.0205432686
31.5589671217
32.0785286095
32.1739934392
34.8564254952
35.8698140512
36.5733718321
39.0744030117
40.5079647689
42.6235953397
45.0586964052
46.9783394505
49.3182609179
51.6416334243
53.8797382403
56.0038603442
58.4343293986
60.6146231992
62.2815569697
63.1500764257
63.5673530656
62.7722384501
55.0637975698
64.3395361438
4.226379768e-07
8.85548182733e-38
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
2.67665844253e-41
9.58902732035e-41
1.34812496265e-39
9.14166628356e-36
21.4904349718
21.5402098017
23.0186070944
21.9263514717
22.5655846158
22.866751249
22.8447301569
22.8532329227
22.4004102275
22.4719849925
23.4378497413
25.1377270526
26.458147631
26.2293700678
27.7126712529
29.4474938955
28.5057303801
28.2862416957
31.5060306809
31.3386512858
31.8058190947
34.8419369443
35.5908368984
37.9272318338
39.9369131897
41.4890424389
44.1886112082
46.4117709885
49.1883994043
51.2091824651
53.8702879681
57.0911696089
60.1125690868
62.7123510044
65.2398746523
67.7200279733
69.7203379498
71.1238958232
76.2902172718
81.4646948234
50.8915446744
2.36085810714e-39
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1.68896160027e-41
5.61430702302e-41
5.38650287861e-39
1.56138863013e-36
7.53953564614e-27
20.3749334461
20.3894372346
21.7924416855
22.2056820051
20.8177029494
21.8102334879
21.9466843211
21.9653886214
21.867138835
21.4150006932
21.7167417759
23.3738953547
24.8646219229
25.7817283634
25.0700908006
28.0486889818
28.5247378124
27.3494619307
29.7984390994
30.6187954761
30.6025968475
33.3584590353
34.8814431643
36.6454013862
38.880604241
41.2949418767
43.3152645924
46.494125245
48.529676775
50.8971116229
54.9928038141
58.4682269079
62.0652829268
65.4120583567
69.5092266683
73.0645152849
76.3922542485
78.3653334725
81.2135280885
82.3599923101
40.7646255911
1.62211885358e-40
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
5.42791733651e-41
6.72158307856e-39
1.54572446695e-36
5.80469899324e-32
1.1769414714e-21
19.2510724314
19.182169157
19.2018115948
21.5082330046
19.6434715402
20.7531944151
21.1734215416
21.207623529
21.3025276547
20.5264683848
20.6056995795
20.7259786651
22.8545924742
24.4560748668
24.2358822755
23.8322674702
26.7028889972
26.6324876179
26.519867012
28.9404309162
29.7123663323
30.8472945154
33.3802035839
35.3213565736
37.6441389807
40.0230179799
42.8033517461
45.4404946951
48.2081858939
51.9876053963
55.8979934286
59.9927654424
64.549725815
69.6019223488
75.2629644392
81.1559652596
86.1728270111
91.0616870996
95.3036727091
85.7295340321
6.98481247248e-09
3.94580696362e-40
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1.68896160027e-41
4.00674524975e-39
9.02376705429e-37
1.33579226638e-32
3.3438721494e-23
1.35669814872e-06
18.6408971214
18.4576648512
18.3138640975
21.2414209876
21.7158337159
20.6119526818
20.640242345
20.5577212717
20.4762908386
20.0183906067
19.4535375947
19.7508385168
20.5293008212
22.0787348179
23.240598638
21.9727600492
23.2258266756
24.9018973016
24.9661479003
24.9323294207
27.8387075563
29.0906591958
30.4853385987
33.4787025708
35.8879252922
38.3803399391
41.5444691412
44.7354503316
49.2089445694
53.4348151806
58.3619387234
63.6912119508
68.8245676661
74.9221435112
81.8879627797
89.1550768807
98.7115629936
100
100
100
45.3450685129
3.94580696362e-40
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
8.41745591977e-40
2.75721847991e-37
1.31845849786e-33
3.17995271294e-26
2.95332356583e-10
75.9411656614
18.3729540335
17.9755758436
18.5205166765
20.1496368308
21.3093154945
20.7014413294
20.7589926501
20.2174010727
19.7866830225
19.6448944581
18.4781330014
18.6033562679
18.0121654484
19.3601279322
20.1138002871
20.6880461255
19.7290911828
21.9876385859
22.5325534723
22.8129640286
22.7538156762
26.2815111819
28.0743810867
30.6231434967
33.5631814336
37.3998790869
40.9393724988
45.9833079343
50.291716861
55.7285670278
60.4003383968
65.7546838202
71.7042511015
78.7275592387
86.1195913048
95.4489533045
99.9999999998
100
100
100
52.1736925122
1.05932681197e-42
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
4.2312207137e-41
3.92360381354e-38
1.02667891651e-34
2.73667773898e-29
1.3562959958e-15
65.7796093006
69.2701117765
17.9507338526
17.1224617157
18.0094308881
17.867859076
19.608749809
21.4018692053
22.2327408602
20.4771163275
19.2511352131
18.6635539874
18.0483839969
16.4990176839
16.809273846
15.0668450716
15.5502402906
17.1561982077
17.1769891067
16.194488624
19.0064863976
19.1451170626
19.9738816992
20.0446397009
24.6613217861
27.3093763609
31.3610494035
36.3177252825
41.3065901474
45.8297019325
50.7989284779
55.3869810607
60.4005650868
66.7294294701
73.9212218081
80.9708732874
88.6373485195
99.3828732668
99.9999999994
100
100
99.9999999999
100
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
8.1698303943e-40
4.31265554108e-36
1.98673768396e-31
1.04930507737e-21
44.1749036596
57.0884912297
60.2840160384
17.5247088832
15.8290494461
15.7098809881
15.8421707036
16.4772914838
19.6071551996
22.2711250607
20.2034459592
18.6859055573
17.6648064128
17.0807370435
15.3752369223
15.2646275043
13.3612912092
12.0716664773
7.4970873382
13.9294634669
12.3701422263
12.8066109623
14.9622687843
13.8158704426
15.0499384872
16.8592626222
23.9828936179
29.5875324989
35.0077948241
39.8953546418
44.5956081392
49.9135018987
55.1717821135
62.3266228501
68.5973584434
74.953433895
81.6365572488
90.1460716259
99.4863008602
99.9999994876
99.9999999848
99.9999999998
99.9999999993
99.9999999967
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
6.00882609099e-38
1.68634947684e-33
2.01830394122e-26
3.39462211323e-07
53.3649769167
52.8694667236
51.6595599075
17.5041987271
14.4326130457
13.8514304949
13.9172731472
14.3983922667
16.489982545
19.2133982633
19.7067962506
17.976282592
16.7729661545
15.7976550603
15.1544163379
11.8636876955
11.8340372189
5.80065918018
10.3618427643
0.859275366763
10.9664298448
10.0014401248
4.12164052041
10.1937554647
6.96577921073
9.90281385385
19.8093726983
27.9800034666
34.1191081098
38.6299848786
44.8705566235
50.5291345407
57.7824002204
62.966072626
68.4608151055
74.8671974829
82.5767516992
91.7862645839
99.9970320798
99.999999996
100
100
95.1900955958
7.79742100042e-11
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
4.52175407314e-41
6.59018861691e-36
6.55376911319e-30
1.57700934264e-15
52.585268179
53.4953659216
47.3346594145
45.5764307354
17.8099386643
13.3310810441
12.2869053472
11.9409627418
12.3269331108
13.6878977515
16.4572003738
18.9617096368
17.4371745843
15.9542721972
14.7874830274
13.5978297549
12.166646746
5.58476925644
5.32017476002
0.027389404865
5.82475946575
0.0112926945958
11.2295796734
0.463675080235
0.134165891319
0.332724192492
10.9802056837
18.3604422401
27.3012904738
33.6086075511
39.7542897935
45.9410916416
53.0005974644
57.5550134309
62.0417679474
69.0928456614
76.5216727024
85.0613391467
94.8119696508
99.9999946924
100
100
68.3538133762
7.31552163238e-24
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
5.46986692853e-40
1.46709876067e-33
4.25708501263e-21
53.2551902458
57.1458052309
50.5185131586
44.6885728821
42.2516476672
16.7864601899
12.6631837674
10.8906505039
10.4729136851
10.3938022968
11.3160994832
11.4357634096
16.3045511164
17.2043892261
15.3379714005
13.9641235274
12.6109541013
10.6707975233
6.61195400279
7.56463711552
0.0179175498323
0.000231972763304
0.0332619491928
0.010205999249
0.00340891006933
0.195683208359
0.171243071279
13.4643571573
19.8748691386
28.0649023249
34.2462159604
40.9499224777
47.5589470339
52.1112927944
56.1169548578
63.4426206271
70.4067305054
77.946726259
86.4449103846
95.7898685502
99.9999960266
99.9999999997
100
2.63082198366e-25
1.46072265273e-24
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
6.45495664868e-37
3.80617862944e-28
46.5613015338
63.4514960389
55.1484195347
48.2177108539
44.1900840628
42.7947431236
15.1514191399
12.3760439871
9.82680065847
9.33315458055
9.22433667275
9.01447934073
10.7897412165
10.9261392977
15.3506635177
14.6647274905
13.2776919988
11.9993392782
9.37243809461
6.86914989325
0.00010396640585
0.000163435472794
4.43267732315e-05
0.584794221928
0.000548937925722
0.00557511535468
0.00631110733518
10.6644482157
14.1362736621
23.4879890137
29.1876665936
36.1925749392
41.9201237966
47.1806595203
51.2355065891
58.2563164152
64.7464225909
71.6622562661
78.9510944264
86.8796341213
95.2620833742
99.9994311085
99.9999997959
99.9999999991
3.69183465762e-24
6.49688427355e-19
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1.22591927551e-41
4.81193585047e-34
5.42444267655e-07
67.8006922303
61.5891570565
54.3499572273
48.7205664046
45.559392041
44.7149544819
14.2350249422
11.4815652689
8.94417901656
8.07112900794
8.40048390221
8.05340918113
7.09297187087
9.45887020123
9.2964320662
13.7303051987
12.8605325037
11.7006843141
6.95802862014
3.79857424764
3.20955449313e-05
4.76795555533e-06
7.6060864157e-05
2.19448766642e-05
0.000309743340576
0.000218095862482
9.84762028773
12.3585623244
20.4478069512
25.6713098486
31.3506788411
37.2410049234
43.3871731421
47.5824489605
54.0407726795
59.8761349611
66.2452794085
72.1733117347
78.5040241293
85.1362083988
91.7557301163
99.6885075938
99.9999978129
94.5038485614
4.89093536255e-24
8.5224515646e-16
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
3.82344030989e-40
5.81825521828e-22
68.4181629543
67.0571163918
60.3510662234
54.6379406252
50.5925984487
48.3930142774
48.0302237341
14.4218748878
9.95445065129
7.57121995445
6.50051004969
7.60131077066
7.75740829548
5.86126961433
3.99952698483
6.80271081886
7.62327921474
13.2883132557
12.741403645
7.60369963314
1.82633133779e-05
1.47586111759e-06
2.04162969852e-06
2.22950618009e-06
2.83813460967e-05
2.40924506977e-05
9.25531878725
10.6870672875
19.3011478735
23.6556738229
28.3714240503
33.8149401811
39.7144032666
44.6049263066
50.5864986497
55.81529348
61.4801108345
66.6699767039
72.2544348426
77.4790452354
82.5429812774
87.7909073683
96.1100165727
99.8467430449
28.5356947119
1.78743084177e-23
2.51838901419e-12
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1.62357972305e-35
62.7500672773
73.0589402311
65.9987076682
60.3644314245
56.0253581976
53.1279333143
51.544355584
50.4683940431
15.3679964969
8.0249631901
3.65040075341
4.8780058045
6.65570426687
7.86552528154
6.55238184465
0.416756106133
5.41537626695
5.22488173028
7.82818861452
11.4117355585
6.68352555864e-07
7.25121922123e-07
3.11235569024e-07
4.92986608285e-07
1.71845480115e-06
4.33341368887e-06
8.03341651722
9.87081564785
17.787721055
21.985439032
26.6414591782
31.8079132787
36.5596420426
41.7023085423
47.486959953
52.4062426699
57.7087877947
62.4352601312
67.7278064147
71.8735078174
75.5722349407
79.3313544854
83.6419570455
89.5270238845
81.8701850919
6.29364224386e-05
3.03198911792e-22
85.1639190493
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
2.70087658885e-41
41.3784414141
78.274106836
72.4636873781
66.179397193
61.7372594207
58.5661444556
56.3621183462
55.244371446
54.4653876084
15.1829834311
9.04595359247
0.502638012167
0.594812335363
5.60597018601
7.5012095363
6.77409977644
1.25027102892
0.406282517507
5.7707871461e-06
2.00888517358
8.98650616072
6.83281660881e-06
5.40320070322e-08
1.22692887476e-07
2.22561420482e-07
1.30805432041e-06
5.1204532863
9.90430306204
16.6568487574
20.3421314531
25.4837747683
30.0665363336
34.6398982545
39.1978382555
44.3925795718
49.0513274754
54.5701345151
58.9933591797
63.8610849133
67.796917552
71.6600830799
74.4486002895
77.6889316842
79.4409300386
77.5723887085
74.4230463228
39.6287574617
4.51831035527e-21
100
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1.94037872557e-17
77.8160133037
76.525161439
71.8403140368
67.3797811207
64.296158242
62.7936831494
61.5913871606
60.5379216553
60.2871542521
13.829874604
9.56508620355e-05
4.21582269497e-07
0.00211223979287
5.45785999781
7.06561475622
6.78603837688
4.06383086781
0.227810812734
4.48342469212
0.167220355021
9.36231118376e-07
2.34826241751e-09
1.8181640818e-06
6.20495168306e-08
2.19365476919e-07
0.139088321752
10.222904361
14.9710916096
18.5879114388
23.4364490427
27.3547456571
32.4297469146
37.0535798577
41.2131128224
46.1126274284
51.4550665033
56.0139919319
60.792112508
64.7829297658
69.1939257957
72.0880698417
75.0122491842
78.2445090569
77.2847869843
76.8005692665
81.662520551
64.5142409575
9.78495210505e-21
100
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1.84605413938e-40
71.3327924568
75.0212879273
75.1051723141
72.1608564957
69.5813856682
68.004614488
67.7114928304
68.593542533
66.9095701139
68.1409446556
12.1183280035
1.18465329427e-08
4.79827125572e-09
1.00785983713
6.15781606867
7.3733189634
7.40133484876
5.81306184486
6.82670559803e-09
8.86647899799e-10
1.26700060672e-08
4.98767053716e-09
2.07413876492e-09
6.84319836807e-09
1.87614214533e-08
0.00111651644081
10.7697631557
13.1532413089
17.9797923416
21.5698677267
24.9411147213
29.9157716331
34.8426758762
39.0679918746
43.3249535129
48.244053602
52.77436776
57.9767036001
61.9975131552
66.3738075496
70.2195409793
74.3555087435
77.963962427
78.7121161429
77.3439710073
76.0750988087
77.5011731638
82.1888932178
2.65009437119e-20
100
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
48.6728710939
81.7341900164
78.5806880751
76.3390141719
73.9548700308
72.3095143502
71.4381429206
71.1691738354
72.76103485
71.91113915
71.4246765367
10.2096327827
3.78551451017e-09
6.34038998052e-10
4.25601834018
7.32846249072
8.09445880954
7.7962677484
6.40405373219
1.16501052191e-06
4.07415799145e-10
1.80665366005e-10
7.52070776256e-10
6.82798724287e-09
3.00000067091e-09
2.7676897956e-07
8.64314507228
13.5048501005
17.2852086893
21.4466116335
23.2961931965
27.4021298864
31.8158227051
36.4814449225
40.702616751
44.700924321
49.4951162433
54.7228745626
59.0380134122
63.6536500708
68.0376483442
74.0662366726
78.2813956739
81.2247134769
81.4767870626
79.4230301972
73.2077000066
72.0288362698
82.8922104633
4.57977538087e-20
100
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1.16549832252e-34
85.6444249074
81.5331406425
79.7090728023
77.7706207477
75.9986582523
74.7888924374
74.0362396787
73.5536617533
74.2152277436
74.0064091941
72.8149507388
6.76743968748
3.03318662528e-10
1.13791919117e-10
7.16575959633
8.99888814963
9.09532627599
8.37759294984
6.76847621087
2.18620848595
1.69024864709e-10
7.51777464293e-11
8.08711920732e-11
4.08002057865e-10
0.000800082982253
6.63653076593
12.193571439
14.8901020468
18.6272565163
22.1545815376
25.8112457112
29.957642319
33.1160796009
37.6755242265
41.9178270852
46.1702703295
51.0746374965
55.7713217921
60.9476791702
65.4719008099
72.5951171203
79.2439988174
83.1016178424
85.8117689972
87.3184149512
83.948516801
78.471680511
72.4331710134
76.6987869923
3.23845645083e-20
100
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
72.3592364632
75.8097216816
81.2736878302
80.368154915
79.2993201618
78.0361380285
77.0516018319
76.3081788364
75.7434413967
76.1110287929
75.6189668584
74.5613137192
8.7957000384e-12
2.93027191281e-11
2.44581886409e-08
10.1760543444
10.7296921113
10.2414363279
9.10653194562
7.54666119863
4.12130229811
7.77567113115e-11
3.26135733462e-11
3.13441083705e-11
1.01799634124e-10
5.07360838606e-07
10.4135149951
9.69785121333
16.9178958335
19.4800084046
23.0461508927
26.5214093858
30.6870128309
34.5657825645
38.5155283795
42.8845218915
47.2903355637
52.234446001
57.6770033099
62.493350448
70.1433743802
78.0928549373
83.0448520408
88.3432315615
92.9082616255
95.3871540485
96.0511334446
97.4424394747
99.3565298146
99.9999999972
75.7712637248
100
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
2.45575624863e-19
97.3113185976
87.1847436455
84.6024014506
82.5058375477
81.1769552795
79.9960927849
79.0743986728
78.3481690756
77.7873897205
77.8622532606
77.1737401241
76.7367572917
3.36919902995e-12
5.82740366515e-12
6.90516707419
10.3233531751
10.5188170727
10.2868680109
9.81697352954
8.25463229098
5.62187255888
3.78190810745e-11
1.46794685118e-11
1.39707799679e-11
2.2324973473e-11
0.0357540377723
2.3306598251
14.9309804377
18.2481266329
21.0781791596
24.6872940437
27.8579430327
31.5951170614
35.138179439
39.3249699549
43.7177059427
48.4390738564
54.1144711472
59.3164427823
66.5724508123
74.5051571169
80.9091566393
87.3662254565
94.0889955639
99.98370528
99.9999999006
100
100
100
100
100
100
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
92.2038085732
89.1073552303
88.6198502402
85.793318599
83.8423681865
82.3580932938
81.1892342506
80.2686059664
79.57990988
79.098374942
78.6740778722
78.0018731203
77.9073192314
3.13641131077e-12
2.49641134852e-12
5.98094487745
9.84261332228
10.4090193054
10.1906578432
9.52092305306
8.48560893899
6.61529230333
1.78528846364e-11
6.98879463595e-12
6.56975414391e-12
1.23278065958e-11
6.17105320954e-11
11.5967060488
17.0628316936
18.2339214234
22.7925624968
26.2671267597
28.5951634605
31.7801684971
35.6598986837
40.2163667747
44.4769788413
50.0988602384
55.6452209726
61.9364451601
69.2679953537
76.8171307176
84.0745370473
91.5781622536
99.9756178043
99.9999999886
100
100
100
100
100
98.8735106031
6.23233624708e-12
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
9.76771138312e-27
94.0878310045
89.9322116702
88.0639476686
85.9128584079
84.1167687499
82.3513609507
81.0435871111
79.9497951043
79.109291305
78.8018822927
78.1252896523
77.3384005798
77.6238745312
4.22072468466e-12
1.26885121952e-12
1.27010113846e-11
10.1230218337
10.7577262409
10.2866554989
9.40168262389
8.04076452921
6.2234894519
3.6158673132e-11
3.82477740073e-12
3.43783636712e-12
6.92952756616e-12
1.7331836178
9.81065926267
14.4340863196
20.557279608
23.6598281376
25.3833005001
29.5161645372
33.2363700682
36.283798521
40.1549009524
45.8097085224
51.6537444986
56.7428158904
63.6334968469
71.6140002013
79.1863584614
86.760110521
97.1252428089
99.9999990714
100
100
100
100
100
100
1.12116133394e-18
5.76298548588e-20
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
97.555432579
88.6208330075
89.6969564967
87.3095801745
85.601413492
83.4372532834
81.3980988983
79.7747451461
78.3724006294
77.1935136399
76.2488103033
75.7339362238
75.415794546
76.2530304642
1.2169939086e-11
7.96662911331e-13
8.41213390207e-13
10.6413505634
11.1899527946
10.4305397846
9.28270180911
7.60643525575
4.9219864261
3.95213930225e-12
2.49040888087e-12
2.24493974606e-12
3.58677246294e-12
3.12904861344
9.82190454363
13.8638338263
19.2294695641
23.5461589803
26.4310835859
30.3221073339
31.9771424889
36.3863104106
42.1176588465
47.3021851097
51.5375128752
58.4254853194
65.9347170364
72.7713169567
80.9414620663
90.9542697267
99.99085243
99.9999999946
100
100
100
100
100
100
9.34089700782e-24
9.92141527125
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
4.24663904174e-39
99.9999997229
96.2197055944
91.6239072563
88.0054343107
85.2949738194
82.9290519596
80.1636987042
78.1802388373
76.5600181042
75.2679321911
74.2838688197
73.8740412082
73.304268742
73.8296312776
5.58421163883e-10
7.1464190566e-13
3.61450712406e-13
10.9362660544
11.4651869873
10.4989025824
9.11412173914
7.22558097172
4.58509796144
2.3245888332e-12
1.3303618483e-12
1.45836000666e-12
4.23032892707e-12
5.47466274411
10.4032516035
14.3403135938
17.6257516479
22.1711325906
26.8087772567
29.3313083742
32.7293888175
37.8215913502
42.9102632332
46.2617840835
52.8151974407
59.9915405995
66.3150192871
74.124181154
83.5596938203
93.3457618948
99.999689587
99.9999999999
100
100
100
100
100
100
2.19779090312e-28
100
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
95.6417565144
88.5890014929
95.7231219993
92.0647570514
88.5537963862
85.2499199148
82.180918659
79.056257416
76.7409943656
74.9339876829
73.5410016264
72.613042637
72.2571125462
71.415960913
70.7010104685
1.86623536694e-12
7.40591868755e-10
2.30493474781e-13
10.2340387812
11.5387674852
10.3941951121
8.6417167614
5.50911164715
1.30285642186e-12
5.86803744069e-13
4.82167690846e-13
5.73150964859e-13
1.14754836926e-12
5.93806994752
11.8882766374
15.3405833724
17.7762415954
20.2956252441
24.4515307365
29.0208193803
32.8249099142
37.3386199795
41.2067265997
46.520011566
54.0960298411
60.5025550612
66.3591809194
74.599586682
84.4146193836
95.8448299244
99.9999898568
100
100
100
100
100
100
100
5.83122969229e-28
100
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
100
99.9999999998
99.9794804642
94.7330526366
90.0974064247
85.5561200214
81.5583046639
78.2733348237
75.679362459
73.6812400339
72.1408851399
71.2005207327
70.5964447928
69.68363737
68.970696892
1.19271722464e-12
5.07370372656
1.40469663732e-13
9.27776392061
11.6045893267
10.2220938114
8.28765718591
6.77486509643
4.58588006463
1.92843840257e-11
3.09331676939e-12
2.39181225925e-12
6.83077970284e-12
6.73485179469
12.2816575676
15.535731807
18.1077166041
20.5479257611
22.7969419806
25.5181298606
30.4758552677
35.5938024676
40.2287381176
46.5555742059
53.7225883307
59.8183399891
66.4989450903
75.6105961195
86.0569207546
96.1359031766
99.9999925299
100
100
100
100
100
100
100
7.56113338515e-22
100
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
9.90422036451e-14
83.6206297829
99.9999998941
99.9984943586
96.8857585836
91.0634396464
86.4627358143
81.492978408
77.8854732242
74.9740007441
72.7734786641
71.2061663464
70.4974855531
69.1633115533
68.1970494989
67.5929035697
2.4728288198e-13
5.68285081444
8.14438791221e-14
9.72590918029
10.9699319482
8.57084092681
5.61467244978
2.74138027636
1.03099227685e-13
5.93040233546e-14
5.38432586864e-14
6.82747933172e-14
1.46924228104e-13
4.42048624904
12.8129380052
16.5855542667
18.1363946687
19.4994730792
21.4445397581
24.3872172593
27.9233583142
32.213487297
38.0646741049
45.8154061344
53.1635888362
59.8623247605
65.814989938
74.5524470793
84.9229798765
96.8809370777
99.9999994354
100
100
100
100
100
100
100
9.60636596067e-21
100
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
100
100
100
99.9999998573
99.7354431848
93.0941328952
86.9063628845
81.8489377033
77.5984935901
74.1940691907
71.6865627891
69.9897164907
68.9367948602
67.4625403399
66.6566435606
66.7618138516
3.38740752567e-13
1.90526579038
4.75407652904e-14
9.34617740315
8.36016001413
6.10268052324
4.43369371014
2.97542050644
2.8242323368e-14
3.03430036573e-14
4.40837081178e-14
9.43871813611e-14
1.34177221479e-12
6.00307526666
12.4029892287
14.9555961795
16.1331687712
17.0453533448
19.1005307472
22.9474954596
26.6883903325
31.2281238718
36.8188675675
43.632496831
50.4606712439
56.5323010704
63.6873095178
73.7629327965
84.978498183
97.788727328
99.9999997614
100
100
100
100
100
100
100
1.42335533815e-19
100
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
8.60377511286e-40
99.9999999999
100
100
99.9999999999
99.9985278578
95.0602937381
87.6995695996
81.8638900586
76.9486182643
72.897073755
69.895776555
67.9469459748
66.2820715868
64.9606992785
64.0382347645
64.7365154302
3.75952562532
3.1632189721e-14
2.89883423489e-14
10.8181520816
9.35888419483
6.27871398834
4.43107537867
2.96995899115
2.02467110801e-14
1.91128045042e-14
2.0127412991e-14
2.4270786656e-14
4.51216793327e-14
0.014764720875
12.8277994878
15.5897765577
16.1335092649
16.2869961878
17.0206507808
19.2309637434
23.4615137798
29.144996301
35.3229012215
41.9011653539
47.7835057646
53.8895491391
61.8035464454
72.0091115738
84.1327439658
96.7748677086
99.9999977299
100
100
100
100
100
100
100
5.69560148407e-19
100
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
79.6223656251
100
100
100
100
99.9999993443
96.3785663109
88.3177140303
81.4504959539
75.7970119718
71.1508270277
67.5062879113
64.8897989847
62.6639327673
61.2280274025
60.1742744097
61.1368221219
8.38243895395
9.33673750749e-13
2.68636555666e-14
11.4281708622
10.6665776935
6.13662862766
4.87993023814
3.4329816891
1.32254409435e-14
1.55988220551e-14
3.11271493505e-14
7.47757731104e-14
8.58151479415e-14
2.04966095825e-07
11.4436537714
15.3247802473
15.392820467
14.1378742193
13.0170432204
14.9182308493
20.0270853693
26.2747510313
32.7144311686
39.2471127498
45.8596605694
51.9907086141
60.3847194704
70.2281967597
81.1826069788
93.5794546399
99.9999480346
100
100
100
100
100
100
100
2.43148384716e-17
100
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
100
100
100
100
100
99.9999999999
99.689825367
89.3808960169
80.9474251217
74.4044650429
69.1350047637
64.1449231369
60.5874629919
58.0803750562
56.6777696171
55.6532466173
56.4496347588
9.69534969849
0.00464782994855
3.48046908158e-14
0.530282147459
6.50197074937
6.91580308544
6.07685598668
5.56309256797
6.21379135542
9.40474700628e-14
2.9858869231e-14
2.21239050972e-14
2.22442017104e-14
4.45082472678e-14
9.70381294643
15.5590398787
15.3350914582
11.9092111246
5.24905613918
7.04754291337
14.7882044014
23.6256065394
30.7793633837
36.7401832933
42.5750013774
49.2927628073
57.7369559866
67.6256865927
78.5255266502
90.1228528645
99.9744957807
99.9999999979
100
100
100
100
100
100
9.62755756617e-17
100
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
4.28468179584e-39
100
100
100
100
100
100
99.999966933
91.6762300673
80.9951537986
72.7129544975
66.4099891663
61.2732235624
57.2048254074
53.6965464528
51.4450531369
50.8971554086
50.8230107136
7.44381460427
3.98400481715
9.98739136604e-14
2.0317798761e-11
7.1897520619
9.58939170471
10.489028153
8.85540856486
6.03943507889
1.13341190441e-13
2.66177011029e-14
1.71000274258e-14
1.42089537563e-14
1.75417319587e-14
6.9111147379
15.8164092641
16.5925258309
12.477261713
4.1141623952
2.47030065333e-08
9.6857539383
19.9198575135
27.0983860492
32.9118280459
38.8010715966
45.7458946742
54.4319525204
64.3926167762
74.4057792952
84.2100627122
95.9500949459
99.999999706
100
100
100
100
100
100
0.159979726708
100
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
95.7377065118
100
100
100
100
100
100
99.9999999929
94.8899311386
81.8991245506
71.4833022915
63.6447116358
57.356049327
52.7223627093
49.2172847917
45.6171651534
45.453287422
44.6081230154
4.86749394724
5.4596464193
4.23862669276e-13
8.0960773792e-13
9.42754852045
11.2571683607
10.6560707944
9.87027798601
8.61485100319
0.754859278419
6.08467108972e-14
1.6914863848e-14
1.15643098322e-14
1.15392126484e-14
7.77448435488e-08
18.0612948277
20.6066722594
9.5573342914
5.31705166603e-13
2.76815646941e-14
3.00354372254e-14
6.46189561203
22.3943224757
28.7366415343
34.0620906491
40.9389679098
49.7685706621
60.1733308133
68.9776700489
76.575007571
87.1877612527
99.9716166765
99.9999999773
100
100
100
100
100
2.75954144838e-10
100
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
100
100
100
100
100
100
100
100
98.7979706306
84.0301126479
71.3810052797
61.9143256024
54.1049335046
47.9916356641
43.8463973768
39.789368258
38.9795509497
39.5199943704
4.53262171966
7.56633185403
1.52633558503e-11
2.48899551046e-13
11.3287808171
11.7854355725
11.7215278649
11.3495235828
10.7728344644
8.39442432634
4.25180798706e-08
2.49917270563e-14
9.34590590471e-15
7.72450211722e-15
10.4412167275
23.237389344
17.2143558863
1.2433385035e-10
2.54613675493e-12
7.36721352897e-15
1.7864943353e-15
5.28419275031e-07
11.2945135325
20.8767936839
24.756657351
33.6725127467
43.1411846403
55.9004118693
63.4622359808
66.6929202623
74.3146199243
88.1223787116
99.3665019842
99.9999999609
100
100
100
100
99.9999999971
100
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
9.93787490821e-40
100
100
100
100
100
100
100
100
99.9996198785
86.7989854737
72.1522423128
60.7728564216
52.289693751
44.7288105301
38.5240055781
33.7473898892
33.3716783709
37.2796629521
0.246269440159
5.64378432829e-05
9.42938868617e-12
5.61812340435e-06
13.0272836716
13.4909404691
13.7465038821
13.5784209914
13.4021639913
12.8190651749
3.75512380847
3.33573184337e-11
1.65053012075e-14
4.93254379434e-15
3.18826132886e-15
25.0427538718
6.84800190135e-08
1.38004515931e-10
2.94859423768e-09
0.344109852697
5.96549067178e-16
1.42802060479e-16
1.01674419377e-07
13.2557825336
23.1952967435
23.6990494473
28.4532115198
47.0156108441
60.3951443314
54.4242157495
55.9082225453
66.0366205052
77.8667937564
94.6996358715
99.9999999773
100
100
100
100
100
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
100
100
100
100
100
100
100
100
100
99.9999993961
89.1465341447
73.3560507371
60.548304058
50.6747092539
42.8903522177
36.466668025
31.6197864734
31.131312863
29.8419534427
1.49215224626
1.92062491698e-11
3.03078746967e-09
1.16409662464e-13
13.7996511871
15.8061941478
16.7537216781
16.6362552535
16.8087563423
15.616567171
13.7730768792
0.00705873373995
9.82257649995e-14
3.75590128192e-15
2.60267489075e-15
3.57802402803e-14
2.78206305053e-11
0.363733991368
22.8151336819
13.9895306827
1.31230465106e-16
2.56656101543e-17
5.87095044787e-18
4.46637470809e-18
4.53016201087e-18
2.41835067661e-11
2.58542295084
2.02085537415e-15
35.8508432109
42.1470454131
39.6498009321
60.7191898095
64.6700337528
82.1592814139
94.8841101969
99.999997808
99.9999999883
100
100
100
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1.60895815605e-41
97.3396705211
100
100
100
100
100
100
100
100
99.9999999662
90.6857712071
74.9454895198
61.5674781906
50.7456024622
42.4334353836
35.5511481778
29.6304175607
25.8663909038
19.2461370195
1.12414438819
6.27344376326
0.209888486214
2.3069984084e-13
2.97056854116e-15
8.25566968205e-15
9.28743776739e-12
6.00695748832e-14
4.23781096786e-14
2.24787143343e-14
1.19824237426e-14
6.01597529584e-15
2.60765345277e-15
8.8755061463e-16
3.27475311683e-16
9.20068561187e-17
4.60428838214e-17
4.31574012156e-17
3.14291597169e-17
1.97526801806e-17
1.29855435554e-17
7.73299263192e-18
3.8493109938e-18
2.08149803807e-18
1.68327525575e-18
1.07053384636e-18
5.17400690565e-19
2.15953302265e-19
1.52963020555e-19
5.54894611948e-20
5.01163072114e-20
2.697691106e-21
6.74899459995e-19
4.92398071195e-24
7.27966915357e-19
3.49959318297e-27
5.92493299653e-18
7.61324136088e-33
4.81292451177e-32
100
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
2.67665844253e-41
100
1.18208286618e-20
100
100
100
100
100
100
100
99.9999999623
90.2279014318
74.6729865409
61.3936954999
49.9736312526
40.6411439003
33.0496203932
27.025056428
22.9232453663
12.9530276823
)
;
boundaryField
{
frontAndBack
{
type empty;
}
upperWall
{
type calculated;
value uniform 0;
}
lowerWall
{
type calculated;
value uniform 0;
}
inlet
{
type calculated;
value uniform 9.56634984033e-39;
}
outlet
{
type calculated;
value nonuniform List<scalar>
20
(
5.50901742195e-41
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
4.72412337794e-42
1.07080394449e-40
)
;
}
}
// ************************************************************************* //
| [
"as998@snu.edu.in"
] | as998@snu.edu.in | |
33ba53550c98044c3a80ffc2de700098210dff5b | 3b74581630e7f3f9f379b633a8cfa4e622c0dd0b | /Old/Builds/JuceLibraryCode/modules/juce_core/containers/juce_LinkedListPointer.h | 45e8c3ed98a396ec03fb8273b19421c28ecf4e64 | [
"BSD-2-Clause"
] | permissive | stpope/CSL6 | eb3aee1a4bd13d6cb8e6985949bbfb12d4cd3782 | 5855a91fe8fc928753d180d8d5260a3ed3a1460b | refs/heads/master | 2022-11-23T17:43:17.957644 | 2020-08-03T18:31:30 | 2020-08-03T18:31:30 | 256,130,061 | 35 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 11,859 | h | /*
==============================================================================
This file is part of the JUCE library - "Jules' Utility Class Extensions"
Copyright 2004-11 by Raw Material Software Ltd.
------------------------------------------------------------------------------
JUCE can be redistributed and/or modified under the terms of the GNU General
Public License (Version 2), as published by the Free Software Foundation.
A copy of the license is included in the JUCE distribution, or can be found
online at www.gnu.org/licenses.
JUCE 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.
------------------------------------------------------------------------------
To release a closed-source product which uses JUCE, commercial licenses are
available: visit www.rawmaterialsoftware.com/juce for more information.
==============================================================================
*/
#ifndef __JUCE_LINKEDLISTPOINTER_JUCEHEADER__
#define __JUCE_LINKEDLISTPOINTER_JUCEHEADER__
//==============================================================================
/**
Helps to manipulate singly-linked lists of objects.
For objects that are designed to contain a pointer to the subsequent item in the
list, this class contains methods to deal with the list. To use it, the ObjectType
class that it points to must contain a LinkedListPointer called nextListItem, e.g.
@code
struct MyObject
{
int x, y, z;
// A linkable object must contain a member with this name and type, which must be
// accessible by the LinkedListPointer class. (This doesn't mean it has to be public -
// you could make your class a friend of a LinkedListPointer<MyObject> instead).
LinkedListPointer<MyObject> nextListItem;
};
LinkedListPointer<MyObject> myList;
myList.append (new MyObject());
myList.append (new MyObject());
int numItems = myList.size(); // returns 2
MyObject* lastInList = myList.getLast();
@endcode
*/
template <class ObjectType>
class LinkedListPointer
{
public:
//==============================================================================
/** Creates a null pointer to an empty list. */
LinkedListPointer() noexcept
: item (nullptr)
{
}
/** Creates a pointer to a list whose head is the item provided. */
explicit LinkedListPointer (ObjectType* const headItem) noexcept
: item (headItem)
{
}
/** Sets this pointer to point to a new list. */
LinkedListPointer& operator= (ObjectType* const newItem) noexcept
{
item = newItem;
return *this;
}
#if JUCE_COMPILER_SUPPORTS_MOVE_SEMANTICS
LinkedListPointer (LinkedListPointer&& other) noexcept
: item (other.item)
{
other.item = nullptr;
}
LinkedListPointer& operator= (LinkedListPointer&& other) noexcept
{
jassert (this != &other); // hopefully the compiler should make this situation impossible!
item = other.item;
other.item = nullptr;
return *this;
}
#endif
//==============================================================================
/** Returns the item which this pointer points to. */
inline operator ObjectType*() const noexcept
{
return item;
}
/** Returns the item which this pointer points to. */
inline ObjectType* get() const noexcept
{
return item;
}
/** Returns the last item in the list which this pointer points to.
This will iterate the list and return the last item found. Obviously the speed
of this operation will be proportional to the size of the list. If the list is
empty the return value will be this object.
If you're planning on appending a number of items to your list, it's much more
efficient to use the Appender class than to repeatedly call getLast() to find the end.
*/
LinkedListPointer& getLast() noexcept
{
LinkedListPointer* l = this;
while (l->item != nullptr)
l = &(l->item->nextListItem);
return *l;
}
/** Returns the number of items in the list.
Obviously with a simple linked list, getting the size involves iterating the list, so
this can be a lengthy operation - be careful when using this method in your code.
*/
int size() const noexcept
{
int total = 0;
for (ObjectType* i = item; i != nullptr; i = i->nextListItem)
++total;
return total;
}
/** Returns the item at a given index in the list.
Since the only way to find an item is to iterate the list, this operation can obviously
be slow, depending on its size, so you should be careful when using this in algorithms.
*/
LinkedListPointer& operator[] (int index) noexcept
{
LinkedListPointer* l = this;
while (--index >= 0 && l->item != nullptr)
l = &(l->item->nextListItem);
return *l;
}
/** Returns the item at a given index in the list.
Since the only way to find an item is to iterate the list, this operation can obviously
be slow, depending on its size, so you should be careful when using this in algorithms.
*/
const LinkedListPointer& operator[] (int index) const noexcept
{
const LinkedListPointer* l = this;
while (--index >= 0 && l->item != nullptr)
l = &(l->item->nextListItem);
return *l;
}
/** Returns true if the list contains the given item. */
bool contains (const ObjectType* const itemToLookFor) const noexcept
{
for (ObjectType* i = item; i != nullptr; i = i->nextListItem)
if (itemToLookFor == i)
return true;
return false;
}
//==============================================================================
/** Inserts an item into the list, placing it before the item that this pointer
currently points to.
*/
void insertNext (ObjectType* const newItem)
{
jassert (newItem != nullptr);
jassert (newItem->nextListItem == nullptr);
newItem->nextListItem = item;
item = newItem;
}
/** Inserts an item at a numeric index in the list.
Obviously this will involve iterating the list to find the item at the given index,
so be careful about the impact this may have on execution time.
*/
void insertAtIndex (int index, ObjectType* newItem)
{
jassert (newItem != nullptr);
LinkedListPointer* l = this;
while (index != 0 && l->item != nullptr)
{
l = &(l->item->nextListItem);
--index;
}
l->insertNext (newItem);
}
/** Replaces the object that this pointer points to, appending the rest of the list to
the new object, and returning the old one.
*/
ObjectType* replaceNext (ObjectType* const newItem) noexcept
{
jassert (newItem != nullptr);
jassert (newItem->nextListItem == nullptr);
ObjectType* const oldItem = item;
item = newItem;
item->nextListItem = oldItem->nextListItem.item;
oldItem->nextListItem = (ObjectType*) 0;
return oldItem;
}
/** Adds an item to the end of the list.
This operation involves iterating the whole list, so can be slow - if you need to
append a number of items to your list, it's much more efficient to use the Appender
class than to repeatedly call append().
*/
void append (ObjectType* const newItem)
{
getLast().item = newItem;
}
/** Creates copies of all the items in another list and adds them to this one.
This will use the ObjectType's copy constructor to try to create copies of each
item in the other list, and appends them to this list.
*/
void addCopyOfList (const LinkedListPointer& other)
{
LinkedListPointer* insertPoint = this;
for (ObjectType* i = other.item; i != nullptr; i = i->nextListItem)
{
insertPoint->insertNext (new ObjectType (*i));
insertPoint = &(insertPoint->item->nextListItem);
}
}
/** Removes the head item from the list.
This won't delete the object that is removed, but returns it, so the caller can
delete it if necessary.
*/
ObjectType* removeNext() noexcept
{
ObjectType* const oldItem = item;
if (oldItem != nullptr)
{
item = oldItem->nextListItem;
oldItem->nextListItem = (ObjectType*) 0;
}
return oldItem;
}
/** Removes a specific item from the list.
Note that this will not delete the item, it simply unlinks it from the list.
*/
void remove (ObjectType* const itemToRemove)
{
LinkedListPointer* const l = findPointerTo (itemToRemove);
if (l != nullptr)
l->removeNext();
}
/** Iterates the list, calling the delete operator on all of its elements and
leaving this pointer empty.
*/
void deleteAll()
{
while (item != nullptr)
{
ObjectType* const oldItem = item;
item = oldItem->nextListItem;
delete oldItem;
}
}
/** Finds a pointer to a given item.
If the item is found in the list, this returns the pointer that points to it. If
the item isn't found, this returns null.
*/
LinkedListPointer* findPointerTo (ObjectType* const itemToLookFor) noexcept
{
LinkedListPointer* l = this;
while (l->item != nullptr)
{
if (l->item == itemToLookFor)
return l;
l = &(l->item->nextListItem);
}
return nullptr;
}
/** Copies the items in the list to an array.
The destArray must contain enough elements to hold the entire list - no checks are
made for this!
*/
void copyToArray (ObjectType** destArray) const noexcept
{
jassert (destArray != nullptr);
for (ObjectType* i = item; i != nullptr; i = i->nextListItem)
*destArray++ = i;
}
/** Swaps this pointer with another one */
void swapWith (LinkedListPointer& other) noexcept
{
std::swap (item, other.item);
}
//==============================================================================
/**
Allows efficient repeated insertions into a list.
You can create an Appender object which points to the last element in your
list, and then repeatedly call Appender::append() to add items to the end
of the list in O(1) time.
*/
class Appender
{
public:
/** Creates an appender which will add items to the given list.
*/
Appender (LinkedListPointer& endOfListPointer) noexcept
: endOfList (&endOfListPointer)
{
// This can only be used to add to the end of a list.
jassert (endOfListPointer.item == nullptr);
}
/** Appends an item to the list. */
void append (ObjectType* const newItem) noexcept
{
*endOfList = newItem;
endOfList = &(newItem->nextListItem);
}
private:
LinkedListPointer* endOfList;
JUCE_DECLARE_NON_COPYABLE (Appender);
};
private:
//==============================================================================
ObjectType* item;
JUCE_DECLARE_NON_COPYABLE (LinkedListPointer);
};
#endif // __JUCE_LINKEDLISTPOINTER_JUCEHEADER__
| [
"stephen@heaveneverywhere.com"
] | stephen@heaveneverywhere.com |
9e25dd48109a519095323ae0a624c2e1e410b4dd | fe4b57193d6ffa6318988abd30e889d4b439b728 | /TDBClopesModification.h | 13150646927bf75a23ac5423111761450f9a3ab0 | [] | no_license | bobar/TDBcpp | 9ae2e8685823e576d2f0669c036a6daec4f148f0 | 55cb9d76c0418b0d5b4c3894529ab4eca0483f9a | refs/heads/master | 2020-12-06T12:09:59.716720 | 2016-12-30T20:05:02 | 2016-12-30T20:17:12 | 66,198,809 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 862 | h | #ifndef TDBCLOPESMODIFICATION_H
#define TDBCLOPESMODIFICATION_H
#include <QDialog>
#include <QLabel>
#include <QGridLayout>
#include <QLineEdit>
#include <QPushButton>
#include <QComboBox>
#include <QDoubleValidator>
#include <QIntValidator>
#include <QSqlQuery>
#include <QSqlRecord>
#include "TDBApplication.h"
#include "TDBDatabase.h"
class TDBClopesModification : public QDialog
{
Q_OBJECT
private:
QGridLayout* layout;
QLabel* marque_label;
QLabel* prix_label;
QLineEdit* marque_edit;
QLineEdit* prix_edit;
QPushButton* ok_button;
QPushButton* cancel_button;
QString marque;
public:
TDBClopesModification(QWidget* parent, QString m);
~TDBClopesModification();
private slots:
void ok_pressed();
void cancel_pressed();
};
#endif
| [
"me@cimba.li"
] | me@cimba.li |
5f9f7bd55fec991fe5eab3699a8075b5bf4ba451 | 01cab90def54dc67db2ab2b16a8b06eee8e23c29 | /DS-Book/linked_list/insertion_at_begin.cpp | ed0b61531bea3418d46e84882a7834fd578090db | [] | no_license | theparadoxer02/Data-Structure-and-Algo | 33e89a91e2a1bd26212542abb4797f9149e1feb2 | 75c214ffe82e1de47f111764c329760927745547 | refs/heads/master | 2021-06-13T22:33:21.297580 | 2017-03-12T08:30:00 | 2017-03-12T08:30:00 | 81,650,744 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 678 | cpp | #include <iostream>
#include <stdlib.h>
using namespace std;
struct NODE {
int info;
struct NODE *next;
};
int main() {
cout<<"*** For Adding elements to the front of the linked list";
int n,value;
struct NODE *p,*temp,*S = NULL;
cout<<"Enter the number of elements you want to enter"<<endl;
cin>>n;
cout<<"Enter values :"<<endl;
for(int j=0;j<n;j++) {
p = (struct NODE*) malloc(sizeof(struct NODE));
cin>>p->info;
if(S==NULL) { S = p; p->next =NULL; }
else {
p->next = S;
S = p;
}
}
cout<<"Enter the values of the linked list: "<<endl;
temp = S;
while(temp != NULL) {
cout<<temp->info<<" ";
temp = temp->next;
}
cout<<endl;
return 0;
} | [
"Mannu Gupta"
] | Mannu Gupta |
ce4acf1d1fb1384b6cf0882dd631d0ccd71a98f7 | ee79b0d051bb0e492d050c18e4476c3eefd1a935 | /Unit 4/Assignment 9/Assignment9.cpp | 0204be92362807171a3ece60d2412e4821842355 | [] | no_license | florianfrick/CSCI-2275 | b7f2ba24b2d564c2c8b20de2e43ffc9771912fa3 | 562e398af0f78e58ebf32fc8128779d6f6102296 | refs/heads/master | 2023-01-20T18:38:40.666074 | 2020-12-04T17:25:18 | 2020-12-04T17:25:18 | 292,107,663 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,946 | cpp | #include "priorityQueueLL.h"
#include "priorityQueueHeap.h"
#include <iostream>
#include <fstream>
#include <sstream>
#include <vector>
#include <queue>
#include <chrono>
#include <math.h>
using namespace std;
vector<heapItem*> readFile(std::string filename)
{
vector<heapItem*> *patientData = new vector<heapItem*>();
ifstream inStream; // stream for reading in file
inStream.open(filename); // open the file
// throw an error if we couldn't open the file
if (!inStream)
{
cout << "Error: Could not open file for reading" << endl;
return *patientData;
}
// loop until the end of the file
int i = 0;
string line;
getline(inStream, line);//ignore first line
while (getline(inStream, line)) // reads every line
{
stringstream ss(line); //stores line
string name;
string priority;
string treatment;
getline(ss, name, ',');
getline(ss, priority, ',');
getline(ss, treatment, ',');
heapItem *obj = new heapItem(name, stoi(priority), stoi(treatment)); //create new patient
patientData->push_back(obj); //add patient to vector
i++;
}
inStream.close();// close the file
return *patientData;
}
//calculates mean of array times[]
long calculateMean(long times[], long size)
{
long total = 0;
for(int i = 0; i < size; i++)
{
total+=times[i];
}
return total/size;
}
//calculates standard deviation of array times[] using given mean
long calculateSD(long times[], long size, long mean)
{
long *difs = new long[size];
for(int i = 0; i < size; i++)
{
difs[i] = pow((times[i]-mean), 2);
}
return sqrt(calculateMean(difs, size));
}
//adds and removes 'size' number of items from my heap PQ 100 times and outputs mean and standard deviation
bool heapAddRemove(vector<heapItem*> patientData, int size)
{
priorityQueueHeap *heap = new priorityQueueHeap(size);
long *heapTimes = new long[size];
long startTime = 0;
long endTime = 0;
for(int j = 0; j < 100; j++)
{
startTime = chrono::duration_cast<std::chrono::microseconds>( chrono::system_clock::now().time_since_epoch() ).count();
//adding items
for(int i = 0; i < size; i++)
{
heap->push(patientData[i]);
}
//removing items
for(int i = 0; i < size; i++)
{
heap->pop();
}
endTime = chrono::duration_cast<std::chrono::microseconds>( chrono::system_clock::now().time_since_epoch() ).count();
heapTimes[j] = endTime-startTime;
}
long heapMean = calculateMean(heapTimes, 100);
long heapSD = calculateSD(heapTimes, 100, heapMean);
std::cout << "Heap Mean," << heapMean << std::endl;
std::cout << "Heap SD," << heapSD << std::endl;
std::cout << std::endl;
return true;
}
//adds and removes 'size' number of items from my linked list PQ 100 times and outputs mean and standard deviation
bool llAddRemove(vector<heapItem*> patientData, int size)
{
priorityQueueLL ll;
long *llTimes = new long[size];
long startTime;
long endTime;
for(int j = 0; j < 100; j++)
{
startTime = chrono::duration_cast<std::chrono::microseconds>( chrono::system_clock::now().time_since_epoch() ).count();
//adding items
for(int i = 0; i < size; i++)
{
ll.insertWord(patientData[i]->name, patientData[i]->priority, patientData[i]->treatment);
}
//removing items
for(int i = 0; i < size; i++)
{
LLNode *popped = ll.pop();
}
endTime = chrono::duration_cast<std::chrono::microseconds>( chrono::system_clock::now().time_since_epoch() ).count();
llTimes[j] = endTime-startTime;
}
long llMean = calculateMean(llTimes, 100);
long llSD = calculateSD(llTimes, 100, llMean);
std::cout << "LL Mean," << llMean << std::endl;
std::cout << "LL SD," << llSD << std::endl;
std::cout << std::endl;
return true;
}
//adds and removes 'size' number of items from the STD PQ 100 times and outputs mean and standard deviation
bool STDAddRemove(vector<heapItem*> patientData, int size)
{
std::priority_queue<heapItem> stdPQ;
long *stdTimes = new long[size];
long startTime;
long endTime;
for(int j = 0; j < 100; j++)
{
startTime = chrono::duration_cast<std::chrono::microseconds>( chrono::system_clock::now().time_since_epoch() ).count();
//adding items
for(int i = 0; i < size; i++)
{
heapItem currentItem = *patientData[i];
stdPQ.push(currentItem);
}
// removing items
for(int i = 0; i < size; i++)
{
stdPQ.pop();
}
endTime = chrono::duration_cast<std::chrono::microseconds>( chrono::system_clock::now().time_since_epoch() ).count();
long elapsedTime = endTime-startTime;
stdTimes[j] = elapsedTime;
}
long stdPQMean = calculateMean(stdTimes, 100);
long stdPQSD = calculateSD(stdTimes, 100, stdPQMean);
std::cout << "Built-in Mean," << stdPQMean << std::endl;
std::cout << "Built-in SD," << stdPQSD << std::endl;
std::cout << std::endl;
return true;
}
int main(int argc, char* argv[])
{
// verify we have the correct number of parameters, else throw error msg & return
if (argc < 2)
{
cout << "Usage: Assignment6Solution <inputfilename.txt>" << endl;
return 0;
}
std::vector<heapItem*> patientData;
patientData = readFile(argv[1]);
for(int i = 100; i <= 900; i+=100)
{
//adds and removes from each priority queue from sizes of 100 to 880
std::cout << "Size: " << min(i,880) << std::endl;
heapAddRemove(patientData, min(i,880));
llAddRemove(patientData,min(i,880));
STDAddRemove(patientData, min(i,880));
}
}
| [
"floriangfrick@hotmail.com"
] | floriangfrick@hotmail.com |
b12af849c513ad7272b1f4678446ce8bde5ba67b | d9001a89dd935ef5571637dc29951db7700be654 | /CprEachMaster.h | c210bfad71c59c2380edc6c6d192d8b22757ecdf | [] | no_license | ByronHsu/Cpr | ed86638dc48416d24472a362108f1b1dd0fd3a13 | 0b99ab2623be8dc703f2d20849b1bde2028ea5cc | refs/heads/master | 2021-01-13T11:17:05.431186 | 2017-01-15T16:18:00 | 2017-01-15T16:18:00 | 77,222,275 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,143 | h | /****************************************************************************
FileName [ CprEachMaster.h ]
Author [ Haowei Luan ]
Synopsis [ define masters on each card type ]
****************************************************************************/
#pragma once
#include "CprHandMaster.h"
#define CprEachMasterClass(T) \
class T : public CprHandMaster \
{ \
template <class S> friend class CprEachMasterTest; \
private: \
bool compareDeeply(const CprHand&, const CprHand&); \
bool determineMe(CprHand&); \
bool containsMe(const CprCollection&, CprHand&); \
bool containsMeUnder(const CprCollection&, const CprHand&, CprHand&); \
} \
CprEachMasterClass(CprStraightFlushMaster);
CprEachMasterClass(CprFourOfAKindMaster);
CprEachMasterClass(CprFullHouseMaster);
CprEachMasterClass(CprFlushMaster);
CprEachMasterClass(CprStraightMaster);
CprEachMasterClass(CprThreeOfAKindMaster);
CprEachMasterClass(CprTwoPairMaster);
CprEachMasterClass(CprOnePairMaster);
CprEachMasterClass(CprHighCardMaster);
| [
"byronhsu1230@gmail.com"
] | byronhsu1230@gmail.com |
0616717a7ab98c2511b22d6b3f89ce4750d9a67f | 26281d5afb15c109fb1c5720d4fe3010199731a4 | /PacMan/Code/Game/Main_Windows.cpp | 9448bcf7b3ee8d1db77eeee4d9aff2e1fe4bff8c | [] | no_license | nee4545/Guildhall | 77197494f8eee96bb41e5e2ca1fe5e81672c3803 | 3b44b3a6c562017ecc3a31265c7b98b602cbaceb | refs/heads/master | 2023-03-29T21:09:02.794232 | 2021-03-15T22:27:33 | 2021-03-15T22:27:33 | 235,437,386 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,188 | cpp | #define WIN32_LEAN_AND_MEAN // Always #define this before #including <windows.h>
#include <windows.h> // #include this (massive, platform-specific) header in very few places
#include <math.h>
#include <cassert>
#include <crtdbg.h>
#include "GameCommon.hpp"
//-----------------------------------------------------------------------------------------------
// #SD1ToDo: Remove all OpenGL references out of Main_Win32.cpp once you have a RenderContext
// Both of the following lines should be relocated to the top of Engine/Renderer/RenderContext.cpp
//
#include <gl/gl.h> // Include basic OpenGL constants and function declarations
#include "Engine/Core/Time.hpp"
#pragma comment( lib, "opengl32" ) // Link in the OpenGL32.lib static library
//-----------------------------------------------------------------------------------------------
// #SD1ToDo: Move this useful macro to a more central place, e.g. Engine/Core/EngineCommon.hpp
//
#define UNUSED(x) (void)(x);
//-----------------------------------------------------------------------------------------------
// #SD1ToDo: Move these constants to Game/GameCommon.hpp or elsewhere
//
//constexpr float CLIENT_ASPECT = 2.0f; // We are requesting a 1:1 aspect (square) window area
App *g_theapp=nullptr; //App pointer
InputSystem* g_theInput=nullptr;
//-----------------------------------------------------------------------------------------------
// #SD1ToDo: Move each of these items to its proper place, once that place is established
//
//bool g_isQuitting = false; // ...becomes App::m_isQuitting
HWND g_hWnd = nullptr; // ...becomes WindowContext::m_windowHandle
HDC g_displayDeviceContext = nullptr; // ...becomes WindowContext::m_displayContext
HGLRC g_openGLRenderingContext = nullptr; // ...becomes RenderContext::m_apiRenderingContext
const char* APP_NAME = "ProtoGame 2D"; // ...becomes ??? (Change this per project!)
//-----------------------------------------------------------------------------------------------
// Handles Windows (Win32) messages/events; i.e. the OS is trying to tell us something happened.
// This function is called by Windows whenever we ask it for notifications
//
// #SD1ToDo: We will move this function to a more appropriate place later on...
//
LRESULT CALLBACK WindowsMessageHandlingProcedure( HWND windowHandle, UINT wmMessageCode, WPARAM wParam, LPARAM lParam )
{
//input->HandleKeyPressed((unsigned char)wParam);
switch( wmMessageCode )
{
// App close requested via "X" button, or right-click "Close Window" on task bar, or "Close" from system menu, or Alt-F4
case WM_LBUTTONDOWN:
{
g_theInput->HandleLeftMouseButtonPressed();
break;
}
case WM_LBUTTONUP:
{
g_theInput->HandleLeftMouseButtonReleased();
break;
}
case WM_CLOSE:
{
g_theapp->HandleQuitRequested();
return 0; // "Consumes" this message (tells Windows "okay, we handled it")
}
// Raw physical keyboard "key-was-just-depressed" event (case-insensitive, not translated)
case WM_KEYDOWN:
{
unsigned char asKey = (unsigned char)wParam;
g_theInput->HandleKeyPressed(asKey);
break;
}
// Raw physical keyboard "key-was-just-released" event (case-insensitive, not translated)
case WM_KEYUP:
{
unsigned char asKey = (unsigned char) wParam;
g_theInput->HandleKeyReleased(asKey);
// #SD1ToDo: Tell the App and InputSystem about this key-released event...
break;
}
}
// Send back to Windows any unhandled/unconsumed messages we want other apps to see (e.g. play/pause in music apps, etc.)
return DefWindowProc( windowHandle, wmMessageCode, wParam, lParam );
}
//-----------------------------------------------------------------------------------------------
// #SD1ToDo: We will move this function to a more appropriate place later on...
//
void CreateOSWindow( void* applicationInstanceHandle, float clientAspect )
{
// Define a window style/class
WNDCLASSEX windowClassDescription;
memset( &windowClassDescription, 0, sizeof( windowClassDescription ) );
windowClassDescription.cbSize = sizeof( windowClassDescription );
windowClassDescription.style = CS_OWNDC; // Redraw on move, request own Display Context
windowClassDescription.lpfnWndProc = static_cast<WNDPROC>(WindowsMessageHandlingProcedure); // Register our Windows message-handling function
windowClassDescription.hInstance = GetModuleHandle( NULL );
windowClassDescription.hIcon = NULL;
windowClassDescription.hCursor = NULL;
windowClassDescription.lpszClassName = TEXT( "Simple Window Class" );
RegisterClassEx( &windowClassDescription );
// #SD1ToDo: Add support for fullscreen mode (requires different window style flags than windowed mode)
const DWORD windowStyleFlags = WS_CAPTION | WS_BORDER | WS_THICKFRAME | WS_SYSMENU | WS_OVERLAPPED;
const DWORD windowStyleExFlags = WS_EX_APPWINDOW;
// Get desktop rect, dimensions, aspect
RECT desktopRect;
HWND desktopWindowHandle = GetDesktopWindow();
GetClientRect( desktopWindowHandle, &desktopRect );
float desktopWidth = (float)(desktopRect.right - desktopRect.left);
float desktopHeight = (float)(desktopRect.bottom - desktopRect.top);
float desktopAspect = desktopWidth / desktopHeight;
// Calculate maximum client size (as some % of desktop size)
constexpr float maxClientFractionOfDesktop = 0.90f;
float clientWidth = desktopWidth * maxClientFractionOfDesktop;
float clientHeight = desktopHeight * maxClientFractionOfDesktop;
if( clientAspect > desktopAspect )
{
// Client window has a wider aspect than desktop; shrink client height to match its width
clientHeight = clientWidth / clientAspect;
}
else
{
// Client window has a taller aspect than desktop; shrink client width to match its height
clientWidth = clientHeight * clientAspect;
}
// Calculate client rect bounds by centering the client area
float clientMarginX = 0.5f * (desktopWidth - clientWidth);
float clientMarginY = 0.5f * (desktopHeight - clientHeight);
RECT clientRect;
clientRect.left = (int)clientMarginX;
clientRect.right = clientRect.left + (int)clientWidth;
clientRect.top = (int)clientMarginY;
clientRect.bottom = clientRect.top + (int)clientHeight;
// Calculate the outer dimensions of the physical window, including frame et. al.
RECT windowRect = clientRect;
AdjustWindowRectEx( &windowRect, windowStyleFlags, FALSE, windowStyleExFlags );
WCHAR windowTitle[1024];
MultiByteToWideChar( GetACP(), 0, APP_NAME, -1, windowTitle, sizeof( windowTitle ) / sizeof( windowTitle[0] ) );
g_hWnd = CreateWindowEx(
windowStyleExFlags,
windowClassDescription.lpszClassName,
windowTitle,
windowStyleFlags,
windowRect.left,
windowRect.top,
windowRect.right - windowRect.left,
windowRect.bottom - windowRect.top,
NULL,
NULL,
(HINSTANCE) applicationInstanceHandle,
NULL );
ShowWindow( g_hWnd, SW_SHOW );
SetForegroundWindow( g_hWnd );
SetFocus( g_hWnd );
g_displayDeviceContext = GetDC( g_hWnd );
HCURSOR cursor = LoadCursor( NULL, IDC_ARROW );
SetCursor( cursor );
}
//------------------------------------------------------------------------------------------------
// Given an existing OS Window, create a Rendering Context (RC) for, say, OpenGL to draw to it.
//
void CreateRenderContext()
{
// Creates an OpenGL rendering context (RC) and binds it to the current window's device context (DC)
PIXELFORMATDESCRIPTOR pixelFormatDescriptor;
memset( &pixelFormatDescriptor, 0, sizeof( pixelFormatDescriptor ) );
pixelFormatDescriptor.nSize = sizeof( pixelFormatDescriptor );
pixelFormatDescriptor.nVersion = 1;
pixelFormatDescriptor.dwFlags = PFD_DRAW_TO_WINDOW | PFD_SUPPORT_OPENGL | PFD_DOUBLEBUFFER;
pixelFormatDescriptor.iPixelType = PFD_TYPE_RGBA;
pixelFormatDescriptor.cColorBits = 24;
pixelFormatDescriptor.cDepthBits = 24;
pixelFormatDescriptor.cAccumBits = 0;
pixelFormatDescriptor.cStencilBits = 8;
int pixelFormatCode = ChoosePixelFormat( g_displayDeviceContext, &pixelFormatDescriptor );
SetPixelFormat( g_displayDeviceContext, pixelFormatCode, &pixelFormatDescriptor );
g_openGLRenderingContext = wglCreateContext( g_displayDeviceContext );
wglMakeCurrent( g_displayDeviceContext, g_openGLRenderingContext );
// #SD1ToDo: move all OpenGL functions (including those below) to RenderContext.cpp (only!)
glEnable( GL_BLEND );
glBlendFunc( GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA );
}
//-----------------------------------------------------------------------------------------------
// Processes all Windows messages (WM_xxx) for this app that have queued up since last frame.
// For each message in the queue, our WindowsMessageHandlingProcedure (or "WinProc") function
// is called, telling us what happened (key up/down, minimized/restored, gained/lost focus, etc.)
//
// #SD1ToDo: We will move this function to a more appropriate place later on...
//
void RunMessagePump()
{
MSG queuedMessage;
for( ;; )
{
const BOOL wasMessagePresent = PeekMessage( &queuedMessage, NULL, 0, 0, PM_REMOVE );
if( !wasMessagePresent )
{
break;
}
TranslateMessage( &queuedMessage );
DispatchMessage( &queuedMessage ); // This tells Windows to call our "WindowsMessageHandlingProcedure" (a.k.a. "WinProc") function
}
}
//-----------------------------------------------------------------------------------------------
// #SD1ToDo: Move this function to Game/App.cpp and rename it to TheApp::Startup()
//
void TheApp_Startup( void* applicationInstanceHandle, const char* commandLineString )
{
UNUSED( applicationInstanceHandle );
UNUSED( commandLineString );
// #SD1ToDo: ...with the two lines below
}
//-----------------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------------
// Some simple OpenGL example drawing code.
// This is the graphical equivalent of printing "Hello, world."
// #SD1ToDo:
//-----------------------------------------------------------------------------------------------
// #SD1ToDo: Move this function to Game/App.cpp and rename it to TheApp::EndFrame()
//
void TheApp_EndFrame()
{
// "Present" the backbuffer by swapping the front (visible) and back (working) screen buffers
SwapBuffers( g_displayDeviceContext ); // Note: call this once at the end of each frame
}
//-----------------------------------------------------------------------------------------------
// One "frame" of the game. Generally: Input, Update, Render. We call this 60+ times per second.
// #SD1ToDo: Move this function to Game/App.cpp and rename it to TheApp::RunFrame()
//
void RunFrame()
{
static double timeLastFrameStarted=GetCurrentTimeSeconds();
double timethisFrameStarted = GetCurrentTimeSeconds();
double deltaseconds =timethisFrameStarted-timeLastFrameStarted;
timeLastFrameStarted=timethisFrameStarted;
RunMessagePump();
g_theapp->BeginFrame(); //for all engine systems to do something early
g_theapp->Update((float)deltaseconds);
g_theapp->Render();
g_theapp->EndFrame();
TheApp_EndFrame(); // can't change to g_app->EndFrame() right now as we use swap buffers which requires variables used in main
}
//-----------------------------------------------------------------------------------------------
int WINAPI WinMain( _In_ HINSTANCE applicationInstanceHandle, _In_opt_ HINSTANCE, _In_ LPSTR commandLineString,_In_ int )
{
UNUSED( commandLineString );
UNUSED(applicationInstanceHandle);
g_theapp=new App();
CreateOSWindow( applicationInstanceHandle, CLIENT_ASPECT ); // #SD1ToDo: replace these two lines...
CreateRenderContext();
//TheApp_Startup( applicationInstanceHandle, commandLineString ); // #SD1ToDo: ...becomes: g_theApp = new App(); AND g_theApp->Startup();
g_theInput= new InputSystem();
g_theapp->Startup();
// Program main loop; keep running frames until it's time to quit
while( !g_theapp->isQuitting() ) // #SD1ToDo: ...becomes: !g_theApp->IsQuitting()
{
//Sleep(16);
RunFrame(); // #SD1ToDo: ...becomes g_theApp->RunFrame()
}
g_theapp->Shutdown(); // #SD1ToDo: ...becomes: g_theApp->Shutdown(); AND delete g_theApp; AND g_theApp = nullptr;
return 0;
}
| [
"neeraj.jairam@gmail.com"
] | neeraj.jairam@gmail.com |
cb9b8e905dd9aeddfe8c26121a571855a184a799 | 2779be59343d231855bbeafd087fc571d0f867dc | /Team Practice/PWNRC2016/I.cpp | 6a294787d76ba950fa500443eff0d3c6a97c9d26 | [] | no_license | frankbozar/Competitive-Programming | 4d7dbdf3db414718e77cc5afd69398b1f7f01eb8 | bcb1c363d11ada1f05ccd59bc8c93238c2503b23 | refs/heads/master | 2020-06-15T07:34:24.117330 | 2017-09-25T07:09:47 | 2017-09-25T07:09:47 | 75,315,592 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,515 | cpp | #include<cstdio>
#include<queue>
#include<vector>
#include<algorithm>
using namespace std;
const int INF=1<<20;
struct dinic
{
struct edge
{
int t, c, r;
edge(int _t, int _c, int _r) : t(_t), c(_c), r(_r){}
};
vector<int> l;
vector<vector<edge>> e;
dinic(int n) : e(n+1){}
void add(int u, int v, int w)
{
e[u].push_back(edge(v, w, e[v].size()));
e[v].push_back(edge(u, 0, e[u].size()-1));
}
edge& rev(const edge& E)
{
return e[E.t][E.r];
}
bool bfs(int s, int t)
{
l.assign(e.size(), INF);
l[s]=1;
queue<int> Q;
for(Q.push(s); !Q.empty(); Q.pop())
{
s=Q.front();
for(const edge& E : e[s])
{
if( l[E.t]>l[s]+1 && E.c>0 )
{
l[E.t]=l[s]+1;
Q.push(E.t);
}
}
}
return l[t]<INF;
}
int dfs(int s, int t, int num=INF)
{
if( s==t || num==0 )
return num;
int ans=0;
for(edge& E : e[s])
{
if( l[E.t]==l[s]+1 )
{
int tmp=dfs(E.t, t, min(E.c, num));
rev(E).c+=tmp;
E.c-=tmp;
ans+=tmp;
num-=tmp;
}
}
return ans>0 ? ans : l[s]=0 ;
}
int operator()(int s, int t)
{
int ans=0, tmp;
while( bfs(s, t) )
while( (tmp=dfs(s, t)) )
ans+=tmp;
return ans;
}
};
int main()
{
int n, m, k;
scanf("%d%d%d", &n, &m, &k);
dinic D(n+m+k+3);
for(int i=1; i<=n; i++)
{
int l;
for(scanf("%d", &l); l>0; l--)
{
int t;
scanf("%d", &t);
D.add(n+t, i, 1);
}
D.add(i, 0, 1);
}
vector<int> p(m+1, k+1), d(k+2, INF);
for(int i=1; i<=k; i++)
{
int l;
for(scanf("%d", &l); l>0; l--)
{
int t;
scanf("%d", &t);
p[t]=i;
}
scanf("%d", &d[i]);
}
for(int i=1; i<=m; i++)
D.add(n+m+p[i], n+i, 1);
for(int i=1; i<=k+1; i++)
D.add(n+m+k+2, n+m+i, d[i]);
printf("%d\n", D(n+m+k+2, 0));
}
/*
4 3 1
2 1 2
2 1 2
1 3
1 3
2 1 2 1
*/
| [
"frankbozar@frank.local"
] | frankbozar@frank.local |
7784257089c78d949ed8467768a250211e1b5915 | 7c2b0a9f7cf5ad28e019c6ef75d7a564759cd79b | /ALL_SDK/AAX_SDK/Interfaces/AAX_VController.h | c72a19a2e17f5007b640a26eb518508faefd573f | [
"MS-PL"
] | permissive | g40/RackAFX-Dev | 78f0ddcdaadfa90dcc8bca6b8b32e583b566d95c | 0b16bd6e3a5d984813f62eb3cb3889caafc6aef9 | refs/heads/master | 2022-04-18T02:12:30.061582 | 2019-02-23T19:38:28 | 2019-02-23T19:38:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,723 | h | /*================================================================================================*/
/*
*
* Copyright 2013-2017 by Avid Technology, Inc.
* All rights reserved.
*
* CONFIDENTIAL: This document contains confidential information. Do not
* read or examine this document unless you are an Avid Technology employee
* or have signed a non-disclosure agreement with Avid Technology which protects
* the confidentiality of this document. DO NOT DISCLOSE ANY INFORMATION
* CONTAINED IN THIS DOCUMENT TO ANY THIRD-PARTY WITHOUT THE PRIOR WRITTEN CONSENT
* OF Avid Technology, INC.
*
*/
/**
* \file AAX_VController.h
*
* \brief Version-managed concrete Controller class
*
*/
/*================================================================================================*/
#ifndef AAX_VCONTROLLER_H
#define AAX_VCONTROLLER_H
#include "AAX_IController.h"
#include "AAX_IACFController.h"
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wself-assign"
#pragma clang diagnostic ignored "-Wnon-virtual-dtor"
#endif
#include "ACFPtr.h"
#ifdef __clang__
#pragma clang diagnostic pop
#endif
class IACFUnknown;
class IACFComponentFactory;
class AAX_IACFPageTableController;
class AAX_IACFPageTableController_V2;
class AAX_IACFPageTable_V2;
/*!
\brief Version-managed concrete \ref AAX_IController "Controller" class
\details
For usage information, see \ref using_acf_host_provided_interfaces
*/
class AAX_VController : public AAX_IController
{
public:
AAX_VController( IACFUnknown* pUnknown );
virtual ~AAX_VController();
//Host Information Getters
virtual AAX_Result GetEffectID ( AAX_IString * outEffectID) const AAX_OVERRIDE; ///< \copydoc AAX_IController::GetEffectID()
virtual AAX_Result GetSampleRate ( AAX_CSampleRate * outSampleRate ) const AAX_OVERRIDE; ///< \copydoc AAX_IController::GetSampleRate()
virtual AAX_Result GetInputStemFormat ( AAX_EStemFormat * outStemFormat ) const AAX_OVERRIDE; ///< \copydoc AAX_IController::GetInputStemFormat()
virtual AAX_Result GetOutputStemFormat ( AAX_EStemFormat * outStemFormat ) const AAX_OVERRIDE; ///< \copydoc AAX_IController::GetOutputStemFormat()
virtual AAX_Result GetSignalLatency( int32_t* outSamples) const AAX_OVERRIDE; ///< \copydoc AAX_IController::GetSignalLatency()
virtual AAX_Result GetHybridSignalLatency(int32_t* outSamples) const AAX_OVERRIDE; ///< \copydoc AAX_IController::GetHybridSignalLatency()
virtual AAX_Result GetPlugInTargetPlatform(AAX_CTargetPlatform* outTargetPlatform) const AAX_OVERRIDE; ///< \copydoc AAX_IController::GetPlugInTargetPlatform()
virtual AAX_Result GetIsAudioSuite(AAX_CBoolean* outIsAudioSuite) const AAX_OVERRIDE; ///< \copydoc AAX_IController::GetIsAudioSuite()
virtual AAX_Result GetCycleCount( AAX_EProperty inWhichCycleCount, AAX_CPropertyValue* outNumCycles) const AAX_OVERRIDE; ///< \copydoc AAX_IController::GetCycleCount()
virtual AAX_Result GetTODLocation ( AAX_CTimeOfDay* outTODLocation ) const AAX_OVERRIDE; ///< \copydoc AAX_IController::GetTODLocation()
virtual AAX_Result GetCurrentAutomationTimestamp(AAX_CTransportCounter* outTimestamp) const AAX_OVERRIDE; ///< \copydoc AAX_IController::GetCurrentAutomationTimestamp()
virtual AAX_Result GetHostName(AAX_IString* outHostNameString) const AAX_OVERRIDE; ///< \copydoc AAX_IController::GetHostName()
//Host Information Setters (Dynamic info)
virtual AAX_Result SetSignalLatency(int32_t inNumSamples) AAX_OVERRIDE; ///< \copydoc AAX_IController::SetSignalLatency()
virtual AAX_Result SetCycleCount( AAX_EProperty* inWhichCycleCounts, AAX_CPropertyValue* iValues, int32_t numValues) AAX_OVERRIDE; ///< \copydoc AAX_IController::SetCycleCount()
//Posting functions.
virtual AAX_Result PostPacket ( AAX_CFieldIndex inFieldIndex, const void * inPayloadP, uint32_t inPayloadSize ) AAX_OVERRIDE; ///< \copydoc AAX_IController::PostPacket()
// Notification functions
virtual AAX_Result SendNotification ( AAX_CTypeID inNotificationType, const void* inNotificationData, uint32_t inNotificationDataSize ) AAX_OVERRIDE; ///< \copydoc AAX_IController::SendNotification(AAX_CTypeID, const void*, uint32_t)
virtual AAX_Result SendNotification ( AAX_CTypeID inNotificationType) AAX_OVERRIDE; ///< \copydoc AAX_IController::SendNotification(AAX_CTypeID) \note Not an AAX interface method
//Metering functions
virtual AAX_Result GetCurrentMeterValue ( AAX_CTypeID inMeterID, float * outMeterValue ) const AAX_OVERRIDE; ///< \copydoc AAX_IController::GetCurrentMeterValue()
virtual AAX_Result GetMeterPeakValue( AAX_CTypeID inMeterID, float * outMeterPeakValue ) const AAX_OVERRIDE; ///< \copydoc AAX_IController::GetMeterPeakValue()
virtual AAX_Result ClearMeterPeakValue ( AAX_CTypeID inMeterID ) const AAX_OVERRIDE; ///< \copydoc AAX_IController::ClearMeterPeakValue()
virtual AAX_Result GetMeterClipped ( AAX_CTypeID inMeterID, AAX_CBoolean * outClipped ) const AAX_OVERRIDE; ///< \copydoc AAX_IController::GetMeterClipped()
virtual AAX_Result ClearMeterClipped ( AAX_CTypeID inMeterID ) const AAX_OVERRIDE; ///< \copydoc AAX_IController::ClearMeterClipped()
virtual AAX_Result GetMeterCount ( uint32_t * outMeterCount ) const AAX_OVERRIDE; ///< \copydoc AAX_IController::GetMeterCount()
//MIDI functions
virtual AAX_Result GetNextMIDIPacket( AAX_CFieldIndex* outPort, AAX_CMidiPacket* outPacket ) AAX_OVERRIDE; ///< \copydoc AAX_IController::GetNextMIDIPacket()
// PageTables functions
/** \copydoc AAX_IController::CreateTableCopyForEffect()
*/
virtual
AAX_IPageTable*
CreateTableCopyForEffect(AAX_CPropertyValue inManufacturerID,
AAX_CPropertyValue inProductID,
AAX_CPropertyValue inPlugInID,
uint32_t inTableType,
int32_t inTablePageSize) const AAX_OVERRIDE;
/** \copydoc AAX_IController::CreateTableCopyForLayout()
*/
virtual
AAX_IPageTable*
CreateTableCopyForLayout(const char * inEffectID,
const char * inLayoutName,
uint32_t inTableType,
int32_t inTablePageSize) const AAX_OVERRIDE;
/** \copydoc AAX_IController::CreateTableCopyForEffectFromFile()
*/
virtual
AAX_IPageTable*
CreateTableCopyForEffectFromFile(const char* inPageTableFilePath,
AAX_ETextEncoding inFilePathEncoding,
AAX_CPropertyValue inManufacturerID,
AAX_CPropertyValue inProductID,
AAX_CPropertyValue inPlugInID,
uint32_t inTableType,
int32_t inTablePageSize) const AAX_OVERRIDE;
/** \copydoc AAX_IController::CreateTableCopyForLayoutFromFile()
*/
virtual
AAX_IPageTable*
CreateTableCopyForLayoutFromFile(const char* inPageTableFilePath,
AAX_ETextEncoding inFilePathEncoding,
const char* inLayoutName,
uint32_t inTableType,
int32_t inTablePageSize) const AAX_OVERRIDE;
private:
/** @name Component factory methods
*
*/
//@{
/** Creates a new, empty \ref AAX_IPageTable object
Ownership of this object passes to the caller. It is strongly recommended to capture the
returned pointer in a smart pointer (e.g. \c std::shared_ptr) to avoid memory leaks.
The returned pointer may be NULL if the host does not support the page table interface.
*/
ACFPtr<AAX_IACFPageTable_V2> CreatePageTable() const;
//@}end Component factory methods
private:
ACFPtr<AAX_IACFController> mIController;
ACFPtr<AAX_IACFController_V2> mIControllerV2;
ACFPtr<AAX_IACFController_V3> mIControllerV3;
// AAX_IACFPageTableController interface methods are aggregated into AAX_IController
ACFPtr<AAX_IACFPageTableController> mIPageTableController;
ACFPtr<AAX_IACFPageTableController_V2> mIPageTableControllerV2;
ACFPtr<IACFComponentFactory> mComponentFactory;
};
#endif // AAX_VCONTROLLER_H
| [
"jonathanmoore@computer.org"
] | jonathanmoore@computer.org |
8d544726f715666fe740459f3d91094666c7242b | 36701a7bbf9ab496ece446c4f99dc46829bdc6a8 | /abc202/a.cpp | 0d3321bfed5187f0b6907518835b8e38e4579e34 | [] | no_license | yyatsuo/atcoder | de83ec74cb30fac10e80701871fa97233823d8d8 | d9dc1734514e0235b606bf9195373de34c49e695 | refs/heads/master | 2022-03-04T02:40:32.878692 | 2022-02-27T13:13:05 | 2022-02-27T13:13:05 | 182,335,971 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 716 | cpp | #include <bits/stdc++.h>
#define INF INT_MAX
#define ll long long
#define ull unsigned long long
#define rep(i,n) for(ll i=0; i<n; ++i)
#define repp(i,n) for(ll i=1; i<=n; ++i)
#define FOR(i, s, e) for(ll i=s; i<e; ++i)
#define MOD 1000000007
#define YesNo(e) printf("%s\n", e ? "Yes" : "No");
using namespace std;
template<class T> inline bool chmin(T& a, T b) { if(a>b) {a=b; return true;} return false;}
template<class T> inline bool chmax(T& a, T b) { if(a<b) {a=b; return true;} return false;}
int gcd(int x, int y) { if(x % y == 0) { return y; } else { return gcd(y, x % y); } }
int main() {
cin.tie(0);
ios::sync_with_stdio(false);
int a, b, c; cin >> a >> b >> c;
cout << 21 - (a+b+c) << endl;
}
| [
"yyatsuo@debian.or.jp"
] | yyatsuo@debian.or.jp |
8b91ddcefff1ba80dc3d3e92226483c5b9d532d4 | ea9fdab491ca277959f7dc59004d1a30c4ee6be4 | /namecoin/patches/patch-src_netbase.cpp | eefa2dbeffa21e97a84db528a83ef51f8e9b8aa0 | [] | no_license | NetBSD/pkgsrc-wip | 99f40fb6f56e2a5a11840a810e9cf8b6097e7f21 | c94e923855e9515400435b2437a1659fdb26d2fb | refs/heads/master | 2023-08-30T14:27:26.946664 | 2023-08-30T12:09:15 | 2023-08-30T12:09:15 | 42,824,785 | 81 | 59 | null | 2021-01-28T20:10:38 | 2015-09-20T18:44:07 | Makefile | UTF-8 | C++ | false | false | 816 | cpp | $NetBSD$
It is unclear why this patch exists. NetBSD 6 and 7 have AI_ADDRCONFIG,
although NetBSD 5 does not. Arguably upstream should have an autoconf
test instead. This is not known to be reported upstream.
--- src/netbase.cpp.orig 2020-06-02 07:43:04.000000000 +0000
+++ src/netbase.cpp
@@ -96,7 +96,11 @@ bool static LookupIntern(const std::stri
// If we don't allow lookups, then use the AI_NUMERICHOST flag for
// getaddrinfo to only decode numerical network addresses and suppress
// hostname lookups.
+#ifdef AI_ADDRCONFIG
aiHint.ai_flags = fAllowLookup ? AI_ADDRCONFIG : AI_NUMERICHOST;
+#else
+ aiHint.ai_flags = fAllowLookup ? 0 : AI_NUMERICHOST;
+#endif
struct addrinfo *aiRes = nullptr;
int nErr = getaddrinfo(name.c_str(), nullptr, &aiHint, &aiRes);
if (nErr)
| [
"rillig@NetBSD.org"
] | rillig@NetBSD.org |
a5e04de222d1d32c242770e58c5db20021fc6924 | 53ffff4bf1b977e52da7b925cfa428f9c291e937 | /State/workState/ResetState.h | cbd6549627a393b07b84dff278d0bdb8bb1e279f | [] | no_license | willtuna/DesignPatternExercise | 4260c1b2b7096e353b4b0eea67ee028a9c9992ca | 8d1b43c5a739f2fa8705ce5a96fa8c50f1c47b36 | refs/heads/master | 2020-04-14T17:13:07.968621 | 2014-09-03T10:25:21 | 2014-09-03T10:25:21 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 142 | h | #ifndef RESETSTATE_H
#define RESETSTATE_H
#include "state.h"
class ResetState : public State
{
public:
void WriteProgram(Work& w);
};
#endif | [
"Kx_wang@chilinopto.com.tw"
] | Kx_wang@chilinopto.com.tw |
71bd51e28be7b56b8b57f0a355b1b44d6f36a9b4 | 8567438779e6af0754620a25d379c348e4cd5a5d | /content/browser/service_worker/embedded_worker_instance.h | cc5ef5784c8fc6deeda572acdf3ce14f59d7b7f9 | [
"BSD-3-Clause"
] | permissive | thngkaiyuan/chromium | c389ac4b50ccba28ee077cbf6115c41b547955ae | dab56a4a71f87f64ecc0044e97b4a8f247787a68 | refs/heads/master | 2022-11-10T02:50:29.326119 | 2017-04-08T12:28:57 | 2017-04-08T12:28:57 | 84,073,924 | 0 | 1 | BSD-3-Clause | 2022-10-25T19:47:15 | 2017-03-06T13:04:15 | null | UTF-8 | C++ | false | false | 12,609 | h | // Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CONTENT_BROWSER_SERVICE_WORKER_EMBEDDED_WORKER_INSTANCE_H_
#define CONTENT_BROWSER_SERVICE_WORKER_EMBEDDED_WORKER_INSTANCE_H_
#include <stdint.h>
#include <memory>
#include <string>
#include "base/callback.h"
#include "base/callback_forward.h"
#include "base/gtest_prod_util.h"
#include "base/logging.h"
#include "base/macros.h"
#include "base/memory/ref_counted.h"
#include "base/memory/weak_ptr.h"
#include "base/observer_list.h"
#include "base/strings/string16.h"
#include "base/time/time.h"
#include "content/browser/service_worker/embedded_worker_status.h"
#include "content/browser/service_worker/service_worker_metrics.h"
#include "content/common/content_export.h"
#include "content/common/service_worker/embedded_worker.mojom.h"
#include "content/common/service_worker/service_worker_event_dispatcher.mojom.h"
#include "content/common/service_worker/service_worker_status_code.h"
#include "url/gurl.h"
// Windows headers will redefine SendMessage.
#ifdef SendMessage
#undef SendMessage
#endif
namespace IPC {
class Message;
}
namespace content {
class EmbeddedWorkerRegistry;
struct EmbeddedWorkerStartParams;
class ServiceWorkerContextCore;
// This gives an interface to control one EmbeddedWorker instance, which
// may be 'in-waiting' or running in one of the child processes added by
// AddProcessReference().
class CONTENT_EXPORT EmbeddedWorkerInstance {
public:
typedef base::Callback<void(ServiceWorkerStatusCode)> StatusCallback;
// This enum is used in UMA histograms. Append-only.
enum StartingPhase {
NOT_STARTING,
ALLOCATING_PROCESS,
REGISTERING_TO_DEVTOOLS,
SENT_START_WORKER,
SCRIPT_DOWNLOADING,
SCRIPT_LOADED,
SCRIPT_EVALUATED,
THREAD_STARTED, // Happens after SCRIPT_LOADED and before SCRIPT_EVALUATED
// Script read happens after SENT_START_WORKER and before SCRIPT_LOADED
// (installed scripts only)
SCRIPT_READ_STARTED,
SCRIPT_READ_FINISHED,
// Add new values here.
STARTING_PHASE_MAX_VALUE,
};
class Listener {
public:
virtual ~Listener() {}
virtual void OnStarting() {}
virtual void OnProcessAllocated() {}
virtual void OnRegisteredToDevToolsManager() {}
virtual void OnStartWorkerMessageSent() {}
virtual void OnThreadStarted() {}
virtual void OnStarted() {}
virtual void OnStopping() {}
// Received ACK from renderer that the worker context terminated.
virtual void OnStopped(EmbeddedWorkerStatus old_status) {}
// The browser-side IPC endpoint for communication with the worker died.
virtual void OnDetached(EmbeddedWorkerStatus old_status) {}
virtual void OnScriptLoaded() {}
virtual void OnScriptLoadFailed() {}
virtual void OnReportException(const base::string16& error_message,
int line_number,
int column_number,
const GURL& source_url) {}
virtual void OnReportConsoleMessage(int source_identifier,
int message_level,
const base::string16& message,
int line_number,
const GURL& source_url) {}
// Returns false if the message is not handled by this listener.
CONTENT_EXPORT virtual bool OnMessageReceived(const IPC::Message& message);
};
~EmbeddedWorkerInstance();
// Starts the worker. It is invalid to call this when the worker is not in
// STOPPED status. |callback| is invoked after the worker script has been
// started and evaluated, or when an error occurs.
// |params| should be populated with service worker version info needed
// to start the worker.
void Start(std::unique_ptr<EmbeddedWorkerStartParams> params,
mojom::ServiceWorkerEventDispatcherRequest dispatcher_request,
const StatusCallback& callback);
// Stops the worker. It is invalid to call this when the worker is
// not in STARTING or RUNNING status.
// This returns false when StopWorker IPC couldn't be sent to the worker.
bool Stop();
// Stops the worker if the worker is not being debugged (i.e. devtools is
// not attached). This method is called by a stop-worker timer to kill
// idle workers.
void StopIfIdle();
// Sends |message| to the embedded worker running in the child process.
// It is invalid to call this while the worker is not in STARTING or RUNNING
// status.
ServiceWorkerStatusCode SendMessage(const IPC::Message& message);
// Resumes the worker if it paused after download.
void ResumeAfterDownload();
int embedded_worker_id() const { return embedded_worker_id_; }
EmbeddedWorkerStatus status() const { return status_; }
StartingPhase starting_phase() const {
DCHECK_EQ(EmbeddedWorkerStatus::STARTING, status());
return starting_phase_;
}
int restart_count() const { return restart_count_; }
int process_id() const;
int thread_id() const { return thread_id_; }
// This should be called only when the worker instance has a valid process,
// that is, when |process_id()| returns a valid process id.
bool is_new_process() const;
int worker_devtools_agent_route_id() const;
void AddListener(Listener* listener);
void RemoveListener(Listener* listener);
void set_devtools_attached(bool attached) { devtools_attached_ = attached; }
bool devtools_attached() const { return devtools_attached_; }
bool network_accessed_for_script() const {
return network_accessed_for_script_;
}
ServiceWorkerMetrics::StartSituation start_situation() const {
DCHECK(status() == EmbeddedWorkerStatus::STARTING ||
status() == EmbeddedWorkerStatus::RUNNING);
return start_situation_;
}
// Called when the main script load accessed the network.
void OnNetworkAccessedForScriptLoad();
// Called when reading the main script from the service worker script cache
// begins and ends.
void OnScriptReadStarted();
void OnScriptReadFinished();
// Called when the worker is installed.
void OnWorkerVersionInstalled();
// Called when the worker is doomed.
void OnWorkerVersionDoomed();
// Called when the net::URLRequestJob to load the service worker script
// created. Not called for import scripts.
void OnURLJobCreatedForMainScript();
// Add message to the devtools console.
void AddMessageToConsole(blink::WebConsoleMessage::Level level,
const std::string& message);
static std::string StatusToString(EmbeddedWorkerStatus status);
static std::string StartingPhaseToString(StartingPhase phase);
void Detach();
base::WeakPtr<EmbeddedWorkerInstance> AsWeakPtr();
private:
typedef base::ObserverList<Listener> ListenerList;
class DevToolsProxy;
class StartTask;
class WorkerProcessHandle;
friend class EmbeddedWorkerRegistry;
FRIEND_TEST_ALL_PREFIXES(EmbeddedWorkerInstanceTest, StartAndStop);
FRIEND_TEST_ALL_PREFIXES(EmbeddedWorkerInstanceTest, DetachDuringStart);
FRIEND_TEST_ALL_PREFIXES(EmbeddedWorkerInstanceTest, StopDuringStart);
// Constructor is called via EmbeddedWorkerRegistry::CreateWorker().
// This instance holds a ref of |registry|.
EmbeddedWorkerInstance(base::WeakPtr<ServiceWorkerContextCore> context,
int embedded_worker_id);
// Called back from StartTask after a process is allocated on the UI thread.
void OnProcessAllocated(std::unique_ptr<WorkerProcessHandle> handle,
ServiceWorkerMetrics::StartSituation start_situation);
// Called back from StartTask after the worker is registered to
// WorkerDevToolsManager.
void OnRegisteredToDevToolsManager(bool is_new_process,
int worker_devtools_agent_route_id,
bool wait_for_debugger);
// Sends StartWorker message via Mojo.
ServiceWorkerStatusCode SendStartWorker(
std::unique_ptr<EmbeddedWorkerStartParams> params);
// Called back from StartTask after a start worker message is sent.
void OnStartWorkerMessageSent();
// Called back from Registry when the worker instance has ack'ed that
// it is ready for inspection.
void OnReadyForInspection();
// Called back from Registry when the worker instance has ack'ed that
// it finished loading the script.
void OnScriptLoaded();
// Called back from Registry when the worker instance has ack'ed that
// it has started a worker thread.
void OnThreadStarted(int thread_id);
// Called back from Registry when the worker instance has ack'ed that
// it failed to load the script.
void OnScriptLoadFailed();
// Called back from Registry when the worker instance has ack'ed that
// it finished evaluating the script. This is called before OnStarted.
void OnScriptEvaluated(bool success);
// Called back from Registry when the worker instance has ack'ed that its
// WorkerGlobalScope has actually started and evaluated the script. This is
// called after OnScriptEvaluated.
// This will change the internal status from STARTING to RUNNING.
void OnStarted();
// Called back from Registry when the worker instance has ack'ed that
// its WorkerGlobalScope is actually stopped in the child process.
// This will change the internal status from STARTING or RUNNING to
// STOPPED.
void OnStopped();
// Called when ServiceWorkerDispatcherHost for the worker died while it was
// running.
void OnDetached();
// Called back from Registry when the worker instance sends message
// to the browser (i.e. EmbeddedWorker observers).
// Returns false if the message is not handled.
bool OnMessageReceived(const IPC::Message& message);
// Called back from Registry when the worker instance reports the exception.
void OnReportException(const base::string16& error_message,
int line_number,
int column_number,
const GURL& source_url);
// Called back from Registry when the worker instance reports to the console.
void OnReportConsoleMessage(int source_identifier,
int message_level,
const base::string16& message,
int line_number,
const GURL& source_url);
// Resets all running state. After this function is called, |status_| is
// STOPPED.
void ReleaseProcess();
// Called back from StartTask when the startup sequence failed. Calls
// ReleaseProcess() and invokes |callback| with |status|. May destroy |this|.
void OnStartFailed(const StatusCallback& callback,
ServiceWorkerStatusCode status);
// Returns the time elapsed since |step_time_| and updates |step_time_|
// to the current time.
base::TimeDelta UpdateStepTime();
base::WeakPtr<ServiceWorkerContextCore> context_;
scoped_refptr<EmbeddedWorkerRegistry> registry_;
// Unique within an EmbeddedWorkerRegistry.
const int embedded_worker_id_;
EmbeddedWorkerStatus status_;
StartingPhase starting_phase_;
int restart_count_;
// Current running information.
std::unique_ptr<EmbeddedWorkerInstance::WorkerProcessHandle> process_handle_;
int thread_id_;
// |client_| is used to send messages to the renderer process.
mojom::EmbeddedWorkerInstanceClientPtr client_;
// TODO(shimazu): Remove this after EmbeddedWorkerStartParams is changed to
// a mojo struct.
mojom::ServiceWorkerEventDispatcherRequest pending_dispatcher_request_;
// Whether devtools is attached or not.
bool devtools_attached_;
// True if the script load request accessed the network. If the script was
// served from HTTPCache or ServiceWorkerDatabase this value is false.
bool network_accessed_for_script_;
ListenerList listener_list_;
std::unique_ptr<DevToolsProxy> devtools_proxy_;
std::unique_ptr<StartTask> inflight_start_task_;
// This is valid only after a process is allocated for the worker.
ServiceWorkerMetrics::StartSituation start_situation_ =
ServiceWorkerMetrics::StartSituation::UNKNOWN;
// Used for UMA. The start time of the current start sequence step.
base::TimeTicks step_time_;
base::WeakPtrFactory<EmbeddedWorkerInstance> weak_factory_;
DISALLOW_COPY_AND_ASSIGN(EmbeddedWorkerInstance);
};
} // namespace content
#endif // CONTENT_BROWSER_SERVICE_WORKER_EMBEDDED_WORKER_INSTANCE_H_
| [
"hedonist.ky@gmail.com"
] | hedonist.ky@gmail.com |
3ea6af0ee63891059cdd0a83ad8a5ccea43c07cb | 55f96fe96191b78a766fd3adf45967183ea81578 | /bea/tuxedo8.1/include/xercesc/sax/SAXException.hpp | ec0702fbde7fb30f24b072c5ee900a11e2c2bf9d | [] | no_license | Billpro-Software/ninja-bea-tuxedo-8-1 | 79dd195acac94632beb948955a85480ce1bc0d63 | f6e85879a5053bfd4d1ad8e2f7d3c78aec21e802 | refs/heads/master | 2021-05-20T09:14:32.836968 | 2020-04-02T10:28:19 | 2020-04-02T10:28:19 | 252,208,511 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,723 | hpp | /*
* The Apache Software License, Version 1.1
*
* Copyright (c) 1999-2000 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. 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.
*
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
* 4. The names "Xerces" and "Apache Software Foundation" must
* not be used to endorse or promote products derived from this
* software without prior written permission. For written
* permission, please contact apache\@apache.org.
*
* 5. Products derived from this software may not be called "Apache",
* nor may "Apache" appear in their name, without prior written
* permission of the Apache Software Foundation.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED 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 APACHE SOFTWARE FOUNDATION OR
* ITS 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.
* ====================================================================
*
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation, and was
* originally based on software copyright (c) 1999, International
* Business Machines, Inc., http://www.ibm.com . For more information
* on the Apache Software Foundation, please see
* <http://www.apache.org/>.
*/
/*
* $Log: SAXException.hpp,v $
* Revision 1.1 2002/05/11 20:23:48 bhavani
* CR#CR062582# adding xercesc 1.7 file
*
* Revision 1.1.1.1 2002/02/01 22:22:08 peiyongz
* sane_include
*
* Revision 1.8 2000/09/07 23:55:02 andyh
* Fix SAXException assignment operator. Now non-virtual, and
* SAXParseException invokes base class operator.
*
* Revision 1.7 2000/08/09 22:06:04 jpolast
* more functionality to SAXException and its children.
* msgs are now functional for SAXNotSupportedEx and
* SAXNotRecognizedEx
*
* Revision 1.6 2000/08/02 18:04:02 jpolast
* include SAXNotSupportedException and
* SAXNotRecognizedException needed for sax2
*
* Revision 1.5 2000/02/24 20:12:55 abagchi
* Swat for removing Log from API docs
*
* Revision 1.4 2000/02/09 19:15:17 abagchi
* Inserted documentation for new APIs
*
* Revision 1.3 2000/02/06 07:47:58 rahulj
* Year 2K copyright swat.
*
* Revision 1.2 1999/12/18 00:21:23 roddey
* Fixed a small reported memory leak
*
* Revision 1.1.1.1 1999/11/09 01:07:47 twl
* Initial checkin
*
* Revision 1.2 1999/11/08 20:45:02 rahul
* Swat for adding in Product name and CVS comment log variable.
*
*/
#ifndef SAXEXCEPTION_HPP
#define SAXEXCEPTION_HPP
#include <xercesc/util/XMLString.hpp>
#include <xercesc/util/XMLUni.hpp>
/**
* Encapsulate a general SAX error or warning.
*
* <p>This class can contain basic error or warning information from
* either the XML SAX parser or the application: a parser writer or
* application writer can subclass it to provide additional
* functionality. SAX handlers may throw this exception or
* any exception subclassed from it.</p>
*
* <p>If the application needs to pass through other types of
* exceptions, it must wrap those exceptions in a SAXException
* or an exception derived from a SAXException.</p>
*
* <p>If the parser or application needs to include information
* about a specific location in an XML document, it should use the
* SAXParseException subclass.</p>
*
* @see SAXParseException#SAXParseException
*/
class SAX_EXPORT SAXException
{
public:
/** @name Constructors and Destructor */
//@{
/** Default constructor
*/
SAXException() :
fMsg(XMLString::replicate(XMLUni::fgZeroLenString))
{
}
/**
* Create a new SAXException.
*
* @param msg The error or warning message.
*/
SAXException(const XMLCh* const msg) :
fMsg(XMLString::replicate(msg))
{
}
/**
* Create a new SAXException.
*
* @param msg The error or warning message.
*/
SAXException(const char* const msg) :
fMsg(XMLString::transcode(msg))
{
}
/**
* Copy constructor
*
* @param toCopy The exception to be copy constructed
*/
SAXException(const SAXException& toCopy) :
fMsg(XMLString::replicate(toCopy.fMsg))
{
}
/** Destructor */
virtual ~SAXException()
{
delete [] fMsg;
}
//@}
/** @name Public Operators */
//@{
/**
* Assignment operator
*
* @param toCopy The object to be copied
*/
SAXException& operator=(const SAXException& toCopy)
{
if (this == &toCopy)
return *this;
delete [] fMsg;
fMsg = XMLString::replicate(toCopy.fMsg);
return *this;
}
//@}
/** @name Getter Methods */
//@{
/**
* Get the contents of the message
*
*/
virtual const XMLCh* getMessage() const
{
return fMsg;
}
//@}
protected :
// -----------------------------------------------------------------------
// Protected data members
//
// fMsg
// This is the text of the error that is being thrown.
// -----------------------------------------------------------------------
XMLCh* fMsg;
};
class SAXNotSupportedException : public SAXException
{
public:
SAXNotSupportedException();
/**
* Create a new SAXException.
*
* @param msg The error or warning message.
*/
SAXNotSupportedException(const XMLCh* const msg);
/**
* Create a new SAXException.
*
* @param msg The error or warning message.
*/
SAXNotSupportedException(const char* const msg);
/**
* Copy constructor
*
* @param toCopy The exception to be copy constructed
*/
SAXNotSupportedException(const SAXException& toCopy);
};
class SAXNotRecognizedException : public SAXException
{
public:
SAXNotRecognizedException();
/**
* Create a new SAXException.
*
* @param msg The error or warning message.
*/
SAXNotRecognizedException(const XMLCh* const msg);
/**
* Create a new SAXException.
*
* @param msg The error or warning message.
*/
SAXNotRecognizedException(const char* const msg);
/**
* Copy constructor
*
* @param toCopy The exception to be copy constructed
*/
SAXNotRecognizedException(const SAXException& toCopy);
};
#endif
| [
"raviv.shweid@telia.no"
] | raviv.shweid@telia.no |
ca7d08f05243379efe0d25483ffce192f9419888 | 4503b4ec29e9a30d26c433bac376f2bddaefd9e5 | /PCL 1.7.2_vs2013/x64/3rdParty/VTK-6.1.0/include/vtk-6.1/vtkInteractorStyleRubberBandPick.h | cc0549f15fbbf457229e2f14902c3965c77fc7f3 | [] | no_license | SwunZH/ecocommlibs | 0a872e0bbecbb843a0584fb787cf0c5e8a2a270b | 4cff09ff1e479f5f519f207262a61ee85f543b3a | refs/heads/master | 2021-01-25T12:02:39.067444 | 2018-02-23T07:04:43 | 2018-02-23T07:04:43 | 123,447,012 | 1 | 0 | null | 2018-03-01T14:37:53 | 2018-03-01T14:37:53 | null | UTF-8 | C++ | false | false | 2,555 | h | /*=========================================================================
Program: Visualization Toolkit
Module: vtkInteractorStyleRubberBandPick.h
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.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.
=========================================================================*/
// .NAME vtkInteractorStyleRubberBandPick - Like TrackBallCamera, but this can pick props underneath a rubber band selection rectangle.
//
// .SECTION Description
// This interactor style allows the user to draw a rectangle in the render
// window by hitting 'r' and then using the left mouse button.
// When the mouse button is released, the attached picker operates on the pixel
// in the center of the selection rectangle. If the picker happens to be a
// vtkAreaPicker it will operate on the entire selection rectangle.
// When the 'p' key is hit the above pick operation occurs on a 1x1 rectangle.
// In other respects it behaves the same as its parent class.
//
// .SECTION See Also
// vtkAreaPicker
#ifndef __vtkInteractorStyleRubberBandPick_h
#define __vtkInteractorStyleRubberBandPick_h
#include "vtkInteractionStyleModule.h" // For export macro
#include "vtkInteractorStyleTrackballCamera.h"
class vtkUnsignedCharArray;
class VTKINTERACTIONSTYLE_EXPORT vtkInteractorStyleRubberBandPick : public vtkInteractorStyleTrackballCamera
{
public:
static vtkInteractorStyleRubberBandPick *New();
vtkTypeMacro(vtkInteractorStyleRubberBandPick, vtkInteractorStyleTrackballCamera);
void PrintSelf(ostream& os, vtkIndent indent);
void StartSelect();
// Description:
// Event bindings
virtual void OnMouseMove();
virtual void OnLeftButtonDown();
virtual void OnLeftButtonUp();
virtual void OnChar();
protected:
vtkInteractorStyleRubberBandPick();
~vtkInteractorStyleRubberBandPick();
virtual void Pick();
void RedrawRubberBand();
int StartPosition[2];
int EndPosition[2];
int Moving;
vtkUnsignedCharArray *PixelArray;
int CurrentMode;
private:
vtkInteractorStyleRubberBandPick(const vtkInteractorStyleRubberBandPick&); // Not implemented
void operator=(const vtkInteractorStyleRubberBandPick&); // Not implemented
};
#endif
| [
"hnk0313@3e9e098e-e079-49b3-9d2b-ee27db7392fb"
] | hnk0313@3e9e098e-e079-49b3-9d2b-ee27db7392fb |
65726b8cdd415c446e47d69b7e99cb9ffae15098 | d8b739c180f9b9c8b7cc326ab4501d206c18bb29 | /Vectortest/Vectortest/Vectortest.cpp | ef2ab29bfcb2d34f5167931726d94db956fc798c | [] | no_license | puzhongwei/learn_vsproject | d6c29605b41c7d45731f5cf6ff569b711b99a8d0 | b7e6b9ac7e8bbd406e642201da7275bb037a72e2 | refs/heads/master | 2021-04-27T00:17:02.855924 | 2018-03-11T07:56:23 | 2018-03-11T07:56:23 | 123,784,790 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 542 | cpp | // Vectortest.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
#include<stdio.h>
#include<algorithm>
#include<vector>
#include<iostream>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
vector<int> vec;
for(int i =0;i<100;i++)
{
vec.push_back(i);
}
vector<int>::iterator it;
//for(it=vec.begin();it!=vec.end();it++)
//cout<<*it<<endl;
for(int i=0;i<vec.size();i++)
cout<<vec[i]<<endl;
reverse(vec.begin(),vec.end());
for (int j =0;j<vec.size();j++)
cout<<vec[j]<<endl;
return 0;
}
| [
"1365051774@qq.com"
] | 1365051774@qq.com |
33a3067f76e386ff657f77a2d79061620ccebdd9 | 64a55d6a27c4e81807b441b50aef13afb2c79a0b | /src/chai_function_template.cpp | 8161398884d8fcea6fdc15c2d09c7d85ad1ca658 | [] | no_license | sainteos/nymph-registrar | b4057d7e83db6bda403b17e6e32a3e8932cf1345 | 5c828dd43121a99d2469bb96eb56ba358c2f1cd3 | refs/heads/master | 2021-09-07T22:25:19.135733 | 2018-03-02T04:48:57 | 2018-03-02T04:48:57 | 119,339,330 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,355 | cpp | #include <sstream>
#include <iostream>
#include <cctype>
#include "chai_module.h"
#include "chai_function_template.h"
ChaiFunctionTemplate::ChaiFunctionTemplate(const std::string& name, const std::string& _namespace, const FunctionType& type, const std::string& return_type, const bool is_static)
: ChaiFunction(name, _namespace, type, return_type, false, is_static), sub_location(SubstitutionLocation::BEFORE) {
}
void ChaiFunctionTemplate::addTemplateVariable(const std::string& name) noexcept {
template_names_to_types.push_back(std::pair<std::string, std::vector<std::string>>(name, std::vector<std::string>()));
}
std::vector<std::string> ChaiFunctionTemplate::getTemplateVariables() const noexcept {
std::vector<std::string> out;
for(auto t : template_names_to_types) {
out.push_back(t.first);
}
return out;
}
unsigned int ChaiFunctionTemplate::getNumTemplateVariables() const noexcept {
return template_names_to_types.size();
}
void ChaiFunctionTemplate::setSubstitutionLocation(const SubstitutionLocation& s) noexcept {
sub_location = s;
}
SubstitutionLocation ChaiFunctionTemplate::getSubstitutionLocation() const noexcept {
return sub_location;
}
void ChaiFunctionTemplate::addSubstitutionType(const std::string& name, const std::string& type) noexcept {
auto pred = [&](const std::pair<std::string, std::vector<std::string>>& p) {
return name == p.first;
};
if(std::find_if(template_names_to_types.begin(), template_names_to_types.end(), pred) != template_names_to_types.end()) {
std::find_if(template_names_to_types.begin(), template_names_to_types.end(), pred)->second.push_back(type);
}
}
void ChaiFunctionTemplate::addSubstitutionTypes(const std::string& name, const std::vector<std::string>& types) noexcept {
auto pred = [&](const std::pair<std::string, std::vector<std::string>>& p) {
return name == p.first;
};
auto find_result = std::find_if(template_names_to_types.begin(), template_names_to_types.end(), pred);
if(find_result != template_names_to_types.end()) {
find_result->second.insert(find_result->second.cbegin(), find_result->second.cend(), types.cbegin());
}
}
std::vector<std::string> ChaiFunctionTemplate::getSubstitutionTypes(const std::string& name) const {
auto pred = [&](const std::pair<std::string, std::vector<std::string>>& p) {
return name == p.first;
};
auto find_result = std::find_if(template_names_to_types.begin(), template_names_to_types.end(), pred);
return find_result->second;
}
std::string ChaiFunctionTemplate::toString() const noexcept {
std::stringstream str;
str << "template<";
for(auto s : template_names_to_types) {
str << s.first << ", ";
}
str.seekp(static_cast<long>(str.tellp()) - 2);
str << ">";
str << (this->module.use_count() > 0 ? this->module.lock()->getName() + "::" : "") + getName();
return str.str();
}
namespace detail {
struct CombinationOutput {
std::vector<std::string> chai_names;
std::vector<std::vector<std::string>> template_args;
};
std::vector<std::string> combine_str(const std::vector<std::string> v1, const std::vector<std::string> v2) {
std::vector<std::string> out;
for(auto type1 : v1) {
for(auto type2 : v2) {
out.push_back(type1 + type2);
}
}
return out;
}
std::vector<std::vector<std::string>> expand_to_vectors(const std::vector<std::string> strs) {
std::vector<std::vector<std::string>> out;
for(auto str : strs) {
std::vector<std::string> expansion;
expansion.push_back(str);
out.push_back(expansion);
}
return out;
}
std::vector<std::vector<std::string>> combine_arg(const std::vector<std::string> v1, const std::vector<std::string> v2) {
std::vector<std::vector<std::string>> out;
for(auto type1 : v1) {
for(auto type2 : v2) {
std::vector<std::string> args;
args.push_back(type1);
args.push_back(type2);
out.push_back(args);
}
}
return out;
}
std::vector<std::vector<std::string>> combine_arg(const std::vector<std::vector<std::string>> v1, const std::vector<std::string> v2) {
std::vector<std::vector<std::string>> start = v1;
std::vector<std::vector<std::string>> out;
for(auto type_list : start) {
for(auto type : v2) {
auto new_list = type_list;
new_list.push_back(type);
out.push_back(new_list);
}
}
return out;
}
CombinationOutput combine_all(const std::vector<std::pair<std::string, std::vector<std::string>>> tt) {
if(tt.size() == 0)
return CombinationOutput{std::vector<std::string>(), std::vector<std::vector<std::string>>()};
else if(tt.size() == 1)
return CombinationOutput{tt.begin()->second, expand_to_vectors(tt.begin()->second)};
else {
std::vector<std::string> str_output;
str_output = combine_str(tt[0].second, tt[1].second);
for(int i = 2; i < tt.size(); i++) {
str_output = combine_str(str_output, tt[i].second);
}
std::vector<std::vector<std::string>> arg_output;
arg_output = combine_arg(tt[0].second, tt[1].second);
for(int i = 2; i < tt.size(); i++) {
arg_output = combine_arg(arg_output, tt[i].second);
}
return CombinationOutput{str_output, arg_output};
}
}
}
std::string ChaiFunctionTemplate::getRegistryString() {
std::stringstream reg;
auto possible_types = detail::combine_all(template_names_to_types);
if(possible_types.chai_names.size() != possible_types.template_args.size()) {
throw std::runtime_error("Mismatch of chai names to template args when trying to generate function template registry.");
}
int size = possible_types.chai_names.size();
for(int i = 0; i < size; i ++) {
reg << "{ chaiscript::fun(";
reg << "&" << this->module.lock()->getName() << "::" << getName() << "<";
for(auto arg : possible_types.template_args[i]) {
reg << arg << ", ";
}
reg.seekp(static_cast<long>(reg.tellp()) - 2);
reg << ">), \"";
if(is_static) {
reg << this->module.lock()->getName() << "_";
}
auto strip_scope = [&](const std::string& s) -> std::string {
if(s.find_last_of("::") != std::string::npos) {
return s.substr(s.find_last_of("::") + 1, s.size() - s.find_last_of("::") - 1);
}
else {
return s;
}
};
switch(sub_location) {
case SubstitutionLocation::BEFORE: {
auto cap_name = getName();
cap_name[0] = std::toupper(cap_name[0]);
auto template_type = strip_scope(possible_types.chai_names[i]);
//For cases like unsigned int
while(template_type.find(" ") != std::string::npos) {
template_type[template_type.find(" ") + 1] = std::toupper(template_type[template_type.find(" ") + 1]);
template_type.erase(template_type.find(" "), 1);
}
reg << template_type << cap_name;
break;
}
case SubstitutionLocation::AFTER: {
auto template_type = strip_scope(possible_types.chai_names[i]);
template_type[0] = std::toupper(template_type[0]);
//For cases like unsigned int
while(template_type.find(" ") != std::string::npos) {
template_type[template_type.find(" ") + 1] = std::toupper(template_type[template_type.find(" ") + 1]);
template_type.erase(template_type.find(" "), 1);
}
reg << getName() << template_type;
break;
}
case SubstitutionLocation::MUTATOR: {
auto name = getName();
auto cap_loc = std::find_if(name.begin(), name.end(), [&](const char s) { return s == std::toupper(s); });
auto template_type = strip_scope(possible_types.chai_names[i]);
template_type[0] = std::toupper(template_type[0]);
//For cases like unsigned int
while(template_type.find(" ") != std::string::npos) {
template_type[template_type.find(" ") + 1] = std::toupper(template_type[template_type.find(" ") + 1]);
template_type.erase(template_type.find(" "), 1);
}
if(cap_loc == name.end()) {
reg << name << template_type;
}
else {
name.insert(cap_loc, template_type.begin(), template_type.end());
reg << name;
}
break;
}
}
reg << "\" },\n";
}
return reg.str();
}
| [
"adaleigh.martin@gmail.com"
] | adaleigh.martin@gmail.com |
bca6d83f109589304e35f15567ab47b5c05890df | cd3a478699af39e099ef6ba8ebe78cb2e29136d3 | /firmware/remote_redmaus/remote_redmaus.ino | 4ba76939a71e04c7c09b0d0d55c9e8615829c69d | [] | no_license | seancaulfield/MausIR | 77ae7199163a9f89bc680452eed44b7c9a4632e9 | c5372f1691b213064a637204d72e81b68f0a212b | refs/heads/master | 2022-03-04T19:06:23.498162 | 2019-09-25T17:04:03 | 2019-09-25T17:04:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,047 | ino | //
// remote_redmaus.ino
//
// IR remote control for the modified mouse robot toy for my cats.
//
// Author: Sean Caulfield <sean@yak.net>
// License: GPLv2.0
//
#include<Arduino.h>
#include<IRremote.h>
#include<Bounce2.h>
// DEBUG OUTPUT (A LA DEATH OF RATS); set to 0 to disable debugging
#if (0)
#define SKETCH_DEBUG 1
#define SQUEAK(a) do { \
Serial.print(F("SQUEAK ")); \
Serial.println((a)); \
} while(0)
#define SQUEAK2(a, b) do { \
Serial.print(F("SQUEAK ")); \
Serial.print(F(a)); \
Serial.println((b)); \
} while(0)
#define SQUEAK3(a, b) do { \
Serial.print(F("SQUEAK ")); \
Serial.print(F(a)); \
Serial.println((b), HEX); \
} while(0)
#else
#define SKETCH_DEBUG 0
#define SQUEAK(a)
#define SQUEAK2(a, b)
#define SQUEAK3(a, b)
#endif
#define PIN_X A0
#define PIN_Y A1
#define PIN_IRDA 3
#define PIN_LED 13
// Object(s) for processing IR data
IRsend ir;
Bounce butcal;
uint32_t cmd = 0;
// Joystick position data
int16_t last_x = 0;
int16_t last_y = 0;
int16_t curr_x = 0;
int16_t curr_y = 0;
int16_t delta_x = 0;
int16_t delta_y = 0;
// Joystick calibration data. Represents the midpoint of the ADC value range,
// bit shifted down by 2 to discard the low order bits.
int16_t calibration_x = 128;
int16_t calibration_y = 126;
void setup() {
//butcal.attach(0, INPUT_PULLUP, 100);
pinMode(PIN_X, INPUT);
pinMode(PIN_Y, INPUT);
pinMode(PIN_IRDA, OUTPUT);
pinMode(PIN_LED, OUTPUT);
last_x = curr_x = calibration_x;
last_y = curr_y = calibration_y;
#if SKETCH_DEBUG
// Say hi
Serial.begin(9600);
SQUEAK(F("SQUEAK SQUEAK"));
#endif
}
void loop() {
#if 0
digitalWrite(13, HIGH);
delay(1000);
ir.sendNEC(0xDEADBEEF, 32);
digitalWrite(13, LOW);
delay(1000);
#endif
// Read analog conversion for joystick
curr_x = analogRead(PIN_X) >> 2;
curr_y = analogRead(PIN_Y) >> 2;
// Reset calibration data if requested
if (butcal.update() && butcal.rose()) {
SQUEAK2("(recenter) x = ", curr_x);
SQUEAK2("(recenter) y = ", curr_y);
calibration_x = curr_x;
calibration_y = curr_y;
}
// If updated position, send command(s)
if (curr_x != last_x || curr_y != last_y) {
// For debugging
digitalWrite(PIN_LED, HIGH);
SQUEAK2("curr_x = ", curr_x);
SQUEAK2("curr_y = ", curr_y);
// Save last positions
last_x = curr_x;
last_y = curr_y;
// Calculate delta from center
delta_x = curr_x - calibration_x;
delta_y = curr_y - calibration_y;
SQUEAK3("delta_x = ", delta_x);
SQUEAK3("delta_y = ", delta_y);
// Construct command buffer using delta
//SQUEAK3("0) cmd = ", cmd);
//cmd = (delta_x >= 0 ? 0x00 : 0xFF) << 24;
//SQUEAK3("1) cmd = ", cmd);
cmd = 0;
cmd |= ((uint32_t)abs(delta_x)) << 16;
SQUEAK3("2) cmd = ", cmd);
//cmd |= (delta_y >= 0 ? 0x00 : 0xFF) << 8;
//SQUEAK3("3) cmd = ", cmd);
cmd |= ((uint32_t)abs(delta_y)) << 0;
// Send command buffer
SQUEAK3("4) cmd = ", cmd);
ir.sendNEC(cmd, 32);
digitalWrite(PIN_LED, LOW);
}
}
| [
"sean@yak.net"
] | sean@yak.net |
a57e122f0057175497273b398f28231ed5f735dc | f9504bf247ea6580336cb18ba12c7a12c2b76200 | /search-insert-position.cc | 3a0ce34fabb9c7248a1e129447643dd5b30b03a9 | [
"MIT"
] | permissive | sonald/leetcode | bd8dd8de0ae44fb635893c5984f504fd1f2d11f2 | 3c34e2779a736acc880876f4244f1becd7b199ed | refs/heads/master | 2020-12-24T15:04:44.189803 | 2020-02-23T14:56:25 | 2020-02-23T14:56:25 | 27,904,017 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 746 | cc | #include <iostream>
#include <vector>
#include <cmath>
#include <random>
#include <set>
#include <map>
#include <algorithm>
using namespace std;
class Solution {
public:
int searchInsert(int A[], int n, int target) {
int i = 0;
for (; i < n; ++i) {
if (target <= A[i])
break;
}
return i;
}
};
void test(int A[], int n, int target)
{
Solution sol;
cout << sol.searchInsert(A, n, target) << endl;
}
int main(int argc, char *argv[])
{
{
int A[] = {1,3,5,6};
int n = sizeof(A)/sizeof(A[0]);
test(A, n, 5);
test(A, n, 2);
test(A, n, 7);
test(A, n, 0);
}
return 0;
}
| [
"yinshuiboy@gmail.com"
] | yinshuiboy@gmail.com |
0c4b1354b9504b8f33d6fae3db6a9f0aa44eda43 | d2a4c43a2eeba2cd8449ce7874fc0dbf3daacbe0 | /Model.cpp | 4529ed3b09ba76daa086e92d950855d7d76a5824 | [] | no_license | liggxibbler/opengl | 3f53235a1bd7eed005a63b141921a0aba6123d5c | 3e78571f5d91dc7b906b26a228cd84222f766fdc | refs/heads/master | 2021-04-15T11:42:46.206993 | 2018-04-10T20:19:30 | 2018-04-10T20:19:30 | 126,497,276 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,960 | cpp | #include "Model.h"
#include <iostream>
Model::Model()
{
}
Model::Model(const char* path)
{
}
void Model::Initialize()
{
glGenVertexArrays(1, &m_vao);
glGenBuffers(1, &m_ebo);
glGenBuffers(1, &m_vbo);
glBindVertexArray(m_vao);
glBindBuffer(GL_ARRAY_BUFFER, m_vbo);
glBufferData(GL_ARRAY_BUFFER, sizeof(float) * m_vert_count * m_vert_stride, m_vertices, GL_STATIC_DRAW);
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, m_ebo);
glBufferData(GL_ELEMENT_ARRAY_BUFFER, m_index_count * sizeof(m_indices), m_indices, GL_STATIC_DRAW);
glEnableVertexAttribArray(0);
glVertexAttribPointer(0, 3, GL_FLOAT, GL_FALSE, m_vert_stride * sizeof(float), (void*)0);
glEnableVertexAttribArray(1);
glVertexAttribPointer(1, 2, GL_FLOAT, GL_FALSE, m_vert_stride * sizeof(float), (void*)(3 * sizeof(float)));
if(m_has_normal)
{
glEnableVertexAttribArray(2);
glVertexAttribPointer(2, 3, GL_FLOAT, GL_FALSE, m_vert_stride * sizeof(float), (void*)(5 * sizeof(float)));
}
}
void Model::Bind()
{
glBindVertexArray(m_vao);
}
void Model::Draw(GLenum primitive)
{
glDrawArrays(primitive, 0, m_vert_count);
}
void Model::InitNDCQuad()
{
m_vert_count = 6;
m_vert_stride = 5;
m_has_normal = false;
m_indices = new unsigned int [m_vert_count * 3];
for (int i = 0; i < m_vert_count * 3; ++i)
{
m_indices[i] = i;
}
m_vertices = new float[m_vert_count * m_vert_stride] {
-1.0f, 1.0f, 0.0f, 0.0f, 1.0f,
1.0f, 1.0f, 0.0f, 1.0f, 1.0f,
-1.0f, -1.0f, 0.0f, 0.0f, 0.0f,
-1.0f, -1.0f, 0.0f, 0.0f, 0.0f,
1.0f, 1.0f, 0.0f, 1.0f, 1.0f,
1.0f, -1.0f, 0.0f, 1.0f, 0.0f
};
}
void Model::InitCube()
{
m_vert_count = 36;
m_vert_stride = 8;
m_has_normal = true;
m_indices = new unsigned int [m_vert_count * 3];
for (int i = 0; i < m_vert_count * 3; ++i)
{
m_indices[i] = i;
}
m_vertices = new float[m_vert_count * m_vert_stride] {
-0.5f, -0.5f, -0.5f, 0.0f, 0.0f, 0.0f, 0.0f, -1.0f,
0.5f, -0.5f, -0.5f, 1.0f, 0.0f, 0.0f, 0.0f, -1.0f,
0.5f, 0.5f, -0.5f, 1.0f, 1.0f, 0.0f, 0.0f, -1.0f,
0.5f, 0.5f, -0.5f, 1.0f, 1.0f, 0.0f, 0.0f, -1.0f,
-0.5f, 0.5f, -0.5f, 0.0f, 1.0f, 0.0f, 0.0f, -1.0f,
-0.5f, -0.5f, -0.5f, 0.0f, 0.0f, 0.0f, 0.0f, -1.0f,
-0.5f, -0.5f, 0.5f, 0.0f, 0.0f, 0.0f, 0.0f, 1.0f,
0.5f, -0.5f, 0.5f, 1.0f, 0.0f, 0.0f, 0.0f, 1.0f,
0.5f, 0.5f, 0.5f, 1.0f, 1.0f, 0.0f, 0.0f, 1.0f,
0.5f, 0.5f, 0.5f, 1.0f, 1.0f, 0.0f, 0.0f, 1.0f,
-0.5f, 0.5f, 0.5f, 0.0f, 1.0f, 0.0f, 0.0f, 1.0f,
-0.5f, -0.5f, 0.5f, 0.0f, 0.0f, 0.0f, 0.0f, 1.0f,
-0.5f, 0.5f, 0.5f, 1.0f, 0.0f, -1.0f, 0.0f, 0.0f,
-0.5f, 0.5f, -0.5f, 1.0f, 1.0f, -1.0f, 0.0f, 0.0f,
-0.5f, -0.5f, -0.5f, 0.0f, 1.0f, -1.0f, 0.0f, 0.0f,
-0.5f, -0.5f, -0.5f, 0.0f, 1.0f, -1.0f, 0.0f, 0.0f,
-0.5f, -0.5f, 0.5f, 0.0f, 0.0f, -1.0f, 0.0f, 0.0f,
-0.5f, 0.5f, 0.5f, 1.0f, 0.0f, -1.0f, 0.0f, 0.0f,
0.5f, 0.5f, 0.5f, 1.0f, 0.0f, 1.0f, 0.0f, 0.0f,
0.5f, 0.5f, -0.5f, 1.0f, 1.0f, 1.0f, 0.0f, 0.0f,
0.5f, -0.5f, -0.5f, 0.0f, 1.0f, 1.0f, 0.0f, 0.0f,
0.5f, -0.5f, -0.5f, 0.0f, 1.0f, 1.0f, 0.0f, 0.0f,
0.5f, -0.5f, 0.5f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f,
0.5f, 0.5f, 0.5f, 1.0f, 0.0f, 1.0f, 0.0f, 0.0f,
-0.5f, -0.5f, -0.5f, 0.0f, 1.0f, 0.0f, -1.0f, 0.0f,
0.5f, -0.5f, -0.5f, 1.0f, 1.0f, 0.0f, -1.0f, 0.0f,
0.5f, -0.5f, 0.5f, 1.0f, 0.0f, 0.0f, -1.0f, 0.0f,
0.5f, -0.5f, 0.5f, 1.0f, 0.0f, 0.0f, -1.0f, 0.0f,
-0.5f, -0.5f, 0.5f, 0.0f, 0.0f, 0.0f, -1.0f, 0.0f,
-0.5f, -0.5f, -0.5f, 0.0f, 1.0f, 0.0f, -1.0f, 0.0f,
-0.5f, 0.5f, -0.5f, 0.0f, 1.0f, 0.0f, 1.0f, 0.0f,
0.5f, 0.5f, -0.5f, 1.0f, 1.0f, 0.0f, 1.0f, 0.0f,
0.5f, 0.5f, 0.5f, 1.0f, 0.0f, 0.0f, 1.0f, 0.0f,
0.5f, 0.5f, 0.5f, 1.0f, 0.0f, 0.0f, 1.0f, 0.0f,
-0.5f, 0.5f, 0.5f, 0.0f, 0.0f, 0.0f, 1.0f, 0.0f,
-0.5f, 0.5f, -0.5f, 0.0f, 1.0f, 0.0f, 1.0f, 0.0f
};
}
| [
"albizgil@gmail.com"
] | albizgil@gmail.com |
2b4f9235b202a7f991a1ac28f0347110e6bc7c44 | ca1133fef2881b16869258fbfd5d9de309c34e8f | /LKBSS/BIZ/utils.cpp | 4412390295849f765cf41f1b2970ef6be2aa7493 | [] | no_license | Smoking/LK_BSS | b391239391d0a3da878f1566de505f2cfd2e50af | db46536d19729b0ff2a075b14d71c0f552d2b246 | refs/heads/master | 2020-03-30T05:48:11.460035 | 2015-03-26T03:10:50 | 2015-03-26T03:10:50 | 32,904,881 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,614 | cpp |
#include "stdafx.h"
#include "Utils.h"
UserInfo userinfo;
DatabaseParam DBparam;
DatabaseParam BoxDBparam;
ADODatabaseParam ADODBparam;
unsigned char desKey[8] = {'l','k','s','j','k','j','m','i'};
string Utils::itos(int i){
stringstream s;
s << i;
return s.str();
}
string Utils::dtos(double d){
stringstream s;
s << d;
return s.str();
}
int Utils::insertSystemlog(string oper_id,string event_log,string result_log)
{
CDBManage *db=new CDBManage();
string sql="insert into system_log("
"oper_id,"
"user_id,"
"user_name,"
"event,"
"result,"
"time"
")values("
"'"+oper_id+"',"
+"'"+userinfo.user_id+"',"
+"'"+userinfo.user_name+"',"
+"'"+event_log+"',"
+"'"+result_log+"',"
+ "now()"
+")";
if(0==db->execSQL(sql))
{
delete db;
return 0;
}
else
{
delete db;
return -1;
}
}
int Utils::lookSystemlog(string time_log,list<SystemlogInfo>* pinputLog)
{
CDBManage *db=new CDBManage();
string sql="select oper_id,user_id,user_name,event,result ,time from system_log where time like'"+time_log+"%' order by time desc";
if(0==db->execSQL(sql))
{
while(!db->isEnd())
{
SystemlogInfo syslog;
syslog.oper_id=db->getFieldValueByIndex(0);
syslog.user_id=db->getFieldValueByIndex(1);
syslog.user_name=db->getFieldValueByIndex(2);
syslog.event_log=db->getFieldValueByIndex(3);
syslog.result_log=db->getFieldValueByIndex(4);
syslog.time_log=db->getFieldValueByIndex(5);
pinputLog->push_back(syslog);
db->nextRow();
}
db->freeRecord();
delete db;
return 0;
}
else
{
delete db;
return -1;
}
}
string Utils::ConvertHZToPY(char *as_HzString)
{
static int li_SecPosValue[]={1601,1637,1833,2078,2274,2302,2433,2594,2787,3106,3212,3472,3635,3722,3730,3858,4027,4086,4390,4558,4684,4925,5249};
static char* lc_FirstLetter[] = { "A", "B", "C", "D", "E", "F", "G", "H", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "W", "X", "Y", "Z"};
static char* ls_SecondSecTable =
"CJWGNSPGCGNE[Y[BTYYZDXYKYGT[JNNJQMBSGZSCYJSYY[PGKBZGY[YWJKGKLJYWKPJQHY[W[DZLSGMRYPYWWCCKZNKYYGTTNJJNYKKZYTCJNMCYLQLYPYQFQRPZSLWBTGKJFYXJWZLTBNCXJJJJTXDTTSQZYCDXXHGCK[PHFFSS[YBGXLPPBYLL[HLXS[ZM[JHSOJNGHDZQYKLGJHSGQZHXQGKEZZWYSCSCJXYEYXADZPMDSSMZJZQJYZC[J[WQJBYZPXGZNZCPWHKXHQKMWFBPBYDTJZZKQHY "
"LYGXFPTYJYYZPSZLFCHMQSHGMXXSXJ[[DCSBBQBEFSJYHXWGZKPYLQBGLDLCCTNMAYDDKSSNGYCSGXLYZAYBNPTSDKDYLHGYMYLCXPY[JNDQJWXQXFYYFJLEJPZRXCCQWQQSBNKYMGPLBMJRQCFLNYMYQMSQYRBCJTHZTQFRXQHXMJJCJLXQGJMSHZKBSWYEMYLTXFSYDSWLYCJQXSJNQBSCTYHBFTDCYZDJWYGHQFRXWCKQKXEBPTLPXJZSRMEBWHJLBJSLYYSMDXLCLQKXLHXJRZJMFQHXHWY "
"WSBHTRXXGLHQHFNM[YKLDYXZPYLGG[MTCFPAJJZYLJTYANJGBJPLQGDZYQYAXBKYSECJSZNSLYZHSXLZCGHPXZHZNYTDSBCJKDLZAYFMYDLEBBGQYZKXGLDNDNYSKJSHDLYXBCGHXYPKDJMMZNGMMCLGWZSZXZJFZNMLZZTHCSYDBDLLSCDDNLKJYKJSYCJLKWHQASDKNHCSGANHDAASHTCPLCPQYBSDMPJLPZJOQLCDHJJYSPRCHN[NNLHLYYQYHWZPTCZGWWMZFFJQQQQYXACLBHKDJXDGMMY "
"DJXZLLSYGXGKJRYWZWYCLZMSSJZLDBYD[FCXYHLXCHYZJQ[[QAGMNYXPFRKSSBJLYXYSYGLNSCMHZWWMNZJJLXXHCHSY[[TTXRYCYXBYHCSMXJSZNPWGPXXTAYBGAJCXLY[DCCWZOCWKCCSBNHCPDYZNFCYYTYCKXKYBSQKKYTQQXFCWCHCYKELZQBSQYJQCCLMTHSYWHMKTLKJLYCXWHEQQHTQH[PQ[QSCFYMNDMGBWHWLGSLLYSDLMLXPTHMJHWLJZYHZJXHTXJLHXRSWLWZJCBXMHZQXSDZP "
"MGFCSGLSXYMJSHXPJXWMYQKSMYPLRTHBXFTPMHYXLCHLHLZYLXGSSSSTCLSLDCLRPBHZHXYYFHB[GDMYCNQQWLQHJJ[YWJZYEJJDHPBLQXTQKWHLCHQXAGTLXLJXMSL[HTZKZJECXJCJNMFBY[SFYWYBJZGNYSDZSQYRSLJPCLPWXSDWEJBJCBCNAYTWGMPAPCLYQPCLZXSBNMSGGFNZJJBZSFZYNDXHPLQKZCZWALSBCCJX[YZGWKYPSGXFZFCDKHJGXDLQFSGDSLQWZKXTMHSBGZMJZRGLYJB "
"PMLMSXLZJQQHZYJCZYDJWBMYKLDDPMJEGXYHYLXHLQYQHKYCWCJMYYXNATJHYCCXZPCQLBZWWYTWBQCMLPMYRJCCCXFPZNZZLJPLXXYZTZLGDLDCKLYRZZGQTGJHHGJLJAXFGFJZSLCFDQZLCLGJDJCSNZLLJPJQDCCLCJXMYZFTSXGCGSBRZXJQQCTZHGYQTJQQLZXJYLYLBCYAMCSTYLPDJBYREGKLZYZHLYSZQLZNWCZCLLWJQJJJKDGJZOLBBZPPGLGHTGZXYGHZMYCNQSYCYHBHGXKAMTX "
"YXNBSKYZZGJZLQJDFCJXDYGJQJJPMGWGJJJPKQSBGBMMCJSSCLPQPDXCDYYKY[CJDDYYGYWRHJRTGZNYQLDKLJSZZGZQZJGDYKSHPZMTLCPWNJAFYZDJCNMWESCYGLBTZCGMSSLLYXQSXSBSJSBBSGGHFJLYPMZJNLYYWDQSHZXTYYWHMZYHYWDBXBTLMSYYYFSXJC[DXXLHJHF[SXZQHFZMZCZTQCXZXRTTDJHNNYZQQMNQDMMG[YDXMJGDHCDYZBFFALLZTDLTFXMXQZDNGWQDBDCZJDXBZGS "
"QQDDJCMBKZFFXMKDMDSYYSZCMLJDSYNSBRSKMKMPCKLGDBQTFZSWTFGGLYPLLJZHGJ[GYPZLTCSMCNBTJBQFKTHBYZGKPBBYMTDSSXTBNPDKLEYCJNYDDYKZDDHQHSDZSCTARLLTKZLGECLLKJLQJAQNBDKKGHPJTZQKSECSHALQFMMGJNLYJBBTMLYZXDCJPLDLPCQDHZYCBZSCZBZMSLJFLKRZJSNFRGJHXPDHYJYBZGDLQCSEZGXLBLGYXTWMABCHECMWYJYZLLJJYHLG[DJLSLYGKDZPZXJ "
"YYZLWCXSZFGWYYDLYHCLJSCMBJHBLYZLYCBLYDPDQYSXQZBYTDKYXJY[CNRJMPDJGKLCLJBCTBJDDBBLBLCZQRPPXJCJLZCSHLTOLJNMDDDLNGKAQHQHJGYKHEZNMSHRP[QQJCHGMFPRXHJGDYCHGHLYRZQLCYQJNZSQTKQJYMSZSWLCFQQQXYFGGYPTQWLMCRNFKKFSYYLQBMQAMMMYXCTPSHCPTXXZZSMPHPSHMCLMLDQFYQXSZYYDYJZZHQPDSZGLSTJBCKBXYQZJSGPSXQZQZRQTBDKYXZK "
"HHGFLBCSMDLDGDZDBLZYYCXNNCSYBZBFGLZZXSWMSCCMQNJQSBDQSJTXXMBLTXZCLZSHZCXRQJGJYLXZFJPHYMZQQYDFQJJLZZNZJCDGZYGCTXMZYSCTLKPHTXHTLBJXJLXSCDQXCBBTJFQZFSLTJBTKQBXXJJLJCHCZDBZJDCZJDCPRNPQCJPFCZLCLZXZDMXMPHJSGZGSZZQLYLWTJPFSYASMCJBTZKYCWMYTCSJJLJCQLWZMALBXYFBPNLSFHTGJWEJJXXGLLJSTGSHJQLZFKCGNNNSZFDEQ "
"FHBSAQTGYLBXMMYGSZLDYDQMJJRGBJTKGDHGKBLQKBDMBYLXWCXYTTYBKMRTJZXQJBHLMHMJJZMQASLDCYXYQDLQCAFYWYXQHZ ";
string result = "";
int H,L,W;
unsigned stringlen = strlen(as_HzString);
for(int i = 0; i < stringlen; i++ )
{
H = (unsigned char)(as_HzString[i]);
L = (unsigned char)(as_HzString[i+1]);
if(H < 0xA1 || L < 0xA1){
if (H < 0x80)
{
result += as_HzString[i];
continue;
}else
{
i++;
continue;
}
}
else W = (H - 160) * 100 + L - 160;
if(W > 1600 && W < 5590)
{
for(int j = 22; j >= 0; j--)
if(W >= li_SecPosValue[j]) {
result += lc_FirstLetter[j];
i++;
break;
}
continue;
}
else
{
i++;
W = ( H - 160 - 56 )*94 + L - 161;
if(W >= 0 && W <= 3007)
result += ls_SecondSecTable[W];
else {
result += (char)H;
result += (char)L;
}
}
}
return result;
}
string Utils::ConvertToStandString(string source)
{
string rlt;
CString tmp = source.c_str();
tmp.Replace("'","");
tmp.Replace("\"","");
tmp.Replace("\\","");
rlt = tmp;
return rlt;
}
| [
"287482894@qq.com"
] | 287482894@qq.com |
09d946330cc79096d6f631b5105095cffe307d6d | a57d821e6b832ba3bc1bfca797245093cceb9ffc | /src/lib/Network/IOService.cpp | 8bdcd699b293e95f6678b9e77cb50e17b804ec59 | [] | no_license | csail/ipri-scram | 80152004072b3556dde2c4515918ab9ec8a831c1 | 2ba1331c1fc7120b47a69a990f52577110c7310d | refs/heads/master | 2022-12-02T06:23:18.704572 | 2020-08-02T18:47:52 | 2020-08-02T18:47:52 | 284,257,618 | 6 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 36,679 | cpp | #include "Network/IOService.h"
#include "Common/Defines.h"
#include "Common/Finally.h"
#include "Common/Log.h"
#include "Common/Timer.h"
#include "Network/Session.h"
#include "Network/IoBuffer.h"
#include "Network/Channel.h"
#include "Network/SocketAdapter.h"
#include <stdio.h>
#include <algorithm>
#include <sstream>
#ifdef __APPLE__
#pragma GCC diagnostic ignored "-Wpessimizing-move"
#pragma GCC diagnostic ignored "-Wunused-lambda-capture"
#endif
namespace osuCrypto
{
Acceptor::Acceptor(IOService& ioService)
:
//mSocketChannelPairsRemovedFuture(mSocketChannelPairsRemovedProm.get_future()),
mPendingSocketsEmptyFuture(mPendingSocketsEmptyProm.get_future()),
mStoppedFuture(mStoppedPromise.get_future()),
mIOService(ioService),
mStrand(ioService.mIoService),
mHandle(ioService.mIoService),
mStopped(false),
mPort(0)
{
}
Acceptor::~Acceptor()
{
stop();
}
void Acceptor::bind(u32 port, std::string ip, boost::system::error_code& ec)
{
auto pStr = std::to_string(port);
mPort = port;
boost::asio::ip::tcp::resolver resolver(mIOService.mIoService);
boost::asio::ip::tcp::resolver::query
query(ip, pStr);
auto addrIter = resolver.resolve(query, ec);
if (ec)
{
return;
}
mAddress = *addrIter;
mHandle.open(mAddress.protocol());
mHandle.set_option(boost::asio::ip::tcp::acceptor::reuse_address(true));
mHandle.bind(mAddress, ec);
if (mAddress.port() != port)
throw std::runtime_error("rt error at " LOCATION);
if (ec)
{
return;
//std::cout << "network address bind error: " << ec.message() << std::endl;
//throw std::runtime_error(ec.message());
}
//std::promise<void> mStoppedListeningPromise, mSocketChannelPairsRemovedProm;
//std::future<void> mStoppedListeningFuture, mSocketChannelPairsRemovedFuture;
mHandle.listen(boost::asio::socket_base::max_connections);
}
void Acceptor::start()
{
mStrand.dispatch([&]()
{
if (isListening())
{
mPendingSockets.emplace_back(mIOService.mIoService);
auto sockIter = mPendingSockets.end(); --sockIter;
//BoostSocketInterface* newSocket = new BoostSocketInterface(mIOService.mIoService);
mHandle.async_accept(sockIter->mSock, [sockIter, this](const boost::system::error_code& ec)
{
start();
if (!ec)
{
boost::asio::ip::tcp::no_delay option(true);
sockIter->mSock.set_option(option);
sockIter->mBuff.resize(sizeof(u32));
sockIter->mSock.async_receive(boost::asio::buffer((char*)sockIter->mBuff.data(), sockIter->mBuff.size()),
[sockIter, this](const boost::system::error_code& ec2, u64 bytesTransferred)
{
if (!ec2 && bytesTransferred == 4)
{
auto size = *(u32*)sockIter->mBuff.data();
sockIter->mBuff.resize(size);
sockIter->mSock.async_receive(boost::asio::buffer((char*)sockIter->mBuff.data(), sockIter->mBuff.size()),
mStrand.wrap([sockIter, this](const boost::system::error_code& ec3, u64 bytesTransferred2)
{
if (!ec3 && bytesTransferred2 == sockIter->mBuff.size())
{
asyncSetSocket(
std::move(sockIter->mBuff),
std::move(std::unique_ptr<BoostSocketInterface>(
new BoostSocketInterface(std::move(sockIter->mSock)))));
}
mPendingSockets.erase(sockIter);
if (stopped() && mPendingSockets.size() == 0)
mPendingSocketsEmptyProm.set_value();
}));
}
else
{
//std::cout << "async_accept error, failed to receive first header on connection handshake."
// << " Other party may have closed the connection. "
// << ((ec2 != 0) ? "Error code:" + ec2.message() : " received " + ToString(bytesTransferred) + " / 4 bytes") << " " << LOCATION << std::endl;
mStrand.dispatch([&, sockIter]()
{
mPendingSockets.erase(sockIter);
if (stopped() && mPendingSockets.size() == 0)
mPendingSocketsEmptyProm.set_value();
});
}
});
}
else
{
mStrand.dispatch([&, sockIter]()
{
mPendingSockets.erase(sockIter);
if (stopped() && mPendingSockets.size() == 0)
mPendingSocketsEmptyProm.set_value();
});
}
});
}
else
{
//mStrand.dispatch([&]()
//{
// if (stopped() && mPendingSockets.size() == 0)
// mPendingSocketsEmptyProm.set_value();
//});
}
});
}
void Acceptor::stop()
{
if (mStopped == false)
{
mStrand.dispatch([&]() {
if (mStopped == false)
{
mStopped = true;
mListening = false;
// stop listening.
//std::cout << IoStream::lock << " accepter stop() " << mPort << std::endl << IoStream::unlock;
mHandle.close();
// cancel any sockets which have not completed the handshake.
for (auto& pendingSocket : mPendingSockets)
pendingSocket.mSock.close();
// if there were no pending sockets, set the promise
if (mPendingSockets.size() == 0)
mPendingSocketsEmptyProm.set_value();
// no subscribers, we can set the promise now.
if (hasSubscriptions() == false)
mStoppedPromise.set_value();
}
});
// wait for the pending events.
std::chrono::seconds timeout(4);
std::future_status status = mPendingSocketsEmptyFuture.wait_for(timeout);
while (status == std::future_status::timeout)
{
status = mPendingSocketsEmptyFuture.wait_for(timeout);
std::cout << "waiting on acceptor to close "<< mPendingSockets.size() <<" pending socket" << std::endl;
}
mPendingSocketsEmptyFuture.get();
mStoppedFuture.get();
}
}
bool Acceptor::hasSubscriptions() const
{
for (auto& a : mGroups)
if (a.hasSubscriptions())
return true;
return false;
}
void Acceptor::stopListening()
{
if (isListening())
{
mStrand.dispatch([&]() {
if (hasSubscriptions() == false)
{
mListening = false;
//std::cout << IoStream::lock << "stop listening " << std::endl << IoStream::unlock;
mHandle.close();
if (stopped() && hasSubscriptions() == false)
mStoppedPromise.set_value();
}
});
}
}
void Acceptor::unsubscribe(SessionBase* session)
{
std::promise<void> p;
std::future<void> f(p.get_future());
auto iter = session->mGroup;
mStrand.dispatch([&, iter]() {
iter->mBase.reset();
if (iter->hasSubscriptions() == false)
{
iter->removeMapping();
mGroups.erase(iter);
}
// if no one else wants us to listen, stop listening
if (hasSubscriptions() == false)
stopListening();
p.set_value();
});
f.get();
}
void Acceptor::subscribe(std::shared_ptr<SessionBase>& session)
{
std::promise<void> p;
std::future<void> f = p.get_future();
session->mAcceptor = this;
mStrand.dispatch([&]() {
if (mStopped)
{
auto ePtr = std::make_exception_ptr(
std::runtime_error("can not subscribe to a stopped Acceptor."));
p.set_exception(ePtr);
}
else
{
mGroups.emplace_back();
auto iter = mGroups.end(); --iter;
iter->mBase = session;
session->mGroup = iter;
auto key = session->mName;
auto& collection = mUnclaimedGroups[key];
collection.emplace_back(iter);
auto deleteIter = collection.end(); --deleteIter;
iter->removeMapping = [&, deleteIter, key]()
{
collection.erase(deleteIter);
if (collection.size() == 0)
mUnclaimedGroups.erase(mUnclaimedGroups.find(key));
};
if (mListening == false)
{
mListening = true;
boost::system::error_code ec;
bind(session->mPort, session->mIP, ec);
if (ec) {
auto ePtr = std::make_exception_ptr(
std::runtime_error("network bind error: " + ec.message()));
p.set_exception(ePtr);
}
start();
}
p.set_value();
}
});
// may throw
f.get();
}
Acceptor::SocketGroupList::iterator Acceptor::getSocketGroup(const std::string & sessionName, u64 sessionID)
{
auto unclaimedSocketIter = mUnclaimedSockets.find(sessionName);
if (unclaimedSocketIter != mUnclaimedSockets.end())
{
auto& sockets = unclaimedSocketIter->second;
auto matchIter = std::find_if(sockets.begin(), sockets.end(),
[&](const SocketGroupList::iterator& g) { return g->mSessionID == sessionID; });
if (matchIter != sockets.end())
return *matchIter;
}
// there is no socket group for this session. lets create one.
mSockets.emplace_back();
auto socketIter = mSockets.end(); --socketIter;
socketIter->mName = sessionName;
socketIter->mSessionID = sessionID;
// add a mapping to indicate that this group is unclaimed
auto& group = mUnclaimedSockets[sessionName];
group.emplace_back(socketIter);
auto deleteIter = group.end(); --deleteIter;
socketIter->removeMapping = [&group, &socketIter, this, sessionName, deleteIter]() {
group.erase(deleteIter);
if (group.size() == 0) mUnclaimedSockets.erase(mUnclaimedSockets.find(sessionName));
};
return socketIter;
}
void Acceptor::cancelPendingChannel(ChannelBase* chl)
{
mStrand.dispatch([=]() {
auto iter = chl->mSession->mGroup;
auto chlIter = std::find_if(iter->mChannels.begin(), iter->mChannels.end(),
[&](const std::shared_ptr<ChannelBase>& c) { return c.get() == chl; });
if (chlIter != iter->mChannels.end())
{
auto ePtr = std::make_exception_ptr(SocketConnectError("Acceptor canceled the socket request. " LOCATION));
(*chlIter)->mOpenProm.set_exception(ePtr);
iter->mChannels.erase(chlIter);
if (iter->hasSubscriptions() == false)
{
iter->removeMapping();
mGroups.erase(iter);
if (hasSubscriptions() == false)
stopListening();
}
}
});
}
bool Acceptor::stopped() const
{
return mStopped;
}
std::string Acceptor::print() const
{
return std::string();
}
//bool Acceptor::userModeIsListening() const
//{
// return false;
//}
//std::atomic<int> ccc(0);
void Acceptor::asyncGetSocket(std::shared_ptr<ChannelBase> chl)
{
if (stopped()) throw std::runtime_error(LOCATION);
mStrand.dispatch([&, chl]() {
auto& sessionGroup = chl->mSession->mGroup;
auto& sessionName = chl->mSession->mName;
auto& sessionID = chl->mSession->mSessionID;
if (sessionID)
{
sessionGroup->add(chl, this);
if (sessionGroup->hasSubscriptions() == false)
{
sessionGroup->removeMapping();
mGroups.erase(sessionGroup);
if (hasSubscriptions() == false)
stopListening();
}
return;
}
auto socketGroup = mSockets.end();
auto unclaimedSocketIter = mUnclaimedSockets.find(sessionName);
if (unclaimedSocketIter != mUnclaimedSockets.end())
{
auto& groups = unclaimedSocketIter->second;
auto matchIter = std::find_if(groups.begin(), groups.end(),
[&](const SocketGroupList::iterator& g) { return g->hasMatchingSocket(chl); });
if (matchIter != groups.end())
socketGroup = *matchIter;
}
// add this channel to this group.
sessionGroup->add(chl, this);
// check if we have matching sockets.
if (socketGroup != mSockets.end())
{
// merge the group of sockets into the SessionGroup.
sessionGroup->merge(*socketGroup, this);
// erase the mapping for these sockets being unclaimed.
socketGroup->removeMapping();
sessionGroup->removeMapping();
// erase the sockets.
mSockets.erase(socketGroup);
// check if we can erase this session group (session closed).
if (sessionGroup->hasSubscriptions() == false)
{
mGroups.erase(sessionGroup);
if (hasSubscriptions() == false)
stopListening();
}
else
{
// If not then add this SessionGroup to the list of claimed
// sessions. Remove the unclaimed channel mapping
auto fullKey = sessionName + std::to_string(sessionID);
auto pair = mClaimedGroups.insert({ fullKey, sessionGroup });
auto s = pair.second;
auto location = pair.first;
if (s == false)
throw std::runtime_error(LOCATION);
sessionGroup->removeMapping = [&, location]() { mClaimedGroups.erase(location); };
}
}
});
}
void Acceptor::asyncSetSocket(
std::string name,
std::unique_ptr<BoostSocketInterface> s)
{
mStrand.dispatch([this, name, ss = s.release()]() {
std::unique_ptr<BoostSocketInterface> sock(ss);
auto names = split(name, '`');
if (names.size() != 4)
{
std::cout << "bad channel name: " << name << std::endl
<< "Dropping the connection" << std::endl;
return;
}
auto& sessionName = names[0];
auto sessionID = std::stoull(names[1]);
auto& remoteName = names[2];
auto& localName = names[3];
details::NamedSocket socket;
socket.mLocalName = localName;
socket.mRemoteName = remoteName;
socket.mSocket = std::move(sock);
auto fullKey = sessionName + std::to_string(sessionID);
auto claimedIter = mClaimedGroups.find(fullKey);
if (claimedIter != mClaimedGroups.end())
{
auto group = claimedIter->second;
group->add(std::move(socket), this);
if (group->hasSubscriptions() == false)
{
group->removeMapping();
mGroups.erase(group);
if (hasSubscriptions() == false)
stopListening();
}
return;
}
auto socketGroup = getSocketGroup(sessionName, sessionID);
GroupList::iterator sessionGroup = mGroups.end();
auto unclaimedLocalIter = mUnclaimedGroups.find(sessionName);
if (unclaimedLocalIter != mUnclaimedGroups.end())
{
auto& groups = unclaimedLocalIter->second;
auto matchIter = std::find_if(groups.begin(), groups.end(),
[&](const GroupList::iterator& g) { return g->hasMatchingChannel(socket); });
if (matchIter != groups.end())
sessionGroup = *matchIter;
}
// add the socket to the SocketGroup
socketGroup->mSockets.emplace_back(std::move(socket));
if (sessionGroup != mGroups.end())
{
// merge the sockets into the group of cahnnels.
sessionGroup->merge(*socketGroup, this);
// make these socketes as claimed and remove the container.
socketGroup->removeMapping();
sessionGroup->removeMapping();
mSockets.erase(socketGroup);
// check if we can erase this seesion group (session closed).
if (sessionGroup->hasSubscriptions() == false)
{
mGroups.erase(sessionGroup);
if (hasSubscriptions() == false)
stopListening();
}
else
{
// If not then add this SessionGroup to the list of claimed
// sessions. Remove the unclaimed channel mapping
auto pair = mClaimedGroups.insert({ fullKey, sessionGroup });
auto s = pair.second;
auto location = pair.first;
if (s == false)
throw std::runtime_error(LOCATION);
sessionGroup->removeMapping = [&, location]() { mClaimedGroups.erase(location); };
}
}
});
}
extern void split(const std::string &s, char delim, std::vector<std::string> &elems);
extern std::vector<std::string> split(const std::string &s, char delim);
IOService::IOService(u64 numThreads)
:
mIoService(),
mStrand(mIoService),
mWorker(new boost::asio::io_service::work(mIoService))
{
// Determine how many processors are on the system
//SYSTEM_INFO SystemInfo;
//GetSystemInfo(&SystemInfo);
// if they provided 0, the use the number of processors worker threads
numThreads = (numThreads) ? numThreads : std::thread::hardware_concurrency();
mWorkerThrds.resize(numThreads);
u64 i = 0;
// Create worker threads based on the number of processors available on the
// system. Create two worker threads for each processor
for (auto& thrd : mWorkerThrds)
{
// Create a server worker thread and pass the completion port to the thread
thrd = std::thread([&, i]()
{
setThreadName("io_Thrd_" + std::to_string(i));
mIoService.run();
//std::cout << "io_Thrd_" + std::to_string(i) << " closed" << std::endl;
});
++i;
}
}
IOService::~IOService()
{
// block until everything has shutdown.
stop();
}
void IOService::stop()
{
// Skip if its already shutdown.
if (mStopped == false)
{
mStopped = true;
// tell all the acceptor threads to stop accepting new connections.
for (auto& accptr : mAcceptors)
{
accptr.stop();
}
// delete all of their state.
mAcceptors.clear();
mWorker.reset(nullptr);
// we can now join on them.
for (auto& thrd : mWorkerThrds)
{
thrd.join();
}
// clean their state.
mWorkerThrds.clear();
}
}
void IOService::printErrorMessages(bool v)
{
mPrint = v;
}
void IOService::receiveOne(ChannelBase* channel)
{
////////////////////////////////////////////////////////////////////////////////
//// THis is within the stand. We have sequential access to the recv queue. ////
////////////////////////////////////////////////////////////////////////////////
IOOperation& op = *channel->mRecvQueue.front();
#ifdef CHANNEL_LOGGING
channel->mLog.push("starting recv #" + ToString(op.mIdx) + ", size = " + ToString(op.size()));
#endif
if (op.type() == IOOperation::Type::RecvData)
{
op.mBuffs[0] = boost::asio::buffer(&channel->mRecvSizeBuff, sizeof(u32));
std::array<boost::asio::mutable_buffer, 1>tt{ {op.mBuffs[0] } };
//boost::asio::async_read(*,
channel->mHandle->async_recv(
tt,
[&op, channel, this](const boost::system::error_code& ec, u64 bytesTransfered)
{
//////////////////////////////////////////////////////////////////////////
//// This is *** NOT *** within the stand. Dont touch the recv queue! ////
//////////////////////////////////////////////////////////////////////////
if (bytesTransfered != boost::asio::buffer_size(op.mBuffs[0]) || ec)
{
auto reason = ("rt error at " LOCATION "\n ec=" + ec.message() + ". else bytesTransfered != " + std::to_string(boost::asio::buffer_size(op.mBuffs[0])))
+ "\nThis could be from the other end closing too early or the connection being dropped.\n"
+ "Channel: " + channel->mLocalName
+ ", Session: " + channel->mSession->mName + " " + ToString(channel->mSession->mPort) + " "
+ ToString(channel->mSession->mMode == SessionMode::Server);
if (mPrint) std::cout << reason << std::endl;
channel->setRecvFatalError(reason);
return;
}
std::string msg;
// We support two types of receives. One where we provide the expected size of the message and one
// where we allow for variable length messages. op->other will be non null in the resize case and allow
// us to resize the ChannelBuffer which will hold the data.
// resize it. This could throw is the channel buffer chooses to.
if (channel->mRecvSizeBuff != op.size() && op.resize(channel->mRecvSizeBuff) == false)
{
msg = std::string() + "The provided buffer does not fit the received message. \n" +
" Expected: Container::size() * sizeof(Container::value_type) = " +
std::to_string(op.size()) + " bytes\n"
" Actual: " + std::to_string(channel->mRecvSizeBuff) + " bytes\n\n" +
"If sizeof(Container::value_type) % Actual != 0, this will throw or ResizableChannelBuffRef<Container>::resize(...) returned false.";
}
else
{
// set the buffer to point into the channel buffer storage location.
op.mBuffs[1] = boost::asio::buffer(op.data(), channel->mRecvSizeBuff);
}
auto recvMain = [&op, channel, this](const boost::system::error_code& ec, u64 bytesTransfered)
{
//////////////////////////////////////////////////////////////////////////
//// This is *** NOT *** within the stand. Dont touch the recv queue! ////
//////////////////////////////////////////////////////////////////////////
if (bytesTransfered != boost::asio::buffer_size(op.mBuffs[1]) || ec)
{
auto reason = ("Network error: " + ec.message() + "\nOther end may have crashed. Received incomplete message. at " LOCATION);
if (mPrint) std::cout << reason << std::endl;
channel->setRecvFatalError(reason);
return;
}
channel->mTotalRecvData += boost::asio::buffer_size(op.mBuffs[1]);
//// signal that the recv has completed.
//if (op.mException)
// op.mPromise->set_exception(op.mException);
//else
op.mPromise.set_value();
if (op.mCallback)
{
op.mCallback();
}
//delete op.mContainer;
channel->mRecvStrand.dispatch([channel, this, &op]()
{
////////////////////////////////////////////////////////////////////////////////
//// This is within the stand. We have sequential access to the recv queue. ////
////////////////////////////////////////////////////////////////////////////////
#ifdef CHANNEL_LOGGING
channel->mLog.push("completed recv #" + ToString(op.mIdx) + ", size = " + ToString(channel->mRecvSizeBuff));
#endif
//delete channel->mRecvQueue.front();
channel->mRecvQueue.pop_front();
// is there more messages to recv?
bool sendMore = (channel->mRecvQueue.size() != 0);
if (sendMore)
{
receiveOne(channel);
}
else if (channel->mRecvStatus == Channel::Status::Stopped)
{
channel->mRecvQueueEmptyProm.set_value();
channel->mRecvQueueEmptyProm = std::promise<void>();
}
});
};
if (msg.size())
{
if (mPrint) std::cout << msg << std::endl;
channel->setBadRecvErrorState(msg);
// give the user a chance to give us another location.
auto e_ptr = std::make_exception_ptr(BadReceiveBufferSize(msg, channel->mRecvSizeBuff, [&, channel, recvMain](u8* dest)
{
channel->clearBadRecvErrorState();
op.mBuffs[1] = boost::asio::buffer(dest, channel->mRecvSizeBuff);
bool error;
u64 bytesTransfered;
std::array<boost::asio::mutable_buffer, 1>tt{ {op.mBuffs[1] } };
channel->mHandle->recv(tt, error, bytesTransfered);
auto ec = error ? boost::system::errc::make_error_code(boost::system::errc::io_error) : boost::system::errc::make_error_code(boost::system::errc::success);
recvMain(ec, bytesTransfered);
}));
op.mPromise.set_exception(e_ptr);
op.mPromise = std::promise<void>();
}
else
{
std::array<boost::asio::mutable_buffer, 1>tt{ {op.mBuffs[1] } };
channel->mHandle->async_recv(tt, recvMain);
//boost::asio::async_read(*channel->mHandle,
// std::array<boost::asio::mutable_buffer, 1>{ op.mBuffs[1] }, recvMain);
}
});
}
else if (op.type() == IOOperation::Type::CloseRecv)
{
#ifdef CHANNEL_LOGGING
channel->mLog.push("recvClosed #" + ToString(op.mIdx));
#endif
//delete channel->mRecvQueue.front();
channel->mRecvQueue.pop_front();
channel->mRecvQueueEmptyProm.set_value();
}
else
{
std::cout << "error, unknown operation " << int(u8(op.type())) << std::endl;
std::terminate();
}
}
void IOService::sendOne(ChannelBase* socket)
{
////////////////////////////////////////////////////////////////////////////////
//// This is within the stand. We have sequential access to the send queue. ////
////////////////////////////////////////////////////////////////////////////////
IOOperation& op = *socket->mSendQueue.front();
#ifdef CHANNEL_LOGGING
socket->mLog.push("starting send #" + ToString(op.mIdx) + ", size = " + ToString(op.size()));
#endif
if (op.type() == IOOperation::Type::SendData)
{
socket->mSendSizeBuff = u32(op.size());
op.mBuffs[0] = boost::asio::buffer(&socket->mSendSizeBuff, sizeof(u32));
socket->mHandle->async_send(op.mBuffs, [&op, socket, this](boost::system::error_code ec, u64 bytesTransferred)
//boost::asio::async_write(
{
//////////////////////////////////////////////////////////////////////////
//// This is *** NOT *** within the stand. Dont touch the send queue! ////
//////////////////////////////////////////////////////////////////////////
if (ec)
{
auto reason = std::string("network send error: ") + ec.message() + "\n at " + LOCATION;
if (mPrint) std::cout << reason << std::endl;
socket->setSendFatalError(reason);
return;
}
// lets delete the other pointer as its either nullptr or a buffer that was allocated
//delete (ChannelBuffer*)op.mOther;
// make sure all the data sent. If this fails, look up whether WSASend guarantees that all the data in the buffers will be send.
if (bytesTransferred !=
boost::asio::buffer_size(op.mBuffs[0]) + boost::asio::buffer_size(op.mBuffs[1]))
{
auto reason = std::string("failed to send all data. Expected to send ")
+ ToString(boost::asio::buffer_size(op.mBuffs[0]) + boost::asio::buffer_size(op.mBuffs[1]))
+ " bytes but transfered " + ToString(bytesTransferred) + "\n"
+ " at " + LOCATION;
if (mPrint) std::cout << reason << std::endl;
socket->setSendFatalError(reason);
return;
}
socket->mOutstandingSendData -= socket->mSendSizeBuff;
// if this was a synchronous send, fulfill the promise that the message was sent.
op.mPromise.set_value();
// if they provided a callback, execute it.
if (op.mCallback)
{
op.mCallback();
}
//delete op.mContainer;
socket->mSendStrand.dispatch([&op, socket, this]()
{
////////////////////////////////////////////////////////////////////////////////
//// This is within the stand. We have sequential access to the send queue. ////
////////////////////////////////////////////////////////////////////////////////
#ifdef CHANNEL_LOGGING
socket->mLog.push("completed send #" + ToString(op.mIdx) + ", size = " + ToString(socket->mSendSizeBuff));
#endif
//delete socket->mSendQueue.front();
socket->mSendQueue.pop_front();
// Do we have more messages to be sent?
auto sendMore = socket->mSendQueue.size();
if (sendMore)
{
sendOne(socket);
}
else if (socket->mSendStatus == Channel::Status::Stopped)
{
socket->mSendQueueEmptyProm.set_value();
socket->mSendQueueEmptyProm = std::promise<void>();
}
});
});
}
else if (op.type() == IOOperation::Type::CloseSend)
{
// This is a special case which may happen if the channel calls stop()
// with async sends still queued up, we will get here after they get completes. fulfill the
// promise that all async send operations have been completed.
#ifdef CHANNEL_LOGGING
socket->mLog.push("sendClosed #" + ToString(op.mIdx));
#endif
//delete socket->mSendQueue.front();
socket->mSendQueue.pop_front();
socket->mSendQueueEmptyProm.set_value();
}
else
{
std::cout << "error, unknown operation " << std::endl;
std::terminate();
}
}
void IOService::dispatch(ChannelBase* socket, std::unique_ptr<IOOperation>op)
{
#ifdef CHANNEL_LOGGING
op->mIdx = socket->mOpIdx++;
#endif
switch (op->type())
{
case IOOperation::Type::RecvData:
case IOOperation::Type::CloseRecv:
{
// boost complains if generalized move symantics are used with a post(...) callback
auto opPtr = op.release();
// a strand is like a lock. Stuff posted (or dispatched) to a strand will be executed sequentially
socket->mRecvStrand.post([this, socket, opPtr]()
{
std::unique_ptr<IOOperation>op(opPtr);
// check to see if we should kick off a new set of recv operations. If the size >= 1, then there
// is already a set of recv operations that will kick off the newly queued recv when its turn comes around.
bool startRecving = (socket->mRecvQueue.size() == 0) && (socket->mRecvSocketSet || op->type() == IOOperation::Type::CloseRecv);
#ifdef CHANNEL_LOGGING
if (op->type() == IOOperation::Type::RecvData)
socket->mLog.push("queuing recv #" + ToString(op->mIdx) + ", size = " + ToString(op->size()) + ", start = " + ToString(startRecving));
else
socket->mLog.push("queuing recvClosing #" + ToString(op->mIdx) + ", start = " + ToString(startRecving));
#endif
// the queue must be guarded from concurrent access, so add the op within the strand
// queue up the operation.
socket->mRecvQueue.emplace_back(std::move(op));
if (startRecving)
{
// ok, so there isn't any recv operations currently underway. Lets kick off the first one. Subsequent recvs
// will be kicked off at the completion of this operation.
receiveOne(socket);
}
});
}
break;
case IOOperation::Type::SendData:
case IOOperation::Type::CloseSend:
{
//std::cout << " dis " << (op->type() == IOOperation::Type::SendData ? "SendData" : "CloseSend") << std::endl;
// boost complains if generalized move symantics are used with a post(...) callback
auto opPtr = op.release();
// a strand is like a lock. Stuff posted (or dispatched) to a strand will be executed sequentially
socket->mSendStrand.post([this, socket, opPtr]()
{
std::unique_ptr<IOOperation>op(opPtr);
// the queue must be guarded from concurrent access, so add the op within the strand
socket->mTotalSentData += op->size();
socket->mOutstandingSendData += op->size();
socket->mMaxOutstandingSendData = std::max((u64)socket->mOutstandingSendData, (u64)socket->mMaxOutstandingSendData);
// check to see if we should kick off a new set of send operations. If the size >= 1, then there
// is already a set of send operations that will kick off the newly queued send when its turn comes around.
auto startSending = (socket->mSendQueue.size() == 0) && (socket->mSendSocketSet || op->type() == IOOperation::Type::CloseSend);
#ifdef CHANNEL_LOGGING
if (op->type() == IOOperation::Type::SendData)
socket->mLog.push("queuing send #" + ToString(op->mIdx) +
", size = " + ToString(op->size()) + ", start = " + ToString(startSending));
else
socket->mLog.push("queuing sendClosing #" + ToString(op->mIdx) + ", start = " + ToString(startSending));
#endif
// add the operation to the queue.
socket->mSendQueue.emplace_back(std::move(op));
if (startSending)
{
// ok, so there isn't any send operations currently underway. Lets kick off the first one. Subsequent sends
// will be kicked off at the completion of this operation.
sendOne(socket);
}
});
}
break;
default:
std::cout << ("unknown IOOperation::Type") << std::endl;
std::terminate();
break;
}
}
void IOService::aquireAcceptor(std::shared_ptr<SessionBase>& session)
{
std::promise<std::list<Acceptor>::iterator> p;
std::future<std::list<Acceptor>::iterator> f = p.get_future();
mStrand.dispatch([&]()
{
// see if there already exists an acceptor that this endpoint can use.
auto acceptorIter = std::find_if(
mAcceptors.begin(),
mAcceptors.end(), [&](const Acceptor& acptr)
{
return acptr.mPort == session->mPort;
});
if (acceptorIter == mAcceptors.end())
{
// an acceptor does not exist for this port. Lets create one.
mAcceptors.emplace_back(*this);
acceptorIter = mAcceptors.end(); --acceptorIter;
acceptorIter->mPort = session->mPort;
//std::cout << "creating acceptor on " + ToString(session->mPort) << std::endl;
}
p.set_value(acceptorIter);
});
auto acceptorIter = f.get();
acceptorIter->subscribe(session);
}
void IOService::startSocket(ChannelBase * chl, std::unique_ptr<BoostSocketInterface> socket)
{
chl->mHandle = std::move(socket);
// a strand is like a lock. Stuff posted (or dispatched) to a strand will be executed sequentially
chl->mRecvStrand.post([this, chl]()
{
#ifdef CHANNEL_LOGGING
chl->mLog.push("initRecv , start = " + ToString(chl->mRecvQueue.size()));
#endif
// check to see if we should kick off a new set of recv operations. Since we are just now
// starting the channel, its possible that the async connect call returned and the caller scheduled a receive
// operation. But since the channel handshake just finished, those operations didn't start. So if
// the queue has anything in it, we should actually start the operation now...
if (chl->mRecvQueue.size())
{
// ok, so there isn't any recv operations currently underway. Lets kick off the first one. Subsequent recvs
// will be kicked off at the completion of this operation.
receiveOne(chl);
}
chl->mRecvSocketSet = true;
auto ii = ++chl->mOpenCount;
if (ii == 2)
chl->mOpenProm.set_value();
});
// a strand is like a lock. Stuff posted (or dispatched) to a strand will be executed sequentially
chl->mSendStrand.post([this, chl]()
{
// the queue must be guarded from concurrent access, so add the op within the strand
auto start = chl->mSendQueue.size();
#ifdef CHANNEL_LOGGING
chl->mLog.push("initSend , start = " + ToString(start));
#endif
// check to see if we should kick off a new set of send operations. Since we are just now
// starting the channel, its possible that the async connect call returned and the caller scheduled a send
// operation. But since the channel handshake just finished, those operations didn't start. So if
// the queue has anything in it, we should actually start the operation now...
if (start)
{
// ok, so there isn't any send operations currently underway. Lets kick off the first one. Subsequent sends
// will be kicked off at the completion of this operation.
sendOne(chl);
}
chl->mSendSocketSet = true;
auto ii = ++chl->mOpenCount;
if (ii == 2)
chl->mOpenProm.set_value();
});
}
void details::SessionGroup::add(NamedSocket s, Acceptor* a)
{
auto iter = std::find_if(mChannels.begin(), mChannels.end(),
[&](const std::shared_ptr<ChannelBase>& chl)
{
return chl->mLocalName == s.mLocalName &&
chl->mRemoteName == s.mRemoteName;
});
if (iter != mChannels.end())
{
a->mIOService.startSocket(iter->get(), std::move(s.mSocket));
mChannels.erase(iter);
}
else
{
mSockets.emplace_back(std::move(s));
}
}
void details::SessionGroup::add(const std::shared_ptr<ChannelBase>& chl, Acceptor* a)
{
auto iter = std::find_if(mSockets.begin(), mSockets.end(),
[&](const NamedSocket& s)
{
return chl->mLocalName == s.mLocalName &&
chl->mRemoteName == s.mRemoteName;
});
if (iter != mSockets.end())
{
a->mIOService.startSocket(chl.get(), std::move(iter->mSocket));
mSockets.erase(iter);
}
else
{
mChannels.emplace_back(chl);
}
}
bool details::SessionGroup::hasMatchingChannel(const NamedSocket & s) const
{
return mChannels.end() != std::find_if(mChannels.begin(), mChannels.end(),
[&](const std::shared_ptr<ChannelBase>& chl)
{
return chl->mLocalName == s.mLocalName &&
chl->mRemoteName == s.mRemoteName;
});
}
bool details::SocketGroup::hasMatchingSocket(const std::shared_ptr<ChannelBase>& chl) const
{
return mSockets.end() != std::find_if(mSockets.begin(), mSockets.end(),
[&](const NamedSocket& s)
{
return chl->mLocalName == s.mLocalName &&
chl->mRemoteName == s.mRemoteName;
});
}
void details::SessionGroup::merge(details::SocketGroup& merge, Acceptor* a)
{
if (mSockets.size())
throw std::runtime_error(LOCATION);
for (auto& s : merge.mSockets) add(std::move(s), a);
merge.mSockets.clear();
auto session = mBase.lock();
if (session)
{
if (merge.mSessionID == 0 ||
session->mName != merge.mName ||
session->mSessionID)
throw std::runtime_error(LOCATION);
session->mName = std::move(merge.mName);
session->mSessionID = merge.mSessionID;
}
}
}
| [
"ldec@mit.edu"
] | ldec@mit.edu |
994c46fc7dcc5d6d363cab1873a9617fb3e4fccf | 802afe2b544147710232141df77ba57ad9377e83 | /GameEngine/src/Utils/UtilConstants.cpp | 7596dbeb3e6682ce772563273966ff525f41b932 | [
"Apache-2.0",
"Zlib"
] | permissive | LaPeste/ComposeEngine | bb359a286c3c15018d6e2494b48112a30f76561a | 208f29e7f4bb4d47083b26b98f66309f443995c4 | refs/heads/master | 2023-08-17T08:16:43.695731 | 2023-08-14T12:35:21 | 2023-08-14T12:35:21 | 79,945,018 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 233 | cpp | //
// UtilConstants.cpp
// GameEngine2D
//
// Created by Andrea Catalini on 11/12/16.
// Copyright © 2016 Andrea Catalini. All rights reserved.
//
#include "Utils/UtilConstants.hpp"
const int UtilConstants::NO_COMPONENTS = 0;
| [
"andrea.catalini89@gmail.com"
] | andrea.catalini89@gmail.com |
93aefe7e72e3f9e7d0427e1f676fec8fbb4973a2 | e6fe06ad53114a64a869f9afdea0f3faf74234c7 | /WinterCamp2015/solutions-010276/h.cpp | b0f04a563d6fef23c2404a8c29be3a7f85736927 | [] | no_license | qzysw123456/ACM_ICPC_Template | dd78caf59f19568460c5273027ae48c0969a3335 | a873fde2ca1aee9c780e932718d0aaad841f5127 | refs/heads/master | 2020-03-06T14:39:23.060432 | 2018-03-27T06:36:26 | 2018-03-27T06:36:26 | 126,939,735 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 3,579 | cpp | #include <string.h>
#if ( _WIN32 || __WIN32__ || _WIN64 || __WIN64__ )
#define INT64 "%I64d"
#else
#define INT64 "%lld"
#endif
#if ( _WIN32 || __WIN32__ || _WIN64 || __WIN64__ )
#define UNS64 "%I64u"
#else
#define UNS64 "%llu"
#endif
#include <iostream>
#include <sstream>
#include <fstream>
#include <string>
#include <vector>
#include <deque>
#include <queue>
#include <stack>
#include <set>
#include <map>
#include <algorithm>
#include <functional>
#include <utility>
#include <bitset>
#include <cmath>
#include <cstdlib>
#include <ctime>
#include <cstdio>
using namespace std;
#define REP(i,n) for((i)=0;(i)<(int)(n);(i)++)
#define snuke(c,itr) for(__typeof((c).begin()) itr=(c).begin();itr!=(c).end();itr++)
typedef long long ll;
int ID;
int N;
vector <int> child[200010];
int parent[200010];
int gparent[20][200010];
int d[200010];
ll depth[200010];
int depth1[200010];
int L[200010],R[200010];
int order[200010];
set <int> ids;
#define T (1<<18)
int bit[T];
void add(int pos, int val){
for(int i=pos;i<T;i=((i)|(i+1))) bit[i] += val;
}
int sum(int pos){
int ans = 0;
for(int i=pos;i>0;i=((i)&(i-1))) ans += bit[i-1];
return ans;
}
void dfs(int x, ll dsum, int dsum1){
depth[x] = dsum;
depth1[x] = dsum1;
L[x] = ID;
order[ID] = x;
ID++;
int i;
REP(i,child[x].size()){
int y = child[x][i];
dfs(y, dsum + d[y], dsum1 + 1);
}
R[x] = ID;
}
void prelca(void){
int i,j;
REP(i,N) gparent[0][i] = parent[i];
REP(i,19) REP(j,N) gparent[i+1][j] = gparent[i][gparent[i][j]];
}
int lca(int x, int y){
int i;
if(depth1[x] > depth1[y]) swap(x, y);
for(i=17;i>=0;i--) if(depth1[y] - (1<<i) >= depth1[x]) y = gparent[i][y];
for(i=17;i>=0;i--) if(gparent[i][x] != gparent[i][y]){
x = gparent[i][x];
y = gparent[i][y];
}
if(x == y) return x;
return parent[x];
}
void add_vertex(int x){
ids.insert(L[x]);
add(L[x], 1);
}
ll dist(int x, int y){
int p = lca(x, y);
return depth[x] + depth[y] - 2 * depth[p];
}
int center(int x, int y, int z){
int p = lca(x, y), q = lca(y, z), r = lca(z, x);
if(p == q) return r;
if(q == r) return p;
return q;
}
int count_child(int x){
return sum(R[x]) - sum(L[x]);
}
int func(int x, int y, int cnt){
int i;
if(x == y) return x;
int p = lca(x, y);
int q = p;
if(x == p){
int rem = depth1[y] - depth1[x] - 1;
int z = y;
for(i=17;i>=0;i--) if(rem >= (1<<i)){
rem -= (1<<i);
z = gparent[i][z];
}
if(count_child(z) != cnt / 2) return x;
q = z;
} else {
if(count_child(x) != cnt / 2) return x;add_vertex
}
int a[] = {L[x], R[x], L[y], R[y], L[q], R[q]};
REP(i,6){
__typeof(ids.begin()) itr = ids.lower_bound(a[i]);
int tmp = (*itr);
if(tmp >= 0 && tmp < N){
int z = center(x, y, order[tmp]);
if(z != x) y = z;
}
itr--;
tmp = (*itr);
if(tmp >= 0 && tmp < N){
int z = center(x, y, order[tmp]);
if(z != x) y = z;
}
}
return y;
}
int main(void){
int i;
cin >> N;
for(i=1;i<N;i++){
int p;
scanf("%d%d", &p, &d[i]);
p--;
child[p].push_back(i);
parent[i] = p;
}
dfs(0, 0, 0);
prelca();
ids.insert(-1);
ids.insert(N+1);
add_vertex
ll sum = 0;
int x = 0, y = 0;
cout << 0 << endl;
add_vertex(0);
for(int z=1;z<N;z++){
add_vertex(z);
if(z % 2 == 0){
x = center(x, y, z);
sum += dist(x, z);
printf(INT64 "\n", sum);
} else {
sum += dist(x, z);
printf(INT64 "\n", sum);
y = func(x, z, z+1);
}
}
return 0;
}
| [
"qzysw123456@gmail.com"
] | qzysw123456@gmail.com |
3c37dc46dfe9398c8e12b3c264a3401bd2425f74 | 76529bf3e6af11ff1aadcf6a20c5a7dd98b7d1f1 | /tests/YGDimensionTest.cpp | 02ccb06c05f1c9597ab05eb98030ee3c8d602940 | [
"LicenseRef-scancode-proprietary-license",
"MIT"
] | permissive | Naturalclar/yoga | 1d3989e88c150d39c69eecbd767cb9d400988089 | a1ce49534d0ef7dbe9ade636a4d6bfec46329399 | refs/heads/master | 2022-10-28T12:03:53.809739 | 2022-10-06T12:01:08 | 2022-10-06T12:01:08 | 246,898,238 | 1 | 0 | MIT | 2022-10-09T17:56:42 | 2020-03-12T17:54:22 | C++ | UTF-8 | C++ | false | false | 3,780 | cpp | /*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
// clang-format off
// @Generated by gentest/gentest.rb from gentest/fixtures/YGDimensionTest.html
#include <gtest/gtest.h>
#include <yoga/Yoga.h>
TEST(YogaTest, wrap_child) {
const YGConfigRef config = YGConfigNew();
const YGNodeRef root = YGNodeNewWithConfig(config);
const YGNodeRef root_child0 = YGNodeNewWithConfig(config);
YGNodeStyleSetWidth(root_child0, 100);
YGNodeStyleSetHeight(root_child0, 100);
YGNodeInsertChild(root, root_child0, 0);
YGNodeCalculateLayout(root, YGUndefined, YGUndefined, YGDirectionLTR);
ASSERT_FLOAT_EQ(0, YGNodeLayoutGetLeft(root));
ASSERT_FLOAT_EQ(0, YGNodeLayoutGetTop(root));
ASSERT_FLOAT_EQ(100, YGNodeLayoutGetWidth(root));
ASSERT_FLOAT_EQ(100, YGNodeLayoutGetHeight(root));
ASSERT_FLOAT_EQ(0, YGNodeLayoutGetLeft(root_child0));
ASSERT_FLOAT_EQ(0, YGNodeLayoutGetTop(root_child0));
ASSERT_FLOAT_EQ(100, YGNodeLayoutGetWidth(root_child0));
ASSERT_FLOAT_EQ(100, YGNodeLayoutGetHeight(root_child0));
YGNodeCalculateLayout(root, YGUndefined, YGUndefined, YGDirectionRTL);
ASSERT_FLOAT_EQ(0, YGNodeLayoutGetLeft(root));
ASSERT_FLOAT_EQ(0, YGNodeLayoutGetTop(root));
ASSERT_FLOAT_EQ(100, YGNodeLayoutGetWidth(root));
ASSERT_FLOAT_EQ(100, YGNodeLayoutGetHeight(root));
ASSERT_FLOAT_EQ(0, YGNodeLayoutGetLeft(root_child0));
ASSERT_FLOAT_EQ(0, YGNodeLayoutGetTop(root_child0));
ASSERT_FLOAT_EQ(100, YGNodeLayoutGetWidth(root_child0));
ASSERT_FLOAT_EQ(100, YGNodeLayoutGetHeight(root_child0));
YGNodeFreeRecursive(root);
YGConfigFree(config);
}
TEST(YogaTest, wrap_grandchild) {
const YGConfigRef config = YGConfigNew();
const YGNodeRef root = YGNodeNewWithConfig(config);
const YGNodeRef root_child0 = YGNodeNewWithConfig(config);
YGNodeInsertChild(root, root_child0, 0);
const YGNodeRef root_child0_child0 = YGNodeNewWithConfig(config);
YGNodeStyleSetWidth(root_child0_child0, 100);
YGNodeStyleSetHeight(root_child0_child0, 100);
YGNodeInsertChild(root_child0, root_child0_child0, 0);
YGNodeCalculateLayout(root, YGUndefined, YGUndefined, YGDirectionLTR);
ASSERT_FLOAT_EQ(0, YGNodeLayoutGetLeft(root));
ASSERT_FLOAT_EQ(0, YGNodeLayoutGetTop(root));
ASSERT_FLOAT_EQ(100, YGNodeLayoutGetWidth(root));
ASSERT_FLOAT_EQ(100, YGNodeLayoutGetHeight(root));
ASSERT_FLOAT_EQ(0, YGNodeLayoutGetLeft(root_child0));
ASSERT_FLOAT_EQ(0, YGNodeLayoutGetTop(root_child0));
ASSERT_FLOAT_EQ(100, YGNodeLayoutGetWidth(root_child0));
ASSERT_FLOAT_EQ(100, YGNodeLayoutGetHeight(root_child0));
ASSERT_FLOAT_EQ(0, YGNodeLayoutGetLeft(root_child0_child0));
ASSERT_FLOAT_EQ(0, YGNodeLayoutGetTop(root_child0_child0));
ASSERT_FLOAT_EQ(100, YGNodeLayoutGetWidth(root_child0_child0));
ASSERT_FLOAT_EQ(100, YGNodeLayoutGetHeight(root_child0_child0));
YGNodeCalculateLayout(root, YGUndefined, YGUndefined, YGDirectionRTL);
ASSERT_FLOAT_EQ(0, YGNodeLayoutGetLeft(root));
ASSERT_FLOAT_EQ(0, YGNodeLayoutGetTop(root));
ASSERT_FLOAT_EQ(100, YGNodeLayoutGetWidth(root));
ASSERT_FLOAT_EQ(100, YGNodeLayoutGetHeight(root));
ASSERT_FLOAT_EQ(0, YGNodeLayoutGetLeft(root_child0));
ASSERT_FLOAT_EQ(0, YGNodeLayoutGetTop(root_child0));
ASSERT_FLOAT_EQ(100, YGNodeLayoutGetWidth(root_child0));
ASSERT_FLOAT_EQ(100, YGNodeLayoutGetHeight(root_child0));
ASSERT_FLOAT_EQ(0, YGNodeLayoutGetLeft(root_child0_child0));
ASSERT_FLOAT_EQ(0, YGNodeLayoutGetTop(root_child0_child0));
ASSERT_FLOAT_EQ(100, YGNodeLayoutGetWidth(root_child0_child0));
ASSERT_FLOAT_EQ(100, YGNodeLayoutGetHeight(root_child0_child0));
YGNodeFreeRecursive(root);
YGConfigFree(config);
}
| [
"facebook-github-bot@users.noreply.github.com"
] | facebook-github-bot@users.noreply.github.com |
7af4a96a134e27101b1aa173310175d2a0b50e2a | f1fff1ec58708a7770bdd5491ff54349587530e9 | /various/COP3330/lect13/sample2.cpp | 1cd340034e0f09883d0c14f1fccc09080af7c4cf | [
"MIT"
] | permissive | chgogos/oop | a7077e7c3bfab63de03eb02b64f77e097484589f | 8f8e9d7f2abd58acf48c2adce6550971c91cfcf7 | refs/heads/master | 2022-06-28T03:44:37.732713 | 2022-06-06T11:41:15 | 2022-06-06T11:41:15 | 171,113,310 | 16 | 11 | null | null | null | null | UTF-8 | C++ | false | false | 507 | cpp | #include <iostream>
#include <cstring>
using namespace std;
int main()
{
char vowels[5] = {'A', 'E', 'I', 'O', 'U'};
cout << "vowels = " << vowels << '\n'; // is this a c-string?
char temperatureScales[3] = {'K', 'F', 'C'};
cout << "temperatureScales = " << temperatureScales << '\n';
char digits[10] = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9'};
cout << "digits = " << digits << '\n';
}
/*
vowels = AEIOU0o
temperatureScales = KFCAEIOU0o
digits = 0123456789KFCAEIOU0o
*/ | [
"chgogos@gmail.com"
] | chgogos@gmail.com |
f581f019e8bcb54b7aab8fdb9d6510adea0dc443 | 536656cd89e4fa3a92b5dcab28657d60d1d244bd | /ash/wm/splitview/split_view_divider.h | adcde9b0e3361c12b8ecbebc715c939a96ab67c5 | [
"BSD-3-Clause"
] | permissive | ECS-251-W2020/chromium | 79caebf50443f297557d9510620bf8d44a68399a | ac814e85cb870a6b569e184c7a60a70ff3cb19f9 | refs/heads/master | 2022-08-19T17:42:46.887573 | 2020-03-18T06:08:44 | 2020-03-18T06:08:44 | 248,141,336 | 7 | 8 | BSD-3-Clause | 2022-07-06T20:32:48 | 2020-03-18T04:52:18 | null | UTF-8 | C++ | false | false | 4,646 | h | // Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ASH_WM_SPLITSVIEW_SPLIT_VIEW_DIVIDER_H_
#define ASH_WM_SPLITSVIEW_SPLIT_VIEW_DIVIDER_H_
#include <memory>
#include "ash/ash_export.h"
#include "base/macros.h"
#include "base/scoped_observer.h"
#include "ui/aura/window.h"
#include "ui/aura/window_observer.h"
#include "ui/display/display.h"
#include "ui/gfx/geometry/point.h"
#include "ui/gfx/geometry/rect.h"
#include "ui/gfx/geometry/size.h"
#include "ui/wm/core/transient_window_observer.h"
#include "ui/wm/public/activation_change_observer.h"
namespace views {
class Widget;
} // namespace views
namespace aura {
class ScopedWindowTargeter;
} // namespace aura
namespace ash {
class SplitViewController;
// Split view divider. It passes the mouse/gesture events to SplitViewController
// to resize the left and right windows accordingly. The divider widget should
// always placed above its observed windows to be able to receive events.
class ASH_EXPORT SplitViewDivider : public aura::WindowObserver,
public ::wm::ActivationChangeObserver,
public ::wm::TransientWindowObserver {
public:
// The distance to the divider edge in which a touch gesture will be
// considered as a valid event on the divider.
static constexpr int kDividerEdgeInsetForTouch = 8;
explicit SplitViewDivider(SplitViewController* controller);
~SplitViewDivider() override;
// static version of GetDividerBoundsInScreen(bool is_dragging) function.
static gfx::Rect GetDividerBoundsInScreen(
const gfx::Rect& work_area_bounds_in_screen,
bool landscape,
int divider_position,
bool is_dragging);
// Do the divider spawning animation that adds a finishing touch to the
// snapping animation of a window.
void DoSpawningAnimation(int spawn_position);
// Updates |divider_widget_|'s bounds.
void UpdateDividerBounds();
// Calculates the divider's expected bounds according to the divider's
// position.
gfx::Rect GetDividerBoundsInScreen(bool is_dragging);
void SetAlwaysOnTop(bool on_top);
void AddObservedWindow(aura::Window* window);
void RemoveObservedWindow(aura::Window* window);
// Called when a window tab(s) are being dragged around the workspace. The
// divider should be placed beneath the dragged window during dragging.
void OnWindowDragStarted();
void OnWindowDragEnded();
// aura::WindowObserver:
void OnWindowDestroying(aura::Window* window) override;
// wm::ActivationChangeObserver:
void OnWindowActivated(ActivationReason reason,
aura::Window* gained_active,
aura::Window* lost_active) override;
void OnWindowBoundsChanged(aura::Window* window,
const gfx::Rect& old_bounds,
const gfx::Rect& new_bounds,
ui::PropertyChangeReason reason) override;
// ::wm::TransientWindowObserver:
void OnTransientChildAdded(aura::Window* window,
aura::Window* transient) override;
void OnTransientChildRemoved(aura::Window* window,
aura::Window* transient) override;
views::Widget* divider_widget() { return divider_widget_; }
private:
void CreateDividerWidget(SplitViewController* controller);
SplitViewController* controller_;
// The window targeter that is installed on the always on top container window
// when the split view mode is active. It deletes itself when the split view
// mode is ended. Upon destruction, it restores the previous window targeter
// (if any) on the always on top container window.
std::unique_ptr<aura::ScopedWindowTargeter> split_view_window_targeter_;
// Split view divider widget. It's a black bar stretching from one edge of the
// screen to the other, containing a small white drag bar in the middle. As
// the user presses on it and drag it to left or right, the left and right
// window will be resized accordingly.
views::Widget* divider_widget_ = nullptr;
// If true there is a window whose tabs are currently being dragged around.
bool is_dragging_window_ = false;
// Tracks observed windows.
aura::Window::Windows observed_windows_;
// Tracks observed transient windows.
ScopedObserver<aura::Window, aura::WindowObserver>
transient_windows_observer_{this};
DISALLOW_COPY_AND_ASSIGN(SplitViewDivider);
};
} // namespace ash
#endif // ASH_WM_SPLITSVIEW_SPLIT_VIEW_DIVIDER_H_
| [
"pcding@ucdavis.edu"
] | pcding@ucdavis.edu |
6db4ec6aaba0229ce17058b2226970099e466851 | 5f1b1ed2e5507a4ed976ec3822f4f40e5365cc13 | /DirectXCortanalaunchApp/Generated Files/DirectXPage.g.h | 4cb88daef11433830143d019dc2ba66eaecd9a1a | [] | no_license | cdx08222028/CortanaLaunch | ff9171af270f3ca5cecc378a0994e7e9ad77b47b | 819a08c9a020c59b3ce091aa42b4e1878e3a6909 | refs/heads/master | 2021-01-14T13:42:52.173046 | 2016-01-20T15:10:25 | 2016-01-20T15:10:25 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,315 | h | #pragma once
//------------------------------------------------------------------------------
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
//------------------------------------------------------------------------------
namespace Windows {
namespace UI {
namespace Xaml {
namespace Controls {
ref class SwapChainPanel;
ref class AppBar;
}
}
}
}
namespace DirectXCortanalaunchApp
{
[::Windows::Foundation::Metadata::WebHostHidden]
partial ref class DirectXPage : public ::Windows::UI::Xaml::Controls::Page,
public ::Windows::UI::Xaml::Markup::IComponentConnector,
public ::Windows::UI::Xaml::Markup::IComponentConnector2
{
public:
void InitializeComponent();
virtual void Connect(int connectionId, ::Platform::Object^ target);
virtual ::Windows::UI::Xaml::Markup::IComponentConnector^ GetBindingConnector(int connectionId, ::Platform::Object^ target);
private:
bool _contentLoaded;
private: ::Windows::UI::Xaml::Controls::SwapChainPanel^ swapChainPanel;
private: ::Windows::UI::Xaml::Controls::AppBar^ bottomAppBar;
};
}
| [
"peted70@hotmail.com"
] | peted70@hotmail.com |
4934e15cfdbd0a7d88cbd8e5ac2f394d3ca08684 | 96870250c2f1f65b87d328de21741b7df6361d00 | /headers/reciver.h | 0f278879637ee89fcefe571d3dda2781e3d3769d | [] | no_license | Pedroagaponto/p2p_local_share | 4f0a8f3e2c31c3734551695fb4add87e09ae176a | f30f868deda5ac8cc74f47009bf70f08dd794e80 | refs/heads/master | 2016-09-06T15:15:14.402720 | 2014-06-20T03:55:40 | 2014-06-20T03:55:40 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 184 | h | #ifndef RECIVER_H
#define RECIVER_H
class I_MP_R
{
public:
virtual void send(Message msg) = 0;
};
class MyProtocolReciver :public I_MP_R
{
public:
void send(Message msg);
};
#endif | [
"vitor@mark-111.(none)"
] | vitor@mark-111.(none) |
a578380ce2c0382e1f91d977d5aa03b4e9249c69 | cecfc49fb9254498c3b885ae947cd0d9339f2f9a | /wpuzzles.cpp | 78cb94da88f782ecdbd9f24299666e4bbdb3e67f | [
"Unlicense"
] | permissive | t3nsor/SPOJ | f6e4755fe08654c9a166e5aaf16f6dcbb6fc5099 | 03145e8bf2cefb3e49a0cd0da5ec908e924d4728 | refs/heads/master | 2023-04-28T19:04:32.529674 | 2023-04-17T23:49:49 | 2023-04-17T23:49:49 | 24,963,181 | 279 | 130 | Unlicense | 2020-10-30T00:33:57 | 2014-10-08T22:07:33 | C++ | UTF-8 | C++ | false | false | 6,024 | cpp | // 2008-09-28
// modified 2014-10-07
#include <iostream>
#include <cstring>
#include <ext/hash_map>
using namespace std;
using namespace __gnu_cxx;
pair<int,int> found[1000];
char word[1000][1001];
int len[1000];
int row[1000];
int col[1000];
int dir[1000];
typedef int hashtype;
const hashtype RADIX=15485867;
const hashtype RADIX_INVERSE=3935065859;
hashtype pwr;
hash_map<hashtype,int> hashes;
int N;
bool equ;
hashtype f(int x)
{
hashtype result=1;
hashtype cur=RADIX;
while (x)
{
if (x&1)
result*=cur;
x>>=1;
cur*=cur;
}
return result;
}
int RabinKarp(char* haystack)
{
hashtype cur=1;
hashtype h2=0;
int i;
for (i=0; i<len[0]; i++)
{
if (!haystack[i])
return 0;
h2+=cur*haystack[i];
cur*=RADIX;
}
int cnt=0;
int pos;
for(pos=0;;pos++)
{
hash_map<hashtype,int>::iterator It=hashes.find(h2);
if (It!=hashes.end())
{
bool ok=true;
for (i=0; i<len[0]; i++)
if (word[It->second][i]-haystack[pos+i])
{
ok=false;
break;
}
if (ok)
found[cnt++]=make_pair(It->second,pos);
}
if (!haystack[pos+len[0]])
break;
h2=(h2-haystack[pos])*RADIX_INVERSE+pwr*haystack[pos+len[0]];
}
return cnt;
}
int NaiveSearch(char* haystack)
{
int cnt=0;
int i;
for (i=0; i<N; i++)
{
if (row[i]+1)
continue;
char* p=strstr(haystack,word[i]);
if (p)
found[cnt++]=make_pair(i,int(p-haystack));
}
return cnt;
}
int search(char* haystack)
{
if (equ)
return RabinKarp(haystack);
else
return NaiveSearch(haystack);
}
int main()
{
int T;
scanf("%d",&T);
int i,j,k,m,X,Y;
static char grid[1001][1001];
char tmp[2100];
char tmp2[2100];
int cnt;
while (T--)
{
scanf("%d %d %d",&Y,&X,&N);
getchar();
for (i=0; i<Y; i++)
gets(grid[i]);
equ=true;
for (i=0; i<N; i++)
{
gets(word[i]);
len[i]=strlen(word[i]);
if (len[i]-len[0])
equ=false;
row[i]=-1;
}
hashes.clear();
if (equ)
{
pwr=f(len[0]-1);
for (i=0; i<N; i++)
{
hashtype h=word[i][len[0]-1];
for (j=len[0]-2; j>=0; j--)
h=RADIX*h+word[i][j];
if (hashes.find(h)!=hashes.end())
throw;
hashes[h]=i;
}
}
//search C and G
for (i=0; i<Y; i++)
{
strcpy(tmp,grid[i]);
int beg=0;
int end=X-1;
while (beg<end)
swap(tmp[beg++],tmp[end--]);
int n=search(grid[i]);
for (j=0; j<n; j++)
{
row[found[j].first]=i;
col[found[j].first]=found[j].second;
dir[found[j].first]='C';
}
n=search(tmp);
for (j=0; j<n; j++)
{
row[found[j].first]=i;
col[found[j].first]=X-found[j].second-1;
dir[found[j].first]='G';
}
}
//search A and E
for (i=0; i<X; i++)
{
for (j=0; j<Y; j++)
{
tmp[j]=grid[j][i];
tmp2[j]=grid[Y-j-1][i];
}
tmp[Y]=0;
tmp2[Y]=0;
int n=search(tmp);
for (j=0; j<n; j++)
{
row[found[j].first]=found[j].second;
col[found[j].first]=i;
dir[found[j].first]='E';
}
n=search(tmp2);
for (j=0; j<n; j++)
{
row[found[j].first]=Y-found[j].second-1;
col[found[j].first]=i;
dir[found[j].first]='A';
}
}
//search D and H
for (i=Y-1; i>=1-X; i--)
{
int r=max(i,0);
int c=max(0,-i);
for (j=r,k=c,cnt=0; j<Y&&k<X; j++,k++,cnt++)
tmp[cnt]=grid[j][k];
tmp[cnt]=0;
strcpy(tmp2,tmp);
j=0;
k=cnt-1;
while (j<k)
swap(tmp2[j++],tmp2[k--]);
int n=search(tmp);
for (j=0; j<n; j++)
{
row[found[j].first]=r+found[j].second;
col[found[j].first]=c+found[j].second;
dir[found[j].first]='D';
}
n=search(tmp2);
for (j=0; j<n; j++)
{
row[found[j].first]=r+cnt-found[j].second-1;
col[found[j].first]=c+cnt-found[j].second-1;
dir[found[j].first]='H';
}
}
//search B and F, finally
for (i=0; i<=X+Y-2; i++)
{
int r=min(X-1,i);
int c=max(0,i-Y+1);
for (j=r,k=c,cnt=0; j>=0&&k<X; j--,k++,cnt++)
tmp[cnt]=grid[j][k];
tmp[cnt]=0;
strcpy(tmp2,tmp);
j=0;
k=cnt-1;
while (j<k)
swap(tmp2[j++],tmp2[k--]);
int n=search(tmp);
for (j=0; j<n; j++)
{
row[found[j].first]=r-found[j].second;
col[found[j].first]=c+found[j].second;
dir[found[j].first]='B';
}
n=search(tmp2);
for (j=0; j<n; j++)
{
row[found[j].first]=r-(cnt-found[j].second-1);
col[found[j].first]=c+(cnt-found[j].second-1);
dir[found[j].first]='F';
}
}
for (i=0; i<N; i++)
{
printf("%d %d %c\n",row[i],col[i],dir[i]);
}
if (T) putchar('\n');
}
return 0;
}
| [
"bbi5291@gmail.com"
] | bbi5291@gmail.com |
c301c0058c97303e44f76944e6d6477b30080e6a | 7ea2d3287bbeabcc5a3528d76282ef30c3041c58 | /src/thread.cpp | 009a6fa8c204e42f5fc6bc01279d3c5cfdb72ee5 | [
"MIT"
] | permissive | fossabot/shmup2 | 35d2eb90206e9f829a379d5c1cb83035e87df731 | 211757a7dce3aed278a10f912f6eb7aa0183fd74 | refs/heads/master | 2020-05-03T12:45:54.957454 | 2019-03-26T23:02:04 | 2019-03-26T23:02:04 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 332 | cpp | #include "thread.h"
void thread_create(THREAD_INFO *data){
data->cond = al_create_cond();
data->mutex = al_create_mutex();
}
void thread_destroy(THREAD_INFO *data){
if(data->cond) al_destroy_cond(data->cond);
data->cond = nullptr;
if(data->mutex)al_destroy_mutex(data->mutex);
data->mutex = nullptr;
}
| [
"nicholasluis@gmail.com"
] | nicholasluis@gmail.com |
4c7ce0ae40edd220f69962dd0fc3ca53ca3e228b | 0eff74b05b60098333ad66cf801bdd93becc9ea4 | /second/download/CMake/CMake-old-new/CMake-old-new-joern/Kitware_CMake_old_new_new_function_1068.cpp | 8674d08578999b679246c4b18b72ae6343fdb9dd | [] | no_license | niuxu18/logTracker-old | 97543445ea7e414ed40bdc681239365d33418975 | f2b060f13a0295387fe02187543db124916eb446 | refs/heads/master | 2021-09-13T21:39:37.686481 | 2017-12-11T03:36:34 | 2017-12-11T03:36:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 874 | cpp | void
cmComputeLinkDepends::DisplayComponents()
{
fprintf(stderr, "The strongly connected components are:\n");
std::vector<NodeList> const& components = this->CCG->GetComponents();
for(unsigned int c=0; c < components.size(); ++c)
{
fprintf(stderr, "Component (%u):\n", c);
NodeList const& nl = components[c];
for(NodeList::const_iterator ni = nl.begin(); ni != nl.end(); ++ni)
{
int i = *ni;
fprintf(stderr, " item %d [%s]\n", i,
this->EntryList[i].Item.c_str());
}
EdgeList const& ol = this->CCG->GetComponentGraphEdges(c);
for(EdgeList::const_iterator oi = ol.begin(); oi != ol.end(); ++oi)
{
int i = *oi;
fprintf(stderr, " followed by Component (%d)\n", i);
}
fprintf(stderr, " topo order index %d\n",
this->ComponentOrder[c]);
}
fprintf(stderr, "\n");
} | [
"993273596@qq.com"
] | 993273596@qq.com |
66bf2695abd621aec92856d78b988fb5e5b18dd7 | db75ee0c77542f1d4d8ffe9a170595315f8d1f4b | /2021_shemodgomis_semestri/18.12.2021/English/class_from_structure.cpp | 1efd591b4a5b57bc8e47540035a631bb94855ed6 | [] | no_license | hermag/OOPcourse | 0377107350339c0728c43898883ec4a8dae883b0 | 7804937c1a7ff243c10453eb0a76ee9dee0eb5df | refs/heads/main | 2022-07-11T03:14:25.099758 | 2022-07-02T09:50:37 | 2022-07-02T09:50:37 | 156,328,575 | 2 | 5 | null | null | null | null | UTF-8 | C++ | false | false | 551 | cpp | #include <iostream>
#include <cstring>
using namespace std;
class cl_type {
double balance;
char name[40];
public:
cl_type(double b, char *n);
void show();
};
cl_type::cl_type(double b, char *n)
{
balance = b;
strcpy(name, n);
}
void cl_type::show()
{
cout<<"Full Name "<<name;
cout<<":$"<<balance<<endl;
if (balance<0.0) cout<<"***"<<endl;
}
int main()
{
cl_type acc1(100.12,"Johnson");
cl_type acc2(-12.34, "Hedricks");
acc1.show();
acc2.show();
return 0;
} | [
"erekle@magradze.de"
] | erekle@magradze.de |
3cc6deee3bdf83ec2754c7309acd7af4200d809c | 18bf05f7b183b364b26da06a4e8cb06ad7cb9b84 | /src/qt/optionsmodel.h | d1cfae9fae0d26d3c9c0cdf7beec2ceb80bb1424 | [
"MIT"
] | permissive | GYESS1/XHimera | 210f254a2c6c7e0785055d938873cd8fdac4c094 | 55a146d93d78ed47e4bf83b9d156f7c7b754b106 | refs/heads/master | 2020-03-20T20:29:30.214419 | 2018-06-24T14:41:28 | 2018-06-24T14:41:28 | 137,690,096 | 0 | 0 | null | 2018-06-17T22:06:12 | 2018-06-17T22:06:11 | null | UTF-8 | C++ | false | false | 3,243 | h | // Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOIN_QT_OPTIONSMODEL_H
#define BITCOIN_QT_OPTIONSMODEL_H
#include "amount.h"
#include <QAbstractListModel>
QT_BEGIN_NAMESPACE
class QNetworkProxy;
QT_END_NAMESPACE
/** Interface from Qt to configuration data structure for Bitcoin client.
To Qt, the options are presented as a list with the different options
laid out vertically.
This can be changed to a tree once the settings become sufficiently
complex.
*/
class OptionsModel : public QAbstractListModel
{
Q_OBJECT
public:
explicit OptionsModel(QObject* parent = 0);
enum OptionID {
StartAtStartup, // bool
MinimizeToTray, // bool
MapPortUPnP, // bool
MinimizeOnClose, // bool
ProxyUse, // bool
ProxyIP, // QString
ProxyPort, // int
DisplayUnit, // BitcoinUnits::Unit
ThirdPartyTxUrls, // QString
Digits, // QString
Theme, // QString
Language, // QString
CoinControlFeatures, // bool
ThreadsScriptVerif, // int
DatabaseCache, // int
SpendZeroConfChange, // bool
ObfuscationRounds, // int
AnonymizeXHimeraAmount, //int
ShowMasternodesTab, // bool
Listen, // bool
OptionIDRowCount,
};
void Init();
void Reset();
int rowCount(const QModelIndex& parent = QModelIndex()) const;
QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const;
bool setData(const QModelIndex& index, const QVariant& value, int role = Qt::EditRole);
/** Updates current unit in memory, settings and emits displayUnitChanged(newUnit) signal */
void setDisplayUnit(const QVariant& value);
/* Explicit getters */
bool getMinimizeToTray() { return fMinimizeToTray; }
bool getMinimizeOnClose() { return fMinimizeOnClose; }
int getDisplayUnit() { return nDisplayUnit; }
QString getThirdPartyTxUrls() { return strThirdPartyTxUrls; }
bool getProxySettings(QNetworkProxy& proxy) const;
bool getCoinControlFeatures() { return fCoinControlFeatures; }
const QString& getOverriddenByCommandLine() { return strOverriddenByCommandLine; }
/* Restart flag helper */
void setRestartRequired(bool fRequired);
bool isRestartRequired();
bool resetSettings;
private:
/* Qt-only settings */
bool fMinimizeToTray;
bool fMinimizeOnClose;
QString language;
int nDisplayUnit;
QString strThirdPartyTxUrls;
bool fCoinControlFeatures;
/* settings that were overriden by command-line */
QString strOverriddenByCommandLine;
/// Add option to list of GUI options overridden through command line/config file
void addOverriddenOption(const std::string& option);
signals:
void displayUnitChanged(int unit);
void obfuscationRoundsChanged(int);
void anonymizeXHimeraAmountChanged(int);
void coinControlFeaturesChanged(bool);
};
#endif // BITCOIN_QT_OPTIONSMODEL_H
| [
"XHimeraCoin"
] | XHimeraCoin |
5ecb441497d008944f071a243d2c15833deb272c | 3841f7991232e02c850b7e2ff6e02712e9128b17 | /小浪底泥沙三维/EV_Xld/jni/src/EV_SpatialDatabase_Java/wrapper/queryfilter_wrapperjava.cpp | 2f2280cfc3280ce0950eb84d4b931a6590d9e508 | [] | 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 | 64,873 | cpp | /* This file is produced by the JNI AutoWrapper Utility
Copyright (c) 2012 by EarthView Image Inc */
#include "spatialdatabase/queryfilter.h"
#include <jni.h>
#include "core_java/global_reference.h"
#include "core_java/jni_load.h"
#include <typeinfo>
namespace EarthView
{
namespace World
{
namespace Spatial
{
namespace GeoDataset
{
class JCQueryFilterProxy : public EarthView::World::Spatial::GeoDataset::CQueryFilter
{
private:
EarthView::World::Core::ev_string m_getFieldName_void_callback;
EarthView::World::Core::ev_string m_getWhereClause_void_callback;
EarthView::World::Core::ev_string m_getLimitNum_void_callback;
EarthView::World::Core::ev_string m_getOffsetNum_void_callback;
EarthView::World::Core::ev_string m_getQueryGeometryRef_void_callback;
EarthView::World::Core::ev_string m_getSpatialRelation_void_callback;
EarthView::World::Core::ev_string m_getQueryMode_void_callback;
EarthView::World::Core::ev_string m_setFieldName_EVString_callback;
EarthView::World::Core::ev_string m_setWhereClause_EVString_callback;
EarthView::World::Core::ev_string m_setLimitNum_ev_uint32_callback;
EarthView::World::Core::ev_string m_setOffsetNum_ev_uint32_callback;
EarthView::World::Core::ev_string m_setQueryGeometry_IGeometry_callback;
EarthView::World::Core::ev_string m_setQueryMode_EVQueryModeType_callback;
EarthView::World::Core::ev_string m_setSpatialRelation_EVSpatialQueryRelationType_callback;
EarthView::World::Core::ev_string m_ev_clone_void_callback;
public:
JCQueryFilterProxy(EarthView::World::Core::CNameValuePairList *pList) : CQueryFilter(pList)
{
}
ev_void unRegisterJavaReference()
{
EarthView::World::Core::GlobalReference *__gr = (EarthView::World::Core::GlobalReference *)this->getJavaReference();
if(__gr != NULL)
{
delete __gr;
this->registerJavaReference(NULL);
}
}
public:
void register_getFieldName_void_callback(EarthView::World::Core::ev_string __method)
{
this->m_getFieldName_void_callback = __method;
}
void register_getWhereClause_void_callback(EarthView::World::Core::ev_string __method)
{
this->m_getWhereClause_void_callback = __method;
}
void register_getLimitNum_void_callback(EarthView::World::Core::ev_string __method)
{
this->m_getLimitNum_void_callback = __method;
}
void register_getOffsetNum_void_callback(EarthView::World::Core::ev_string __method)
{
this->m_getOffsetNum_void_callback = __method;
}
void register_getQueryGeometryRef_void_callback(EarthView::World::Core::ev_string __method)
{
this->m_getQueryGeometryRef_void_callback = __method;
}
void register_getSpatialRelation_void_callback(EarthView::World::Core::ev_string __method)
{
this->m_getSpatialRelation_void_callback = __method;
}
void register_getQueryMode_void_callback(EarthView::World::Core::ev_string __method)
{
this->m_getQueryMode_void_callback = __method;
}
void register_setFieldName_EVString_callback(EarthView::World::Core::ev_string __method)
{
this->m_setFieldName_EVString_callback = __method;
}
void register_setWhereClause_EVString_callback(EarthView::World::Core::ev_string __method)
{
this->m_setWhereClause_EVString_callback = __method;
}
void register_setLimitNum_ev_uint32_callback(EarthView::World::Core::ev_string __method)
{
this->m_setLimitNum_ev_uint32_callback = __method;
}
void register_setOffsetNum_ev_uint32_callback(EarthView::World::Core::ev_string __method)
{
this->m_setOffsetNum_ev_uint32_callback = __method;
}
void register_setQueryGeometry_IGeometry_callback(EarthView::World::Core::ev_string __method)
{
this->m_setQueryGeometry_IGeometry_callback = __method;
}
void register_setQueryMode_EVQueryModeType_callback(EarthView::World::Core::ev_string __method)
{
this->m_setQueryMode_EVQueryModeType_callback = __method;
}
void register_setSpatialRelation_EVSpatialQueryRelationType_callback(EarthView::World::Core::ev_string __method)
{
this->m_setSpatialRelation_EVSpatialQueryRelationType_callback = __method;
}
void register_ev_clone_void_callback(EarthView::World::Core::ev_string __method)
{
this->m_ev_clone_void_callback = __method;
}
virtual EVString getFieldName() const
{
if (this->_gRef != NULL && this->m_getFieldName_void_callback != "" && this->isCustomExtend())
{
EarthView::World::Core::GlobalReference *__gr = (EarthView::World::Core::GlobalReference *)this->getJavaReference();
JNIEnv * __env;
#if EV_PLATFORM == EV_PLATFORM_ANDROID
bool __jniAttachable = false;
if(EarthView::World::Core::JNILoad::getCachedJVM()->GetEnv((void **)&__env, JNI_VERSION_1_6) != JNI_OK)
{
EarthView::World::Core::JNILoad::getCachedJVM()->AttachCurrentThread((void **)&__env, NULL);
__jniAttachable = true;
}
#else
EarthView::World::Core::JNILoad::getCachedJVM()->AttachCurrentThread((void **)&__env, NULL);
#endif
jobject __obj = __gr->getJObject();
jclass __clazz = __gr->getClass();
jmethodID __method = __gr->getMethod("getFieldName_void_callback");
jstring __values1_j = (jstring)__env->CallObjectMethod(__obj, __method );
#if EV_PLATFORM == EV_PLATFORM_ANDROID
if(__jniAttachable)
{
EarthView::World::Core::JNILoad::getCachedJVM()->DetachCurrentThread();
}
#else
EarthView::World::Core::JNILoad::getCachedJVM()->DetachCurrentThread();
#endif
#if EV_PLATFORM == EV_PLATFORM_ANDROID
const char* values_ch = __env->GetStringUTFChars(__values1_j,JNI_FALSE);
EVString __values1 = values_ch;
__env->ReleaseStringUTFChars(__values1_j,values_ch);
#else
const ev_wchar* values_ch = (const ev_wchar*)__env->GetStringChars(__values1_j,JNI_FALSE);
EVString __values1 = values_ch;
__env->ReleaseStringChars(__values1_j,(const jchar *)values_ch);
#endif
return __values1;
}
else
{
return this->CQueryFilter::getFieldName();
}
}
virtual EVString getWhereClause() const
{
if (this->_gRef != NULL && this->m_getWhereClause_void_callback != "" && this->isCustomExtend())
{
EarthView::World::Core::GlobalReference *__gr = (EarthView::World::Core::GlobalReference *)this->getJavaReference();
JNIEnv * __env;
#if EV_PLATFORM == EV_PLATFORM_ANDROID
bool __jniAttachable = false;
if(EarthView::World::Core::JNILoad::getCachedJVM()->GetEnv((void **)&__env, JNI_VERSION_1_6) != JNI_OK)
{
EarthView::World::Core::JNILoad::getCachedJVM()->AttachCurrentThread((void **)&__env, NULL);
__jniAttachable = true;
}
#else
EarthView::World::Core::JNILoad::getCachedJVM()->AttachCurrentThread((void **)&__env, NULL);
#endif
jobject __obj = __gr->getJObject();
jclass __clazz = __gr->getClass();
jmethodID __method = __gr->getMethod("getWhereClause_void_callback");
jstring __values1_j = (jstring)__env->CallObjectMethod(__obj, __method );
#if EV_PLATFORM == EV_PLATFORM_ANDROID
if(__jniAttachable)
{
EarthView::World::Core::JNILoad::getCachedJVM()->DetachCurrentThread();
}
#else
EarthView::World::Core::JNILoad::getCachedJVM()->DetachCurrentThread();
#endif
#if EV_PLATFORM == EV_PLATFORM_ANDROID
const char* values_ch = __env->GetStringUTFChars(__values1_j,JNI_FALSE);
EVString __values1 = values_ch;
__env->ReleaseStringUTFChars(__values1_j,values_ch);
#else
const ev_wchar* values_ch = (const ev_wchar*)__env->GetStringChars(__values1_j,JNI_FALSE);
EVString __values1 = values_ch;
__env->ReleaseStringChars(__values1_j,(const jchar *)values_ch);
#endif
return __values1;
}
else
{
return this->CQueryFilter::getWhereClause();
}
}
virtual ev_uint32 getLimitNum() const
{
if (this->_gRef != NULL && this->m_getLimitNum_void_callback != "" && this->isCustomExtend())
{
EarthView::World::Core::GlobalReference *__gr = (EarthView::World::Core::GlobalReference *)this->getJavaReference();
JNIEnv * __env;
#if EV_PLATFORM == EV_PLATFORM_ANDROID
bool __jniAttachable = false;
if(EarthView::World::Core::JNILoad::getCachedJVM()->GetEnv((void **)&__env, JNI_VERSION_1_6) != JNI_OK)
{
EarthView::World::Core::JNILoad::getCachedJVM()->AttachCurrentThread((void **)&__env, NULL);
__jniAttachable = true;
}
#else
EarthView::World::Core::JNILoad::getCachedJVM()->AttachCurrentThread((void **)&__env, NULL);
#endif
jobject __obj = __gr->getJObject();
jclass __clazz = __gr->getClass();
jmethodID __method = __gr->getMethod("getLimitNum_void_callback");
jlong __values1_j = (jlong)__env->CallLongMethod(__obj, __method );
#if EV_PLATFORM == EV_PLATFORM_ANDROID
if(__jniAttachable)
{
EarthView::World::Core::JNILoad::getCachedJVM()->DetachCurrentThread();
}
#else
EarthView::World::Core::JNILoad::getCachedJVM()->DetachCurrentThread();
#endif
ev_uint32 __values1 = (ev_uint32) __values1_j;
return __values1;
}
else
{
return this->CQueryFilter::getLimitNum();
}
}
virtual ev_uint32 getOffsetNum() const
{
if (this->_gRef != NULL && this->m_getOffsetNum_void_callback != "" && this->isCustomExtend())
{
EarthView::World::Core::GlobalReference *__gr = (EarthView::World::Core::GlobalReference *)this->getJavaReference();
JNIEnv * __env;
#if EV_PLATFORM == EV_PLATFORM_ANDROID
bool __jniAttachable = false;
if(EarthView::World::Core::JNILoad::getCachedJVM()->GetEnv((void **)&__env, JNI_VERSION_1_6) != JNI_OK)
{
EarthView::World::Core::JNILoad::getCachedJVM()->AttachCurrentThread((void **)&__env, NULL);
__jniAttachable = true;
}
#else
EarthView::World::Core::JNILoad::getCachedJVM()->AttachCurrentThread((void **)&__env, NULL);
#endif
jobject __obj = __gr->getJObject();
jclass __clazz = __gr->getClass();
jmethodID __method = __gr->getMethod("getOffsetNum_void_callback");
jlong __values1_j = (jlong)__env->CallLongMethod(__obj, __method );
#if EV_PLATFORM == EV_PLATFORM_ANDROID
if(__jniAttachable)
{
EarthView::World::Core::JNILoad::getCachedJVM()->DetachCurrentThread();
}
#else
EarthView::World::Core::JNILoad::getCachedJVM()->DetachCurrentThread();
#endif
ev_uint32 __values1 = (ev_uint32) __values1_j;
return __values1;
}
else
{
return this->CQueryFilter::getOffsetNum();
}
}
virtual void setFieldName(const EVString& names)
{
if (this->_gRef != NULL && this->m_setFieldName_EVString_callback != "" && this->isCustomExtend())
{
EarthView::World::Core::GlobalReference *__gr = (EarthView::World::Core::GlobalReference *)this->getJavaReference();
JNIEnv * __env;
#if EV_PLATFORM == EV_PLATFORM_ANDROID
bool __jniAttachable = false;
if(EarthView::World::Core::JNILoad::getCachedJVM()->GetEnv((void **)&__env, JNI_VERSION_1_6) != JNI_OK)
{
EarthView::World::Core::JNILoad::getCachedJVM()->AttachCurrentThread((void **)&__env, NULL);
__jniAttachable = true;
}
#else
EarthView::World::Core::JNILoad::getCachedJVM()->AttachCurrentThread((void **)&__env, NULL);
#endif
jobject __obj = __gr->getJObject();
jclass __clazz = __gr->getClass();
EarthView::World::Core::ev_wstring names_wch = names;
jstring names_j = __env->NewString((const jchar*)names_wch.getString(), names_wch.size());
jmethodID __method = __gr->getMethod("setFieldName_EVString_callback");
__env->CallVoidMethod(__obj, __method , names_j);
#if EV_PLATFORM == EV_PLATFORM_ANDROID
if(__jniAttachable)
{
EarthView::World::Core::JNILoad::getCachedJVM()->DetachCurrentThread();
}
#else
EarthView::World::Core::JNILoad::getCachedJVM()->DetachCurrentThread();
#endif
}
else
{
return this->CQueryFilter::setFieldName(names);
}
}
virtual void setWhereClause(const EVString& whereclause)
{
if (this->_gRef != NULL && this->m_setWhereClause_EVString_callback != "" && this->isCustomExtend())
{
EarthView::World::Core::GlobalReference *__gr = (EarthView::World::Core::GlobalReference *)this->getJavaReference();
JNIEnv * __env;
#if EV_PLATFORM == EV_PLATFORM_ANDROID
bool __jniAttachable = false;
if(EarthView::World::Core::JNILoad::getCachedJVM()->GetEnv((void **)&__env, JNI_VERSION_1_6) != JNI_OK)
{
EarthView::World::Core::JNILoad::getCachedJVM()->AttachCurrentThread((void **)&__env, NULL);
__jniAttachable = true;
}
#else
EarthView::World::Core::JNILoad::getCachedJVM()->AttachCurrentThread((void **)&__env, NULL);
#endif
jobject __obj = __gr->getJObject();
jclass __clazz = __gr->getClass();
EarthView::World::Core::ev_wstring whereclause_wch = whereclause;
jstring whereclause_j = __env->NewString((const jchar*)whereclause_wch.getString(), whereclause_wch.size());
jmethodID __method = __gr->getMethod("setWhereClause_EVString_callback");
__env->CallVoidMethod(__obj, __method , whereclause_j);
#if EV_PLATFORM == EV_PLATFORM_ANDROID
if(__jniAttachable)
{
EarthView::World::Core::JNILoad::getCachedJVM()->DetachCurrentThread();
}
#else
EarthView::World::Core::JNILoad::getCachedJVM()->DetachCurrentThread();
#endif
}
else
{
return this->CQueryFilter::setWhereClause(whereclause);
}
}
virtual void setLimitNum(ev_uint32 limit)
{
if (this->_gRef != NULL && this->m_setLimitNum_ev_uint32_callback != "" && this->isCustomExtend())
{
EarthView::World::Core::GlobalReference *__gr = (EarthView::World::Core::GlobalReference *)this->getJavaReference();
JNIEnv * __env;
#if EV_PLATFORM == EV_PLATFORM_ANDROID
bool __jniAttachable = false;
if(EarthView::World::Core::JNILoad::getCachedJVM()->GetEnv((void **)&__env, JNI_VERSION_1_6) != JNI_OK)
{
EarthView::World::Core::JNILoad::getCachedJVM()->AttachCurrentThread((void **)&__env, NULL);
__jniAttachable = true;
}
#else
EarthView::World::Core::JNILoad::getCachedJVM()->AttachCurrentThread((void **)&__env, NULL);
#endif
jobject __obj = __gr->getJObject();
jclass __clazz = __gr->getClass();
jlong limit_j = (jlong) limit;
jmethodID __method = __gr->getMethod("setLimitNum_ev_uint32_callback");
__env->CallVoidMethod(__obj, __method , limit_j);
#if EV_PLATFORM == EV_PLATFORM_ANDROID
if(__jniAttachable)
{
EarthView::World::Core::JNILoad::getCachedJVM()->DetachCurrentThread();
}
#else
EarthView::World::Core::JNILoad::getCachedJVM()->DetachCurrentThread();
#endif
}
else
{
return this->CQueryFilter::setLimitNum(limit);
}
}
virtual void setOffsetNum(ev_uint32 offset)
{
if (this->_gRef != NULL && this->m_setOffsetNum_ev_uint32_callback != "" && this->isCustomExtend())
{
EarthView::World::Core::GlobalReference *__gr = (EarthView::World::Core::GlobalReference *)this->getJavaReference();
JNIEnv * __env;
#if EV_PLATFORM == EV_PLATFORM_ANDROID
bool __jniAttachable = false;
if(EarthView::World::Core::JNILoad::getCachedJVM()->GetEnv((void **)&__env, JNI_VERSION_1_6) != JNI_OK)
{
EarthView::World::Core::JNILoad::getCachedJVM()->AttachCurrentThread((void **)&__env, NULL);
__jniAttachable = true;
}
#else
EarthView::World::Core::JNILoad::getCachedJVM()->AttachCurrentThread((void **)&__env, NULL);
#endif
jobject __obj = __gr->getJObject();
jclass __clazz = __gr->getClass();
jlong offset_j = (jlong) offset;
jmethodID __method = __gr->getMethod("setOffsetNum_ev_uint32_callback");
__env->CallVoidMethod(__obj, __method , offset_j);
#if EV_PLATFORM == EV_PLATFORM_ANDROID
if(__jniAttachable)
{
EarthView::World::Core::JNILoad::getCachedJVM()->DetachCurrentThread();
}
#else
EarthView::World::Core::JNILoad::getCachedJVM()->DetachCurrentThread();
#endif
}
else
{
return this->CQueryFilter::setOffsetNum(offset);
}
}
virtual EarthView::World::Spatial::GeoDataset::IQueryFilter* clone() const
{
if (this->_gRef != NULL && this->m_ev_clone_void_callback != "" && this->isCustomExtend())
{
EarthView::World::Core::GlobalReference *__gr = (EarthView::World::Core::GlobalReference *)this->getJavaReference();
JNIEnv * __env;
#if EV_PLATFORM == EV_PLATFORM_ANDROID
bool __jniAttachable = false;
if(EarthView::World::Core::JNILoad::getCachedJVM()->GetEnv((void **)&__env, JNI_VERSION_1_6) != JNI_OK)
{
EarthView::World::Core::JNILoad::getCachedJVM()->AttachCurrentThread((void **)&__env, NULL);
__jniAttachable = true;
}
#else
EarthView::World::Core::JNILoad::getCachedJVM()->AttachCurrentThread((void **)&__env, NULL);
#endif
jobject __obj = __gr->getJObject();
jclass __clazz = __gr->getClass();
jmethodID __method = __gr->getMethod("ev_clone_void_callback");
jlong __values1_j = (jlong)__env->CallLongMethod(__obj, __method );
#if EV_PLATFORM == EV_PLATFORM_ANDROID
if(__jniAttachable)
{
EarthView::World::Core::JNILoad::getCachedJVM()->DetachCurrentThread();
}
#else
EarthView::World::Core::JNILoad::getCachedJVM()->DetachCurrentThread();
#endif
EarthView::World::Spatial::GeoDataset::IQueryFilter *__values1 = (EarthView::World::Spatial::GeoDataset::IQueryFilter*) __values1_j;
return __values1;
}
else
{
return this->CQueryFilter::clone();
}
}
virtual const EarthView::World::Spatial::Geometry::IGeometry* getQueryGeometryRef() const
{
if (this->_gRef != NULL && this->m_getQueryGeometryRef_void_callback != "" && this->isCustomExtend())
{
EarthView::World::Core::GlobalReference *__gr = (EarthView::World::Core::GlobalReference *)this->getJavaReference();
JNIEnv * __env;
#if EV_PLATFORM == EV_PLATFORM_ANDROID
bool __jniAttachable = false;
if(EarthView::World::Core::JNILoad::getCachedJVM()->GetEnv((void **)&__env, JNI_VERSION_1_6) != JNI_OK)
{
EarthView::World::Core::JNILoad::getCachedJVM()->AttachCurrentThread((void **)&__env, NULL);
__jniAttachable = true;
}
#else
EarthView::World::Core::JNILoad::getCachedJVM()->AttachCurrentThread((void **)&__env, NULL);
#endif
jobject __obj = __gr->getJObject();
jclass __clazz = __gr->getClass();
jmethodID __method = __gr->getMethod("getQueryGeometryRef_void_callback");
jlong __values1_j = (jlong)__env->CallLongMethod(__obj, __method );
#if EV_PLATFORM == EV_PLATFORM_ANDROID
if(__jniAttachable)
{
EarthView::World::Core::JNILoad::getCachedJVM()->DetachCurrentThread();
}
#else
EarthView::World::Core::JNILoad::getCachedJVM()->DetachCurrentThread();
#endif
const EarthView::World::Spatial::Geometry::IGeometry *__values1 = (const EarthView::World::Spatial::Geometry::IGeometry*) __values1_j;
return __values1;
}
else
{
return this->CQueryFilter::getQueryGeometryRef();
}
}
virtual void setQueryGeometry(const EarthView::World::Spatial::Geometry::IGeometry* geometry)
{
if (this->_gRef != NULL && this->m_setQueryGeometry_IGeometry_callback != "" && this->isCustomExtend())
{
EarthView::World::Core::GlobalReference *__gr = (EarthView::World::Core::GlobalReference *)this->getJavaReference();
JNIEnv * __env;
#if EV_PLATFORM == EV_PLATFORM_ANDROID
bool __jniAttachable = false;
if(EarthView::World::Core::JNILoad::getCachedJVM()->GetEnv((void **)&__env, JNI_VERSION_1_6) != JNI_OK)
{
EarthView::World::Core::JNILoad::getCachedJVM()->AttachCurrentThread((void **)&__env, NULL);
__jniAttachable = true;
}
#else
EarthView::World::Core::JNILoad::getCachedJVM()->AttachCurrentThread((void **)&__env, NULL);
#endif
jobject __obj = __gr->getJObject();
jclass __clazz = __gr->getClass();
jlong geometry_j = (jlong) geometry;
jmethodID __method = __gr->getMethod("setQueryGeometry_IGeometry_callback");
__env->CallVoidMethod(__obj, __method , geometry_j);
#if EV_PLATFORM == EV_PLATFORM_ANDROID
if(__jniAttachable)
{
EarthView::World::Core::JNILoad::getCachedJVM()->DetachCurrentThread();
}
#else
EarthView::World::Core::JNILoad::getCachedJVM()->DetachCurrentThread();
#endif
}
else
{
return this->CQueryFilter::setQueryGeometry(geometry);
}
}
virtual void setSpatialRelation(EarthView::World::Spatial::GeoDataset::EVSpatialQueryRelationType spatialRelType)
{
if (this->_gRef != NULL && this->m_setSpatialRelation_EVSpatialQueryRelationType_callback != "" && this->isCustomExtend())
{
EarthView::World::Core::GlobalReference *__gr = (EarthView::World::Core::GlobalReference *)this->getJavaReference();
JNIEnv * __env;
#if EV_PLATFORM == EV_PLATFORM_ANDROID
bool __jniAttachable = false;
if(EarthView::World::Core::JNILoad::getCachedJVM()->GetEnv((void **)&__env, JNI_VERSION_1_6) != JNI_OK)
{
EarthView::World::Core::JNILoad::getCachedJVM()->AttachCurrentThread((void **)&__env, NULL);
__jniAttachable = true;
}
#else
EarthView::World::Core::JNILoad::getCachedJVM()->AttachCurrentThread((void **)&__env, NULL);
#endif
jobject __obj = __gr->getJObject();
jclass __clazz = __gr->getClass();
jint spatialRelType_j = (jint) spatialRelType;
jmethodID __method = __gr->getMethod("setSpatialRelation_EVSpatialQueryRelationType_callback");
__env->CallVoidMethod(__obj, __method , spatialRelType_j);
#if EV_PLATFORM == EV_PLATFORM_ANDROID
if(__jniAttachable)
{
EarthView::World::Core::JNILoad::getCachedJVM()->DetachCurrentThread();
}
#else
EarthView::World::Core::JNILoad::getCachedJVM()->DetachCurrentThread();
#endif
}
else
{
return this->CQueryFilter::setSpatialRelation(spatialRelType);
}
}
virtual EarthView::World::Spatial::GeoDataset::EVSpatialQueryRelationType getSpatialRelation()
{
if (this->_gRef != NULL && this->m_getSpatialRelation_void_callback != "" && this->isCustomExtend())
{
EarthView::World::Core::GlobalReference *__gr = (EarthView::World::Core::GlobalReference *)this->getJavaReference();
JNIEnv * __env;
#if EV_PLATFORM == EV_PLATFORM_ANDROID
bool __jniAttachable = false;
if(EarthView::World::Core::JNILoad::getCachedJVM()->GetEnv((void **)&__env, JNI_VERSION_1_6) != JNI_OK)
{
EarthView::World::Core::JNILoad::getCachedJVM()->AttachCurrentThread((void **)&__env, NULL);
__jniAttachable = true;
}
#else
EarthView::World::Core::JNILoad::getCachedJVM()->AttachCurrentThread((void **)&__env, NULL);
#endif
jobject __obj = __gr->getJObject();
jclass __clazz = __gr->getClass();
jmethodID __method = __gr->getMethod("getSpatialRelation_void_callback");
jint __values1_j = (jint)__env->CallIntMethod(__obj, __method );
#if EV_PLATFORM == EV_PLATFORM_ANDROID
if(__jniAttachable)
{
EarthView::World::Core::JNILoad::getCachedJVM()->DetachCurrentThread();
}
#else
EarthView::World::Core::JNILoad::getCachedJVM()->DetachCurrentThread();
#endif
EarthView::World::Spatial::GeoDataset::EVSpatialQueryRelationType __values1 = (EarthView::World::Spatial::GeoDataset::EVSpatialQueryRelationType) __values1_j;
return __values1;
}
else
{
return this->CQueryFilter::getSpatialRelation();
}
}
virtual void setQueryMode(EarthView::World::Spatial::GeoDataset::EVQueryModeType queryMode)
{
if (this->_gRef != NULL && this->m_setQueryMode_EVQueryModeType_callback != "" && this->isCustomExtend())
{
EarthView::World::Core::GlobalReference *__gr = (EarthView::World::Core::GlobalReference *)this->getJavaReference();
JNIEnv * __env;
#if EV_PLATFORM == EV_PLATFORM_ANDROID
bool __jniAttachable = false;
if(EarthView::World::Core::JNILoad::getCachedJVM()->GetEnv((void **)&__env, JNI_VERSION_1_6) != JNI_OK)
{
EarthView::World::Core::JNILoad::getCachedJVM()->AttachCurrentThread((void **)&__env, NULL);
__jniAttachable = true;
}
#else
EarthView::World::Core::JNILoad::getCachedJVM()->AttachCurrentThread((void **)&__env, NULL);
#endif
jobject __obj = __gr->getJObject();
jclass __clazz = __gr->getClass();
jint queryMode_j = (jint) queryMode;
jmethodID __method = __gr->getMethod("setQueryMode_EVQueryModeType_callback");
__env->CallVoidMethod(__obj, __method , queryMode_j);
#if EV_PLATFORM == EV_PLATFORM_ANDROID
if(__jniAttachable)
{
EarthView::World::Core::JNILoad::getCachedJVM()->DetachCurrentThread();
}
#else
EarthView::World::Core::JNILoad::getCachedJVM()->DetachCurrentThread();
#endif
}
else
{
return this->CQueryFilter::setQueryMode(queryMode);
}
}
virtual EarthView::World::Spatial::GeoDataset::EVQueryModeType getQueryMode() const
{
if (this->_gRef != NULL && this->m_getQueryMode_void_callback != "" && this->isCustomExtend())
{
EarthView::World::Core::GlobalReference *__gr = (EarthView::World::Core::GlobalReference *)this->getJavaReference();
JNIEnv * __env;
#if EV_PLATFORM == EV_PLATFORM_ANDROID
bool __jniAttachable = false;
if(EarthView::World::Core::JNILoad::getCachedJVM()->GetEnv((void **)&__env, JNI_VERSION_1_6) != JNI_OK)
{
EarthView::World::Core::JNILoad::getCachedJVM()->AttachCurrentThread((void **)&__env, NULL);
__jniAttachable = true;
}
#else
EarthView::World::Core::JNILoad::getCachedJVM()->AttachCurrentThread((void **)&__env, NULL);
#endif
jobject __obj = __gr->getJObject();
jclass __clazz = __gr->getClass();
jmethodID __method = __gr->getMethod("getQueryMode_void_callback");
jint __values1_j = (jint)__env->CallIntMethod(__obj, __method );
#if EV_PLATFORM == EV_PLATFORM_ANDROID
if(__jniAttachable)
{
EarthView::World::Core::JNILoad::getCachedJVM()->DetachCurrentThread();
}
#else
EarthView::World::Core::JNILoad::getCachedJVM()->DetachCurrentThread();
#endif
EarthView::World::Spatial::GeoDataset::EVQueryModeType __values1 = (EarthView::World::Spatial::GeoDataset::EVQueryModeType) __values1_j;
return __values1;
}
else
{
return this->CQueryFilter::getQueryMode();
}
}
};
REGISTER_FACTORY_CLASS(JCQueryFilterProxy);
extern "C" JNIEXPORT jstring JNICALL Java_com_earthview_world_spatial_geodataset_QueryFilter_getFieldName_1void(JNIEnv *__env , jobject __thiz, jlong pObjXXXX)
{
const EarthView::World::Spatial::GeoDataset::CQueryFilter *pObjectX = (EarthView::World::Spatial::GeoDataset::CQueryFilter*) pObjXXXX;
if (typeid(*pObjectX) == typeid(JCQueryFilterProxy))
{
EVString __values1 = pObjectX->EarthView::World::Spatial::GeoDataset::CQueryFilter::getFieldName();
EarthView::World::Core::ev_wstring valuesw1 = __values1;
jstring __values1_j = __env->NewString((const jchar*)valuesw1.getString(), valuesw1.size());
return __values1_j;
}
else
{
EVString __values1 = pObjectX->getFieldName();
EarthView::World::Core::ev_wstring valuesw1 = __values1;
jstring __values1_j = __env->NewString((const jchar*)valuesw1.getString(), valuesw1.size());
return __values1_j;
}
}
extern "C" JNIEXPORT void JNICALL Java_com_earthview_world_spatial_geodataset_QueryFilter_register_1getFieldName_1void(JNIEnv *__env, jobject __thiz, jlong pObjXXXX, jstring __method)
{
JCQueryFilterProxy *pObjectX = (JCQueryFilterProxy*) pObjXXXX;
const char *pMethod = __env->GetStringUTFChars(__method, NULL);
EarthView::World::Core::ev_string sMethod = pMethod;
__env->ReleaseStringUTFChars(__method, pMethod);
pObjectX->register_getFieldName_void_callback(sMethod);
if (pObjectX->getJavaReference() != NULL && sMethod != "")
{
EarthView::World::Core::GlobalReference *__gr = (EarthView::World::Core::GlobalReference *)pObjectX->getJavaReference();
jobject __obj1 = __gr->getJObject();
jclass __clazz1 = __env->GetObjectClass(__obj1);
jmethodID __method = __env->GetMethodID(__clazz1,"getFieldName_void_callback", "()Ljava/lang/String;");
__gr->setMethod(sMethod, __method);
}
}
extern "C" JNIEXPORT jstring JNICALL Java_com_earthview_world_spatial_geodataset_QueryFilter_getFieldName_1void_1NoVirtual(JNIEnv *__env , jobject __thiz, jlong pObjXXXX)
{
const EarthView::World::Spatial::GeoDataset::CQueryFilter *pObjectX = (EarthView::World::Spatial::GeoDataset::CQueryFilter*) pObjXXXX;
EVString __values1 = pObjectX->EarthView::World::Spatial::GeoDataset::CQueryFilter::getFieldName();
EarthView::World::Core::ev_wstring valuesw1 = __values1;
jstring __values1_j = __env->NewString((const jchar*)valuesw1.getString(), valuesw1.size());
return __values1_j;
}
extern "C" JNIEXPORT jstring JNICALL Java_com_earthview_world_spatial_geodataset_QueryFilter_getWhereClause_1void(JNIEnv *__env , jobject __thiz, jlong pObjXXXX)
{
const EarthView::World::Spatial::GeoDataset::CQueryFilter *pObjectX = (EarthView::World::Spatial::GeoDataset::CQueryFilter*) pObjXXXX;
if (typeid(*pObjectX) == typeid(JCQueryFilterProxy))
{
EVString __values1 = pObjectX->EarthView::World::Spatial::GeoDataset::CQueryFilter::getWhereClause();
EarthView::World::Core::ev_wstring valuesw1 = __values1;
jstring __values1_j = __env->NewString((const jchar*)valuesw1.getString(), valuesw1.size());
return __values1_j;
}
else
{
EVString __values1 = pObjectX->getWhereClause();
EarthView::World::Core::ev_wstring valuesw1 = __values1;
jstring __values1_j = __env->NewString((const jchar*)valuesw1.getString(), valuesw1.size());
return __values1_j;
}
}
extern "C" JNIEXPORT void JNICALL Java_com_earthview_world_spatial_geodataset_QueryFilter_register_1getWhereClause_1void(JNIEnv *__env, jobject __thiz, jlong pObjXXXX, jstring __method)
{
JCQueryFilterProxy *pObjectX = (JCQueryFilterProxy*) pObjXXXX;
const char *pMethod = __env->GetStringUTFChars(__method, NULL);
EarthView::World::Core::ev_string sMethod = pMethod;
__env->ReleaseStringUTFChars(__method, pMethod);
pObjectX->register_getWhereClause_void_callback(sMethod);
if (pObjectX->getJavaReference() != NULL && sMethod != "")
{
EarthView::World::Core::GlobalReference *__gr = (EarthView::World::Core::GlobalReference *)pObjectX->getJavaReference();
jobject __obj1 = __gr->getJObject();
jclass __clazz1 = __env->GetObjectClass(__obj1);
jmethodID __method = __env->GetMethodID(__clazz1,"getWhereClause_void_callback", "()Ljava/lang/String;");
__gr->setMethod(sMethod, __method);
}
}
extern "C" JNIEXPORT jstring JNICALL Java_com_earthview_world_spatial_geodataset_QueryFilter_getWhereClause_1void_1NoVirtual(JNIEnv *__env , jobject __thiz, jlong pObjXXXX)
{
const EarthView::World::Spatial::GeoDataset::CQueryFilter *pObjectX = (EarthView::World::Spatial::GeoDataset::CQueryFilter*) pObjXXXX;
EVString __values1 = pObjectX->EarthView::World::Spatial::GeoDataset::CQueryFilter::getWhereClause();
EarthView::World::Core::ev_wstring valuesw1 = __values1;
jstring __values1_j = __env->NewString((const jchar*)valuesw1.getString(), valuesw1.size());
return __values1_j;
}
extern "C" JNIEXPORT jlong JNICALL Java_com_earthview_world_spatial_geodataset_QueryFilter_getLimitNum_1void(JNIEnv *__env , jobject __thiz, jlong pObjXXXX)
{
const EarthView::World::Spatial::GeoDataset::CQueryFilter *pObjectX = (EarthView::World::Spatial::GeoDataset::CQueryFilter*) pObjXXXX;
if (typeid(*pObjectX) == typeid(JCQueryFilterProxy))
{
ev_uint32 __values1 = pObjectX->EarthView::World::Spatial::GeoDataset::CQueryFilter::getLimitNum();
jlong __values1_j = (jlong) __values1;
return __values1_j;
}
else
{
ev_uint32 __values1 = pObjectX->getLimitNum();
jlong __values1_j = (jlong) __values1;
return __values1_j;
}
}
extern "C" JNIEXPORT void JNICALL Java_com_earthview_world_spatial_geodataset_QueryFilter_register_1getLimitNum_1void(JNIEnv *__env, jobject __thiz, jlong pObjXXXX, jstring __method)
{
JCQueryFilterProxy *pObjectX = (JCQueryFilterProxy*) pObjXXXX;
const char *pMethod = __env->GetStringUTFChars(__method, NULL);
EarthView::World::Core::ev_string sMethod = pMethod;
__env->ReleaseStringUTFChars(__method, pMethod);
pObjectX->register_getLimitNum_void_callback(sMethod);
if (pObjectX->getJavaReference() != NULL && sMethod != "")
{
EarthView::World::Core::GlobalReference *__gr = (EarthView::World::Core::GlobalReference *)pObjectX->getJavaReference();
jobject __obj1 = __gr->getJObject();
jclass __clazz1 = __env->GetObjectClass(__obj1);
jmethodID __method = __env->GetMethodID(__clazz1,"getLimitNum_void_callback", "()J");
__gr->setMethod(sMethod, __method);
}
}
extern "C" JNIEXPORT jlong JNICALL Java_com_earthview_world_spatial_geodataset_QueryFilter_getLimitNum_1void_1NoVirtual(JNIEnv *__env , jobject __thiz, jlong pObjXXXX)
{
const EarthView::World::Spatial::GeoDataset::CQueryFilter *pObjectX = (EarthView::World::Spatial::GeoDataset::CQueryFilter*) pObjXXXX;
ev_uint32 __values1 = pObjectX->EarthView::World::Spatial::GeoDataset::CQueryFilter::getLimitNum();
jlong __values1_j = (jlong) __values1;
return __values1_j;
}
extern "C" JNIEXPORT jlong JNICALL Java_com_earthview_world_spatial_geodataset_QueryFilter_getOffsetNum_1void(JNIEnv *__env , jobject __thiz, jlong pObjXXXX)
{
const EarthView::World::Spatial::GeoDataset::CQueryFilter *pObjectX = (EarthView::World::Spatial::GeoDataset::CQueryFilter*) pObjXXXX;
if (typeid(*pObjectX) == typeid(JCQueryFilterProxy))
{
ev_uint32 __values1 = pObjectX->EarthView::World::Spatial::GeoDataset::CQueryFilter::getOffsetNum();
jlong __values1_j = (jlong) __values1;
return __values1_j;
}
else
{
ev_uint32 __values1 = pObjectX->getOffsetNum();
jlong __values1_j = (jlong) __values1;
return __values1_j;
}
}
extern "C" JNIEXPORT void JNICALL Java_com_earthview_world_spatial_geodataset_QueryFilter_register_1getOffsetNum_1void(JNIEnv *__env, jobject __thiz, jlong pObjXXXX, jstring __method)
{
JCQueryFilterProxy *pObjectX = (JCQueryFilterProxy*) pObjXXXX;
const char *pMethod = __env->GetStringUTFChars(__method, NULL);
EarthView::World::Core::ev_string sMethod = pMethod;
__env->ReleaseStringUTFChars(__method, pMethod);
pObjectX->register_getOffsetNum_void_callback(sMethod);
if (pObjectX->getJavaReference() != NULL && sMethod != "")
{
EarthView::World::Core::GlobalReference *__gr = (EarthView::World::Core::GlobalReference *)pObjectX->getJavaReference();
jobject __obj1 = __gr->getJObject();
jclass __clazz1 = __env->GetObjectClass(__obj1);
jmethodID __method = __env->GetMethodID(__clazz1,"getOffsetNum_void_callback", "()J");
__gr->setMethod(sMethod, __method);
}
}
extern "C" JNIEXPORT jlong JNICALL Java_com_earthview_world_spatial_geodataset_QueryFilter_getOffsetNum_1void_1NoVirtual(JNIEnv *__env , jobject __thiz, jlong pObjXXXX)
{
const EarthView::World::Spatial::GeoDataset::CQueryFilter *pObjectX = (EarthView::World::Spatial::GeoDataset::CQueryFilter*) pObjXXXX;
ev_uint32 __values1 = pObjectX->EarthView::World::Spatial::GeoDataset::CQueryFilter::getOffsetNum();
jlong __values1_j = (jlong) __values1;
return __values1_j;
}
extern "C" JNIEXPORT void JNICALL Java_com_earthview_world_spatial_geodataset_QueryFilter_setFieldName_1EVString(JNIEnv *__env , jobject __thiz, jlong pObjXXXX, jstring names_j)
{
#if EV_PLATFORM == EV_PLATFORM_ANDROID
const ev_char* names_ch = (const ev_char*)__env->GetStringUTFChars(names_j,JNI_FALSE);
const EVString names = names_ch;
__env->ReleaseStringUTFChars(names_j, (const char *)names_ch);
#else
const ev_wchar* names_ch = (const ev_wchar*)__env->GetStringChars(names_j,JNI_FALSE);
const EVString names = names_ch;
__env->ReleaseStringChars(names_j, (const jchar *)names_ch);
#endif
EarthView::World::Spatial::GeoDataset::CQueryFilter *pObjectX = (EarthView::World::Spatial::GeoDataset::CQueryFilter*) pObjXXXX;
if (typeid(*pObjectX) == typeid(JCQueryFilterProxy))
{
pObjectX->EarthView::World::Spatial::GeoDataset::CQueryFilter::setFieldName(names);
}
else
{
pObjectX->setFieldName(names);
}
}
extern "C" JNIEXPORT void JNICALL Java_com_earthview_world_spatial_geodataset_QueryFilter_register_1setFieldName_1EVString(JNIEnv *__env, jobject __thiz, jlong pObjXXXX, jstring __method)
{
JCQueryFilterProxy *pObjectX = (JCQueryFilterProxy*) pObjXXXX;
const char *pMethod = __env->GetStringUTFChars(__method, NULL);
EarthView::World::Core::ev_string sMethod = pMethod;
__env->ReleaseStringUTFChars(__method, pMethod);
pObjectX->register_setFieldName_EVString_callback(sMethod);
if (pObjectX->getJavaReference() != NULL && sMethod != "")
{
EarthView::World::Core::GlobalReference *__gr = (EarthView::World::Core::GlobalReference *)pObjectX->getJavaReference();
jobject __obj1 = __gr->getJObject();
jclass __clazz1 = __env->GetObjectClass(__obj1);
jmethodID __method = __env->GetMethodID(__clazz1,"setFieldName_EVString_callback", "(Ljava/lang/String;)V");
__gr->setMethod(sMethod, __method);
}
}
extern "C" JNIEXPORT void JNICALL Java_com_earthview_world_spatial_geodataset_QueryFilter_setFieldName_1EVString_1NoVirtual(JNIEnv *__env , jobject __thiz, jlong pObjXXXX, jstring names_j)
{
#if EV_PLATFORM == EV_PLATFORM_ANDROID
const ev_char* names_ch = (const ev_char*)__env->GetStringUTFChars(names_j,JNI_FALSE);
const EVString names = names_ch;
__env->ReleaseStringUTFChars(names_j, (const char *)names_ch);
#else
const ev_wchar* names_ch = (const ev_wchar*)__env->GetStringChars(names_j,JNI_FALSE);
const EVString names = names_ch;
__env->ReleaseStringChars(names_j, (const jchar *)names_ch);
#endif
EarthView::World::Spatial::GeoDataset::CQueryFilter *pObjectX = (EarthView::World::Spatial::GeoDataset::CQueryFilter*) pObjXXXX;
pObjectX->EarthView::World::Spatial::GeoDataset::CQueryFilter::setFieldName(names);
}
extern "C" JNIEXPORT void JNICALL Java_com_earthview_world_spatial_geodataset_QueryFilter_setWhereClause_1EVString(JNIEnv *__env , jobject __thiz, jlong pObjXXXX, jstring whereclause_j)
{
#if EV_PLATFORM == EV_PLATFORM_ANDROID
const ev_char* whereclause_ch = (const ev_char*)__env->GetStringUTFChars(whereclause_j,JNI_FALSE);
const EVString whereclause = whereclause_ch;
__env->ReleaseStringUTFChars(whereclause_j, (const char *)whereclause_ch);
#else
const ev_wchar* whereclause_ch = (const ev_wchar*)__env->GetStringChars(whereclause_j,JNI_FALSE);
const EVString whereclause = whereclause_ch;
__env->ReleaseStringChars(whereclause_j, (const jchar *)whereclause_ch);
#endif
EarthView::World::Spatial::GeoDataset::CQueryFilter *pObjectX = (EarthView::World::Spatial::GeoDataset::CQueryFilter*) pObjXXXX;
if (typeid(*pObjectX) == typeid(JCQueryFilterProxy))
{
pObjectX->EarthView::World::Spatial::GeoDataset::CQueryFilter::setWhereClause(whereclause);
}
else
{
pObjectX->setWhereClause(whereclause);
}
}
extern "C" JNIEXPORT void JNICALL Java_com_earthview_world_spatial_geodataset_QueryFilter_register_1setWhereClause_1EVString(JNIEnv *__env, jobject __thiz, jlong pObjXXXX, jstring __method)
{
JCQueryFilterProxy *pObjectX = (JCQueryFilterProxy*) pObjXXXX;
const char *pMethod = __env->GetStringUTFChars(__method, NULL);
EarthView::World::Core::ev_string sMethod = pMethod;
__env->ReleaseStringUTFChars(__method, pMethod);
pObjectX->register_setWhereClause_EVString_callback(sMethod);
if (pObjectX->getJavaReference() != NULL && sMethod != "")
{
EarthView::World::Core::GlobalReference *__gr = (EarthView::World::Core::GlobalReference *)pObjectX->getJavaReference();
jobject __obj1 = __gr->getJObject();
jclass __clazz1 = __env->GetObjectClass(__obj1);
jmethodID __method = __env->GetMethodID(__clazz1,"setWhereClause_EVString_callback", "(Ljava/lang/String;)V");
__gr->setMethod(sMethod, __method);
}
}
extern "C" JNIEXPORT void JNICALL Java_com_earthview_world_spatial_geodataset_QueryFilter_setWhereClause_1EVString_1NoVirtual(JNIEnv *__env , jobject __thiz, jlong pObjXXXX, jstring whereclause_j)
{
#if EV_PLATFORM == EV_PLATFORM_ANDROID
const ev_char* whereclause_ch = (const ev_char*)__env->GetStringUTFChars(whereclause_j,JNI_FALSE);
const EVString whereclause = whereclause_ch;
__env->ReleaseStringUTFChars(whereclause_j, (const char *)whereclause_ch);
#else
const ev_wchar* whereclause_ch = (const ev_wchar*)__env->GetStringChars(whereclause_j,JNI_FALSE);
const EVString whereclause = whereclause_ch;
__env->ReleaseStringChars(whereclause_j, (const jchar *)whereclause_ch);
#endif
EarthView::World::Spatial::GeoDataset::CQueryFilter *pObjectX = (EarthView::World::Spatial::GeoDataset::CQueryFilter*) pObjXXXX;
pObjectX->EarthView::World::Spatial::GeoDataset::CQueryFilter::setWhereClause(whereclause);
}
extern "C" JNIEXPORT void JNICALL Java_com_earthview_world_spatial_geodataset_QueryFilter_setLimitNum_1ev_1uint32(JNIEnv *__env , jobject __thiz, jlong pObjXXXX, jlong limit_j)
{
ev_uint32 limit = (ev_uint32) limit_j;
EarthView::World::Spatial::GeoDataset::CQueryFilter *pObjectX = (EarthView::World::Spatial::GeoDataset::CQueryFilter*) pObjXXXX;
if (typeid(*pObjectX) == typeid(JCQueryFilterProxy))
{
pObjectX->EarthView::World::Spatial::GeoDataset::CQueryFilter::setLimitNum(limit);
}
else
{
pObjectX->setLimitNum(limit);
}
}
extern "C" JNIEXPORT void JNICALL Java_com_earthview_world_spatial_geodataset_QueryFilter_register_1setLimitNum_1ev_1uint32(JNIEnv *__env, jobject __thiz, jlong pObjXXXX, jstring __method)
{
JCQueryFilterProxy *pObjectX = (JCQueryFilterProxy*) pObjXXXX;
const char *pMethod = __env->GetStringUTFChars(__method, NULL);
EarthView::World::Core::ev_string sMethod = pMethod;
__env->ReleaseStringUTFChars(__method, pMethod);
pObjectX->register_setLimitNum_ev_uint32_callback(sMethod);
if (pObjectX->getJavaReference() != NULL && sMethod != "")
{
EarthView::World::Core::GlobalReference *__gr = (EarthView::World::Core::GlobalReference *)pObjectX->getJavaReference();
jobject __obj1 = __gr->getJObject();
jclass __clazz1 = __env->GetObjectClass(__obj1);
jmethodID __method = __env->GetMethodID(__clazz1,"setLimitNum_ev_uint32_callback", "(J)V");
__gr->setMethod(sMethod, __method);
}
}
extern "C" JNIEXPORT void JNICALL Java_com_earthview_world_spatial_geodataset_QueryFilter_setLimitNum_1ev_1uint32_1NoVirtual(JNIEnv *__env , jobject __thiz, jlong pObjXXXX, jlong limit_j)
{
ev_uint32 limit = (ev_uint32) limit_j;
EarthView::World::Spatial::GeoDataset::CQueryFilter *pObjectX = (EarthView::World::Spatial::GeoDataset::CQueryFilter*) pObjXXXX;
pObjectX->EarthView::World::Spatial::GeoDataset::CQueryFilter::setLimitNum(limit);
}
extern "C" JNIEXPORT void JNICALL Java_com_earthview_world_spatial_geodataset_QueryFilter_setOffsetNum_1ev_1uint32(JNIEnv *__env , jobject __thiz, jlong pObjXXXX, jlong offset_j)
{
ev_uint32 offset = (ev_uint32) offset_j;
EarthView::World::Spatial::GeoDataset::CQueryFilter *pObjectX = (EarthView::World::Spatial::GeoDataset::CQueryFilter*) pObjXXXX;
if (typeid(*pObjectX) == typeid(JCQueryFilterProxy))
{
pObjectX->EarthView::World::Spatial::GeoDataset::CQueryFilter::setOffsetNum(offset);
}
else
{
pObjectX->setOffsetNum(offset);
}
}
extern "C" JNIEXPORT void JNICALL Java_com_earthview_world_spatial_geodataset_QueryFilter_register_1setOffsetNum_1ev_1uint32(JNIEnv *__env, jobject __thiz, jlong pObjXXXX, jstring __method)
{
JCQueryFilterProxy *pObjectX = (JCQueryFilterProxy*) pObjXXXX;
const char *pMethod = __env->GetStringUTFChars(__method, NULL);
EarthView::World::Core::ev_string sMethod = pMethod;
__env->ReleaseStringUTFChars(__method, pMethod);
pObjectX->register_setOffsetNum_ev_uint32_callback(sMethod);
if (pObjectX->getJavaReference() != NULL && sMethod != "")
{
EarthView::World::Core::GlobalReference *__gr = (EarthView::World::Core::GlobalReference *)pObjectX->getJavaReference();
jobject __obj1 = __gr->getJObject();
jclass __clazz1 = __env->GetObjectClass(__obj1);
jmethodID __method = __env->GetMethodID(__clazz1,"setOffsetNum_ev_uint32_callback", "(J)V");
__gr->setMethod(sMethod, __method);
}
}
extern "C" JNIEXPORT void JNICALL Java_com_earthview_world_spatial_geodataset_QueryFilter_setOffsetNum_1ev_1uint32_1NoVirtual(JNIEnv *__env , jobject __thiz, jlong pObjXXXX, jlong offset_j)
{
ev_uint32 offset = (ev_uint32) offset_j;
EarthView::World::Spatial::GeoDataset::CQueryFilter *pObjectX = (EarthView::World::Spatial::GeoDataset::CQueryFilter*) pObjXXXX;
pObjectX->EarthView::World::Spatial::GeoDataset::CQueryFilter::setOffsetNum(offset);
}
extern "C" JNIEXPORT jlong JNICALL Java_com_earthview_world_spatial_geodataset_QueryFilter_ev_1clone_1void(JNIEnv *__env , jobject __thiz, jlong pObjXXXX)
{
const EarthView::World::Spatial::GeoDataset::CQueryFilter *pObjectX = (EarthView::World::Spatial::GeoDataset::CQueryFilter*) pObjXXXX;
if (typeid(*pObjectX) == typeid(JCQueryFilterProxy))
{
EarthView::World::Spatial::GeoDataset::IQueryFilter* __values1 = pObjectX->EarthView::World::Spatial::GeoDataset::CQueryFilter::clone();
jlong __values1_j = (jlong) __values1;
return __values1_j;
}
else
{
EarthView::World::Spatial::GeoDataset::IQueryFilter* __values1 = pObjectX->clone();
jlong __values1_j = (jlong) __values1;
return __values1_j;
}
}
extern "C" JNIEXPORT void JNICALL Java_com_earthview_world_spatial_geodataset_QueryFilter_register_1ev_1clone_1void(JNIEnv *__env, jobject __thiz, jlong pObjXXXX, jstring __method)
{
JCQueryFilterProxy *pObjectX = (JCQueryFilterProxy*) pObjXXXX;
const char *pMethod = __env->GetStringUTFChars(__method, NULL);
EarthView::World::Core::ev_string sMethod = pMethod;
__env->ReleaseStringUTFChars(__method, pMethod);
pObjectX->register_ev_clone_void_callback(sMethod);
if (pObjectX->getJavaReference() != NULL && sMethod != "")
{
EarthView::World::Core::GlobalReference *__gr = (EarthView::World::Core::GlobalReference *)pObjectX->getJavaReference();
jobject __obj1 = __gr->getJObject();
jclass __clazz1 = __env->GetObjectClass(__obj1);
jmethodID __method = __env->GetMethodID(__clazz1,"ev_clone_void_callback", "()J");
__gr->setMethod(sMethod, __method);
}
}
extern "C" JNIEXPORT jlong JNICALL Java_com_earthview_world_spatial_geodataset_QueryFilter_ev_1clone_1void_1NoVirtual(JNIEnv *__env , jobject __thiz, jlong pObjXXXX)
{
const EarthView::World::Spatial::GeoDataset::CQueryFilter *pObjectX = (EarthView::World::Spatial::GeoDataset::CQueryFilter*) pObjXXXX;
EarthView::World::Spatial::GeoDataset::IQueryFilter* __values1 = pObjectX->EarthView::World::Spatial::GeoDataset::CQueryFilter::clone();
jlong __values1_j = (jlong) __values1;
return __values1_j;
}
extern "C" JNIEXPORT jlong JNICALL Java_com_earthview_world_spatial_geodataset_QueryFilter_getQueryGeometryRef_1void(JNIEnv *__env , jobject __thiz, jlong pObjXXXX)
{
const EarthView::World::Spatial::GeoDataset::CQueryFilter *pObjectX = (EarthView::World::Spatial::GeoDataset::CQueryFilter*) pObjXXXX;
if (typeid(*pObjectX) == typeid(JCQueryFilterProxy))
{
const EarthView::World::Spatial::Geometry::IGeometry* __values1 = pObjectX->EarthView::World::Spatial::GeoDataset::CQueryFilter::getQueryGeometryRef();
jlong __values1_j = (jlong) __values1;
return __values1_j;
}
else
{
const EarthView::World::Spatial::Geometry::IGeometry* __values1 = pObjectX->getQueryGeometryRef();
jlong __values1_j = (jlong) __values1;
return __values1_j;
}
}
extern "C" JNIEXPORT void JNICALL Java_com_earthview_world_spatial_geodataset_QueryFilter_register_1getQueryGeometryRef_1void(JNIEnv *__env, jobject __thiz, jlong pObjXXXX, jstring __method)
{
JCQueryFilterProxy *pObjectX = (JCQueryFilterProxy*) pObjXXXX;
const char *pMethod = __env->GetStringUTFChars(__method, NULL);
EarthView::World::Core::ev_string sMethod = pMethod;
__env->ReleaseStringUTFChars(__method, pMethod);
pObjectX->register_getQueryGeometryRef_void_callback(sMethod);
if (pObjectX->getJavaReference() != NULL && sMethod != "")
{
EarthView::World::Core::GlobalReference *__gr = (EarthView::World::Core::GlobalReference *)pObjectX->getJavaReference();
jobject __obj1 = __gr->getJObject();
jclass __clazz1 = __env->GetObjectClass(__obj1);
jmethodID __method = __env->GetMethodID(__clazz1,"getQueryGeometryRef_void_callback", "()J");
__gr->setMethod(sMethod, __method);
}
}
extern "C" JNIEXPORT jlong JNICALL Java_com_earthview_world_spatial_geodataset_QueryFilter_getQueryGeometryRef_1void_1NoVirtual(JNIEnv *__env , jobject __thiz, jlong pObjXXXX)
{
const EarthView::World::Spatial::GeoDataset::CQueryFilter *pObjectX = (EarthView::World::Spatial::GeoDataset::CQueryFilter*) pObjXXXX;
const EarthView::World::Spatial::Geometry::IGeometry* __values1 = pObjectX->EarthView::World::Spatial::GeoDataset::CQueryFilter::getQueryGeometryRef();
jlong __values1_j = (jlong) __values1;
return __values1_j;
}
extern "C" JNIEXPORT void JNICALL Java_com_earthview_world_spatial_geodataset_QueryFilter_setQueryGeometry_1IGeometry(JNIEnv *__env , jobject __thiz, jlong pObjXXXX, jlong geometry_j)
{
const EarthView::World::Spatial::Geometry::IGeometry *geometry = (const EarthView::World::Spatial::Geometry::IGeometry*) geometry_j;
EarthView::World::Spatial::GeoDataset::CQueryFilter *pObjectX = (EarthView::World::Spatial::GeoDataset::CQueryFilter*) pObjXXXX;
if (typeid(*pObjectX) == typeid(JCQueryFilterProxy))
{
pObjectX->EarthView::World::Spatial::GeoDataset::CQueryFilter::setQueryGeometry(geometry);
}
else
{
pObjectX->setQueryGeometry(geometry);
}
}
extern "C" JNIEXPORT void JNICALL Java_com_earthview_world_spatial_geodataset_QueryFilter_register_1setQueryGeometry_1IGeometry(JNIEnv *__env, jobject __thiz, jlong pObjXXXX, jstring __method)
{
JCQueryFilterProxy *pObjectX = (JCQueryFilterProxy*) pObjXXXX;
const char *pMethod = __env->GetStringUTFChars(__method, NULL);
EarthView::World::Core::ev_string sMethod = pMethod;
__env->ReleaseStringUTFChars(__method, pMethod);
pObjectX->register_setQueryGeometry_IGeometry_callback(sMethod);
if (pObjectX->getJavaReference() != NULL && sMethod != "")
{
EarthView::World::Core::GlobalReference *__gr = (EarthView::World::Core::GlobalReference *)pObjectX->getJavaReference();
jobject __obj1 = __gr->getJObject();
jclass __clazz1 = __env->GetObjectClass(__obj1);
jmethodID __method = __env->GetMethodID(__clazz1,"setQueryGeometry_IGeometry_callback", "(J)V");
__gr->setMethod(sMethod, __method);
}
}
extern "C" JNIEXPORT void JNICALL Java_com_earthview_world_spatial_geodataset_QueryFilter_setQueryGeometry_1IGeometry_1NoVirtual(JNIEnv *__env , jobject __thiz, jlong pObjXXXX, jlong geometry_j)
{
const EarthView::World::Spatial::Geometry::IGeometry *geometry = (const EarthView::World::Spatial::Geometry::IGeometry*) geometry_j;
EarthView::World::Spatial::GeoDataset::CQueryFilter *pObjectX = (EarthView::World::Spatial::GeoDataset::CQueryFilter*) pObjXXXX;
pObjectX->EarthView::World::Spatial::GeoDataset::CQueryFilter::setQueryGeometry(geometry);
}
extern "C" JNIEXPORT void JNICALL Java_com_earthview_world_spatial_geodataset_QueryFilter_setSpatialRelation_1EVSpatialQueryRelationType(JNIEnv *__env , jobject __thiz, jlong pObjXXXX, jint spatialRelType_j)
{
EarthView::World::Spatial::GeoDataset::EVSpatialQueryRelationType spatialRelType = (EarthView::World::Spatial::GeoDataset::EVSpatialQueryRelationType) spatialRelType_j;
EarthView::World::Spatial::GeoDataset::CQueryFilter *pObjectX = (EarthView::World::Spatial::GeoDataset::CQueryFilter*) pObjXXXX;
if (typeid(*pObjectX) == typeid(JCQueryFilterProxy))
{
pObjectX->EarthView::World::Spatial::GeoDataset::CQueryFilter::setSpatialRelation(spatialRelType);
}
else
{
pObjectX->setSpatialRelation(spatialRelType);
}
}
extern "C" JNIEXPORT void JNICALL Java_com_earthview_world_spatial_geodataset_QueryFilter_register_1setSpatialRelation_1EVSpatialQueryRelationType(JNIEnv *__env, jobject __thiz, jlong pObjXXXX, jstring __method)
{
JCQueryFilterProxy *pObjectX = (JCQueryFilterProxy*) pObjXXXX;
const char *pMethod = __env->GetStringUTFChars(__method, NULL);
EarthView::World::Core::ev_string sMethod = pMethod;
__env->ReleaseStringUTFChars(__method, pMethod);
pObjectX->register_setSpatialRelation_EVSpatialQueryRelationType_callback(sMethod);
if (pObjectX->getJavaReference() != NULL && sMethod != "")
{
EarthView::World::Core::GlobalReference *__gr = (EarthView::World::Core::GlobalReference *)pObjectX->getJavaReference();
jobject __obj1 = __gr->getJObject();
jclass __clazz1 = __env->GetObjectClass(__obj1);
jmethodID __method = __env->GetMethodID(__clazz1,"setSpatialRelation_EVSpatialQueryRelationType_callback", "(I)V");
__gr->setMethod(sMethod, __method);
}
}
extern "C" JNIEXPORT void JNICALL Java_com_earthview_world_spatial_geodataset_QueryFilter_setSpatialRelation_1EVSpatialQueryRelationType_1NoVirtual(JNIEnv *__env , jobject __thiz, jlong pObjXXXX, jint spatialRelType_j)
{
EarthView::World::Spatial::GeoDataset::EVSpatialQueryRelationType spatialRelType = (EarthView::World::Spatial::GeoDataset::EVSpatialQueryRelationType) spatialRelType_j;
EarthView::World::Spatial::GeoDataset::CQueryFilter *pObjectX = (EarthView::World::Spatial::GeoDataset::CQueryFilter*) pObjXXXX;
pObjectX->EarthView::World::Spatial::GeoDataset::CQueryFilter::setSpatialRelation(spatialRelType);
}
extern "C" JNIEXPORT jint JNICALL Java_com_earthview_world_spatial_geodataset_QueryFilter_getSpatialRelation_1void(JNIEnv *__env , jobject __thiz, jlong pObjXXXX)
{
EarthView::World::Spatial::GeoDataset::CQueryFilter *pObjectX = (EarthView::World::Spatial::GeoDataset::CQueryFilter*) pObjXXXX;
if (typeid(*pObjectX) == typeid(JCQueryFilterProxy))
{
EarthView::World::Spatial::GeoDataset::EVSpatialQueryRelationType __values1 = pObjectX->EarthView::World::Spatial::GeoDataset::CQueryFilter::getSpatialRelation();
jint __values1_j = (jint) __values1;
return __values1_j;
}
else
{
EarthView::World::Spatial::GeoDataset::EVSpatialQueryRelationType __values1 = pObjectX->getSpatialRelation();
jint __values1_j = (jint) __values1;
return __values1_j;
}
}
extern "C" JNIEXPORT void JNICALL Java_com_earthview_world_spatial_geodataset_QueryFilter_register_1getSpatialRelation_1void(JNIEnv *__env, jobject __thiz, jlong pObjXXXX, jstring __method)
{
JCQueryFilterProxy *pObjectX = (JCQueryFilterProxy*) pObjXXXX;
const char *pMethod = __env->GetStringUTFChars(__method, NULL);
EarthView::World::Core::ev_string sMethod = pMethod;
__env->ReleaseStringUTFChars(__method, pMethod);
pObjectX->register_getSpatialRelation_void_callback(sMethod);
if (pObjectX->getJavaReference() != NULL && sMethod != "")
{
EarthView::World::Core::GlobalReference *__gr = (EarthView::World::Core::GlobalReference *)pObjectX->getJavaReference();
jobject __obj1 = __gr->getJObject();
jclass __clazz1 = __env->GetObjectClass(__obj1);
jmethodID __method = __env->GetMethodID(__clazz1,"getSpatialRelation_void_callback", "()I");
__gr->setMethod(sMethod, __method);
}
}
extern "C" JNIEXPORT jint JNICALL Java_com_earthview_world_spatial_geodataset_QueryFilter_getSpatialRelation_1void_1NoVirtual(JNIEnv *__env , jobject __thiz, jlong pObjXXXX)
{
EarthView::World::Spatial::GeoDataset::CQueryFilter *pObjectX = (EarthView::World::Spatial::GeoDataset::CQueryFilter*) pObjXXXX;
EarthView::World::Spatial::GeoDataset::EVSpatialQueryRelationType __values1 = pObjectX->EarthView::World::Spatial::GeoDataset::CQueryFilter::getSpatialRelation();
jint __values1_j = (jint) __values1;
return __values1_j;
}
extern "C" JNIEXPORT void JNICALL Java_com_earthview_world_spatial_geodataset_QueryFilter_setQueryMode_1EVQueryModeType(JNIEnv *__env , jobject __thiz, jlong pObjXXXX, jint queryMode_j)
{
EarthView::World::Spatial::GeoDataset::EVQueryModeType queryMode = (EarthView::World::Spatial::GeoDataset::EVQueryModeType) queryMode_j;
EarthView::World::Spatial::GeoDataset::CQueryFilter *pObjectX = (EarthView::World::Spatial::GeoDataset::CQueryFilter*) pObjXXXX;
if (typeid(*pObjectX) == typeid(JCQueryFilterProxy))
{
pObjectX->EarthView::World::Spatial::GeoDataset::CQueryFilter::setQueryMode(queryMode);
}
else
{
pObjectX->setQueryMode(queryMode);
}
}
extern "C" JNIEXPORT void JNICALL Java_com_earthview_world_spatial_geodataset_QueryFilter_register_1setQueryMode_1EVQueryModeType(JNIEnv *__env, jobject __thiz, jlong pObjXXXX, jstring __method)
{
JCQueryFilterProxy *pObjectX = (JCQueryFilterProxy*) pObjXXXX;
const char *pMethod = __env->GetStringUTFChars(__method, NULL);
EarthView::World::Core::ev_string sMethod = pMethod;
__env->ReleaseStringUTFChars(__method, pMethod);
pObjectX->register_setQueryMode_EVQueryModeType_callback(sMethod);
if (pObjectX->getJavaReference() != NULL && sMethod != "")
{
EarthView::World::Core::GlobalReference *__gr = (EarthView::World::Core::GlobalReference *)pObjectX->getJavaReference();
jobject __obj1 = __gr->getJObject();
jclass __clazz1 = __env->GetObjectClass(__obj1);
jmethodID __method = __env->GetMethodID(__clazz1,"setQueryMode_EVQueryModeType_callback", "(I)V");
__gr->setMethod(sMethod, __method);
}
}
extern "C" JNIEXPORT void JNICALL Java_com_earthview_world_spatial_geodataset_QueryFilter_setQueryMode_1EVQueryModeType_1NoVirtual(JNIEnv *__env , jobject __thiz, jlong pObjXXXX, jint queryMode_j)
{
EarthView::World::Spatial::GeoDataset::EVQueryModeType queryMode = (EarthView::World::Spatial::GeoDataset::EVQueryModeType) queryMode_j;
EarthView::World::Spatial::GeoDataset::CQueryFilter *pObjectX = (EarthView::World::Spatial::GeoDataset::CQueryFilter*) pObjXXXX;
pObjectX->EarthView::World::Spatial::GeoDataset::CQueryFilter::setQueryMode(queryMode);
}
extern "C" JNIEXPORT jint JNICALL Java_com_earthview_world_spatial_geodataset_QueryFilter_getQueryMode_1void(JNIEnv *__env , jobject __thiz, jlong pObjXXXX)
{
const EarthView::World::Spatial::GeoDataset::CQueryFilter *pObjectX = (EarthView::World::Spatial::GeoDataset::CQueryFilter*) pObjXXXX;
if (typeid(*pObjectX) == typeid(JCQueryFilterProxy))
{
EarthView::World::Spatial::GeoDataset::EVQueryModeType __values1 = pObjectX->EarthView::World::Spatial::GeoDataset::CQueryFilter::getQueryMode();
jint __values1_j = (jint) __values1;
return __values1_j;
}
else
{
EarthView::World::Spatial::GeoDataset::EVQueryModeType __values1 = pObjectX->getQueryMode();
jint __values1_j = (jint) __values1;
return __values1_j;
}
}
extern "C" JNIEXPORT void JNICALL Java_com_earthview_world_spatial_geodataset_QueryFilter_register_1getQueryMode_1void(JNIEnv *__env, jobject __thiz, jlong pObjXXXX, jstring __method)
{
JCQueryFilterProxy *pObjectX = (JCQueryFilterProxy*) pObjXXXX;
const char *pMethod = __env->GetStringUTFChars(__method, NULL);
EarthView::World::Core::ev_string sMethod = pMethod;
__env->ReleaseStringUTFChars(__method, pMethod);
pObjectX->register_getQueryMode_void_callback(sMethod);
if (pObjectX->getJavaReference() != NULL && sMethod != "")
{
EarthView::World::Core::GlobalReference *__gr = (EarthView::World::Core::GlobalReference *)pObjectX->getJavaReference();
jobject __obj1 = __gr->getJObject();
jclass __clazz1 = __env->GetObjectClass(__obj1);
jmethodID __method = __env->GetMethodID(__clazz1,"getQueryMode_void_callback", "()I");
__gr->setMethod(sMethod, __method);
}
}
extern "C" JNIEXPORT jint JNICALL Java_com_earthview_world_spatial_geodataset_QueryFilter_getQueryMode_1void_1NoVirtual(JNIEnv *__env , jobject __thiz, jlong pObjXXXX)
{
const EarthView::World::Spatial::GeoDataset::CQueryFilter *pObjectX = (EarthView::World::Spatial::GeoDataset::CQueryFilter*) pObjXXXX;
EarthView::World::Spatial::GeoDataset::EVQueryModeType __values1 = pObjectX->EarthView::World::Spatial::GeoDataset::CQueryFilter::getQueryMode();
jint __values1_j = (jint) __values1;
return __values1_j;
}
extern "C" JNIEXPORT void JNICALL Java_com_earthview_world_spatial_geodataset_QueryFilter_toBinary_1CDataStream(JNIEnv *__env , jobject __thiz, jlong pObjXXXX, jlong stream_j)
{
EarthView::World::Core::CDataStream &stream = *(EarthView::World::Core::CDataStream*) stream_j;
EarthView::World::Spatial::GeoDataset::CQueryFilter *pObjectX = (EarthView::World::Spatial::GeoDataset::CQueryFilter*) pObjXXXX;
pObjectX->toBinary(stream);
}
extern "C" JNIEXPORT void JNICALL Java_com_earthview_world_spatial_geodataset_QueryFilter_fromBinary_1CDataStream(JNIEnv *__env , jobject __thiz, jlong pObjXXXX, jlong stream_j)
{
EarthView::World::Core::CDataStream &stream = *(EarthView::World::Core::CDataStream*) stream_j;
EarthView::World::Spatial::GeoDataset::CQueryFilter *pObjectX = (EarthView::World::Spatial::GeoDataset::CQueryFilter*) pObjXXXX;
pObjectX->fromBinary(stream);
}
}
}
}
}
| [
"yanguanqi@aliyun.com"
] | yanguanqi@aliyun.com |
8d1d8b89cc0de66831da21a56857fb92f38df1f9 | 786de89be635eb21295070a6a3452f3a7fe6712c | /RdbMySQL/tags/V00-00-02/include/Query.h | 028edd22e7da25f5dddfc76203270f91bde338a8 | [] | no_license | connectthefuture/psdmrepo | 85267cfe8d54564f99e17035efe931077c8f7a37 | f32870a987a7493e7bf0f0a5c1712a5a030ef199 | refs/heads/master | 2021-01-13T03:26:35.494026 | 2015-09-03T22:22:11 | 2015-09-03T22:22:11 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 14,313 | h | #ifndef RDBMYSQL_QUERY_HH
#define RDBMYSQL_QUERY_HH
//--------------------------------------------------------------------------
// File and Version Information:
// $Id$
//
// Description:
// Class Query.
//
// Environment:
// This software was developed for the BaBar collaboration. If you
// use all or part of it, please give an appropriate acknowledgement.
//
// Author List:
// Andy Salnikov
//
// Copyright Information:
// Copyright (C) 2005 SLAC
//
//------------------------------------------------------------------------
//---------------
// C++ Headers --
//---------------
#include <string>
#include <boost/utility.hpp>
//----------------------
// Base Class Headers --
//----------------------
//-------------------------------
// Collaborating Class Headers --
//-------------------------------
#include "RdbMySQL/QueryBuf.h"
//------------------------------------
// Collaborating Class Declarations --
//------------------------------------
namespace RdbMySQL {
class Result ;
}
// ---------------------
// -- Class Interface --
// ---------------------
namespace RdbMySQL {
/**
* This class represents MySQL connection.
*
* This software was developed for the BaBar collaboration. If you
* use all or part of it, please give an appropriate acknowledgement.
*
* Copyright (C) 2005 SLAC
*
* @see QueryTable
*
* @version $Id$
*
* @author Andy Salnikov
*/
class Query : boost::noncopyable {
public:
/**
* Constructor takes connection object
*
* @param conn database connection object
*/
Query ( Conn& conn ) ;
// Destructor
virtual ~Query () ;
/**
* Execute complete query. Different signatures, all for efficiency.
*/
virtual Result* execute ( const char* q ) ;
virtual Result* execute ( const std::string& q ) ;
virtual Result* execute ( const char* q, size_t size ) ;
/**
* Execute query with parameters. Given the static nature of C++ this is the
* best that I can do (without other over-complicated stuff). If you need more
* parameters just add more methods here or compose queries yourself.
* Returns the result of the query or zero pointer for failed queries.
* User is responsible for deleting returned object.
*/
template <typename T1>
Result* executePar ( const std::string& q, const T1& p1 ) ;
template <typename T1, typename T2>
Result* executePar ( const std::string& q, const T1& p1, const T2& p2 ) ;
template <typename T1, typename T2, typename T3>
Result* executePar ( const std::string& q, const T1& p1, const T2& p2, const T3& p3 ) ;
template <typename T1, typename T2, typename T3, typename T4>
Result* executePar ( const std::string& q, const T1& p1, const T2& p2, const T3& p3,
const T4& p4 ) ;
template <typename T1, typename T2, typename T3, typename T4, typename T5>
Result* executePar ( const std::string& q, const T1& p1, const T2& p2, const T3& p3,
const T4& p4, const T5& p5 ) ;
template <typename T1, typename T2, typename T3, typename T4, typename T5,
typename T6>
Result* executePar ( const std::string& q, const T1& p1, const T2& p2, const T3& p3,
const T4& p4, const T5& p5, const T6& p6 ) ;
template <typename T1, typename T2, typename T3, typename T4, typename T5,
typename T6, typename T7>
Result* executePar ( const std::string& q, const T1& p1, const T2& p2, const T3& p3,
const T4& p4, const T5& p5, const T6& p6, const T7& p7 ) ;
template <typename T1, typename T2, typename T3, typename T4, typename T5,
typename T6, typename T7, typename T8>
Result* executePar ( const std::string& q, const T1& p1, const T2& p2, const T3& p3,
const T4& p4, const T5& p5, const T6& p6, const T7& p7, const T8& p8 ) ;
template <typename T1, typename T2, typename T3, typename T4, typename T5,
typename T6, typename T7, typename T8, typename T9>
Result* executePar ( const std::string& q, const T1& p1, const T2& p2, const T3& p3,
const T4& p4, const T5& p5, const T6& p6, const T7& p7, const T8& p8, const T9& p9 ) ;
template <typename T1, typename T2, typename T3, typename T4, typename T5,
typename T6, typename T7, typename T8, typename T9, typename T10>
Result* executePar ( const std::string& q, const T1& p1, const T2& p2, const T3& p3,
const T4& p4, const T5& p5, const T6& p6, const T7& p7, const T8& p8, const T9& p9, const T10& p10 ) ;
/// return the query string from last executePar() (not execute())
const char* str() const { return _qbuf.str() ; }
protected:
// Helper functions
private:
// Friends
// Data members
Conn& _conn ;
QueryBuf _qbuf ;
// Adds part of the query before ? and the value in place of the ?. Returns
// the index of the char following ?.
template <typename T1>
std::string::size_type
appendToQuery ( const std::string& q, std::string::size_type n, const T1& p1 ) ;
};
template <typename T1>
Result*
Query::executePar ( const std::string& q, const T1& p1 )
{
_qbuf.clear() ;
std::string::size_type n = 0 ;
if ( ( n = appendToQuery( q, n, p1 ) ) == std::string::npos ) return false ;
_qbuf.append( q.data()+n, q.data()+q.size(), false, false ) ; // add rest of the query
return execute ( _qbuf.str(), _qbuf.size() ) ;
}
template <typename T1, typename T2>
Result*
Query::executePar ( const std::string& q, const T1& p1, const T2& p2 )
{
_qbuf.clear() ;
std::string::size_type n = 0 ;
if ( ( n = appendToQuery( q, n, p1 ) ) == std::string::npos ) return false ;
if ( ( n = appendToQuery( q, n, p2 ) ) == std::string::npos ) return false ;
_qbuf.append( q.data()+n, q.data()+q.size(), false, false ) ; // add rest of the query
return execute ( _qbuf.str(), _qbuf.size() ) ;
}
template <typename T1, typename T2, typename T3>
Result*
Query::executePar ( const std::string& q, const T1& p1, const T2& p2, const T3& p3 )
{
_qbuf.clear() ;
std::string::size_type n = 0 ;
if ( ( n = appendToQuery( q, n, p1 ) ) == std::string::npos ) return false ;
if ( ( n = appendToQuery( q, n, p2 ) ) == std::string::npos ) return false ;
if ( ( n = appendToQuery( q, n, p3 ) ) == std::string::npos ) return false ;
_qbuf.append( q.data()+n, q.data()+q.size(), false, false ) ; // add rest of the query
return execute ( _qbuf.str(), _qbuf.size() ) ;
}
template <typename T1, typename T2, typename T3, typename T4>
Result*
Query::executePar ( const std::string& q, const T1& p1, const T2& p2, const T3& p3,
const T4& p4 )
{
_qbuf.clear() ;
std::string::size_type n = 0 ;
if ( ( n = appendToQuery( q, n, p1 ) ) == std::string::npos ) return false ;
if ( ( n = appendToQuery( q, n, p2 ) ) == std::string::npos ) return false ;
if ( ( n = appendToQuery( q, n, p3 ) ) == std::string::npos ) return false ;
if ( ( n = appendToQuery( q, n, p4 ) ) == std::string::npos ) return false ;
_qbuf.append( q.data()+n, q.data()+q.size(), false, false ) ; // add rest of the query
return execute ( _qbuf.str(), _qbuf.size() ) ;
}
template <typename T1, typename T2, typename T3, typename T4, typename T5>
Result*
Query::executePar ( const std::string& q, const T1& p1, const T2& p2, const T3& p3,
const T4& p4, const T5& p5 )
{
_qbuf.clear() ;
std::string::size_type n = 0 ;
if ( ( n = appendToQuery( q, n, p1 ) ) == std::string::npos ) return false ;
if ( ( n = appendToQuery( q, n, p2 ) ) == std::string::npos ) return false ;
if ( ( n = appendToQuery( q, n, p3 ) ) == std::string::npos ) return false ;
if ( ( n = appendToQuery( q, n, p4 ) ) == std::string::npos ) return false ;
if ( ( n = appendToQuery( q, n, p5 ) ) == std::string::npos ) return false ;
_qbuf.append( q.data()+n, q.data()+q.size(), false, false ) ; // add rest of the query
return execute ( _qbuf.str(), _qbuf.size() ) ;
}
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6>
Result*
Query::executePar ( const std::string& q, const T1& p1, const T2& p2, const T3& p3,
const T4& p4, const T5& p5, const T6& p6 )
{
_qbuf.clear() ;
std::string::size_type n = 0 ;
if ( ( n = appendToQuery( q, n, p1 ) ) == std::string::npos ) return false ;
if ( ( n = appendToQuery( q, n, p2 ) ) == std::string::npos ) return false ;
if ( ( n = appendToQuery( q, n, p3 ) ) == std::string::npos ) return false ;
if ( ( n = appendToQuery( q, n, p4 ) ) == std::string::npos ) return false ;
if ( ( n = appendToQuery( q, n, p5 ) ) == std::string::npos ) return false ;
if ( ( n = appendToQuery( q, n, p6 ) ) == std::string::npos ) return false ;
_qbuf.append( q.data()+n, q.data()+q.size(), false, false ) ; // add rest of the query
return execute ( _qbuf.str(), _qbuf.size() ) ;
}
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7>
Result*
Query::executePar ( const std::string& q, const T1& p1, const T2& p2, const T3& p3,
const T4& p4, const T5& p5, const T6& p6, const T7& p7 )
{
_qbuf.clear() ;
std::string::size_type n = 0 ;
if ( ( n = appendToQuery( q, n, p1 ) ) == std::string::npos ) return false ;
if ( ( n = appendToQuery( q, n, p2 ) ) == std::string::npos ) return false ;
if ( ( n = appendToQuery( q, n, p3 ) ) == std::string::npos ) return false ;
if ( ( n = appendToQuery( q, n, p4 ) ) == std::string::npos ) return false ;
if ( ( n = appendToQuery( q, n, p5 ) ) == std::string::npos ) return false ;
if ( ( n = appendToQuery( q, n, p6 ) ) == std::string::npos ) return false ;
if ( ( n = appendToQuery( q, n, p7 ) ) == std::string::npos ) return false ;
_qbuf.append( q.data()+n, q.data()+q.size(), false, false ) ; // add rest of the query
return execute ( _qbuf.str(), _qbuf.size() ) ;
}
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6,
typename T7, typename T8>
Result*
Query::executePar ( const std::string& q, const T1& p1, const T2& p2, const T3& p3,
const T4& p4, const T5& p5, const T6& p6, const T7& p7,
const T8& p8 )
{
_qbuf.clear() ;
std::string::size_type n = 0 ;
if ( ( n = appendToQuery( q, n, p1 ) ) == std::string::npos ) return false ;
if ( ( n = appendToQuery( q, n, p2 ) ) == std::string::npos ) return false ;
if ( ( n = appendToQuery( q, n, p3 ) ) == std::string::npos ) return false ;
if ( ( n = appendToQuery( q, n, p4 ) ) == std::string::npos ) return false ;
if ( ( n = appendToQuery( q, n, p5 ) ) == std::string::npos ) return false ;
if ( ( n = appendToQuery( q, n, p6 ) ) == std::string::npos ) return false ;
if ( ( n = appendToQuery( q, n, p7 ) ) == std::string::npos ) return false ;
if ( ( n = appendToQuery( q, n, p8 ) ) == std::string::npos ) return false ;
_qbuf.append( q.data()+n, q.data()+q.size(), false, false ) ; // add rest of the query
return execute ( _qbuf.str(), _qbuf.size() ) ;
}
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6,
typename T7, typename T8, typename T9>
Result*
Query::executePar ( const std::string& q, const T1& p1, const T2& p2, const T3& p3,
const T4& p4, const T5& p5, const T6& p6, const T7& p7,
const T8& p8, const T9& p9 )
{
_qbuf.clear() ;
std::string::size_type n = 0 ;
if ( ( n = appendToQuery( q, n, p1 ) ) == std::string::npos ) return false ;
if ( ( n = appendToQuery( q, n, p2 ) ) == std::string::npos ) return false ;
if ( ( n = appendToQuery( q, n, p3 ) ) == std::string::npos ) return false ;
if ( ( n = appendToQuery( q, n, p4 ) ) == std::string::npos ) return false ;
if ( ( n = appendToQuery( q, n, p5 ) ) == std::string::npos ) return false ;
if ( ( n = appendToQuery( q, n, p6 ) ) == std::string::npos ) return false ;
if ( ( n = appendToQuery( q, n, p7 ) ) == std::string::npos ) return false ;
if ( ( n = appendToQuery( q, n, p8 ) ) == std::string::npos ) return false ;
if ( ( n = appendToQuery( q, n, p9 ) ) == std::string::npos ) return false ;
_qbuf.append( q.data()+n, q.data()+q.size(), false, false ) ; // add rest of the query
return execute ( _qbuf.str(), _qbuf.size() ) ;
}
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6,
typename T7, typename T8, typename T9, typename T10>
Result*
Query::executePar ( const std::string& q, const T1& p1, const T2& p2, const T3& p3,
const T4& p4, const T5& p5, const T6& p6, const T7& p7,
const T8& p8, const T9& p9, const T10& p10 )
{
_qbuf.clear() ;
std::string::size_type n = 0 ;
if ( ( n = appendToQuery( q, n, p1 ) ) == std::string::npos ) return false ;
if ( ( n = appendToQuery( q, n, p2 ) ) == std::string::npos ) return false ;
if ( ( n = appendToQuery( q, n, p3 ) ) == std::string::npos ) return false ;
if ( ( n = appendToQuery( q, n, p4 ) ) == std::string::npos ) return false ;
if ( ( n = appendToQuery( q, n, p5 ) ) == std::string::npos ) return false ;
if ( ( n = appendToQuery( q, n, p6 ) ) == std::string::npos ) return false ;
if ( ( n = appendToQuery( q, n, p7 ) ) == std::string::npos ) return false ;
if ( ( n = appendToQuery( q, n, p8 ) ) == std::string::npos ) return false ;
if ( ( n = appendToQuery( q, n, p9 ) ) == std::string::npos ) return false ;
if ( ( n = appendToQuery( q, n, p10 ) ) == std::string::npos ) return false ;
_qbuf.append( q.data()+n, q.data()+q.size(), false, false ) ; // add rest of the query
return execute ( _qbuf.str(), _qbuf.size() ) ;
}
// Adds part of the query before ? and the value in place of the ?. Returns
// the index of the char following ?.
template <typename T1>
std::string::size_type
Query::appendToQuery ( const std::string& q, std::string::size_type n, const T1& p1 )
{
std::string::size_type n1 = q.find('?',n) ; // find next ?
if ( n1 == std::string::npos ) return n1 ;
_qbuf.append( q.data()+n, q.data()+n1, false, false ) ; // add query up to ?, do not escape
++ n1 ;
if ( n1 < q.size() && q[n1] == '?' ) {
// two ?? means quote/escape strings, for non-strings it does not make difference
_qbuf.append( p1, true, true ) ; // add a parameter, escape and quote
++ n1 ;
} else {
_qbuf.append( p1, false, false ) ; // add a parameter, do not escape
}
return n1 ;
}
} // namespace RdbMySQL
#endif // RDBMYSQL_QUERY_HH
| [
"salnikov@SLAC.STANFORD.EDU@b967ad99-d558-0410-b138-e0f6c56caec7"
] | salnikov@SLAC.STANFORD.EDU@b967ad99-d558-0410-b138-e0f6c56caec7 |
99e00af533cd7e23a5a1dd5ae33ad108c187b9cb | 4404efe9a431109a86176b7a0b81f5b7bad785ec | /ext/mstch/src/utils.cpp | 1646170198f146e7bb46716399f70351f9ea7d87 | [
"BSD-3-Clause",
"MIT"
] | permissive | moneroexamples/onion-monero-blockchain-explorer | a8ace4b342525864625a2ceb81f5656db98674b7 | d66972065fd34339451c248b4dfb5c54be0d0719 | refs/heads/master | 2023-08-07T17:17:12.493066 | 2023-03-27T23:22:19 | 2023-03-27T23:22:19 | 55,582,524 | 363 | 297 | BSD-3-Clause | 2023-07-21T03:26:09 | 2016-04-06T06:51:26 | C++ | UTF-8 | C++ | false | false | 1,265 | cpp | #include "utils.hpp"
#include "mstch/mstch.hpp"
mstch::citer mstch::first_not_ws(mstch::citer begin, mstch::citer end) {
for (auto it = begin; it != end; ++it)
if (*it != ' ') return it;
return end;
}
mstch::citer mstch::first_not_ws(mstch::criter begin, mstch::criter end) {
for (auto rit = begin; rit != end; ++rit)
if (*rit != ' ') return --(rit.base());
return --(end.base());
}
mstch::criter mstch::reverse(mstch::citer it) {
return std::reverse_iterator<mstch::citer>(it);
}
std::string mstch::html_escape(const std::string& str) {
if (mstch::config::escape)
return mstch::config::escape(str);
std::string out;
citer start = str.begin();
auto add_escape = [&out, &start](const std::string& escaped, citer& it) {
out += std::string{start, it} + escaped;
start = it + 1;
};
for (auto it = str.begin(); it != str.end(); ++it)
switch (*it) {
case '&': add_escape("&", it); break;
case '\'': add_escape("'", it); break;
case '"': add_escape(""", it); break;
case '<': add_escape("<", it); break;
case '>': add_escape(">", it); break;
case '/': add_escape("/", it); break;
default: break;
}
return out + std::string{start, str.end()};
}
| [
"moneroexamples@tuta.io"
] | moneroexamples@tuta.io |
4434681dee15c26a06455361160d803990b20dbb | 0104df16f8a0c387189dcf553dbf6ffd0edb5110 | /src/qt/splashscreen.cpp | 91f4164641c255476ed5433ed0c275c13611fa6f | [
"MIT"
] | permissive | an420/123 | c47c05166725bbc05f6a770ea47ddd42e0d867be | 9d1bc8a80e5ec8498152608fad8ff16028284c5c | refs/heads/master | 2016-08-04T04:17:03.132716 | 2014-04-05T19:42:34 | 2014-04-05T19:42:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,398 | cpp | #include "splashscreen.h"
#include "clientversion.h"
#include "util.h"
#include <QPainter>
#undef loop /* ugh, remove this when the #define loop is gone from util.h */
#include <QApplication>
SplashScreen::SplashScreen(const QPixmap &pixmap, Qt::WindowFlags f) :
QSplashScreen(pixmap, f)
{
// set reference point, paddings
int paddingRight = 20;
int paddingTop = 50;
int titleVersionVSpace = 17;
int titleCopyrightVSpace = 40;
int titleCopyrightVSpace2 = 53;
float fontFactor = 1.0;
// define text to place
QString titleText = QString(QApplication::applicationName()).replace(QString("-testnet"), QString(""), Qt::CaseSensitive); // cut of testnet, place it as single object further down
QString versionText = QString("Version %1").arg(QString::fromStdString(FormatFullVersion()));
QString copyrightText = QChar(0xA9)+QString(" 2009-%1 ").arg(COPYRIGHT_YEAR) + QString(tr("The Bitcoin Developers"));
QString copyrightText2 = QChar(0xA9)+QString(" 2013 ") + QString(tr("The ncicoin Team"));
QString testnetAddText = QString(tr("[testnet]")); // define text to place as single text object
QString font = "Arial";
// load the bitmap for writing some text over it
QPixmap newPixmap;
if(GetBoolArg("-testnet", false)) {
newPixmap = QPixmap(":/images/splash_testnet");
}
else {
newPixmap = QPixmap(":/images/splash");
}
QPainter pixPaint(&newPixmap);
pixPaint.setPen(QColor(100,100,100));
// check font size and drawing with
pixPaint.setFont(QFont(font, 33*fontFactor));
QFontMetrics fm = pixPaint.fontMetrics();
int titleTextWidth = fm.width(titleText);
if(titleTextWidth > 160) {
// strange font rendering, Arial probably not found
fontFactor = 0.75;
}
pixPaint.setFont(QFont(font, 33*fontFactor));
fm = pixPaint.fontMetrics();
titleTextWidth = fm.width(titleText);
pixPaint.drawText(newPixmap.width()-titleTextWidth-paddingRight,paddingTop,titleText);
pixPaint.setFont(QFont(font, 15*fontFactor));
// if the version string is to long, reduce size
fm = pixPaint.fontMetrics();
int versionTextWidth = fm.width(versionText);
if(versionTextWidth > titleTextWidth+paddingRight-10) {
pixPaint.setFont(QFont(font, 10*fontFactor));
titleVersionVSpace -= 5;
}
pixPaint.drawText(newPixmap.width()-titleTextWidth-paddingRight+2,paddingTop+titleVersionVSpace,versionText);
// draw copyright stuff
pixPaint.setFont(QFont(font, 10*fontFactor));
pixPaint.drawText(newPixmap.width()-titleTextWidth-paddingRight,paddingTop+titleCopyrightVSpace,copyrightText);
pixPaint.drawText(newPixmap.width()-titleTextWidth-paddingRight,paddingTop+titleCopyrightVSpace2,copyrightText2);
// draw testnet string if -testnet is on
if(QApplication::applicationName().contains(QString("-testnet"))) {
// draw copyright stuff
QFont boldFont = QFont(font, 10*fontFactor);
boldFont.setWeight(QFont::Bold);
pixPaint.setFont(boldFont);
fm = pixPaint.fontMetrics();
int testnetAddTextWidth = fm.width(testnetAddText);
pixPaint.drawText(newPixmap.width()-testnetAddTextWidth-10,15,testnetAddText);
}
pixPaint.end();
this->setPixmap(newPixmap);
}
| [
"an420@outlook.com"
] | an420@outlook.com |
334dbc53ce8735764d781b9a75f9859d19f41397 | d460fdbc7dfb05d76308cf0ac26bd0ebd2ba8382 | /include/Dynamic/Instrument/FeatureCheck.h | 43fcb3594005fee8bbc7b5df2a0af3dd0b9b4204 | [
"MIT"
] | permissive | grievejia/tpa | 5032f1db8fae037227a7efd003abd5d820cf5069 | 8a7aa4c7d41c266fcf3a5e2011ff324bcddf5816 | refs/heads/master | 2020-04-09T11:11:18.898040 | 2016-03-23T20:41:30 | 2016-03-23T20:41:30 | 30,267,261 | 22 | 8 | null | null | null | null | UTF-8 | C++ | false | false | 412 | h | #pragma once
namespace llvm
{
class Function;
class Module;
class StringRef;
class Value;
}
namespace dynamic
{
class FeatureCheck
{
private:
void issueWarning(const llvm::Value&, const llvm::StringRef&);
void checkIndirectLibraryCall(const llvm::Function& f);
void checkArrayArgOrInst(const llvm::Function& f);
public:
FeatureCheck() = default;
void runOnModule(const llvm::Module& module);
};
}
| [
"grievejia@gmail.com"
] | grievejia@gmail.com |
8ad49ca95cc9e6ea5d45fa40eb4c29c2cf998276 | 384ed1770ef4fb26ceddd1f696f9bce645ec7203 | /main.build/module.youtube_dl.extractor.radiofrance.cpp | fa706b37eedd8668e7178d8b53265e2be110a416 | [
"Apache-2.0"
] | permissive | omarASC5/Download-Spotify-Playlists | 0bdc4d5c27704b869d346bb57127da401bb354bd | b768ddba33f52902c9276105099514f18f5c3f77 | refs/heads/master | 2022-11-06T09:32:38.264819 | 2020-06-21T14:31:01 | 2020-06-21T14:31:01 | 272,309,286 | 1 | 1 | null | 2020-06-16T21:02:37 | 2020-06-15T00:47:16 | HTML | UTF-8 | C++ | false | false | 108,972 | cpp | /* Generated code for Python module 'youtube_dl.extractor.radiofrance'
* created by Nuitka version 0.6.8.4
*
* This code is in part copyright 2020 Kay Hayen.
*
* 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.
*/
#include "nuitka/prelude.h"
#include "__helpers.h"
/* The "_module_youtube_dl$extractor$radiofrance" is a Python object pointer of module type.
*
* Note: For full compatibility with CPython, every module variable access
* needs to go through it except for cases where the module cannot possibly
* have changed in the mean time.
*/
PyObject *module_youtube_dl$extractor$radiofrance;
PyDictObject *moduledict_youtube_dl$extractor$radiofrance;
/* The declarations of module constants used, if any. */
static PyObject *const_dict_45ad7d9fefd8b33a422439a324b23617;
extern PyObject *const_str_plain_metaclass;
extern PyObject *const_str_plain___spec__;
static PyObject *const_str_digest_7fd8aa5aa534da26833c1ff273735f26;
extern PyObject *const_str_plain___name__;
extern PyObject *const_tuple_str_plain___class___tuple;
extern PyObject *const_tuple_str_plain_id_tuple;
extern PyObject *const_str_angle_metaclass;
extern PyObject *const_dict_f95321192b139e241e1ec13397bf5b8f;
extern PyObject *const_str_plain__sort_formats;
extern PyObject *const_str_plain_i;
static PyObject *const_str_digest_ecf45255bf34f3c918bebd075ed4c8bc;
extern PyObject *const_str_plain___file__;
extern PyObject *const_str_plain_group;
static PyObject *const_dict_b70825bd7c4696b94ba054cce17ec0fa;
static PyObject *const_str_plain_bdbb28ace95ed0e04faab32ba3160daf;
extern PyObject *const_str_plain_fatal;
extern PyObject *const_str_plain_webpage;
extern PyObject *const_str_plain_m;
extern PyObject *const_str_plain_id;
extern PyObject *const_str_plain_video_id;
extern PyObject *const_str_plain___doc__;
extern PyObject *const_str_plain_re;
extern PyObject *const_str_plain_description;
extern PyObject *const_str_plain___orig_bases__;
static PyObject *const_str_digest_8b868b86762d31866eb330cdb0d2fc4b;
static PyObject *const_str_digest_3a24e16981de09c57e6f7ca1f3236a3e;
static PyObject *const_str_digest_e1a3eb1c6621fe85d264e3ab5e2d4d35;
static PyObject *const_tuple_str_plain_i_str_plain_fm_tuple;
static PyObject *const_tuple_bf599468abf7c38965299b60585379e8_tuple;
static PyObject *const_str_digest_a0dff7d32e368d2b890810523650124c;
static PyObject *const_str_digest_dac2d879c311f32c8407397929fefe46;
extern PyObject *const_str_plain___qualname__;
extern PyObject *const_str_plain_none;
extern PyObject *const_str_plain__VALID_URL;
extern PyObject *const_tuple_str_plain_InfoExtractor_tuple;
extern PyObject *const_str_plain_ext;
extern PyObject *const_str_plain__download_webpage;
extern PyObject *const_str_plain_format_id;
extern PyObject *const_str_plain_fm;
extern PyObject *const_str_plain_radiofrance;
static PyObject *const_str_digest_47ed159e51ea9844d842d6eddb144045;
extern PyObject *const_str_plain_IE_NAME;
extern PyObject *const_tuple_empty;
extern PyObject *const_str_plain_enumerate;
extern PyObject *const_str_plain_title;
extern PyObject *const_str_plain_uploader;
static PyObject *const_str_plain_formats_str;
static PyObject *const_str_digest_714f06fe3f585ba53ecbc35d1eee684c;
static PyObject *const_str_digest_75ecb88bf53cbd625ad24c53a1852342;
extern PyObject *const_str_plain__TEST;
extern PyObject *const_str_plain_vcodec;
extern PyObject *const_str_plain_match;
extern PyObject *const_str_plain_False;
extern PyObject *const_str_plain___getitem__;
extern PyObject *const_str_plain__real_extract;
extern PyObject *const_str_plain_formats;
extern PyObject *const_int_0;
static PyObject *const_str_digest_b599f9248b84e36968577cf9d6fcc3c7;
static PyObject *const_str_digest_004c45bf5228f85401370ce00ac132af;
static PyObject *const_str_digest_b4d487732de3996db51afbdd54ed8ac5;
extern PyObject *const_str_plain_origin;
extern PyObject *const_str_plain_preference;
extern PyObject *const_str_digest_75fd71b1edada749c2ef7ac810062295;
extern PyObject *const_str_plain__html_search_regex;
extern PyObject *const_str_angle_listcomp;
extern PyObject *const_str_plain_RadioFranceIE;
extern PyObject *const_str_plain_type;
extern PyObject *const_str_plain___cached__;
extern PyObject *const_str_plain_InfoExtractor;
extern PyObject *const_str_plain___class__;
extern PyObject *const_str_digest_aff7368d18767408466ff2f5f62f24a5;
extern PyObject *const_str_plain___module__;
extern PyObject *const_str_plain_unicode_literals;
extern PyObject *const_int_pos_1;
extern PyObject *const_str_plain_findall;
static PyObject *const_str_digest_ffb8778e03eed24c8470d5b6bc2834d0;
extern PyObject *const_str_digest_fcf040720b88d60da4ce975010c44a3a;
extern PyObject *const_str_plain___prepare__;
extern PyObject *const_str_plain_ogg;
extern PyObject *const_str_plain_url;
extern PyObject *const_str_plain_self;
extern PyObject *const_str_plain_md5;
extern PyObject *const_str_plain_has_location;
static PyObject *const_str_digest_e26242b6ca7f7b62d3aa21607cbb4185;
extern PyObject *const_str_plain_common;
extern PyObject *const_str_plain_info_dict;
static PyObject *module_filename_obj;
/* Indicator if this modules private constants were created yet. */
static bool constants_created = false;
/* Function to create module private constants. */
static void createModuleConstants(void) {
const_dict_45ad7d9fefd8b33a422439a324b23617 = _PyDict_NewPresized( 3 );
const_str_digest_3a24e16981de09c57e6f7ca1f3236a3e = UNSTREAM_STRING_ASCII(&constant_bin[ 1770178 ], 49, 0);
PyDict_SetItem(const_dict_45ad7d9fefd8b33a422439a324b23617, const_str_plain_url, const_str_digest_3a24e16981de09c57e6f7ca1f3236a3e);
const_str_plain_bdbb28ace95ed0e04faab32ba3160daf = UNSTREAM_STRING_ASCII(&constant_bin[ 1770227 ], 32, 1);
PyDict_SetItem(const_dict_45ad7d9fefd8b33a422439a324b23617, const_str_plain_md5, const_str_plain_bdbb28ace95ed0e04faab32ba3160daf);
const_dict_b70825bd7c4696b94ba054cce17ec0fa = _PyDict_NewPresized( 5 );
const_str_digest_75ecb88bf53cbd625ad24c53a1852342 = UNSTREAM_STRING_ASCII(&constant_bin[ 1770220 ], 7, 0);
PyDict_SetItem(const_dict_b70825bd7c4696b94ba054cce17ec0fa, const_str_plain_id, const_str_digest_75ecb88bf53cbd625ad24c53a1852342);
PyDict_SetItem(const_dict_b70825bd7c4696b94ba054cce17ec0fa, const_str_plain_ext, const_str_plain_ogg);
const_str_digest_e26242b6ca7f7b62d3aa21607cbb4185 = UNSTREAM_STRING_ASCII(&constant_bin[ 1770259 ], 10, 0);
PyDict_SetItem(const_dict_b70825bd7c4696b94ba054cce17ec0fa, const_str_plain_title, const_str_digest_e26242b6ca7f7b62d3aa21607cbb4185);
const_str_digest_ffb8778e03eed24c8470d5b6bc2834d0 = UNSTREAM_STRING(&constant_bin[ 1770269 ], 253, 0);
PyDict_SetItem(const_dict_b70825bd7c4696b94ba054cce17ec0fa, const_str_plain_description, const_str_digest_ffb8778e03eed24c8470d5b6bc2834d0);
const_str_digest_7fd8aa5aa534da26833c1ff273735f26 = UNSTREAM_STRING(&constant_bin[ 1770522 ], 16, 0);
PyDict_SetItem(const_dict_b70825bd7c4696b94ba054cce17ec0fa, const_str_plain_uploader, const_str_digest_7fd8aa5aa534da26833c1ff273735f26);
assert(PyDict_Size(const_dict_b70825bd7c4696b94ba054cce17ec0fa) == 5);
PyDict_SetItem(const_dict_45ad7d9fefd8b33a422439a324b23617, const_str_plain_info_dict, const_dict_b70825bd7c4696b94ba054cce17ec0fa);
assert(PyDict_Size(const_dict_45ad7d9fefd8b33a422439a324b23617) == 3);
const_str_digest_ecf45255bf34f3c918bebd075ed4c8bc = UNSTREAM_STRING_ASCII(&constant_bin[ 1770538 ], 27, 0);
const_str_digest_8b868b86762d31866eb330cdb0d2fc4b = UNSTREAM_STRING_ASCII(&constant_bin[ 1770565 ], 27, 0);
const_str_digest_e1a3eb1c6621fe85d264e3ab5e2d4d35 = UNSTREAM_STRING_ASCII(&constant_bin[ 1770592 ], 46, 0);
const_tuple_str_plain_i_str_plain_fm_tuple = PyTuple_New(2);
PyTuple_SET_ITEM(const_tuple_str_plain_i_str_plain_fm_tuple, 0, const_str_plain_i); Py_INCREF(const_str_plain_i);
PyTuple_SET_ITEM(const_tuple_str_plain_i_str_plain_fm_tuple, 1, const_str_plain_fm); Py_INCREF(const_str_plain_fm);
const_tuple_bf599468abf7c38965299b60585379e8_tuple = PyTuple_New(10);
PyTuple_SET_ITEM(const_tuple_bf599468abf7c38965299b60585379e8_tuple, 0, const_str_plain_self); Py_INCREF(const_str_plain_self);
PyTuple_SET_ITEM(const_tuple_bf599468abf7c38965299b60585379e8_tuple, 1, const_str_plain_url); Py_INCREF(const_str_plain_url);
PyTuple_SET_ITEM(const_tuple_bf599468abf7c38965299b60585379e8_tuple, 2, const_str_plain_m); Py_INCREF(const_str_plain_m);
PyTuple_SET_ITEM(const_tuple_bf599468abf7c38965299b60585379e8_tuple, 3, const_str_plain_video_id); Py_INCREF(const_str_plain_video_id);
PyTuple_SET_ITEM(const_tuple_bf599468abf7c38965299b60585379e8_tuple, 4, const_str_plain_webpage); Py_INCREF(const_str_plain_webpage);
PyTuple_SET_ITEM(const_tuple_bf599468abf7c38965299b60585379e8_tuple, 5, const_str_plain_title); Py_INCREF(const_str_plain_title);
PyTuple_SET_ITEM(const_tuple_bf599468abf7c38965299b60585379e8_tuple, 6, const_str_plain_description); Py_INCREF(const_str_plain_description);
PyTuple_SET_ITEM(const_tuple_bf599468abf7c38965299b60585379e8_tuple, 7, const_str_plain_uploader); Py_INCREF(const_str_plain_uploader);
const_str_plain_formats_str = UNSTREAM_STRING_ASCII(&constant_bin[ 1770638 ], 11, 1);
PyTuple_SET_ITEM(const_tuple_bf599468abf7c38965299b60585379e8_tuple, 8, const_str_plain_formats_str); Py_INCREF(const_str_plain_formats_str);
PyTuple_SET_ITEM(const_tuple_bf599468abf7c38965299b60585379e8_tuple, 9, const_str_plain_formats); Py_INCREF(const_str_plain_formats);
const_str_digest_a0dff7d32e368d2b890810523650124c = UNSTREAM_STRING_ASCII(&constant_bin[ 1770649 ], 110, 0);
const_str_digest_dac2d879c311f32c8407397929fefe46 = UNSTREAM_STRING_ASCII(&constant_bin[ 1770759 ], 41, 0);
const_str_digest_47ed159e51ea9844d842d6eddb144045 = UNSTREAM_STRING_ASCII(&constant_bin[ 1770800 ], 60, 0);
const_str_digest_714f06fe3f585ba53ecbc35d1eee684c = UNSTREAM_STRING_ASCII(&constant_bin[ 1770860 ], 61, 0);
const_str_digest_b599f9248b84e36968577cf9d6fcc3c7 = UNSTREAM_STRING_ASCII(&constant_bin[ 1770921 ], 10, 0);
const_str_digest_004c45bf5228f85401370ce00ac132af = UNSTREAM_STRING_ASCII(&constant_bin[ 1770767 ], 32, 0);
const_str_digest_b4d487732de3996db51afbdd54ed8ac5 = UNSTREAM_STRING_ASCII(&constant_bin[ 1770931 ], 55, 0);
constants_created = true;
}
/* Function to verify module private constants for non-corruption. */
#ifndef __NUITKA_NO_ASSERT__
void checkModuleConstants_youtube_dl$extractor$radiofrance(void) {
// The module may not have been used at all, then ignore this.
if (constants_created == false) return;
}
#endif
// The module code objects.
static PyCodeObject *codeobj_477238978825bceb9f86d913fd7338ca;
static PyCodeObject *codeobj_d5b0cd68f5e926863336e0a4b5c3cf04;
static PyCodeObject *codeobj_4e9fbed3ba512a8b5be22563bb45a477;
static PyCodeObject *codeobj_c3478953d67232be94c6eea6c84437cc;
static void createModuleCodeObjects(void) {
module_filename_obj = const_str_digest_a0dff7d32e368d2b890810523650124c;
codeobj_477238978825bceb9f86d913fd7338ca = MAKE_CODEOBJECT(module_filename_obj, 42, CO_OPTIMIZED | CO_NEWLOCALS | CO_NOFREE | CO_FUTURE_UNICODE_LITERALS, const_str_angle_listcomp, const_tuple_str_plain_i_str_plain_fm_tuple, 1, 0, 0);
codeobj_d5b0cd68f5e926863336e0a4b5c3cf04 = MAKE_CODEOBJECT(module_filename_obj, 1, CO_NOFREE | CO_FUTURE_UNICODE_LITERALS, const_str_digest_dac2d879c311f32c8407397929fefe46, const_tuple_empty, 0, 0, 0);
codeobj_4e9fbed3ba512a8b5be22563bb45a477 = MAKE_CODEOBJECT(module_filename_obj, 9, CO_NOFREE | CO_FUTURE_UNICODE_LITERALS, const_str_plain_RadioFranceIE, const_tuple_str_plain___class___tuple, 0, 0, 0);
codeobj_c3478953d67232be94c6eea6c84437cc = MAKE_CODEOBJECT(module_filename_obj, 25, CO_OPTIMIZED | CO_NEWLOCALS | CO_NOFREE | CO_FUTURE_UNICODE_LITERALS, const_str_plain__real_extract, const_tuple_bf599468abf7c38965299b60585379e8_tuple, 2, 0, 0);
}
// The module function declarations.
NUITKA_CROSS_MODULE PyObject *impl___internal__$$$function_4__mro_entries_conversion(PyObject **python_pars);
static PyObject *MAKE_FUNCTION_youtube_dl$extractor$radiofrance$$$function_1__real_extract();
// The module function definitions.
static PyObject *impl_youtube_dl$extractor$radiofrance$$$function_1__real_extract(struct Nuitka_FunctionObject const *self, PyObject **python_pars) {
// Preserve error status for checks
#ifndef __NUITKA_NO_ASSERT__
NUITKA_MAY_BE_UNUSED bool had_error = ERROR_OCCURRED();
#endif
// Local variable declarations.
PyObject *par_self = python_pars[0];
PyObject *par_url = python_pars[1];
PyObject *var_m = NULL;
PyObject *var_video_id = NULL;
PyObject *var_webpage = NULL;
PyObject *var_title = NULL;
PyObject *var_description = NULL;
PyObject *var_uploader = NULL;
PyObject *var_formats_str = NULL;
PyObject *var_formats = NULL;
PyObject *outline_0_var_i = NULL;
PyObject *outline_0_var_fm = NULL;
PyObject *tmp_listcomp$tuple_unpack_1__element_1 = NULL;
PyObject *tmp_listcomp$tuple_unpack_1__element_2 = NULL;
PyObject *tmp_listcomp$tuple_unpack_1__source_iter = NULL;
PyObject *tmp_listcomp_1__$0 = NULL;
PyObject *tmp_listcomp_1__contraction = NULL;
PyObject *tmp_listcomp_1__iter_value_0 = NULL;
struct Nuitka_FrameObject *frame_c3478953d67232be94c6eea6c84437cc;
NUITKA_MAY_BE_UNUSED char const *type_description_1 = NULL;
PyObject *exception_type = NULL;
PyObject *exception_value = NULL;
PyTracebackObject *exception_tb = NULL;
NUITKA_MAY_BE_UNUSED int exception_lineno = 0;
struct Nuitka_FrameObject *frame_477238978825bceb9f86d913fd7338ca_2;
NUITKA_MAY_BE_UNUSED char const *type_description_2 = NULL;
PyObject *tmp_iterator_attempt;
PyObject *exception_keeper_type_1;
PyObject *exception_keeper_value_1;
PyTracebackObject *exception_keeper_tb_1;
NUITKA_MAY_BE_UNUSED int exception_keeper_lineno_1;
PyObject *exception_keeper_type_2;
PyObject *exception_keeper_value_2;
PyTracebackObject *exception_keeper_tb_2;
NUITKA_MAY_BE_UNUSED int exception_keeper_lineno_2;
int tmp_res;
PyObject *exception_keeper_type_3;
PyObject *exception_keeper_value_3;
PyTracebackObject *exception_keeper_tb_3;
NUITKA_MAY_BE_UNUSED int exception_keeper_lineno_3;
static struct Nuitka_FrameObject *cache_frame_477238978825bceb9f86d913fd7338ca_2 = NULL;
PyObject *exception_keeper_type_4;
PyObject *exception_keeper_value_4;
PyTracebackObject *exception_keeper_tb_4;
NUITKA_MAY_BE_UNUSED int exception_keeper_lineno_4;
NUITKA_MAY_BE_UNUSED nuitka_void tmp_unused;
static struct Nuitka_FrameObject *cache_frame_c3478953d67232be94c6eea6c84437cc = NULL;
PyObject *tmp_return_value = NULL;
PyObject *exception_keeper_type_5;
PyObject *exception_keeper_value_5;
PyTracebackObject *exception_keeper_tb_5;
NUITKA_MAY_BE_UNUSED int exception_keeper_lineno_5;
// Actual function body.
// Tried code:
if (isFrameUnusable(cache_frame_c3478953d67232be94c6eea6c84437cc)) {
Py_XDECREF(cache_frame_c3478953d67232be94c6eea6c84437cc);
#if _DEBUG_REFCOUNTS
if (cache_frame_c3478953d67232be94c6eea6c84437cc == NULL) {
count_active_frame_cache_instances += 1;
} else {
count_released_frame_cache_instances += 1;
}
count_allocated_frame_cache_instances += 1;
#endif
cache_frame_c3478953d67232be94c6eea6c84437cc = MAKE_FUNCTION_FRAME(codeobj_c3478953d67232be94c6eea6c84437cc, module_youtube_dl$extractor$radiofrance, sizeof(void *)+sizeof(void *)+sizeof(void *)+sizeof(void *)+sizeof(void *)+sizeof(void *)+sizeof(void *)+sizeof(void *)+sizeof(void *)+sizeof(void *));
#if _DEBUG_REFCOUNTS
} else {
count_hit_frame_cache_instances += 1;
#endif
}
assert(cache_frame_c3478953d67232be94c6eea6c84437cc->m_type_description == NULL);
frame_c3478953d67232be94c6eea6c84437cc = cache_frame_c3478953d67232be94c6eea6c84437cc;
// Push the new frame as the currently active one.
pushFrameStack(frame_c3478953d67232be94c6eea6c84437cc);
// Mark the frame object as in use, ref count 1 will be up for reuse.
assert(Py_REFCNT(frame_c3478953d67232be94c6eea6c84437cc) == 2); // Frame stack
// Framed code:
{
PyObject *tmp_assign_source_1;
PyObject *tmp_called_name_1;
PyObject *tmp_expression_name_1;
PyObject *tmp_mvar_value_1;
PyObject *tmp_args_element_name_1;
PyObject *tmp_expression_name_2;
PyObject *tmp_args_element_name_2;
tmp_mvar_value_1 = GET_STRING_DICT_VALUE(moduledict_youtube_dl$extractor$radiofrance, (Nuitka_StringObject *)const_str_plain_re);
if (unlikely(tmp_mvar_value_1 == NULL)) {
tmp_mvar_value_1 = GET_STRING_DICT_VALUE(dict_builtin, (Nuitka_StringObject *)const_str_plain_re);
}
if (tmp_mvar_value_1 == NULL) {
exception_type = PyExc_NameError;
Py_INCREF(exception_type);
exception_value = UNSTREAM_STRING(&constant_bin[ 2114 ], 24, 0);
exception_tb = NULL;
NORMALIZE_EXCEPTION(&exception_type, &exception_value, &exception_tb);
CHAIN_EXCEPTION(exception_value);
exception_lineno = 26;
type_description_1 = "oooooooooo";
goto frame_exception_exit_1;
}
tmp_expression_name_1 = tmp_mvar_value_1;
tmp_called_name_1 = LOOKUP_ATTRIBUTE(tmp_expression_name_1, const_str_plain_match);
if (tmp_called_name_1 == NULL) {
assert(ERROR_OCCURRED());
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb);
exception_lineno = 26;
type_description_1 = "oooooooooo";
goto frame_exception_exit_1;
}
CHECK_OBJECT(par_self);
tmp_expression_name_2 = par_self;
tmp_args_element_name_1 = LOOKUP_ATTRIBUTE(tmp_expression_name_2, const_str_plain__VALID_URL);
if (tmp_args_element_name_1 == NULL) {
assert(ERROR_OCCURRED());
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb);
Py_DECREF(tmp_called_name_1);
exception_lineno = 26;
type_description_1 = "oooooooooo";
goto frame_exception_exit_1;
}
CHECK_OBJECT(par_url);
tmp_args_element_name_2 = par_url;
frame_c3478953d67232be94c6eea6c84437cc->m_frame.f_lineno = 26;
{
PyObject *call_args[] = {tmp_args_element_name_1, tmp_args_element_name_2};
tmp_assign_source_1 = CALL_FUNCTION_WITH_ARGS2(tmp_called_name_1, call_args);
}
Py_DECREF(tmp_called_name_1);
Py_DECREF(tmp_args_element_name_1);
if (tmp_assign_source_1 == NULL) {
assert(ERROR_OCCURRED());
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb);
exception_lineno = 26;
type_description_1 = "oooooooooo";
goto frame_exception_exit_1;
}
assert(var_m == NULL);
var_m = tmp_assign_source_1;
}
{
PyObject *tmp_assign_source_2;
PyObject *tmp_called_instance_1;
CHECK_OBJECT(var_m);
tmp_called_instance_1 = var_m;
frame_c3478953d67232be94c6eea6c84437cc->m_frame.f_lineno = 27;
tmp_assign_source_2 = CALL_METHOD_WITH_ARGS1(tmp_called_instance_1, const_str_plain_group, &PyTuple_GET_ITEM(const_tuple_str_plain_id_tuple, 0));
if (tmp_assign_source_2 == NULL) {
assert(ERROR_OCCURRED());
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb);
exception_lineno = 27;
type_description_1 = "oooooooooo";
goto frame_exception_exit_1;
}
assert(var_video_id == NULL);
var_video_id = tmp_assign_source_2;
}
{
PyObject *tmp_assign_source_3;
PyObject *tmp_called_instance_2;
PyObject *tmp_args_element_name_3;
PyObject *tmp_args_element_name_4;
CHECK_OBJECT(par_self);
tmp_called_instance_2 = par_self;
CHECK_OBJECT(par_url);
tmp_args_element_name_3 = par_url;
CHECK_OBJECT(var_video_id);
tmp_args_element_name_4 = var_video_id;
frame_c3478953d67232be94c6eea6c84437cc->m_frame.f_lineno = 29;
{
PyObject *call_args[] = {tmp_args_element_name_3, tmp_args_element_name_4};
tmp_assign_source_3 = CALL_METHOD_WITH_ARGS2(tmp_called_instance_2, const_str_plain__download_webpage, call_args);
}
if (tmp_assign_source_3 == NULL) {
assert(ERROR_OCCURRED());
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb);
exception_lineno = 29;
type_description_1 = "oooooooooo";
goto frame_exception_exit_1;
}
assert(var_webpage == NULL);
var_webpage = tmp_assign_source_3;
}
{
PyObject *tmp_assign_source_4;
PyObject *tmp_called_instance_3;
PyObject *tmp_args_element_name_5;
PyObject *tmp_args_element_name_6;
PyObject *tmp_args_element_name_7;
CHECK_OBJECT(par_self);
tmp_called_instance_3 = par_self;
tmp_args_element_name_5 = const_str_digest_aff7368d18767408466ff2f5f62f24a5;
CHECK_OBJECT(var_webpage);
tmp_args_element_name_6 = var_webpage;
tmp_args_element_name_7 = const_str_plain_title;
frame_c3478953d67232be94c6eea6c84437cc->m_frame.f_lineno = 30;
{
PyObject *call_args[] = {tmp_args_element_name_5, tmp_args_element_name_6, tmp_args_element_name_7};
tmp_assign_source_4 = CALL_METHOD_WITH_ARGS3(tmp_called_instance_3, const_str_plain__html_search_regex, call_args);
}
if (tmp_assign_source_4 == NULL) {
assert(ERROR_OCCURRED());
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb);
exception_lineno = 30;
type_description_1 = "oooooooooo";
goto frame_exception_exit_1;
}
assert(var_title == NULL);
var_title = tmp_assign_source_4;
}
{
PyObject *tmp_assign_source_5;
PyObject *tmp_called_name_2;
PyObject *tmp_expression_name_3;
PyObject *tmp_args_name_1;
PyObject *tmp_tuple_element_1;
PyObject *tmp_kw_name_1;
CHECK_OBJECT(par_self);
tmp_expression_name_3 = par_self;
tmp_called_name_2 = LOOKUP_ATTRIBUTE(tmp_expression_name_3, const_str_plain__html_search_regex);
if (tmp_called_name_2 == NULL) {
assert(ERROR_OCCURRED());
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb);
exception_lineno = 31;
type_description_1 = "oooooooooo";
goto frame_exception_exit_1;
}
tmp_tuple_element_1 = const_str_digest_47ed159e51ea9844d842d6eddb144045;
tmp_args_name_1 = PyTuple_New(3);
Py_INCREF(tmp_tuple_element_1);
PyTuple_SET_ITEM(tmp_args_name_1, 0, tmp_tuple_element_1);
CHECK_OBJECT(var_webpage);
tmp_tuple_element_1 = var_webpage;
Py_INCREF(tmp_tuple_element_1);
PyTuple_SET_ITEM(tmp_args_name_1, 1, tmp_tuple_element_1);
tmp_tuple_element_1 = const_str_plain_description;
Py_INCREF(tmp_tuple_element_1);
PyTuple_SET_ITEM(tmp_args_name_1, 2, tmp_tuple_element_1);
tmp_kw_name_1 = PyDict_Copy(const_dict_f95321192b139e241e1ec13397bf5b8f);
frame_c3478953d67232be94c6eea6c84437cc->m_frame.f_lineno = 31;
tmp_assign_source_5 = CALL_FUNCTION(tmp_called_name_2, tmp_args_name_1, tmp_kw_name_1);
Py_DECREF(tmp_called_name_2);
Py_DECREF(tmp_args_name_1);
Py_DECREF(tmp_kw_name_1);
if (tmp_assign_source_5 == NULL) {
assert(ERROR_OCCURRED());
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb);
exception_lineno = 31;
type_description_1 = "oooooooooo";
goto frame_exception_exit_1;
}
assert(var_description == NULL);
var_description = tmp_assign_source_5;
}
{
PyObject *tmp_assign_source_6;
PyObject *tmp_called_name_3;
PyObject *tmp_expression_name_4;
PyObject *tmp_args_name_2;
PyObject *tmp_tuple_element_2;
PyObject *tmp_kw_name_2;
CHECK_OBJECT(par_self);
tmp_expression_name_4 = par_self;
tmp_called_name_3 = LOOKUP_ATTRIBUTE(tmp_expression_name_4, const_str_plain__html_search_regex);
if (tmp_called_name_3 == NULL) {
assert(ERROR_OCCURRED());
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb);
exception_lineno = 34;
type_description_1 = "oooooooooo";
goto frame_exception_exit_1;
}
tmp_tuple_element_2 = const_str_digest_b4d487732de3996db51afbdd54ed8ac5;
tmp_args_name_2 = PyTuple_New(3);
Py_INCREF(tmp_tuple_element_2);
PyTuple_SET_ITEM(tmp_args_name_2, 0, tmp_tuple_element_2);
CHECK_OBJECT(var_webpage);
tmp_tuple_element_2 = var_webpage;
Py_INCREF(tmp_tuple_element_2);
PyTuple_SET_ITEM(tmp_args_name_2, 1, tmp_tuple_element_2);
tmp_tuple_element_2 = const_str_plain_uploader;
Py_INCREF(tmp_tuple_element_2);
PyTuple_SET_ITEM(tmp_args_name_2, 2, tmp_tuple_element_2);
tmp_kw_name_2 = PyDict_Copy(const_dict_f95321192b139e241e1ec13397bf5b8f);
frame_c3478953d67232be94c6eea6c84437cc->m_frame.f_lineno = 34;
tmp_assign_source_6 = CALL_FUNCTION(tmp_called_name_3, tmp_args_name_2, tmp_kw_name_2);
Py_DECREF(tmp_called_name_3);
Py_DECREF(tmp_args_name_2);
Py_DECREF(tmp_kw_name_2);
if (tmp_assign_source_6 == NULL) {
assert(ERROR_OCCURRED());
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb);
exception_lineno = 34;
type_description_1 = "oooooooooo";
goto frame_exception_exit_1;
}
assert(var_uploader == NULL);
var_uploader = tmp_assign_source_6;
}
{
PyObject *tmp_assign_source_7;
PyObject *tmp_called_instance_4;
PyObject *tmp_args_element_name_8;
PyObject *tmp_args_element_name_9;
PyObject *tmp_args_element_name_10;
CHECK_OBJECT(par_self);
tmp_called_instance_4 = par_self;
tmp_args_element_name_8 = const_str_digest_e1a3eb1c6621fe85d264e3ab5e2d4d35;
CHECK_OBJECT(var_webpage);
tmp_args_element_name_9 = var_webpage;
tmp_args_element_name_10 = const_str_digest_b599f9248b84e36968577cf9d6fcc3c7;
frame_c3478953d67232be94c6eea6c84437cc->m_frame.f_lineno = 38;
{
PyObject *call_args[] = {tmp_args_element_name_8, tmp_args_element_name_9, tmp_args_element_name_10};
tmp_assign_source_7 = CALL_METHOD_WITH_ARGS3(tmp_called_instance_4, const_str_plain__html_search_regex, call_args);
}
if (tmp_assign_source_7 == NULL) {
assert(ERROR_OCCURRED());
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb);
exception_lineno = 38;
type_description_1 = "oooooooooo";
goto frame_exception_exit_1;
}
assert(var_formats_str == NULL);
var_formats_str = tmp_assign_source_7;
}
{
PyObject *tmp_assign_source_8;
// Tried code:
{
PyObject *tmp_assign_source_9;
PyObject *tmp_iter_arg_1;
PyObject *tmp_called_name_4;
PyObject *tmp_args_element_name_11;
PyObject *tmp_called_instance_5;
PyObject *tmp_mvar_value_2;
PyObject *tmp_args_element_name_12;
PyObject *tmp_args_element_name_13;
tmp_called_name_4 = (PyObject *)&PyEnum_Type;
tmp_mvar_value_2 = GET_STRING_DICT_VALUE(moduledict_youtube_dl$extractor$radiofrance, (Nuitka_StringObject *)const_str_plain_re);
if (unlikely(tmp_mvar_value_2 == NULL)) {
tmp_mvar_value_2 = GET_STRING_DICT_VALUE(dict_builtin, (Nuitka_StringObject *)const_str_plain_re);
}
if (tmp_mvar_value_2 == NULL) {
exception_type = PyExc_NameError;
Py_INCREF(exception_type);
exception_value = UNSTREAM_STRING(&constant_bin[ 2114 ], 24, 0);
exception_tb = NULL;
NORMALIZE_EXCEPTION(&exception_type, &exception_value, &exception_tb);
CHAIN_EXCEPTION(exception_value);
exception_lineno = 49;
type_description_1 = "oooooooooo";
goto try_except_handler_2;
}
tmp_called_instance_5 = tmp_mvar_value_2;
tmp_args_element_name_12 = const_str_digest_8b868b86762d31866eb330cdb0d2fc4b;
CHECK_OBJECT(var_formats_str);
tmp_args_element_name_13 = var_formats_str;
frame_c3478953d67232be94c6eea6c84437cc->m_frame.f_lineno = 49;
{
PyObject *call_args[] = {tmp_args_element_name_12, tmp_args_element_name_13};
tmp_args_element_name_11 = CALL_METHOD_WITH_ARGS2(tmp_called_instance_5, const_str_plain_findall, call_args);
}
if (tmp_args_element_name_11 == NULL) {
assert(ERROR_OCCURRED());
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb);
exception_lineno = 49;
type_description_1 = "oooooooooo";
goto try_except_handler_2;
}
frame_c3478953d67232be94c6eea6c84437cc->m_frame.f_lineno = 49;
tmp_iter_arg_1 = CALL_FUNCTION_WITH_SINGLE_ARG(tmp_called_name_4, tmp_args_element_name_11);
Py_DECREF(tmp_args_element_name_11);
if (tmp_iter_arg_1 == NULL) {
assert(ERROR_OCCURRED());
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb);
exception_lineno = 49;
type_description_1 = "oooooooooo";
goto try_except_handler_2;
}
tmp_assign_source_9 = MAKE_ITERATOR(tmp_iter_arg_1);
Py_DECREF(tmp_iter_arg_1);
if (tmp_assign_source_9 == NULL) {
assert(ERROR_OCCURRED());
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb);
exception_lineno = 42;
type_description_1 = "oooooooooo";
goto try_except_handler_2;
}
assert(tmp_listcomp_1__$0 == NULL);
tmp_listcomp_1__$0 = tmp_assign_source_9;
}
{
PyObject *tmp_assign_source_10;
tmp_assign_source_10 = PyList_New(0);
assert(tmp_listcomp_1__contraction == NULL);
tmp_listcomp_1__contraction = tmp_assign_source_10;
}
if (isFrameUnusable(cache_frame_477238978825bceb9f86d913fd7338ca_2)) {
Py_XDECREF(cache_frame_477238978825bceb9f86d913fd7338ca_2);
#if _DEBUG_REFCOUNTS
if (cache_frame_477238978825bceb9f86d913fd7338ca_2 == NULL) {
count_active_frame_cache_instances += 1;
} else {
count_released_frame_cache_instances += 1;
}
count_allocated_frame_cache_instances += 1;
#endif
cache_frame_477238978825bceb9f86d913fd7338ca_2 = MAKE_FUNCTION_FRAME(codeobj_477238978825bceb9f86d913fd7338ca, module_youtube_dl$extractor$radiofrance, sizeof(void *)+sizeof(void *));
#if _DEBUG_REFCOUNTS
} else {
count_hit_frame_cache_instances += 1;
#endif
}
assert(cache_frame_477238978825bceb9f86d913fd7338ca_2->m_type_description == NULL);
frame_477238978825bceb9f86d913fd7338ca_2 = cache_frame_477238978825bceb9f86d913fd7338ca_2;
// Push the new frame as the currently active one.
pushFrameStack(frame_477238978825bceb9f86d913fd7338ca_2);
// Mark the frame object as in use, ref count 1 will be up for reuse.
assert(Py_REFCNT(frame_477238978825bceb9f86d913fd7338ca_2) == 2); // Frame stack
// Framed code:
// Tried code:
loop_start_1:;
{
PyObject *tmp_next_source_1;
PyObject *tmp_assign_source_11;
CHECK_OBJECT(tmp_listcomp_1__$0);
tmp_next_source_1 = tmp_listcomp_1__$0;
tmp_assign_source_11 = ITERATOR_NEXT(tmp_next_source_1);
if (tmp_assign_source_11 == NULL) {
if (CHECK_AND_CLEAR_STOP_ITERATION_OCCURRED()) {
goto loop_end_1;
} else {
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb);
type_description_2 = "oo";
exception_lineno = 42;
goto try_except_handler_3;
}
}
{
PyObject *old = tmp_listcomp_1__iter_value_0;
tmp_listcomp_1__iter_value_0 = tmp_assign_source_11;
Py_XDECREF(old);
}
}
// Tried code:
{
PyObject *tmp_assign_source_12;
PyObject *tmp_iter_arg_2;
CHECK_OBJECT(tmp_listcomp_1__iter_value_0);
tmp_iter_arg_2 = tmp_listcomp_1__iter_value_0;
tmp_assign_source_12 = MAKE_UNPACK_ITERATOR(tmp_iter_arg_2);
if (tmp_assign_source_12 == NULL) {
assert(ERROR_OCCURRED());
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb);
exception_lineno = 42;
type_description_2 = "oo";
goto try_except_handler_4;
}
{
PyObject *old = tmp_listcomp$tuple_unpack_1__source_iter;
tmp_listcomp$tuple_unpack_1__source_iter = tmp_assign_source_12;
Py_XDECREF(old);
}
}
// Tried code:
{
PyObject *tmp_assign_source_13;
PyObject *tmp_unpack_1;
CHECK_OBJECT(tmp_listcomp$tuple_unpack_1__source_iter);
tmp_unpack_1 = tmp_listcomp$tuple_unpack_1__source_iter;
tmp_assign_source_13 = UNPACK_NEXT(tmp_unpack_1, 0, 2);
if (tmp_assign_source_13 == NULL) {
if (!ERROR_OCCURRED()) {
exception_type = PyExc_StopIteration;
Py_INCREF(exception_type);
exception_value = NULL;
exception_tb = NULL;
} else {
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb);
}
type_description_2 = "oo";
exception_lineno = 42;
goto try_except_handler_5;
}
{
PyObject *old = tmp_listcomp$tuple_unpack_1__element_1;
tmp_listcomp$tuple_unpack_1__element_1 = tmp_assign_source_13;
Py_XDECREF(old);
}
}
{
PyObject *tmp_assign_source_14;
PyObject *tmp_unpack_2;
CHECK_OBJECT(tmp_listcomp$tuple_unpack_1__source_iter);
tmp_unpack_2 = tmp_listcomp$tuple_unpack_1__source_iter;
tmp_assign_source_14 = UNPACK_NEXT(tmp_unpack_2, 1, 2);
if (tmp_assign_source_14 == NULL) {
if (!ERROR_OCCURRED()) {
exception_type = PyExc_StopIteration;
Py_INCREF(exception_type);
exception_value = NULL;
exception_tb = NULL;
} else {
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb);
}
type_description_2 = "oo";
exception_lineno = 42;
goto try_except_handler_5;
}
{
PyObject *old = tmp_listcomp$tuple_unpack_1__element_2;
tmp_listcomp$tuple_unpack_1__element_2 = tmp_assign_source_14;
Py_XDECREF(old);
}
}
{
PyObject *tmp_iterator_name_1;
CHECK_OBJECT(tmp_listcomp$tuple_unpack_1__source_iter);
tmp_iterator_name_1 = tmp_listcomp$tuple_unpack_1__source_iter;
// Check if iterator has left-over elements.
CHECK_OBJECT(tmp_iterator_name_1); assert(HAS_ITERNEXT(tmp_iterator_name_1));
tmp_iterator_attempt = (*Py_TYPE(tmp_iterator_name_1)->tp_iternext)(tmp_iterator_name_1);
if (likely(tmp_iterator_attempt == NULL)) {
PyObject *error = GET_ERROR_OCCURRED();
if (error != NULL) {
if (EXCEPTION_MATCH_BOOL_SINGLE(error, PyExc_StopIteration)) {
CLEAR_ERROR_OCCURRED();
} else {
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb);
type_description_2 = "oo";
exception_lineno = 42;
goto try_except_handler_5;
}
}
} else {
Py_DECREF(tmp_iterator_attempt);
exception_type = PyExc_ValueError;
Py_INCREF(PyExc_ValueError);
exception_value = const_str_digest_fcf040720b88d60da4ce975010c44a3a;
Py_INCREF(exception_value);
exception_tb = NULL;
type_description_2 = "oo";
exception_lineno = 42;
goto try_except_handler_5;
}
}
goto try_end_1;
// Exception handler code:
try_except_handler_5:;
exception_keeper_type_1 = exception_type;
exception_keeper_value_1 = exception_value;
exception_keeper_tb_1 = exception_tb;
exception_keeper_lineno_1 = exception_lineno;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
exception_lineno = 0;
CHECK_OBJECT(tmp_listcomp$tuple_unpack_1__source_iter);
Py_DECREF(tmp_listcomp$tuple_unpack_1__source_iter);
tmp_listcomp$tuple_unpack_1__source_iter = NULL;
// Re-raise.
exception_type = exception_keeper_type_1;
exception_value = exception_keeper_value_1;
exception_tb = exception_keeper_tb_1;
exception_lineno = exception_keeper_lineno_1;
goto try_except_handler_4;
// End of try:
try_end_1:;
goto try_end_2;
// Exception handler code:
try_except_handler_4:;
exception_keeper_type_2 = exception_type;
exception_keeper_value_2 = exception_value;
exception_keeper_tb_2 = exception_tb;
exception_keeper_lineno_2 = exception_lineno;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
exception_lineno = 0;
Py_XDECREF(tmp_listcomp$tuple_unpack_1__element_1);
tmp_listcomp$tuple_unpack_1__element_1 = NULL;
Py_XDECREF(tmp_listcomp$tuple_unpack_1__element_2);
tmp_listcomp$tuple_unpack_1__element_2 = NULL;
// Re-raise.
exception_type = exception_keeper_type_2;
exception_value = exception_keeper_value_2;
exception_tb = exception_keeper_tb_2;
exception_lineno = exception_keeper_lineno_2;
goto try_except_handler_3;
// End of try:
try_end_2:;
CHECK_OBJECT(tmp_listcomp$tuple_unpack_1__source_iter);
Py_DECREF(tmp_listcomp$tuple_unpack_1__source_iter);
tmp_listcomp$tuple_unpack_1__source_iter = NULL;
{
PyObject *tmp_assign_source_15;
CHECK_OBJECT(tmp_listcomp$tuple_unpack_1__element_1);
tmp_assign_source_15 = tmp_listcomp$tuple_unpack_1__element_1;
{
PyObject *old = outline_0_var_i;
outline_0_var_i = tmp_assign_source_15;
Py_INCREF(outline_0_var_i);
Py_XDECREF(old);
}
}
Py_XDECREF(tmp_listcomp$tuple_unpack_1__element_1);
tmp_listcomp$tuple_unpack_1__element_1 = NULL;
{
PyObject *tmp_assign_source_16;
CHECK_OBJECT(tmp_listcomp$tuple_unpack_1__element_2);
tmp_assign_source_16 = tmp_listcomp$tuple_unpack_1__element_2;
{
PyObject *old = outline_0_var_fm;
outline_0_var_fm = tmp_assign_source_16;
Py_INCREF(outline_0_var_fm);
Py_XDECREF(old);
}
}
Py_XDECREF(tmp_listcomp$tuple_unpack_1__element_2);
tmp_listcomp$tuple_unpack_1__element_2 = NULL;
{
PyObject *tmp_append_list_1;
PyObject *tmp_append_value_1;
PyObject *tmp_dict_key_1;
PyObject *tmp_dict_value_1;
PyObject *tmp_expression_name_5;
PyObject *tmp_subscript_name_1;
PyObject *tmp_dict_key_2;
PyObject *tmp_dict_value_2;
PyObject *tmp_expression_name_6;
PyObject *tmp_subscript_name_2;
PyObject *tmp_dict_key_3;
PyObject *tmp_dict_value_3;
PyObject *tmp_dict_key_4;
PyObject *tmp_dict_value_4;
CHECK_OBJECT(tmp_listcomp_1__contraction);
tmp_append_list_1 = tmp_listcomp_1__contraction;
tmp_dict_key_1 = const_str_plain_format_id;
CHECK_OBJECT(outline_0_var_fm);
tmp_expression_name_5 = outline_0_var_fm;
tmp_subscript_name_1 = const_int_0;
tmp_dict_value_1 = LOOKUP_SUBSCRIPT_CONST(tmp_expression_name_5, tmp_subscript_name_1, 0);
if (tmp_dict_value_1 == NULL) {
assert(ERROR_OCCURRED());
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb);
exception_lineno = 43;
type_description_2 = "oo";
goto try_except_handler_3;
}
tmp_append_value_1 = _PyDict_NewPresized( 4 );
tmp_res = PyDict_SetItem(tmp_append_value_1, tmp_dict_key_1, tmp_dict_value_1);
Py_DECREF(tmp_dict_value_1);
assert(!(tmp_res != 0));
tmp_dict_key_2 = const_str_plain_url;
CHECK_OBJECT(outline_0_var_fm);
tmp_expression_name_6 = outline_0_var_fm;
tmp_subscript_name_2 = const_int_pos_1;
tmp_dict_value_2 = LOOKUP_SUBSCRIPT_CONST(tmp_expression_name_6, tmp_subscript_name_2, 1);
if (tmp_dict_value_2 == NULL) {
assert(ERROR_OCCURRED());
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb);
Py_DECREF(tmp_append_value_1);
exception_lineno = 44;
type_description_2 = "oo";
goto try_except_handler_3;
}
tmp_res = PyDict_SetItem(tmp_append_value_1, tmp_dict_key_2, tmp_dict_value_2);
Py_DECREF(tmp_dict_value_2);
assert(!(tmp_res != 0));
tmp_dict_key_3 = const_str_plain_vcodec;
tmp_dict_value_3 = const_str_plain_none;
tmp_res = PyDict_SetItem(tmp_append_value_1, tmp_dict_key_3, tmp_dict_value_3);
assert(!(tmp_res != 0));
tmp_dict_key_4 = const_str_plain_preference;
CHECK_OBJECT(outline_0_var_i);
tmp_dict_value_4 = outline_0_var_i;
tmp_res = PyDict_SetItem(tmp_append_value_1, tmp_dict_key_4, tmp_dict_value_4);
assert(!(tmp_res != 0));
assert(PyList_Check(tmp_append_list_1));
tmp_res = PyList_Append(tmp_append_list_1, tmp_append_value_1);
Py_DECREF(tmp_append_value_1);
if (tmp_res == -1) {
assert(ERROR_OCCURRED());
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb);
exception_lineno = 42;
type_description_2 = "oo";
goto try_except_handler_3;
}
}
if (CONSIDER_THREADING() == false) {
assert(ERROR_OCCURRED());
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb);
exception_lineno = 42;
type_description_2 = "oo";
goto try_except_handler_3;
}
goto loop_start_1;
loop_end_1:;
CHECK_OBJECT(tmp_listcomp_1__contraction);
tmp_assign_source_8 = tmp_listcomp_1__contraction;
Py_INCREF(tmp_assign_source_8);
goto try_return_handler_3;
NUITKA_CANNOT_GET_HERE("tried codes exits in all cases");
return NULL;
// Return handler code:
try_return_handler_3:;
CHECK_OBJECT(tmp_listcomp_1__$0);
Py_DECREF(tmp_listcomp_1__$0);
tmp_listcomp_1__$0 = NULL;
CHECK_OBJECT(tmp_listcomp_1__contraction);
Py_DECREF(tmp_listcomp_1__contraction);
tmp_listcomp_1__contraction = NULL;
Py_XDECREF(tmp_listcomp_1__iter_value_0);
tmp_listcomp_1__iter_value_0 = NULL;
goto frame_return_exit_1;
// Exception handler code:
try_except_handler_3:;
exception_keeper_type_3 = exception_type;
exception_keeper_value_3 = exception_value;
exception_keeper_tb_3 = exception_tb;
exception_keeper_lineno_3 = exception_lineno;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
exception_lineno = 0;
CHECK_OBJECT(tmp_listcomp_1__$0);
Py_DECREF(tmp_listcomp_1__$0);
tmp_listcomp_1__$0 = NULL;
CHECK_OBJECT(tmp_listcomp_1__contraction);
Py_DECREF(tmp_listcomp_1__contraction);
tmp_listcomp_1__contraction = NULL;
Py_XDECREF(tmp_listcomp_1__iter_value_0);
tmp_listcomp_1__iter_value_0 = NULL;
// Re-raise.
exception_type = exception_keeper_type_3;
exception_value = exception_keeper_value_3;
exception_tb = exception_keeper_tb_3;
exception_lineno = exception_keeper_lineno_3;
goto frame_exception_exit_2;
// End of try:
#if 0
RESTORE_FRAME_EXCEPTION(frame_477238978825bceb9f86d913fd7338ca_2);
#endif
// Put the previous frame back on top.
popFrameStack();
goto frame_no_exception_1;
frame_return_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION(frame_477238978825bceb9f86d913fd7338ca_2);
#endif
// Put the previous frame back on top.
popFrameStack();
goto try_return_handler_2;
frame_exception_exit_2:;
#if 0
RESTORE_FRAME_EXCEPTION(frame_477238978825bceb9f86d913fd7338ca_2);
#endif
if (exception_tb == NULL) {
exception_tb = MAKE_TRACEBACK(frame_477238978825bceb9f86d913fd7338ca_2, exception_lineno);
} else if (exception_tb->tb_frame != &frame_477238978825bceb9f86d913fd7338ca_2->m_frame) {
exception_tb = ADD_TRACEBACK(exception_tb, frame_477238978825bceb9f86d913fd7338ca_2, exception_lineno);
}
// Attachs locals to frame if any.
Nuitka_Frame_AttachLocals(
frame_477238978825bceb9f86d913fd7338ca_2,
type_description_2,
outline_0_var_i,
outline_0_var_fm
);
// Release cached frame.
if (frame_477238978825bceb9f86d913fd7338ca_2 == cache_frame_477238978825bceb9f86d913fd7338ca_2) {
#if _DEBUG_REFCOUNTS
count_active_frame_cache_instances -= 1;
count_released_frame_cache_instances += 1;
#endif
Py_DECREF(frame_477238978825bceb9f86d913fd7338ca_2);
}
cache_frame_477238978825bceb9f86d913fd7338ca_2 = NULL;
assertFrameObject(frame_477238978825bceb9f86d913fd7338ca_2);
// Put the previous frame back on top.
popFrameStack();
// Return the error.
goto nested_frame_exit_1;
frame_no_exception_1:;
goto skip_nested_handling_1;
nested_frame_exit_1:;
type_description_1 = "oooooooooo";
goto try_except_handler_2;
skip_nested_handling_1:;
NUITKA_CANNOT_GET_HERE("tried codes exits in all cases");
return NULL;
// Return handler code:
try_return_handler_2:;
Py_XDECREF(outline_0_var_i);
outline_0_var_i = NULL;
Py_XDECREF(outline_0_var_fm);
outline_0_var_fm = NULL;
goto outline_result_1;
// Exception handler code:
try_except_handler_2:;
exception_keeper_type_4 = exception_type;
exception_keeper_value_4 = exception_value;
exception_keeper_tb_4 = exception_tb;
exception_keeper_lineno_4 = exception_lineno;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
exception_lineno = 0;
Py_XDECREF(outline_0_var_i);
outline_0_var_i = NULL;
Py_XDECREF(outline_0_var_fm);
outline_0_var_fm = NULL;
// Re-raise.
exception_type = exception_keeper_type_4;
exception_value = exception_keeper_value_4;
exception_tb = exception_keeper_tb_4;
exception_lineno = exception_keeper_lineno_4;
goto outline_exception_1;
// End of try:
NUITKA_CANNOT_GET_HERE("Return statement must have exited already.");
return NULL;
outline_exception_1:;
exception_lineno = 42;
goto frame_exception_exit_1;
outline_result_1:;
assert(var_formats == NULL);
var_formats = tmp_assign_source_8;
}
{
PyObject *tmp_called_instance_6;
PyObject *tmp_call_result_1;
PyObject *tmp_args_element_name_14;
CHECK_OBJECT(par_self);
tmp_called_instance_6 = par_self;
CHECK_OBJECT(var_formats);
tmp_args_element_name_14 = var_formats;
frame_c3478953d67232be94c6eea6c84437cc->m_frame.f_lineno = 51;
{
PyObject *call_args[] = {tmp_args_element_name_14};
tmp_call_result_1 = CALL_METHOD_WITH_ARGS1(tmp_called_instance_6, const_str_plain__sort_formats, call_args);
}
if (tmp_call_result_1 == NULL) {
assert(ERROR_OCCURRED());
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb);
exception_lineno = 51;
type_description_1 = "oooooooooo";
goto frame_exception_exit_1;
}
Py_DECREF(tmp_call_result_1);
}
#if 0
RESTORE_FRAME_EXCEPTION(frame_c3478953d67232be94c6eea6c84437cc);
#endif
// Put the previous frame back on top.
popFrameStack();
goto frame_no_exception_2;
frame_exception_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION(frame_c3478953d67232be94c6eea6c84437cc);
#endif
if (exception_tb == NULL) {
exception_tb = MAKE_TRACEBACK(frame_c3478953d67232be94c6eea6c84437cc, exception_lineno);
} else if (exception_tb->tb_frame != &frame_c3478953d67232be94c6eea6c84437cc->m_frame) {
exception_tb = ADD_TRACEBACK(exception_tb, frame_c3478953d67232be94c6eea6c84437cc, exception_lineno);
}
// Attachs locals to frame if any.
Nuitka_Frame_AttachLocals(
frame_c3478953d67232be94c6eea6c84437cc,
type_description_1,
par_self,
par_url,
var_m,
var_video_id,
var_webpage,
var_title,
var_description,
var_uploader,
var_formats_str,
var_formats
);
// Release cached frame.
if (frame_c3478953d67232be94c6eea6c84437cc == cache_frame_c3478953d67232be94c6eea6c84437cc) {
#if _DEBUG_REFCOUNTS
count_active_frame_cache_instances -= 1;
count_released_frame_cache_instances += 1;
#endif
Py_DECREF(frame_c3478953d67232be94c6eea6c84437cc);
}
cache_frame_c3478953d67232be94c6eea6c84437cc = NULL;
assertFrameObject(frame_c3478953d67232be94c6eea6c84437cc);
// Put the previous frame back on top.
popFrameStack();
// Return the error.
goto try_except_handler_1;
frame_no_exception_2:;
{
PyObject *tmp_dict_key_5;
PyObject *tmp_dict_value_5;
PyObject *tmp_dict_key_6;
PyObject *tmp_dict_value_6;
PyObject *tmp_dict_key_7;
PyObject *tmp_dict_value_7;
PyObject *tmp_dict_key_8;
PyObject *tmp_dict_value_8;
PyObject *tmp_dict_key_9;
PyObject *tmp_dict_value_9;
tmp_dict_key_5 = const_str_plain_id;
CHECK_OBJECT(var_video_id);
tmp_dict_value_5 = var_video_id;
tmp_return_value = _PyDict_NewPresized( 5 );
tmp_res = PyDict_SetItem(tmp_return_value, tmp_dict_key_5, tmp_dict_value_5);
assert(!(tmp_res != 0));
tmp_dict_key_6 = const_str_plain_title;
CHECK_OBJECT(var_title);
tmp_dict_value_6 = var_title;
tmp_res = PyDict_SetItem(tmp_return_value, tmp_dict_key_6, tmp_dict_value_6);
assert(!(tmp_res != 0));
tmp_dict_key_7 = const_str_plain_formats;
CHECK_OBJECT(var_formats);
tmp_dict_value_7 = var_formats;
tmp_res = PyDict_SetItem(tmp_return_value, tmp_dict_key_7, tmp_dict_value_7);
assert(!(tmp_res != 0));
tmp_dict_key_8 = const_str_plain_description;
CHECK_OBJECT(var_description);
tmp_dict_value_8 = var_description;
tmp_res = PyDict_SetItem(tmp_return_value, tmp_dict_key_8, tmp_dict_value_8);
assert(!(tmp_res != 0));
tmp_dict_key_9 = const_str_plain_uploader;
CHECK_OBJECT(var_uploader);
tmp_dict_value_9 = var_uploader;
tmp_res = PyDict_SetItem(tmp_return_value, tmp_dict_key_9, tmp_dict_value_9);
assert(!(tmp_res != 0));
goto try_return_handler_1;
}
NUITKA_CANNOT_GET_HERE("tried codes exits in all cases");
return NULL;
// Return handler code:
try_return_handler_1:;
CHECK_OBJECT(var_m);
Py_DECREF(var_m);
var_m = NULL;
CHECK_OBJECT(var_video_id);
Py_DECREF(var_video_id);
var_video_id = NULL;
CHECK_OBJECT(var_webpage);
Py_DECREF(var_webpage);
var_webpage = NULL;
CHECK_OBJECT(var_title);
Py_DECREF(var_title);
var_title = NULL;
CHECK_OBJECT(var_description);
Py_DECREF(var_description);
var_description = NULL;
CHECK_OBJECT(var_uploader);
Py_DECREF(var_uploader);
var_uploader = NULL;
CHECK_OBJECT(var_formats_str);
Py_DECREF(var_formats_str);
var_formats_str = NULL;
CHECK_OBJECT(var_formats);
Py_DECREF(var_formats);
var_formats = NULL;
goto function_return_exit;
// Exception handler code:
try_except_handler_1:;
exception_keeper_type_5 = exception_type;
exception_keeper_value_5 = exception_value;
exception_keeper_tb_5 = exception_tb;
exception_keeper_lineno_5 = exception_lineno;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
exception_lineno = 0;
Py_XDECREF(var_m);
var_m = NULL;
Py_XDECREF(var_video_id);
var_video_id = NULL;
Py_XDECREF(var_webpage);
var_webpage = NULL;
Py_XDECREF(var_title);
var_title = NULL;
Py_XDECREF(var_description);
var_description = NULL;
Py_XDECREF(var_uploader);
var_uploader = NULL;
Py_XDECREF(var_formats_str);
var_formats_str = NULL;
Py_XDECREF(var_formats);
var_formats = NULL;
// Re-raise.
exception_type = exception_keeper_type_5;
exception_value = exception_keeper_value_5;
exception_tb = exception_keeper_tb_5;
exception_lineno = exception_keeper_lineno_5;
goto function_exception_exit;
// End of try:
NUITKA_CANNOT_GET_HERE("Return statement must have exited already.");
return NULL;
function_exception_exit:
CHECK_OBJECT(par_self);
Py_DECREF(par_self);
CHECK_OBJECT(par_url);
Py_DECREF(par_url); assert(exception_type);
RESTORE_ERROR_OCCURRED(exception_type, exception_value, exception_tb);
return NULL;
function_return_exit:
// Function cleanup code if any.
CHECK_OBJECT(par_self);
Py_DECREF(par_self);
CHECK_OBJECT(par_url);
Py_DECREF(par_url);
// Actual function exit with return value, making sure we did not make
// the error status worse despite non-NULL return.
CHECK_OBJECT(tmp_return_value);
assert(had_error || !ERROR_OCCURRED());
return tmp_return_value;
}
static PyObject *MAKE_FUNCTION_youtube_dl$extractor$radiofrance$$$function_1__real_extract() {
struct Nuitka_FunctionObject *result = Nuitka_Function_New(
impl_youtube_dl$extractor$radiofrance$$$function_1__real_extract,
const_str_plain__real_extract,
#if PYTHON_VERSION >= 300
const_str_digest_ecf45255bf34f3c918bebd075ed4c8bc,
#endif
codeobj_c3478953d67232be94c6eea6c84437cc,
NULL,
#if PYTHON_VERSION >= 300
NULL,
NULL,
#endif
module_youtube_dl$extractor$radiofrance,
NULL,
0
);
return (PyObject *)result;
}
extern PyObject *const_str_plain___compiled__;
extern PyObject *const_str_plain___package__;
extern PyObject *const_str_empty;
#if PYTHON_VERSION >= 300
extern PyObject *const_str_dot;
extern PyObject *const_str_plain___loader__;
#endif
#if PYTHON_VERSION >= 340
extern PyObject *const_str_plain___spec__;
extern PyObject *const_str_plain__initializing;
extern PyObject *const_str_plain_submodule_search_locations;
#endif
extern void _initCompiledCellType();
extern void _initCompiledGeneratorType();
extern void _initCompiledFunctionType();
extern void _initCompiledMethodType();
extern void _initCompiledFrameType();
extern PyTypeObject Nuitka_Loader_Type;
#ifdef _NUITKA_PLUGIN_DILL_ENABLED
// Provide a way to create find a function via its C code and create it back
// in another process, useful for multiprocessing extensions like dill
function_impl_code functable_youtube_dl$extractor$radiofrance[] = {
impl_youtube_dl$extractor$radiofrance$$$function_1__real_extract,
NULL
};
static char const *_reduce_compiled_function_argnames[] = {
"func",
NULL
};
static PyObject *_reduce_compiled_function(PyObject *self, PyObject *args, PyObject *kwds) {
PyObject *func;
if (!PyArg_ParseTupleAndKeywords(args, kwds, "O:reduce_compiled_function", (char **)_reduce_compiled_function_argnames, &func, NULL)) {
return NULL;
}
if (Nuitka_Function_Check(func) == false) {
SET_CURRENT_EXCEPTION_TYPE0_STR(PyExc_TypeError, "not a compiled function");
return NULL;
}
struct Nuitka_FunctionObject *function = (struct Nuitka_FunctionObject *)func;
function_impl_code *current = functable_youtube_dl$extractor$radiofrance;
int offset = 0;
while (*current != NULL) {
if (*current == function->m_c_code) {
break;
}
current += 1;
offset += 1;
}
if (*current == NULL) {
SET_CURRENT_EXCEPTION_TYPE0_STR(PyExc_TypeError, "Cannot find compiled function in module.");
return NULL;
}
PyObject *code_object_desc = PyTuple_New(6);
PyTuple_SET_ITEM0(code_object_desc, 0, function->m_code_object->co_filename);
PyTuple_SET_ITEM0(code_object_desc, 1, function->m_code_object->co_name);
PyTuple_SET_ITEM(code_object_desc, 2, PyLong_FromLong(function->m_code_object->co_firstlineno));
PyTuple_SET_ITEM0(code_object_desc, 3, function->m_code_object->co_varnames);
PyTuple_SET_ITEM(code_object_desc, 4, PyLong_FromLong(function->m_code_object->co_argcount));
PyTuple_SET_ITEM(code_object_desc, 5, PyLong_FromLong(function->m_code_object->co_flags));
CHECK_OBJECT_DEEP(code_object_desc);
PyObject *result = PyTuple_New(4);
PyTuple_SET_ITEM(result, 0, PyLong_FromLong(offset));
PyTuple_SET_ITEM(result, 1, code_object_desc);
PyTuple_SET_ITEM0(result, 2, function->m_defaults);
PyTuple_SET_ITEM0(result, 3, function->m_doc != NULL ? function->m_doc : Py_None);
CHECK_OBJECT_DEEP(result);
return result;
}
static PyMethodDef _method_def_reduce_compiled_function = {"reduce_compiled_function", (PyCFunction)_reduce_compiled_function,
METH_VARARGS | METH_KEYWORDS, NULL};
static char const *_create_compiled_function_argnames[] = {
"func",
"code_object_desc",
"defaults",
"doc",
NULL
};
static PyObject *_create_compiled_function(PyObject *self, PyObject *args, PyObject *kwds) {
CHECK_OBJECT_DEEP(args);
PyObject *func;
PyObject *code_object_desc;
PyObject *defaults;
PyObject *doc;
if (!PyArg_ParseTupleAndKeywords(args, kwds, "OOOO:create_compiled_function", (char **)_create_compiled_function_argnames, &func, &code_object_desc, &defaults, &doc, NULL)) {
return NULL;
}
int offset = PyLong_AsLong(func);
if (offset == -1 && ERROR_OCCURRED()) {
return NULL;
}
if (offset > sizeof(functable_youtube_dl$extractor$radiofrance) || offset < 0) {
SET_CURRENT_EXCEPTION_TYPE0_STR(PyExc_TypeError, "Wrong offset for compiled function.");
return NULL;
}
PyObject *filename = PyTuple_GET_ITEM(code_object_desc, 0);
PyObject *function_name = PyTuple_GET_ITEM(code_object_desc, 1);
PyObject *line = PyTuple_GET_ITEM(code_object_desc, 2);
int line_int = PyLong_AsLong(line);
assert(!ERROR_OCCURRED());
PyObject *argnames = PyTuple_GET_ITEM(code_object_desc, 3);
PyObject *arg_count = PyTuple_GET_ITEM(code_object_desc, 4);
int arg_count_int = PyLong_AsLong(arg_count);
assert(!ERROR_OCCURRED());
PyObject *flags = PyTuple_GET_ITEM(code_object_desc, 5);
int flags_int = PyLong_AsLong(flags);
assert(!ERROR_OCCURRED());
PyCodeObject *code_object = MAKE_CODEOBJECT(
filename,
line_int,
flags_int,
function_name,
argnames,
arg_count_int,
0, // TODO: Missing kw_only_count
0 // TODO: Missing pos_only_count
);
// TODO: More stuff needed for Python3, best to re-order arguments of MAKE_CODEOBJECT.
struct Nuitka_FunctionObject *result = Nuitka_Function_New(
functable_youtube_dl$extractor$radiofrance[offset],
code_object->co_name,
#if PYTHON_VERSION >= 300
NULL, // TODO: Not transferring qualname yet
#endif
code_object,
defaults,
#if PYTHON_VERSION >= 300
NULL, // kwdefaults are done on the outside currently
NULL, // TODO: Not transferring annotations
#endif
module_youtube_dl$extractor$radiofrance,
doc,
0
);
return (PyObject *)result;
}
static PyMethodDef _method_def_create_compiled_function = {
"create_compiled_function",
(PyCFunction)_create_compiled_function,
METH_VARARGS | METH_KEYWORDS, NULL
};
#endif
// Internal entry point for module code.
PyObject *modulecode_youtube_dl$extractor$radiofrance(PyObject *module) {
module_youtube_dl$extractor$radiofrance = module;
#if defined(_NUITKA_EXE) || PYTHON_VERSION >= 300
static bool _init_done = false;
// Modules might be imported repeatedly, which is to be ignored.
if (_init_done) {
return module_youtube_dl$extractor$radiofrance;
} else {
_init_done = true;
}
#endif
#ifdef _NUITKA_MODULE
// In case of a stand alone extension module, need to call initialization
// the init here because that's the first and only time we are going to get
// called here.
// May have to activate constants blob.
#if defined(_NUITKA_CONSTANTS_FROM_RESOURCE)
loadConstantsResource();
#endif
// Initialize the constant values used.
_initBuiltinModule();
createGlobalConstants();
/* Initialize the compiled types of Nuitka. */
_initCompiledCellType();
_initCompiledGeneratorType();
_initCompiledFunctionType();
_initCompiledMethodType();
_initCompiledFrameType();
#if PYTHON_VERSION < 300
_initSlotCompare();
#endif
#if PYTHON_VERSION >= 270
_initSlotIternext();
#endif
patchBuiltinModule();
patchTypeComparison();
// Enable meta path based loader if not already done.
#ifdef _NUITKA_TRACE
PRINT_STRING("youtube_dl.extractor.radiofrance: Calling setupMetaPathBasedLoader().\n");
#endif
setupMetaPathBasedLoader();
#if PYTHON_VERSION >= 300
patchInspectModule();
#endif
#endif
/* The constants only used by this module are created now. */
#ifdef _NUITKA_TRACE
PRINT_STRING("youtube_dl.extractor.radiofrance: Calling createModuleConstants().\n");
#endif
createModuleConstants();
/* The code objects used by this module are created now. */
#ifdef _NUITKA_TRACE
PRINT_STRING("youtube_dl.extractor.radiofrance: Calling createModuleCodeObjects().\n");
#endif
createModuleCodeObjects();
// PRINT_STRING("in inityoutube_dl$extractor$radiofrance\n");
// Create the module object first. There are no methods initially, all are
// added dynamically in actual code only. Also no "__doc__" is initially
// set at this time, as it could not contain NUL characters this way, they
// are instead set in early module code. No "self" for modules, we have no
// use for it.
moduledict_youtube_dl$extractor$radiofrance = MODULE_DICT(module_youtube_dl$extractor$radiofrance);
#ifdef _NUITKA_PLUGIN_DILL_ENABLED
{
PyObject *function_tables = PyObject_GetAttrString((PyObject *)builtin_module, "compiled_function_tables");
if (function_tables == NULL)
{
DROP_ERROR_OCCURRED();
function_tables = PyDict_New();
}
PyObject_SetAttrString((PyObject *)builtin_module, "compiled_function_tables", function_tables);
PyObject *funcs = PyTuple_New(2);
PyTuple_SET_ITEM(funcs, 0, PyCFunction_New(&_method_def_reduce_compiled_function, NULL));
PyTuple_SET_ITEM(funcs, 1, PyCFunction_New(&_method_def_create_compiled_function, NULL));
PyDict_SetItemString(function_tables, module_full_name, funcs);
}
#endif
// Set "__compiled__" to what version information we have.
UPDATE_STRING_DICT0(
moduledict_youtube_dl$extractor$radiofrance,
(Nuitka_StringObject *)const_str_plain___compiled__,
Nuitka_dunder_compiled_value
);
// Update "__package__" value to what it ought to be.
{
#if 0
UPDATE_STRING_DICT0(
moduledict_youtube_dl$extractor$radiofrance,
(Nuitka_StringObject *)const_str_plain___package__,
const_str_empty
);
#elif 0
PyObject *module_name = GET_STRING_DICT_VALUE(moduledict_youtube_dl$extractor$radiofrance, (Nuitka_StringObject *)const_str_plain___name__);
UPDATE_STRING_DICT0(
moduledict_youtube_dl$extractor$radiofrance,
(Nuitka_StringObject *)const_str_plain___package__,
module_name
);
#else
#if PYTHON_VERSION < 300
PyObject *module_name = GET_STRING_DICT_VALUE(moduledict_youtube_dl$extractor$radiofrance, (Nuitka_StringObject *)const_str_plain___name__);
char const *module_name_cstr = PyString_AS_STRING(module_name);
char const *last_dot = strrchr(module_name_cstr, '.');
if (last_dot != NULL)
{
UPDATE_STRING_DICT1(
moduledict_youtube_dl$extractor$radiofrance,
(Nuitka_StringObject *)const_str_plain___package__,
PyString_FromStringAndSize(module_name_cstr, last_dot - module_name_cstr)
);
}
#else
PyObject *module_name = GET_STRING_DICT_VALUE(moduledict_youtube_dl$extractor$radiofrance, (Nuitka_StringObject *)const_str_plain___name__);
Py_ssize_t dot_index = PyUnicode_Find(module_name, const_str_dot, 0, PyUnicode_GetLength(module_name), -1);
if (dot_index != -1)
{
UPDATE_STRING_DICT1(
moduledict_youtube_dl$extractor$radiofrance,
(Nuitka_StringObject *)const_str_plain___package__,
PyUnicode_Substring(module_name, 0, dot_index)
);
}
#endif
#endif
}
CHECK_OBJECT(module_youtube_dl$extractor$radiofrance);
// For deep importing of a module we need to have "__builtins__", so we set
// it ourselves in the same way than CPython does. Note: This must be done
// before the frame object is allocated, or else it may fail.
if (GET_STRING_DICT_VALUE(moduledict_youtube_dl$extractor$radiofrance, (Nuitka_StringObject *)const_str_plain___builtins__) == NULL)
{
PyObject *value = (PyObject *)builtin_module;
// Check if main module, not a dict then but the module itself.
#if !defined(_NUITKA_EXE) || !0
value = PyModule_GetDict(value);
#endif
UPDATE_STRING_DICT0(moduledict_youtube_dl$extractor$radiofrance, (Nuitka_StringObject *)const_str_plain___builtins__, value);
}
#if PYTHON_VERSION >= 300
UPDATE_STRING_DICT0(moduledict_youtube_dl$extractor$radiofrance, (Nuitka_StringObject *)const_str_plain___loader__, (PyObject *)&Nuitka_Loader_Type);
#endif
#if PYTHON_VERSION >= 340
// Set the "__spec__" value
#if 0
// Main modules just get "None" as spec.
UPDATE_STRING_DICT0(moduledict_youtube_dl$extractor$radiofrance, (Nuitka_StringObject *)const_str_plain___spec__, Py_None);
#else
// Other modules get a "ModuleSpec" from the standard mechanism.
{
PyObject *bootstrap_module = PyImport_ImportModule("importlib._bootstrap");
CHECK_OBJECT(bootstrap_module);
PyObject *module_spec_class = PyObject_GetAttrString(bootstrap_module, "ModuleSpec");
Py_DECREF(bootstrap_module);
PyObject *args[] = {
GET_STRING_DICT_VALUE(moduledict_youtube_dl$extractor$radiofrance, (Nuitka_StringObject *)const_str_plain___name__),
(PyObject *)&Nuitka_Loader_Type
};
PyObject *spec_value = CALL_FUNCTION_WITH_ARGS2(
module_spec_class,
args
);
Py_DECREF(module_spec_class);
// We can assume this to never fail, or else we are in trouble anyway.
CHECK_OBJECT(spec_value);
// For packages set the submodule search locations as well, even if to empty
// list, so investigating code will consider it a package.
#if 0
SET_ATTRIBUTE(spec_value, const_str_plain_submodule_search_locations, PyList_New(0));
#endif
// Mark the execution in the "__spec__" value.
SET_ATTRIBUTE(spec_value, const_str_plain__initializing, Py_True);
UPDATE_STRING_DICT1(moduledict_youtube_dl$extractor$radiofrance, (Nuitka_StringObject *)const_str_plain___spec__, spec_value);
}
#endif
#endif
// Temp variables if any
PyObject *outline_0_var___class__ = NULL;
PyObject *tmp_class_creation_1__bases = NULL;
PyObject *tmp_class_creation_1__bases_orig = NULL;
PyObject *tmp_class_creation_1__class_decl_dict = NULL;
PyObject *tmp_class_creation_1__metaclass = NULL;
PyObject *tmp_class_creation_1__prepared = NULL;
struct Nuitka_FrameObject *frame_d5b0cd68f5e926863336e0a4b5c3cf04;
NUITKA_MAY_BE_UNUSED char const *type_description_1 = NULL;
bool tmp_result;
PyObject *exception_type = NULL;
PyObject *exception_value = NULL;
PyTracebackObject *exception_tb = NULL;
NUITKA_MAY_BE_UNUSED int exception_lineno = 0;
int tmp_res;
PyObject *tmp_dictdel_dict;
PyObject *tmp_dictdel_key;
PyObject *locals_youtube_dl$extractor$radiofrance_9 = NULL;
PyObject *tmp_dictset_value;
struct Nuitka_FrameObject *frame_4e9fbed3ba512a8b5be22563bb45a477_2;
NUITKA_MAY_BE_UNUSED char const *type_description_2 = NULL;
static struct Nuitka_FrameObject *cache_frame_4e9fbed3ba512a8b5be22563bb45a477_2 = NULL;
PyObject *exception_keeper_type_1;
PyObject *exception_keeper_value_1;
PyTracebackObject *exception_keeper_tb_1;
NUITKA_MAY_BE_UNUSED int exception_keeper_lineno_1;
PyObject *exception_keeper_type_2;
PyObject *exception_keeper_value_2;
PyTracebackObject *exception_keeper_tb_2;
NUITKA_MAY_BE_UNUSED int exception_keeper_lineno_2;
PyObject *exception_keeper_type_3;
PyObject *exception_keeper_value_3;
PyTracebackObject *exception_keeper_tb_3;
NUITKA_MAY_BE_UNUSED int exception_keeper_lineno_3;
// Module code.
{
PyObject *tmp_assign_source_1;
tmp_assign_source_1 = Py_None;
UPDATE_STRING_DICT0(moduledict_youtube_dl$extractor$radiofrance, (Nuitka_StringObject *)const_str_plain___doc__, tmp_assign_source_1);
}
{
PyObject *tmp_assign_source_2;
tmp_assign_source_2 = const_str_digest_a0dff7d32e368d2b890810523650124c;
UPDATE_STRING_DICT0(moduledict_youtube_dl$extractor$radiofrance, (Nuitka_StringObject *)const_str_plain___file__, tmp_assign_source_2);
}
// Frame without reuse.
frame_d5b0cd68f5e926863336e0a4b5c3cf04 = MAKE_MODULE_FRAME(codeobj_d5b0cd68f5e926863336e0a4b5c3cf04, module_youtube_dl$extractor$radiofrance);
// Push the new frame as the currently active one, and we should be exclusively
// owning it.
pushFrameStack(frame_d5b0cd68f5e926863336e0a4b5c3cf04);
assert(Py_REFCNT(frame_d5b0cd68f5e926863336e0a4b5c3cf04) == 2);
// Framed code:
{
PyObject *tmp_assattr_name_1;
PyObject *tmp_assattr_target_1;
PyObject *tmp_mvar_value_1;
tmp_assattr_name_1 = const_str_digest_a0dff7d32e368d2b890810523650124c;
tmp_mvar_value_1 = GET_STRING_DICT_VALUE(moduledict_youtube_dl$extractor$radiofrance, (Nuitka_StringObject *)const_str_plain___spec__);
if (unlikely(tmp_mvar_value_1 == NULL)) {
tmp_mvar_value_1 = GET_STRING_DICT_VALUE(dict_builtin, (Nuitka_StringObject *)const_str_plain___spec__);
}
CHECK_OBJECT(tmp_mvar_value_1);
tmp_assattr_target_1 = tmp_mvar_value_1;
tmp_result = SET_ATTRIBUTE(tmp_assattr_target_1, const_str_plain_origin, tmp_assattr_name_1);
if (tmp_result == false) {
assert(ERROR_OCCURRED());
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb);
exception_lineno = 1;
goto frame_exception_exit_1;
}
}
{
PyObject *tmp_assattr_name_2;
PyObject *tmp_assattr_target_2;
PyObject *tmp_mvar_value_2;
tmp_assattr_name_2 = Py_True;
tmp_mvar_value_2 = GET_STRING_DICT_VALUE(moduledict_youtube_dl$extractor$radiofrance, (Nuitka_StringObject *)const_str_plain___spec__);
if (unlikely(tmp_mvar_value_2 == NULL)) {
tmp_mvar_value_2 = GET_STRING_DICT_VALUE(dict_builtin, (Nuitka_StringObject *)const_str_plain___spec__);
}
CHECK_OBJECT(tmp_mvar_value_2);
tmp_assattr_target_2 = tmp_mvar_value_2;
tmp_result = SET_ATTRIBUTE(tmp_assattr_target_2, const_str_plain_has_location, tmp_assattr_name_2);
if (tmp_result == false) {
assert(ERROR_OCCURRED());
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb);
exception_lineno = 1;
goto frame_exception_exit_1;
}
}
{
PyObject *tmp_assign_source_3;
tmp_assign_source_3 = Py_None;
UPDATE_STRING_DICT0(moduledict_youtube_dl$extractor$radiofrance, (Nuitka_StringObject *)const_str_plain___cached__, tmp_assign_source_3);
}
{
PyObject *tmp_assign_source_4;
PyObject *tmp_import_name_from_1;
frame_d5b0cd68f5e926863336e0a4b5c3cf04->m_frame.f_lineno = 2;
tmp_import_name_from_1 = PyImport_ImportModule("__future__");
assert(!(tmp_import_name_from_1 == NULL));
if (PyModule_Check(tmp_import_name_from_1)) {
tmp_assign_source_4 = IMPORT_NAME_OR_MODULE(
tmp_import_name_from_1,
(PyObject *)moduledict_youtube_dl$extractor$radiofrance,
const_str_plain_unicode_literals,
const_int_0
);
} else {
tmp_assign_source_4 = IMPORT_NAME(tmp_import_name_from_1, const_str_plain_unicode_literals);
}
if (tmp_assign_source_4 == NULL) {
assert(ERROR_OCCURRED());
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb);
exception_lineno = 2;
goto frame_exception_exit_1;
}
UPDATE_STRING_DICT1(moduledict_youtube_dl$extractor$radiofrance, (Nuitka_StringObject *)const_str_plain_unicode_literals, tmp_assign_source_4);
}
{
PyObject *tmp_assign_source_5;
PyObject *tmp_name_name_1;
PyObject *tmp_globals_name_1;
PyObject *tmp_locals_name_1;
PyObject *tmp_fromlist_name_1;
PyObject *tmp_level_name_1;
tmp_name_name_1 = const_str_plain_re;
tmp_globals_name_1 = (PyObject *)moduledict_youtube_dl$extractor$radiofrance;
tmp_locals_name_1 = Py_None;
tmp_fromlist_name_1 = Py_None;
tmp_level_name_1 = const_int_0;
frame_d5b0cd68f5e926863336e0a4b5c3cf04->m_frame.f_lineno = 4;
tmp_assign_source_5 = IMPORT_MODULE5(tmp_name_name_1, tmp_globals_name_1, tmp_locals_name_1, tmp_fromlist_name_1, tmp_level_name_1);
if (tmp_assign_source_5 == NULL) {
assert(ERROR_OCCURRED());
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb);
exception_lineno = 4;
goto frame_exception_exit_1;
}
UPDATE_STRING_DICT1(moduledict_youtube_dl$extractor$radiofrance, (Nuitka_StringObject *)const_str_plain_re, tmp_assign_source_5);
}
{
PyObject *tmp_assign_source_6;
PyObject *tmp_import_name_from_2;
PyObject *tmp_name_name_2;
PyObject *tmp_globals_name_2;
PyObject *tmp_locals_name_2;
PyObject *tmp_fromlist_name_2;
PyObject *tmp_level_name_2;
tmp_name_name_2 = const_str_plain_common;
tmp_globals_name_2 = (PyObject *)moduledict_youtube_dl$extractor$radiofrance;
tmp_locals_name_2 = Py_None;
tmp_fromlist_name_2 = const_tuple_str_plain_InfoExtractor_tuple;
tmp_level_name_2 = const_int_pos_1;
frame_d5b0cd68f5e926863336e0a4b5c3cf04->m_frame.f_lineno = 6;
tmp_import_name_from_2 = IMPORT_MODULE5(tmp_name_name_2, tmp_globals_name_2, tmp_locals_name_2, tmp_fromlist_name_2, tmp_level_name_2);
if (tmp_import_name_from_2 == NULL) {
assert(ERROR_OCCURRED());
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb);
exception_lineno = 6;
goto frame_exception_exit_1;
}
if (PyModule_Check(tmp_import_name_from_2)) {
tmp_assign_source_6 = IMPORT_NAME_OR_MODULE(
tmp_import_name_from_2,
(PyObject *)moduledict_youtube_dl$extractor$radiofrance,
const_str_plain_InfoExtractor,
const_int_pos_1
);
} else {
tmp_assign_source_6 = IMPORT_NAME(tmp_import_name_from_2, const_str_plain_InfoExtractor);
}
Py_DECREF(tmp_import_name_from_2);
if (tmp_assign_source_6 == NULL) {
assert(ERROR_OCCURRED());
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb);
exception_lineno = 6;
goto frame_exception_exit_1;
}
UPDATE_STRING_DICT1(moduledict_youtube_dl$extractor$radiofrance, (Nuitka_StringObject *)const_str_plain_InfoExtractor, tmp_assign_source_6);
}
{
PyObject *tmp_assign_source_7;
PyObject *tmp_tuple_element_1;
PyObject *tmp_mvar_value_3;
tmp_mvar_value_3 = GET_STRING_DICT_VALUE(moduledict_youtube_dl$extractor$radiofrance, (Nuitka_StringObject *)const_str_plain_InfoExtractor);
if (unlikely(tmp_mvar_value_3 == NULL)) {
tmp_mvar_value_3 = GET_STRING_DICT_VALUE(dict_builtin, (Nuitka_StringObject *)const_str_plain_InfoExtractor);
}
CHECK_OBJECT(tmp_mvar_value_3);
tmp_tuple_element_1 = tmp_mvar_value_3;
tmp_assign_source_7 = PyTuple_New(1);
Py_INCREF(tmp_tuple_element_1);
PyTuple_SET_ITEM(tmp_assign_source_7, 0, tmp_tuple_element_1);
assert(tmp_class_creation_1__bases_orig == NULL);
tmp_class_creation_1__bases_orig = tmp_assign_source_7;
}
// Tried code:
{
PyObject *tmp_assign_source_8;
PyObject *tmp_dircall_arg1_1;
CHECK_OBJECT(tmp_class_creation_1__bases_orig);
tmp_dircall_arg1_1 = tmp_class_creation_1__bases_orig;
Py_INCREF(tmp_dircall_arg1_1);
{
PyObject *dir_call_args[] = {tmp_dircall_arg1_1};
tmp_assign_source_8 = impl___internal__$$$function_4__mro_entries_conversion(dir_call_args);
}
if (tmp_assign_source_8 == NULL) {
assert(ERROR_OCCURRED());
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb);
exception_lineno = 9;
goto try_except_handler_1;
}
assert(tmp_class_creation_1__bases == NULL);
tmp_class_creation_1__bases = tmp_assign_source_8;
}
{
PyObject *tmp_assign_source_9;
tmp_assign_source_9 = PyDict_New();
assert(tmp_class_creation_1__class_decl_dict == NULL);
tmp_class_creation_1__class_decl_dict = tmp_assign_source_9;
}
{
PyObject *tmp_assign_source_10;
PyObject *tmp_metaclass_name_1;
nuitka_bool tmp_condition_result_1;
PyObject *tmp_key_name_1;
PyObject *tmp_dict_name_1;
PyObject *tmp_dict_name_2;
PyObject *tmp_key_name_2;
nuitka_bool tmp_condition_result_2;
int tmp_truth_name_1;
PyObject *tmp_type_arg_1;
PyObject *tmp_expression_name_1;
PyObject *tmp_subscript_name_1;
PyObject *tmp_bases_name_1;
tmp_key_name_1 = const_str_plain_metaclass;
CHECK_OBJECT(tmp_class_creation_1__class_decl_dict);
tmp_dict_name_1 = tmp_class_creation_1__class_decl_dict;
tmp_res = PyDict_Contains(tmp_dict_name_1, tmp_key_name_1);
if (tmp_res == -1) {
assert(ERROR_OCCURRED());
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb);
exception_lineno = 9;
goto try_except_handler_1;
}
tmp_condition_result_1 = (tmp_res != 0) ? NUITKA_BOOL_TRUE : NUITKA_BOOL_FALSE;
if (tmp_condition_result_1 == NUITKA_BOOL_TRUE) {
goto condexpr_true_1;
} else {
goto condexpr_false_1;
}
condexpr_true_1:;
CHECK_OBJECT(tmp_class_creation_1__class_decl_dict);
tmp_dict_name_2 = tmp_class_creation_1__class_decl_dict;
tmp_key_name_2 = const_str_plain_metaclass;
tmp_metaclass_name_1 = DICT_GET_ITEM(tmp_dict_name_2, tmp_key_name_2);
if (tmp_metaclass_name_1 == NULL) {
assert(ERROR_OCCURRED());
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb);
exception_lineno = 9;
goto try_except_handler_1;
}
goto condexpr_end_1;
condexpr_false_1:;
CHECK_OBJECT(tmp_class_creation_1__bases);
tmp_truth_name_1 = CHECK_IF_TRUE(tmp_class_creation_1__bases);
if (tmp_truth_name_1 == -1) {
assert(ERROR_OCCURRED());
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb);
exception_lineno = 9;
goto try_except_handler_1;
}
tmp_condition_result_2 = tmp_truth_name_1 == 1 ? NUITKA_BOOL_TRUE : NUITKA_BOOL_FALSE;
if (tmp_condition_result_2 == NUITKA_BOOL_TRUE) {
goto condexpr_true_2;
} else {
goto condexpr_false_2;
}
condexpr_true_2:;
CHECK_OBJECT(tmp_class_creation_1__bases);
tmp_expression_name_1 = tmp_class_creation_1__bases;
tmp_subscript_name_1 = const_int_0;
tmp_type_arg_1 = LOOKUP_SUBSCRIPT_CONST(tmp_expression_name_1, tmp_subscript_name_1, 0);
if (tmp_type_arg_1 == NULL) {
assert(ERROR_OCCURRED());
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb);
exception_lineno = 9;
goto try_except_handler_1;
}
tmp_metaclass_name_1 = BUILTIN_TYPE1(tmp_type_arg_1);
Py_DECREF(tmp_type_arg_1);
if (tmp_metaclass_name_1 == NULL) {
assert(ERROR_OCCURRED());
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb);
exception_lineno = 9;
goto try_except_handler_1;
}
goto condexpr_end_2;
condexpr_false_2:;
tmp_metaclass_name_1 = (PyObject *)&PyType_Type;
Py_INCREF(tmp_metaclass_name_1);
condexpr_end_2:;
condexpr_end_1:;
CHECK_OBJECT(tmp_class_creation_1__bases);
tmp_bases_name_1 = tmp_class_creation_1__bases;
tmp_assign_source_10 = SELECT_METACLASS(tmp_metaclass_name_1, tmp_bases_name_1);
Py_DECREF(tmp_metaclass_name_1);
if (tmp_assign_source_10 == NULL) {
assert(ERROR_OCCURRED());
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb);
exception_lineno = 9;
goto try_except_handler_1;
}
assert(tmp_class_creation_1__metaclass == NULL);
tmp_class_creation_1__metaclass = tmp_assign_source_10;
}
{
nuitka_bool tmp_condition_result_3;
PyObject *tmp_key_name_3;
PyObject *tmp_dict_name_3;
tmp_key_name_3 = const_str_plain_metaclass;
CHECK_OBJECT(tmp_class_creation_1__class_decl_dict);
tmp_dict_name_3 = tmp_class_creation_1__class_decl_dict;
tmp_res = PyDict_Contains(tmp_dict_name_3, tmp_key_name_3);
if (tmp_res == -1) {
assert(ERROR_OCCURRED());
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb);
exception_lineno = 9;
goto try_except_handler_1;
}
tmp_condition_result_3 = (tmp_res != 0) ? NUITKA_BOOL_TRUE : NUITKA_BOOL_FALSE;
if (tmp_condition_result_3 == NUITKA_BOOL_TRUE) {
goto branch_yes_1;
} else {
goto branch_no_1;
}
}
branch_yes_1:;
CHECK_OBJECT(tmp_class_creation_1__class_decl_dict);
tmp_dictdel_dict = tmp_class_creation_1__class_decl_dict;
tmp_dictdel_key = const_str_plain_metaclass;
tmp_result = DICT_REMOVE_ITEM(tmp_dictdel_dict, tmp_dictdel_key);
if (tmp_result == false) {
assert(ERROR_OCCURRED());
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb);
exception_lineno = 9;
goto try_except_handler_1;
}
branch_no_1:;
{
nuitka_bool tmp_condition_result_4;
PyObject *tmp_expression_name_2;
CHECK_OBJECT(tmp_class_creation_1__metaclass);
tmp_expression_name_2 = tmp_class_creation_1__metaclass;
tmp_res = PyObject_HasAttr(tmp_expression_name_2, const_str_plain___prepare__);
tmp_condition_result_4 = (tmp_res != 0) ? NUITKA_BOOL_TRUE : NUITKA_BOOL_FALSE;
if (tmp_condition_result_4 == NUITKA_BOOL_TRUE) {
goto branch_yes_2;
} else {
goto branch_no_2;
}
}
branch_yes_2:;
{
PyObject *tmp_assign_source_11;
PyObject *tmp_called_name_1;
PyObject *tmp_expression_name_3;
PyObject *tmp_args_name_1;
PyObject *tmp_tuple_element_2;
PyObject *tmp_kw_name_1;
CHECK_OBJECT(tmp_class_creation_1__metaclass);
tmp_expression_name_3 = tmp_class_creation_1__metaclass;
tmp_called_name_1 = LOOKUP_ATTRIBUTE(tmp_expression_name_3, const_str_plain___prepare__);
if (tmp_called_name_1 == NULL) {
assert(ERROR_OCCURRED());
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb);
exception_lineno = 9;
goto try_except_handler_1;
}
tmp_tuple_element_2 = const_str_plain_RadioFranceIE;
tmp_args_name_1 = PyTuple_New(2);
Py_INCREF(tmp_tuple_element_2);
PyTuple_SET_ITEM(tmp_args_name_1, 0, tmp_tuple_element_2);
CHECK_OBJECT(tmp_class_creation_1__bases);
tmp_tuple_element_2 = tmp_class_creation_1__bases;
Py_INCREF(tmp_tuple_element_2);
PyTuple_SET_ITEM(tmp_args_name_1, 1, tmp_tuple_element_2);
CHECK_OBJECT(tmp_class_creation_1__class_decl_dict);
tmp_kw_name_1 = tmp_class_creation_1__class_decl_dict;
frame_d5b0cd68f5e926863336e0a4b5c3cf04->m_frame.f_lineno = 9;
tmp_assign_source_11 = CALL_FUNCTION(tmp_called_name_1, tmp_args_name_1, tmp_kw_name_1);
Py_DECREF(tmp_called_name_1);
Py_DECREF(tmp_args_name_1);
if (tmp_assign_source_11 == NULL) {
assert(ERROR_OCCURRED());
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb);
exception_lineno = 9;
goto try_except_handler_1;
}
assert(tmp_class_creation_1__prepared == NULL);
tmp_class_creation_1__prepared = tmp_assign_source_11;
}
{
nuitka_bool tmp_condition_result_5;
PyObject *tmp_operand_name_1;
PyObject *tmp_expression_name_4;
CHECK_OBJECT(tmp_class_creation_1__prepared);
tmp_expression_name_4 = tmp_class_creation_1__prepared;
tmp_res = PyObject_HasAttr(tmp_expression_name_4, const_str_plain___getitem__);
tmp_operand_name_1 = (tmp_res != 0) ? Py_True : Py_False;
tmp_res = CHECK_IF_TRUE(tmp_operand_name_1);
if (tmp_res == -1) {
assert(ERROR_OCCURRED());
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb);
exception_lineno = 9;
goto try_except_handler_1;
}
tmp_condition_result_5 = (tmp_res == 0) ? NUITKA_BOOL_TRUE : NUITKA_BOOL_FALSE;
if (tmp_condition_result_5 == NUITKA_BOOL_TRUE) {
goto branch_yes_3;
} else {
goto branch_no_3;
}
}
branch_yes_3:;
{
PyObject *tmp_raise_type_1;
PyObject *tmp_raise_value_1;
PyObject *tmp_left_name_1;
PyObject *tmp_right_name_1;
PyObject *tmp_tuple_element_3;
PyObject *tmp_getattr_target_1;
PyObject *tmp_getattr_attr_1;
PyObject *tmp_getattr_default_1;
PyObject *tmp_expression_name_5;
PyObject *tmp_type_arg_2;
tmp_raise_type_1 = PyExc_TypeError;
tmp_left_name_1 = const_str_digest_75fd71b1edada749c2ef7ac810062295;
CHECK_OBJECT(tmp_class_creation_1__metaclass);
tmp_getattr_target_1 = tmp_class_creation_1__metaclass;
tmp_getattr_attr_1 = const_str_plain___name__;
tmp_getattr_default_1 = const_str_angle_metaclass;
tmp_tuple_element_3 = BUILTIN_GETATTR(tmp_getattr_target_1, tmp_getattr_attr_1, tmp_getattr_default_1);
if (tmp_tuple_element_3 == NULL) {
assert(ERROR_OCCURRED());
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb);
exception_lineno = 9;
goto try_except_handler_1;
}
tmp_right_name_1 = PyTuple_New(2);
PyTuple_SET_ITEM(tmp_right_name_1, 0, tmp_tuple_element_3);
CHECK_OBJECT(tmp_class_creation_1__prepared);
tmp_type_arg_2 = tmp_class_creation_1__prepared;
tmp_expression_name_5 = BUILTIN_TYPE1(tmp_type_arg_2);
assert(!(tmp_expression_name_5 == NULL));
tmp_tuple_element_3 = LOOKUP_ATTRIBUTE(tmp_expression_name_5, const_str_plain___name__);
Py_DECREF(tmp_expression_name_5);
if (tmp_tuple_element_3 == NULL) {
assert(ERROR_OCCURRED());
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb);
Py_DECREF(tmp_right_name_1);
exception_lineno = 9;
goto try_except_handler_1;
}
PyTuple_SET_ITEM(tmp_right_name_1, 1, tmp_tuple_element_3);
tmp_raise_value_1 = BINARY_OPERATION_MOD_OBJECT_UNICODE_TUPLE(tmp_left_name_1, tmp_right_name_1);
Py_DECREF(tmp_right_name_1);
if (tmp_raise_value_1 == NULL) {
assert(ERROR_OCCURRED());
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb);
exception_lineno = 9;
goto try_except_handler_1;
}
exception_type = tmp_raise_type_1;
Py_INCREF(tmp_raise_type_1);
exception_value = tmp_raise_value_1;
exception_lineno = 9;
RAISE_EXCEPTION_IMPLICIT(&exception_type, &exception_value, &exception_tb);
goto try_except_handler_1;
}
branch_no_3:;
goto branch_end_2;
branch_no_2:;
{
PyObject *tmp_assign_source_12;
tmp_assign_source_12 = PyDict_New();
assert(tmp_class_creation_1__prepared == NULL);
tmp_class_creation_1__prepared = tmp_assign_source_12;
}
branch_end_2:;
{
PyObject *tmp_assign_source_13;
{
PyObject *tmp_set_locals_1;
CHECK_OBJECT(tmp_class_creation_1__prepared);
tmp_set_locals_1 = tmp_class_creation_1__prepared;
locals_youtube_dl$extractor$radiofrance_9 = tmp_set_locals_1;
Py_INCREF(tmp_set_locals_1);
}
// Tried code:
// Tried code:
tmp_dictset_value = const_str_digest_004c45bf5228f85401370ce00ac132af;
tmp_res = PyObject_SetItem(locals_youtube_dl$extractor$radiofrance_9, const_str_plain___module__, tmp_dictset_value);
if (tmp_res != 0) {
assert(ERROR_OCCURRED());
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb);
exception_lineno = 9;
goto try_except_handler_3;
}
tmp_dictset_value = const_str_plain_RadioFranceIE;
tmp_res = PyObject_SetItem(locals_youtube_dl$extractor$radiofrance_9, const_str_plain___qualname__, tmp_dictset_value);
if (tmp_res != 0) {
assert(ERROR_OCCURRED());
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb);
exception_lineno = 9;
goto try_except_handler_3;
}
if (isFrameUnusable(cache_frame_4e9fbed3ba512a8b5be22563bb45a477_2)) {
Py_XDECREF(cache_frame_4e9fbed3ba512a8b5be22563bb45a477_2);
#if _DEBUG_REFCOUNTS
if (cache_frame_4e9fbed3ba512a8b5be22563bb45a477_2 == NULL) {
count_active_frame_cache_instances += 1;
} else {
count_released_frame_cache_instances += 1;
}
count_allocated_frame_cache_instances += 1;
#endif
cache_frame_4e9fbed3ba512a8b5be22563bb45a477_2 = MAKE_FUNCTION_FRAME(codeobj_4e9fbed3ba512a8b5be22563bb45a477, module_youtube_dl$extractor$radiofrance, sizeof(void *));
#if _DEBUG_REFCOUNTS
} else {
count_hit_frame_cache_instances += 1;
#endif
}
assert(cache_frame_4e9fbed3ba512a8b5be22563bb45a477_2->m_type_description == NULL);
frame_4e9fbed3ba512a8b5be22563bb45a477_2 = cache_frame_4e9fbed3ba512a8b5be22563bb45a477_2;
// Push the new frame as the currently active one.
pushFrameStack(frame_4e9fbed3ba512a8b5be22563bb45a477_2);
// Mark the frame object as in use, ref count 1 will be up for reuse.
assert(Py_REFCNT(frame_4e9fbed3ba512a8b5be22563bb45a477_2) == 2); // Frame stack
// Framed code:
tmp_dictset_value = const_str_digest_714f06fe3f585ba53ecbc35d1eee684c;
tmp_res = PyObject_SetItem(locals_youtube_dl$extractor$radiofrance_9, const_str_plain__VALID_URL, tmp_dictset_value);
if (tmp_res != 0) {
assert(ERROR_OCCURRED());
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb);
exception_lineno = 10;
type_description_2 = "o";
goto frame_exception_exit_2;
}
tmp_dictset_value = const_str_plain_radiofrance;
tmp_res = PyObject_SetItem(locals_youtube_dl$extractor$radiofrance_9, const_str_plain_IE_NAME, tmp_dictset_value);
if (tmp_res != 0) {
assert(ERROR_OCCURRED());
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb);
exception_lineno = 11;
type_description_2 = "o";
goto frame_exception_exit_2;
}
tmp_dictset_value = DEEP_COPY(const_dict_45ad7d9fefd8b33a422439a324b23617);
tmp_res = PyObject_SetItem(locals_youtube_dl$extractor$radiofrance_9, const_str_plain__TEST, tmp_dictset_value);
Py_DECREF(tmp_dictset_value);
if (tmp_res != 0) {
assert(ERROR_OCCURRED());
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb);
exception_lineno = 13;
type_description_2 = "o";
goto frame_exception_exit_2;
}
tmp_dictset_value = MAKE_FUNCTION_youtube_dl$extractor$radiofrance$$$function_1__real_extract();
tmp_res = PyObject_SetItem(locals_youtube_dl$extractor$radiofrance_9, const_str_plain__real_extract, tmp_dictset_value);
Py_DECREF(tmp_dictset_value);
if (tmp_res != 0) {
assert(ERROR_OCCURRED());
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb);
exception_lineno = 25;
type_description_2 = "o";
goto frame_exception_exit_2;
}
#if 0
RESTORE_FRAME_EXCEPTION(frame_4e9fbed3ba512a8b5be22563bb45a477_2);
#endif
// Put the previous frame back on top.
popFrameStack();
goto frame_no_exception_1;
frame_exception_exit_2:;
#if 0
RESTORE_FRAME_EXCEPTION(frame_4e9fbed3ba512a8b5be22563bb45a477_2);
#endif
if (exception_tb == NULL) {
exception_tb = MAKE_TRACEBACK(frame_4e9fbed3ba512a8b5be22563bb45a477_2, exception_lineno);
} else if (exception_tb->tb_frame != &frame_4e9fbed3ba512a8b5be22563bb45a477_2->m_frame) {
exception_tb = ADD_TRACEBACK(exception_tb, frame_4e9fbed3ba512a8b5be22563bb45a477_2, exception_lineno);
}
// Attachs locals to frame if any.
Nuitka_Frame_AttachLocals(
frame_4e9fbed3ba512a8b5be22563bb45a477_2,
type_description_2,
outline_0_var___class__
);
// Release cached frame.
if (frame_4e9fbed3ba512a8b5be22563bb45a477_2 == cache_frame_4e9fbed3ba512a8b5be22563bb45a477_2) {
#if _DEBUG_REFCOUNTS
count_active_frame_cache_instances -= 1;
count_released_frame_cache_instances += 1;
#endif
Py_DECREF(frame_4e9fbed3ba512a8b5be22563bb45a477_2);
}
cache_frame_4e9fbed3ba512a8b5be22563bb45a477_2 = NULL;
assertFrameObject(frame_4e9fbed3ba512a8b5be22563bb45a477_2);
// Put the previous frame back on top.
popFrameStack();
// Return the error.
goto nested_frame_exit_1;
frame_no_exception_1:;
goto skip_nested_handling_1;
nested_frame_exit_1:;
goto try_except_handler_3;
skip_nested_handling_1:;
{
nuitka_bool tmp_condition_result_6;
PyObject *tmp_compexpr_left_1;
PyObject *tmp_compexpr_right_1;
CHECK_OBJECT(tmp_class_creation_1__bases);
tmp_compexpr_left_1 = tmp_class_creation_1__bases;
CHECK_OBJECT(tmp_class_creation_1__bases_orig);
tmp_compexpr_right_1 = tmp_class_creation_1__bases_orig;
tmp_condition_result_6 = RICH_COMPARE_NE_NBOOL_OBJECT_TUPLE(tmp_compexpr_left_1, tmp_compexpr_right_1);
if (tmp_condition_result_6 == NUITKA_BOOL_EXCEPTION) {
assert(ERROR_OCCURRED());
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb);
exception_lineno = 9;
goto try_except_handler_3;
}
if (tmp_condition_result_6 == NUITKA_BOOL_TRUE) {
goto branch_yes_4;
} else {
goto branch_no_4;
}
}
branch_yes_4:;
CHECK_OBJECT(tmp_class_creation_1__bases_orig);
tmp_dictset_value = tmp_class_creation_1__bases_orig;
tmp_res = PyObject_SetItem(locals_youtube_dl$extractor$radiofrance_9, const_str_plain___orig_bases__, tmp_dictset_value);
if (tmp_res != 0) {
assert(ERROR_OCCURRED());
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb);
exception_lineno = 9;
goto try_except_handler_3;
}
branch_no_4:;
{
PyObject *tmp_assign_source_14;
PyObject *tmp_called_name_2;
PyObject *tmp_args_name_2;
PyObject *tmp_tuple_element_4;
PyObject *tmp_kw_name_2;
CHECK_OBJECT(tmp_class_creation_1__metaclass);
tmp_called_name_2 = tmp_class_creation_1__metaclass;
tmp_tuple_element_4 = const_str_plain_RadioFranceIE;
tmp_args_name_2 = PyTuple_New(3);
Py_INCREF(tmp_tuple_element_4);
PyTuple_SET_ITEM(tmp_args_name_2, 0, tmp_tuple_element_4);
CHECK_OBJECT(tmp_class_creation_1__bases);
tmp_tuple_element_4 = tmp_class_creation_1__bases;
Py_INCREF(tmp_tuple_element_4);
PyTuple_SET_ITEM(tmp_args_name_2, 1, tmp_tuple_element_4);
tmp_tuple_element_4 = locals_youtube_dl$extractor$radiofrance_9;
Py_INCREF(tmp_tuple_element_4);
PyTuple_SET_ITEM(tmp_args_name_2, 2, tmp_tuple_element_4);
CHECK_OBJECT(tmp_class_creation_1__class_decl_dict);
tmp_kw_name_2 = tmp_class_creation_1__class_decl_dict;
frame_d5b0cd68f5e926863336e0a4b5c3cf04->m_frame.f_lineno = 9;
tmp_assign_source_14 = CALL_FUNCTION(tmp_called_name_2, tmp_args_name_2, tmp_kw_name_2);
Py_DECREF(tmp_args_name_2);
if (tmp_assign_source_14 == NULL) {
assert(ERROR_OCCURRED());
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb);
exception_lineno = 9;
goto try_except_handler_3;
}
assert(outline_0_var___class__ == NULL);
outline_0_var___class__ = tmp_assign_source_14;
}
CHECK_OBJECT(outline_0_var___class__);
tmp_assign_source_13 = outline_0_var___class__;
Py_INCREF(tmp_assign_source_13);
goto try_return_handler_3;
NUITKA_CANNOT_GET_HERE("tried codes exits in all cases");
return NULL;
// Return handler code:
try_return_handler_3:;
Py_DECREF(locals_youtube_dl$extractor$radiofrance_9);
locals_youtube_dl$extractor$radiofrance_9 = NULL;
goto try_return_handler_2;
// Exception handler code:
try_except_handler_3:;
exception_keeper_type_1 = exception_type;
exception_keeper_value_1 = exception_value;
exception_keeper_tb_1 = exception_tb;
exception_keeper_lineno_1 = exception_lineno;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
exception_lineno = 0;
Py_DECREF(locals_youtube_dl$extractor$radiofrance_9);
locals_youtube_dl$extractor$radiofrance_9 = NULL;
// Re-raise.
exception_type = exception_keeper_type_1;
exception_value = exception_keeper_value_1;
exception_tb = exception_keeper_tb_1;
exception_lineno = exception_keeper_lineno_1;
goto try_except_handler_2;
// End of try:
NUITKA_CANNOT_GET_HERE("tried codes exits in all cases");
return NULL;
// Return handler code:
try_return_handler_2:;
CHECK_OBJECT(outline_0_var___class__);
Py_DECREF(outline_0_var___class__);
outline_0_var___class__ = NULL;
goto outline_result_1;
// Exception handler code:
try_except_handler_2:;
exception_keeper_type_2 = exception_type;
exception_keeper_value_2 = exception_value;
exception_keeper_tb_2 = exception_tb;
exception_keeper_lineno_2 = exception_lineno;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
exception_lineno = 0;
// Re-raise.
exception_type = exception_keeper_type_2;
exception_value = exception_keeper_value_2;
exception_tb = exception_keeper_tb_2;
exception_lineno = exception_keeper_lineno_2;
goto outline_exception_1;
// End of try:
NUITKA_CANNOT_GET_HERE("Return statement must have exited already.");
return NULL;
outline_exception_1:;
exception_lineno = 9;
goto try_except_handler_1;
outline_result_1:;
UPDATE_STRING_DICT1(moduledict_youtube_dl$extractor$radiofrance, (Nuitka_StringObject *)const_str_plain_RadioFranceIE, tmp_assign_source_13);
}
goto try_end_1;
// Exception handler code:
try_except_handler_1:;
exception_keeper_type_3 = exception_type;
exception_keeper_value_3 = exception_value;
exception_keeper_tb_3 = exception_tb;
exception_keeper_lineno_3 = exception_lineno;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
exception_lineno = 0;
CHECK_OBJECT(tmp_class_creation_1__bases_orig);
Py_DECREF(tmp_class_creation_1__bases_orig);
tmp_class_creation_1__bases_orig = NULL;
Py_XDECREF(tmp_class_creation_1__bases);
tmp_class_creation_1__bases = NULL;
Py_XDECREF(tmp_class_creation_1__class_decl_dict);
tmp_class_creation_1__class_decl_dict = NULL;
Py_XDECREF(tmp_class_creation_1__metaclass);
tmp_class_creation_1__metaclass = NULL;
Py_XDECREF(tmp_class_creation_1__prepared);
tmp_class_creation_1__prepared = NULL;
// Re-raise.
exception_type = exception_keeper_type_3;
exception_value = exception_keeper_value_3;
exception_tb = exception_keeper_tb_3;
exception_lineno = exception_keeper_lineno_3;
goto frame_exception_exit_1;
// End of try:
try_end_1:;
// Restore frame exception if necessary.
#if 0
RESTORE_FRAME_EXCEPTION(frame_d5b0cd68f5e926863336e0a4b5c3cf04);
#endif
popFrameStack();
assertFrameObject(frame_d5b0cd68f5e926863336e0a4b5c3cf04);
goto frame_no_exception_2;
frame_exception_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION(frame_d5b0cd68f5e926863336e0a4b5c3cf04);
#endif
if (exception_tb == NULL) {
exception_tb = MAKE_TRACEBACK(frame_d5b0cd68f5e926863336e0a4b5c3cf04, exception_lineno);
} else if (exception_tb->tb_frame != &frame_d5b0cd68f5e926863336e0a4b5c3cf04->m_frame) {
exception_tb = ADD_TRACEBACK(exception_tb, frame_d5b0cd68f5e926863336e0a4b5c3cf04, exception_lineno);
}
// Put the previous frame back on top.
popFrameStack();
// Return the error.
goto module_exception_exit;
frame_no_exception_2:;
CHECK_OBJECT(tmp_class_creation_1__bases_orig);
Py_DECREF(tmp_class_creation_1__bases_orig);
tmp_class_creation_1__bases_orig = NULL;
CHECK_OBJECT(tmp_class_creation_1__bases);
Py_DECREF(tmp_class_creation_1__bases);
tmp_class_creation_1__bases = NULL;
CHECK_OBJECT(tmp_class_creation_1__class_decl_dict);
Py_DECREF(tmp_class_creation_1__class_decl_dict);
tmp_class_creation_1__class_decl_dict = NULL;
CHECK_OBJECT(tmp_class_creation_1__metaclass);
Py_DECREF(tmp_class_creation_1__metaclass);
tmp_class_creation_1__metaclass = NULL;
CHECK_OBJECT(tmp_class_creation_1__prepared);
Py_DECREF(tmp_class_creation_1__prepared);
tmp_class_creation_1__prepared = NULL;
return module_youtube_dl$extractor$radiofrance;
module_exception_exit:
RESTORE_ERROR_OCCURRED(exception_type, exception_value, exception_tb);
return NULL;
}
| [
"omarlcobas@gmail.com"
] | omarlcobas@gmail.com |
c19dd904e8d01b47ec43ebf74a866688855593b6 | 68b28fc12ea588e9e3bbdd5d2dcef4a8b9fa6f91 | /HAGBS_v1.0/ltc2309.h | 9eb97dde1105c3c586eee9eaf61af008f658f79b | [] | no_license | ahchen0/HAGBS | 6489211e6cd4eff10968ac6fbd7924f8b2e70ba9 | 528afb93c83f9d9b0619edd22478393b06a5215e | refs/heads/master | 2022-11-14T00:29:03.330351 | 2020-07-11T00:51:22 | 2020-07-11T00:51:22 | 278,758,561 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 823 | h | //
// ltc2309.h
//
//
// Created by Alex Chen on 11/26/19.
//
#ifndef ltc2309_h
#define ltc2309_h
#include <stdio.h>
#endif /* ltc2309_h */
#define LTC2309_ADDRESS 0x08
#define NUM_CHANNELS 7
class LTC2309{
private:
const uint8_t polarity = 1; // 1 for unipolar
// CONFIGS (single-ended)
uint8_t CONFIGS[NUM_CHANNELS] =
{
0x08, /**< Ch0, referenced to COM */
0x0C, /**< Ch1, referenced to COM */
0x09, /**< Ch2, referenced to COM */
0x0D, /**< Ch3, referenced to COM */
0x0A, /**< Ch4, referenced to COM */
0x0E, /**< Ch5, referenced to COM */
0x0B, /**< Ch6, referenced to COM */
//0x0F /**< Ch7, referenced to COM */
};
int16_t readChannel(uint8_t channelCnfg, uint8_t p);
public:
LTC2309();
void readAllChannels(uint16_t* measurement);
};
| [
"ahchen0@Alexs-MBP-2.T-mobile.com"
] | ahchen0@Alexs-MBP-2.T-mobile.com |
c5254434ccf68db1d77219e09a94b73c046cf95e | 7eb6ec3b10a73f82b64d8a2450a871c8fc7a8486 | /wrapping_line/wrapping_line.ino | 99d8c4689993108079e83e9ca2ca84c74ec1cccb | [] | no_license | lambdaBoost/arduino-projects | 09ca2527e73c4fabb85b346a30b508d53b1d6e08 | c490bf8639a1c43ec1270a99908c20e40fd65673 | refs/heads/master | 2022-05-28T22:28:05.723729 | 2020-04-29T20:26:55 | 2020-04-29T20:26:55 | 115,006,323 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,807 | ino | void setup(){
DDRA =255;
DDRB=255;
Serial.begin(9600);
}
void
line(
uint8_t y0,
uint8_t x0,
uint8_t y1,
uint8_t x1
)
{
int dx, dy, sx, sy;
if (x0 < x1)
{
dx = x1 - x0;
sx = 1;
} else {
dx = x0 - x1;
sx = -1;
}
if (y0 < y1)
{
dy = y1 - y0;
sy = 1;
} else {
dy = y0 - y1;
sy = -1;
}
int err = dx - dy;
while (1)
{
PORTB = x0;
PORTA = y0;
if (x0 == x1 && y0 == y1)
break;
int e2 = 2 * err;
if (e2 > -dy)
{
err = err - dy;
x0 += sx;
}
if (e2 < dx)
{
err = err + dx;
y0 += sy;
}
delayMicroseconds(40);
}
}
int Cx1=0;//X counter
int Cx2=0;//X2 counter
void wrappedLine(int X1, int Y1, int X2, int Y2) {
int DX=X2-X1;
int DY=Y2-Y1;
float M=DY/DX; //gradient
if(X1%256==0){//counts number of times X1 leaves frame from side
Cx1++;
}
if(X2%256==0){//as above for X2
Cx2++;
}
if(Cx2>Cx1){//if line leaves right frame
line(X1,Y1,255,Y1+(((Cx1*256)-X1)*M));
line(1,Y1+(((Cx1*256)-X1)*M),X2,Y2);
}
if(Cx1==Cx2){//if line in frame
line(X1,Y1,X2,Y2);
}
if(Cx1>Cx2){//if line leaves left frame
line(1,Y1+(((Cx1*256)-X1)*M),X2,Y2);
line(X1,Y1,255,Y1+(((Cx1*256)-X1)*M));
}
}
int Sx=120;
int Sy=120;
void loop(){
wrappedLine(Sx,Sy,Sx+50,Sy+50);
Sx=Sx+1;
}
| [
"alex.hall@outplay.com"
] | alex.hall@outplay.com |
c926d057bcf4a8ddaeadec204b73dbe682ec54e8 | df8076fbc7429cb8255f0dc13985cda52c2d9de2 | /lib/LLVMSlicer/IntraDFA/DFA.cpp | 4a95b10456698314847cfd674e97bfa6470a5999 | [
"NCSA"
] | permissive | pwnzen-mobile/llvm-slicer | 0f2f657cc593a9920b1383db0729e94fc22d79d4 | efe730e1a491f50842ae0e1e421dd259c1c1a169 | refs/heads/master | 2020-06-11T15:48:30.817796 | 2019-12-16T06:39:57 | 2019-12-16T06:39:57 | 194,010,291 | 0 | 0 | NOASSERTION | 2019-06-27T02:40:26 | 2019-06-27T02:40:26 | null | UTF-8 | C++ | false | false | 31,019 | cpp | #include <thread>
#include <future>
#include <utility>
#include <signal.h>
#include "llvm/Analysis/Andersen/DetectParametersPass.h"
#include "llvm/IR/Instructions.h"
#include "llvm/IR/Function.h"
#include "llvm/IR/Value.h"
#include "llvm/IR/DerivedTypes.h"
#include "llvm/Pass.h"
#include "llvm/IntraDFA/IntraDFA.h"
#include "llvm/PassSupport.h"
#include "llvm/IR/LegacyPassManager.h"
#include "llvm/Support/UniqueLock.h"
#include "llvm/Support/Format.h"
#include "llvm/Support/Debug.h"
#include "../Slicing/FunctionStaticSlicer.h"
#include "../Slicing/PostDominanceFrontier.h"
#include "../PointsTo/PointsTo.h"
#include "../Backtrack/Constraint.h"
#define DEBUG_TYPE "slicer"
using namespace llvm;
static cl::opt<std::string>
ReportFilename("r", cl::desc("Path to HTML report output file"),
cl::value_desc("report"));
namespace llvm { namespace slicing { namespace detail {
typedef ptr::PointsToSets::Pointee Pointee;
typedef std::map<const Pointee, const Pointee> ParamsToArgs;
typedef std::set<Pointee> RelevantSet;
static void fillParamsToArgs(const CallInst *C, const Function *F,
ParamsToArgs &toArgs)
{
Function::const_arg_iterator p = F->arg_begin();
for (unsigned a = 0; a < C->getNumArgOperands(); ++a, ++p) {
const Value *P = &*p;
const Value *A = C->getArgOperand(a);
if (!isConstantValue(A))
toArgs.insert(ParamsToArgs::value_type(Pointee(P, -1),
Pointee(A, -1)));
}
}
static void getRelevantVarsAtCall(const CallInst *C, const Function *F, DetectParametersPass *DPP, const ptr::PointsToSets &PS,
ValSet::const_iterator b,
const ValSet::const_iterator &e,
RelevantSet &out,
FunctionStaticSlicer *FSS,
InsInfo *entry,
InsInfo::IncMap_t &RCInc,
InsInfo::SliceInfoSetMap_t &structSliceInfos,
InsInfo::ValMapSet_t &RCSources) {
assert(!isInlineAssembly(C) && "Inline assembly is not supported!");
DEBUG(errs() << C->getParent()->getParent()->getName() << " -> " << F->getName() << "\n");
if (C->getParent()->getParent()->getName() == "-[SOEncryptionModel encryptData:withSymetricKey:]") {
assert(true);
}
// if (C->getParent()->getParent()->getName() == "_EXTERNAL_")
// return;
ParamsToArgs toArgs;
fillParamsToArgs(C, F, toArgs);
DetectParametersPass::ParameterAccessPairSet_t Reg = DPP->getParameterRegisterIndexes((Function*)F);
for (; b != e; ++b) {
const Value *loc = ptr::getAndersen()->getNodeFactory().getLocation(b->first);
if (loc) {
if (const Instruction *locInst = dyn_cast<const Instruction>(loc)) {
if (loc->getName().find("init") != StringRef::npos && locInst->getParent()->getParent() == F) {
RCSources.erase(b->first);
continue;
}
}
}
bool foundParameter = false;
if (const Instruction *I = dyn_cast<const Instruction>(b->first)) {
if (I->getOpcode() == Instruction::Load) {
for (DetectParametersPass::ParameterAccessPairSet_t::iterator Reg_it = Reg.begin(); Reg_it != Reg.end(); ++Reg_it) {
if (I == Reg_it->second) {
DetectParametersPass::UserSet_t Pre = DetectParametersPass::getRegisterValuesBeforeCall(Reg_it->first, C, true);
for (DetectParametersPass::UserSet_t::iterator Pre_it = Pre.begin(); Pre_it != Pre.end(); ++Pre_it) {
Instruction *I = (Instruction*)(*Pre_it);
Pointee p(*Pre_it, -1);
const InsInfo::ValSet_t src = entry->getRCSource(*b);
if (src.size() == 0) {
continue;
}
RCSources[p.first] = src;
RCSources[p.first].insert(I);
out.insert(p);
structSliceInfos[p.first].insert(entry->RCStruct_begin(p.first), entry->RCStruct_end(p.first));
RCInc[p.first] = RCInc[(*b).first];
foundParameter = true;
}
}
}
}
}
const InsInfo::ValSet_t src = entry->getRCSource(*b);
if (src.size() == 0) {
continue;
}
RCSources[b->first].insert(src.begin(), src.end());
//Copy all values that were not matched as parameters too
structSliceInfos[b->first].insert(entry->RCStruct_begin(b->first), entry->RCStruct_end(b->first));
if (foundParameter)
continue;
ParamsToArgs::const_iterator it = toArgs.find(*b);
if (it != toArgs.end())
out.insert(it->second);
else if (!isLocalToFunction(b->first, F))
out.insert(*b);
}
return;
}
static void getRelevantVarsAtExit(const CallInst *C, const ReturnInst *R, DetectParametersPass *DPP, const ptr::PointsToSets &PS,
ValSet::const_iterator b,
const ValSet::const_iterator &e,
RelevantSet &out,
InsInfo *succInfo,
InsInfo *callInfo,
InsInfo::IncMap_t &RCInc,
InsInfo::SliceInfoSetMap_t &structSliceInfos,
InsInfo::ValMapSet_t &RCSources,
const mods::Modifies &MOD) {
DEBUG(errs() << C->getParent()->getParent()->getName() << " -> " << R->getParent()->getParent()->getName() << "\n");
assert(!isInlineAssembly(C) && "Inline assembly is not supported!");
DetectParametersPass::ParameterAccessPairSet_t Ret = DPP->getReturnRegisterIndexes((Function*)R->getParent()->getParent());
if (callToVoidFunction(C)) {
for (ValSet::const_iterator it = b; it != e; ++it) {
//Check if the relevant variable is modified in this function
bool intersect = false;
mods::Modifies::mapped_type const& M = getModSet(R->getParent()->getParent(), MOD);
for (mods::Modifies::mapped_type::const_iterator v = M.begin();
v != M.end(); ++v) {
if (v->first == (*it).first) {
intersect = true;
break;
}
}
//Relevant variable won't be modified anywhere here...
if (!intersect) {
continue;
}
RCSources[it->first].insert(R);
structSliceInfos[it->first].insert(callInfo->RCStruct_begin(it->first), callInfo->RCStruct_end(it->first));
out.insert(*it);
structSliceInfos[it->first].insert(callInfo->RCStruct_begin(it->first), callInfo->RCStruct_end(it->first));
}
return;
for (DetectParametersPass::ParameterAccessPairSet_t::iterator Ret_it = Ret.begin(); Ret_it != Ret.end(); ++Ret_it) {
DetectParametersPass::UserSet_t Post = DetectParametersPass::getRegisterValuesAfterCall(Ret_it->first, C);
for (DetectParametersPass::UserSet_t::iterator Post_it = Post.begin(); Post_it != Post.end(); ++Post_it) {
for (ValSet::const_iterator b_it = b ; b_it != e; ++b_it) {
if (const Instruction *I = dyn_cast<const Instruction>(b_it->first)) {
if (I == (*Post_it)) {
Pointee p(Ret_it->second, -1);
out.insert(p);
RCInc[p.first] = RCInc[b_it->first];
const InsInfo::ValSet_t src = succInfo->getRCSource(*b);
RCSources[p.first] = src;
// RCSources[p.first].insert(callInfo->getIns());
structSliceInfos[p.first].insert(callInfo->RCStruct_begin(p.first), callInfo->RCStruct_end(p.first));
}
}
}
}
}
return;
}
llvm_unreachable("Decompiled code uses void functions only");
for ( ; b != e; ++b)
if (b->first == C) {
Value *ret = R->getReturnValue();
if (!ret) {
return;
}
out.insert(Pointee(R->getReturnValue(), -1));
} else
out.insert(*b);
}
}}}
namespace llvm { namespace slicing {
static cl::opt<int> limitCalls("limit-calls", cl::init(0), cl::Hidden);
class StaticSlicer : public InsInfoProvider {
public:
typedef std::map<llvm::Function const*, FunctionStaticSlicer *> Slicers;
typedef std::multimap<llvm::Function const*,llvm::CallInst const*>
FuncsToCalls;
typedef std::multimap<llvm::CallInst const*,llvm::Function const*>
CallsToFuncs;
StaticSlicer(ModulePass *MP, Module &M,
const ptr::PointsToSets &PS,
const callgraph::Callgraph &CG,
const mods::Modifies &MOD,
std::vector<Rule*> rules);
~StaticSlicer();
void computeSlice();
void ruleIteration();
bool sliceModule();
virtual void addInitialSlicingCriterion(const Instruction *C);
virtual InsInfo *getInsInfo(const Instruction *I);
bool addRule(Rule *rule);
const std::vector<Rule*> getRules() const {
return rules;
}
private:
typedef llvm::SmallVector<const llvm::Function *, 20> InitFuns;
legacy::PassManager *PM;
DetectParametersPass *DPP;
const ptr::PointsToSets &PS;
const mods::Modifies &MOD;
std::vector<Rule*> rules;
std::vector<Rule*> ruleWorklist;
void buildDicts(const ptr::PointsToSets &PS, const CallInst *c);
void buildDicts(const ptr::PointsToSets &PS);
void findInitialCriterions();
template<typename OutIterator>
void emitToCalls(llvm::Function const* const f, OutIterator out);
template<typename OutIterator>
void emitToExits(llvm::Function const* const f, OutIterator out);
void runFSS(Function &F, const ptr::PointsToSets &PS,
const callgraph::Callgraph &CG, const mods::Modifies &MOD);
ModulePass *MP;
Module &module;
Slicers slicers;
std::mutex slicersLock;
InitFuns initFuns;
FuncsToCalls funcsToCalls;
CallsToFuncs callsToFuncs;
std::set<const Instruction*> InitialCriterions;
};
template<typename OutIterator>
void StaticSlicer::emitToCalls(const Function *f, OutIterator out) {
const Instruction *entry = getFunctionEntry(f);
const ValSet::const_iterator relBgn = slicers[f]->relevant_begin(entry);
const ValSet::const_iterator relEnd = slicers[f]->relevant_end(entry);
if (relBgn == relEnd) {
// errs() << "Skip: " << f->getName() << "\n";
return;
}
if (f->getName() == "-[RNCryptorEngine initWithOperation:settings:key:IV:error:]") {
assert(true);
}
bool dump = false;
if (dump) {
for (ValSet::const_iterator it = relBgn; it != relEnd; ++it) {
(*it).first->dump();
}
}
InsInfo::IncMap_t RCInc;
InsInfo *entryInfo = slicers[f]->getInsInfo(entry);
for (ValSet::const_iterator i = relBgn; i != relEnd; ++i) {
double RC_inc = entryInfo->getRCInc(*i);
RCInc[i->first] = RC_inc;
}
FuncsToCalls::const_iterator c, e;
std::tie(c, e) = funcsToCalls.equal_range(f);
if (limitCalls && std::distance(c, e) > limitCalls) {
errs() << "To many calls to function " << f->getName() << " -> skip\n";
return;
}
std::set<std::string> calls;
for (; c != e; ++c) {
const CallInst *CI = c->second;
const Function *g = CI->getParent()->getParent();
FunctionStaticSlicer *FSS = slicers[g];
detail::RelevantSet R;
InsInfo::SliceInfoSetMap_t structSliceInfos;
InsInfo::ValMapSet_t rcSources;
detail::getRelevantVarsAtCall(c->second, f, DPP, PS, relBgn, relEnd, R, FSS, entryInfo, RCInc, structSliceInfos, rcSources);
if (R.begin() == R.end()) {
// errs() << "Skip: " << f->getName() << "\n";
continue;
}
typedef std::set<const Function*> FunctionSet_t;
std::function< bool(const Value *, const Function *, FunctionSet_t&) > isInScope = [&](const Value *r, const Function *f, FunctionSet_t &visited) {
if (visited.find(f) != visited.end()) {
return false;
}
visited.insert(f);
//probably a constant inst stored in a register. needs to be kept
if (dyn_cast<const StoreInst>(r)) {
return true;
}
if (dyn_cast<const Constant>(r)) {
return true;
}
mods::Modifies::mapped_type const& M = getModSet(f, MOD);
bool isModified = false;
for (mods::Modifies::mapped_type::const_iterator v = M.begin();
v != M.end(); ++v) {
if (v->first == r) {
isModified = true;
break;
}
}
if (isModified) {
} else {
FuncsToCalls::const_iterator calledBy_b, callledBy_e;
std::tie(calledBy_b, callledBy_e) = funcsToCalls.equal_range(f);
for (; calledBy_b != callledBy_e; ++calledBy_b) {
if (isInScope(r, calledBy_b->second->getParent()->getParent(), visited)) {
isModified = true;
break;
}
}
}
return isModified;
};
detail::RelevantSet toRemove;
for (auto &r : R) {
FunctionSet_t visited;
if (!isInScope(r.first, g, visited)) {
toRemove.insert(r);
}
}
for (auto &rem : toRemove) {
DEBUG(errs() << "Not modified: "; rem.first->dump());
R.erase(rem);
}
if (!R.size()) {
DEBUG(errs() << "No relevant variables in scope " << f->getName() << "\n");
continue;
}
FSS->initializeInfos();
InsInfo *CallInfo = FSS->getInsInfo(CI);
if (FSS->addCriterion(CI, R.begin(), R.end(), this,
rcSources, RCInc, !FSS->shouldSkipAssert(CI))) {
FSS->addCriterion(CI, FSS->REF_begin(CI), FSS->REF_end(CI));
*out++ = g;
calls.insert(c->second->getParent()->getParent()->getName().str());
}
for (auto &structInfo_it : structSliceInfos) {
for (auto &ssi_it : structInfo_it.second) {
CallInfo->addRCStruct(structInfo_it.first, ssi_it);
}
}
}
#ifdef DUMP_CALLS
if (calls.size()) {
errs() << f->getName() << " called by:\n";
for (auto &s : calls) {
errs() << "\t" << s << "\n";
}
errs() << "\n";
}
#endif
}
template<typename OutIterator>
void StaticSlicer::emitToExits(const Function *f, OutIterator out) {
typedef std::vector<const CallInst *> CallsVec;
CallsVec C;
getFunctionCalls(f, std::back_inserter(C));
std::set<std::string> calls;
for (CallsVec::const_iterator c = C.begin(); c != C.end(); ++c) {
const Instruction *succ = getSuccInBlock(*c);
const ValSet::const_iterator relBgn =
slicers[f]->relevant_begin(succ);
const ValSet::const_iterator relEnd =
slicers[f]->relevant_end(succ);
InsInfo::IncMap_t RCInc;
InsInfo *succInfo = slicers[f]->getInsInfo(succ);
InsInfo *callInfo = slicers[f]->getInsInfo(*c);
for (ValSet::const_iterator i = relBgn; i != relEnd; ++i) {
double RC_inc = succInfo->getRCInc(*i);
RCInc[i->first] = RC_inc;
}
CallsToFuncs::const_iterator g, e;
std::tie(g, e) = callsToFuncs.equal_range(*c);
for (; g != e; ++g) {
typedef std::vector<const llvm::ReturnInst *> ExitsVec;
const Function *callie = g->second;
ExitsVec E;
getFunctionExits(callie, std::back_inserter(E));
for (ExitsVec::const_iterator e = E.begin(); e != E.end(); ++e) {
detail::RelevantSet R;
InsInfo::ValMapSet_t RCSources;
InsInfo::SliceInfoSetMap_t structSliceInfos;
detail::getRelevantVarsAtExit(*c, *e, DPP, PS, relBgn, relEnd, R, succInfo, callInfo, RCInc, structSliceInfos, RCSources, MOD);
if (relBgn == relEnd) {
continue;
}
slicers[g->second]->initializeInfos();
InsInfo *exitInfo = slicers[g->second]->getInsInfo(*e);
callInfo->addReturnPred(*e);
//FIXME: add real rc sources
if (slicers[g->second]->addCriterion(*e, R.begin(), R.end(), this, RCSources, RCInc)) {
*out++ = g->second;
calls.insert(g->second->getName());
}
for (auto &structInfo_it : structSliceInfos) {
for (auto &ssi_it : structInfo_it.second) {
exitInfo->addRCStruct(structInfo_it.first, ssi_it);
}
}
}
}
}
#ifdef DUMP_CALLS
if (calls.size()) {
errs() << f->getName() << " calls\n";
for (auto &s : calls) {
errs() << "\t" << s << "\n";
}
errs() << "\n";
}
#endif
}
void StaticSlicer::buildDicts(const ptr::PointsToSets &PS,
const CallInst *c) {
typedef std::vector<const Function *> FunCon;
FunCon G;
getCalledFunctions(c, PS, std::back_inserter(G));
for (FunCon::const_iterator I = G.begin(), E = G.end(); I != E; ++I) {
const Function *h = *I;
if (!memoryManStuff(h) && !h->isDeclaration()) {
funcsToCalls.insert(std::make_pair(h, c));
callsToFuncs.insert(std::make_pair(c, h));
}
}
}
void StaticSlicer::buildDicts(const ptr::PointsToSets &PS)
{
for (Module::const_iterator f = module.begin(); f != module.end(); ++f)
if (!f->isDeclaration() && !memoryManStuff(&*f))
for (const_inst_iterator I = inst_begin(*f), E = inst_end(*f);
I != E; ++I)
if (const CallInst *c = dyn_cast<CallInst>(&*I)) {
if (isInlineAssembly(c)) {
errs() << "ERROR: Inline assembler detected in " <<
f->getName() << ", skipping\n";
continue;
}
buildDicts(PS, c);
}
}
StaticSlicer::StaticSlicer(ModulePass *MP, Module &M,
const ptr::PointsToSets &PS,
const callgraph::Callgraph &CG,
const mods::Modifies &MOD,
std::vector<Rule*> rules) :
PS(PS), MOD(MOD), MP(MP), module(M), slicers(), initFuns(), funcsToCalls(), callsToFuncs() {
for (auto &rule : rules) {
addRule(rule);
}
for (Module::iterator f = M.begin(); f != M.end(); ++f)
if (!f->isDeclaration() && !memoryManStuff(&*f))
runFSS(*f, PS, CG, MOD);
buildDicts(PS);
PM = new legacy::PassManager();
DPP = new DetectParametersPass();
PM->add(DPP);
PM->run(M);
}
StaticSlicer::~StaticSlicer() {
for (Slicers::const_iterator I = slicers.begin(), E = slicers.end();
I != E; ++I)
delete I->second;
}
void StaticSlicer::runFSS(Function &F, const ptr::PointsToSets &PS,
const callgraph::Callgraph &CG,
const mods::Modifies &MOD) {
FunctionStaticSlicer *FSS = new FunctionStaticSlicer(F, MP, PS, MOD, this);
slicers.insert(Slicers::value_type(&F, FSS));
}
void StaticSlicer::ruleIteration() {
findInitialCriterions();
struct FunctionCmp {
bool operator()(const Function* lhs, const Function* rhs) const { return lhs->getName().str().compare(rhs->getName().str()); }
};
typedef std::set<const Function *> WorkSet;
WorkSet Q;
for (auto &i : initFuns) {
Q.insert(i);
}
errs() << "Found " << initFuns.size() << " initial criterions\n";
initFuns.clear();
uint64_t numSlices = 0;
while (!Q.empty()) {
size_t numFunctions = Q.size();
errs() << "Num functions: " << numFunctions << "\n";
for (WorkSet::const_iterator f = Q.begin(); f != Q.end(); ++f) {
slicers[*f]->calculateStaticSlice();
}
WorkSet tmp;
for (WorkSet::const_iterator f = Q.begin(); f != Q.end(); ++f) {
emitToCalls(*f, std::inserter(tmp, tmp.end()));
emitToExits(*f, std::inserter(tmp, tmp.end()));
}
std::swap(tmp,Q);
std::vector<const Function*> x(Q.begin(), Q.end());
std::sort(x.begin(), x.end());
x.erase(std::unique(x.begin(), x.end()), x.end());
if (x.size() != Q.size()) {
Q.clear();
Q.insert(x.begin(), x.end());
}
}
errs() << "Num function slices: " << numSlices << "\n";
std::vector<Rule*> toCheck(ruleWorklist);
std::vector<Rule*> worklist(ruleWorklist);
while(!worklist.empty()) {
std::vector<Rule*> tmp;
for (auto &w : worklist) {
for (auto &c : w->getChildren()) {
if (c->getType() == Constraint::RULE) {
tmp.push_back((Rule*)c);
toCheck.push_back((Rule*)c);
}
}
}
std::swap(worklist, tmp);
}
std::vector<Path*> paths;
auto createPath = [&](const Instruction *call, const Instruction *inst, Rule *rule, Path *parent = nullptr) {
InsInfo *C_info = getInsInfo(inst);
assert(C_info);
PathElement *element = nullptr;
if (call) {
} else {
}
Path *path = nullptr;
if (parent) {
path = parent;
} else {
path = new Path();
}
if (parent) {
element = new PathElement(inst, inst);
path->getLast()->setNext(element);
element->setPrev(path->getLast());
} else if (call) {
PathElement *start = new PathElement(call, inst);
element = new PathElement(inst, inst);
path->setEntry(start);
start->setNext(element);
element->setPrev(start);
} else {
element = new PathElement(inst, inst);
path->setEntry(element);
}
std::vector<Path*> p;
std::mutex pathLock;
if (C_info->backtrack(this, element, p, pathLock, *rule)) {
pathLock.lock();
if (std::find_if(p.begin(), p.end(), [path](const Path *other) { return *path == *other;}) == p.end()) {
p.push_back(path);
}
pathLock.unlock();
} else {
delete(path);
}
std::sort(p.begin(), p.end());
bool modified = false;
do {
modified = false;
for (std::vector<Path *>::iterator i = p.begin(); i != p.end() && !modified; ++i) {
std::vector<Path *>::iterator j = i;
std::advance(j, 1);
for (; j != p.end(); ++j) {
if (i == j)
continue;
if (**i == **j) {
p.erase(j);
modified = true;
break;
}
}
}
}while(modified);
rule->addPaths(p);
};
errs() << "Backtrack\n";
for (std::vector<Rule*>::iterator rule = toCheck.begin(); rule != toCheck.end(); ++rule) {
errs() << (*rule)->getRuleTitle() << "\n";
for (auto &C : (*rule)->getInitialInstruction()) {
for (auto &C_pre : C.second) {
createPath(C.first.first, C_pre.first, C_pre.second);
}
if ((*rule)->getParentRuleTitle().size()) {
for (auto &p : rules) {
if (p->getRuleTitle() == (*rule)->getParentRuleTitle()) {
for (auto &path : p->getPaths()) {
if (path->getLast()->getElement() == C.first.first) {
p->setDismissable(path);
createPath(C.first.first, C.first.second, *rule, new Path(*path));
}
}
}
}
} else {
createPath(C.first.first, C.first.second, *rule);
}
}
}
errs() << "Backtrack done\n";
for (auto &rule : ruleWorklist) {
rule->removeDismissablePaths();
errs() << rule->getRuleTitle() << "\n" ;
rule->checkRule();
}
std::vector<Rule*> checkRules(ruleWorklist);
ruleWorklist.clear();
for (auto &rule : checkRules) {
for (auto &path : rule->getPaths()) {
if (path->getLast()->getType() == PathElementBase::ConstAddressElement) {
if (((ConstPathElement*)path->getLast())->shouldCreateNewCriterion()) {
assert(true);
Rule *newRule = new Rule(*rule, path->getLast()->getElement());
if (!addRule(newRule))
delete(newRule);
}
}
}
}
}
void StaticSlicer::computeSlice() {
while(ruleWorklist.size()) {
ruleIteration();
}
}
bool StaticSlicer::sliceModule() {
bool modified = false;
for (Slicers::iterator s = slicers.begin(); s != slicers.end(); ++s)
modified |= s->second->slice();
if (modified)
for (Module::iterator I = module.begin(), E = module.end(); I != E; ++I)
if (!I->isDeclaration())
FunctionStaticSlicer::removeUndefs(MP, *I);
return modified;
}
bool StaticSlicer::addRule(Rule *rule) {
if (std::find_if(rules.begin(), rules.end(), [&](Rule *other) {return *rule == *other;}) != rules.end())
return false;
rules.push_back(rule);
ruleWorklist.push_back(rule);
return true;
}
void StaticSlicer::findInitialCriterions() {
for (Module::iterator f = module.begin(); f != module.end(); ++f) {
if (!f->isDeclaration() && !memoryManStuff(&*f)) {
FunctionStaticSlicer *FSS = slicers[f];
bool hadAssert = slicing::findInitialCriterion(*f, *FSS, ruleWorklist);
if (hadAssert) {
initFuns.push_back(f);
FSS->initializeInfos();
}
}
}
}
void StaticSlicer::addInitialSlicingCriterion(const Instruction *C) {
InitialCriterions.insert(C);
}
InsInfo *StaticSlicer::getInsInfo(const Instruction *I) {
if (!I) {
return nullptr;
}
const Function *f = I->getParent()->getParent();
FunctionStaticSlicer *fss = slicers[f];
if (!fss->isInitialized())
return nullptr;
return fss->getInsInfo(I);
}
}}
char Slicer::ID = 0;
static RegisterPass<Slicer> X("slice-inter", "View CFG of function", false, true);
static RegisterAnalysisGroup<Slicer> Y(X);
bool Slicer::runOnModule(Module &M) {
ptr::PointsToSets *PS = new ptr::PointsToSets();
{
ptr::ProgramStructure P(M);
computePointsToSets(P, *PS);
}
callgraph::Callgraph CG(M, *PS);
mods::Modifies MOD;
{
mods::ProgramStructure P1(M, *PS);
computeModifies(P1, CG, *PS, MOD);
}
errs() << "done\n";
using llvm::slicing::Rule;
using llvm::slicing::Constraint;
using llvm::slicing::Parameter;
std::vector<Rule*> rules = llvm::slicing::parseRules();
for (auto &r : rules) {
if (r->getParentRuleTitle().size()) {
for (auto &r2 : rules) {
if (r2->getRuleTitle() == r->getParentRuleTitle()) {
r->setParentRule(r2);
}
}
}
}
slicing::StaticSlicer SS(this, M, (*PS), CG, MOD, rules);
SS.computeSlice();
free(PS);
bool s = SS.sliceModule();
raw_fd_ostream *report_stream = nullptr;
if (ReportFilename.length()) {
std::error_code EC;
report_stream = new raw_fd_ostream(ReportFilename, EC, sys::fs::F_None);
if (EC) {
errs() << EC.message() << '\n';
}
}
llvm::slicing::HTMLReportPrinter reportPrinter(report_stream ? *report_stream : nulls());
for (auto &rule : SS.getRules()) {
errs() << "Print results of \"" << rule->getRuleTitle() << "\"\n";
const Rule::CompletePathResultList_t &results = rule->getResults();
errs() << results.size() << " paths\n";
reportPrinter.addResults(rule, results);
}
reportPrinter.close();
if (report_stream) {
report_stream->close();
delete (report_stream);
}
return s;
}
void Slicer::getAnalysisUsage(AnalysisUsage &AU) const {
AU.addRequired<PostDominatorTree>();
AU.addRequired<PostDominanceFrontier>();
} | [
"post@k4.cn"
] | post@k4.cn |
803cb513fc48c28c00362f553514ff79cf404add | cd4587f46b5f1393e46459c7b7959455a847c0db | /source/digits_hits/include/GateRecorderBase.hh | 63534ca4d3341a8c9ff19ee8752ff0018163482c | [] | no_license | lynch829/Gate | 8072e7e30d855b15a9152a5884fc1357c07539bc | 02754973dbaeca343a7c3b9402521f45c05e9ccf | refs/heads/develop | 2021-01-24T20:13:11.821931 | 2016-07-12T11:23:15 | 2016-07-12T11:23:15 | 66,326,268 | 1 | 0 | null | 2016-08-23T02:33:29 | 2016-08-23T02:33:29 | null | UTF-8 | C++ | false | false | 968 | hh | /*----------------------
Copyright (C): OpenGATE Collaboration
This software is distributed under the terms
of the GNU Lesser General Public Licence (LGPL)
See GATE/LICENSE.txt for further details
----------------------*/
#ifndef GATERECORDER_BASE_H_
#define GATERECORDER_BASE_H_
#include "G4Run.hh"
#include "G4Event.hh"
#include "G4Track.hh"
#include "G4Step.hh"
class GateVVolume;
//---------------------------------------------------------------------------
class GateRecorderBase {
public:
virtual ~GateRecorderBase() {};
virtual void RecordBeginOfRun(const G4Run*) = 0;
virtual void RecordEndOfRun(const G4Run*) = 0;
virtual void RecordBeginOfEvent(const G4Event*) {};
virtual void RecordEndOfEvent(const G4Event*) {};
virtual void RecordTrack(const G4Track*) {};
virtual void RecordStepWithVolume(const GateVVolume * , const G4Step *) {};
};
//---------------------------------------------------------------------------
#endif
| [
"benoit@imnc.in2p3.fr"
] | benoit@imnc.in2p3.fr |
7657922b45e8c5b29595f95c2fab4c1fd9acf5a2 | f6ab96101246c8764dc16073cbea72a188a0dc1a | /volume125/12505 - Searching in sqrt(n).cpp | 35e16ebead7094b0a38705d7e975a0a67eeae048 | [] | no_license | nealwu/UVa | c87ddc8a0bf07a9bd9cadbf88b7389790bc321cb | 10ddd83a00271b0c9c259506aa17d03075850f60 | refs/heads/master | 2020-09-07T18:52:19.352699 | 2019-05-01T09:41:55 | 2019-05-01T09:41:55 | 220,883,015 | 3 | 2 | null | 2019-11-11T02:14:54 | 2019-11-11T02:14:54 | null | UTF-8 | C++ | false | false | 1,705 | cpp | #include <stdio.h>
#include <math.h>
#include <string.h>
short bin[160], mbin[320], obin[320];
int check(int st) {
int i, j;
memset(mbin, 0, sizeof(mbin));
for(i = st; i < 160; i++) {
if(bin[i])
for(j = st; j < 160; j++)
mbin[i+j] += bin[i]&bin[j];
}
for(i = 0; i < 320; i++) {
if(mbin[i] >= 2) {
mbin[i+1] += mbin[i]>>1;
mbin[i] &= 1;
}
}
/*for(i = 319; i >= 0; i--)
printf("%d", mbin[i]);
puts("");
for(i = 319; i >= 0; i--)
printf("%d", obin[i]);
puts("");*/
for(i = 319; i >= 0; i--)
if(mbin[i] > obin[i])
return 0;
else if(mbin[i] < obin[i])
return 1;
return 1;
}
int main() {
scanf("%*d");
int n, i, j;
char s[50];
while(scanf("%d %s", &n, s) == 2) {
int sq = sqrt(n);
memset(bin, 0, sizeof(bin));
memset(obin, 0, sizeof(obin));
for(i = 10; i >= 0; i--)
bin[150-(10-i)] = (sq>>i)&1;
for(i = 25; i >= 0; i--)
obin[305-(25-i)] = (n>>i)&1;
/*for(i = 150; i >= 140; i--)
printf("%d", bin[i]);
puts("");*/
for(i = 139; i >= 0; i--) {
bin[i] = 1;
if(check(i)) {}
else bin[i] = 0;
}
for(i = 139; i >= 0; i--) {
for(j = 0; s[j]; j++)
if(s[j]-'0' != bin[i-j])
break;
if(s[j] == '\0') {
printf("%d\n", 139-i);
break;
}
}
/*printf(".");
for(i = 139; i >= 0; i--)
printf("%d", bin[i]);
puts("");*/
}
return 0;
}
| [
"morris821028@gmail.com"
] | morris821028@gmail.com |
81932e1a1e76ab1708e318bbb90371a9019d82ac | 347fdd4d3b75c3ab0ecca61cf3671d2e6888e0d1 | /addons/vaSound/libs/stk/include/stk/FileLoop.h | 70235a5f70bec9586161fd6618ab1aa069d098d5 | [] | no_license | sanyaade/VirtualAwesome | 29688648aa3f191cdd756c826b5c84f6f841b93f | 05f3db98500366be1e79da16f5e353e366aed01f | refs/heads/master | 2020-12-01T03:03:51.561884 | 2010-11-08T00:17:44 | 2010-11-08T00:17:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,033 | h | #ifndef STK_FILELOOP_H
#define STK_FILELOOP_H
#include <stk/FileWvIn.h>
namespace stk {
/***************************************************/
/*! \class FileLoop
\brief STK file looping / oscillator class.
This class provides audio file looping functionality. Any audio
file that can be loaded by FileRead can be looped using this
class.
FileLoop supports multi-channel data. It is important to
distinguish the tick() method that computes a single frame (and
returns only the specified sample of a multi-channel frame) from
the overloaded one that takes an StkFrames object for
multi-channel and/or multi-frame data.
by Perry R. Cook and Gary P. Scavone, 1995 - 2010.
*/
/***************************************************/
class FileLoop : protected FileWvIn
{
public:
//! Default constructor.
FileLoop( unsigned long chunkThreshold = 1000000, unsigned long chunkSize = 1024 );
//! Class constructor that opens a specified file.
FileLoop( std::string fileName, bool raw = false, bool doNormalize = true,
unsigned long chunkThreshold = 1000000, unsigned long chunkSize = 1024 );
//! Class destructor.
~FileLoop( void );
//! Open the specified file and load its data.
/*!
Data from a previously opened file will be overwritten by this
function. An StkError will be thrown if the file is not found,
its format is unknown, or a read error occurs. If the file data
is to be loaded incrementally from disk and normalization is
specified, a scaling will be applied with respect to fixed-point
limits. If the data format is floating-point, no scaling is
performed.
*/
void openFile( std::string fileName, bool raw = false, bool doNormalize = true );
//! Close a file if one is open.
void closeFile( void ) { FileWvIn::closeFile(); };
//! Clear outputs and reset time (file) pointer to zero.
void reset( void ) { FileWvIn::reset(); };
//! Normalize data to a maximum of +-1.0.
/*!
This function has no effect when data is incrementally loaded
from disk.
*/
void normalize( void ) { FileWvIn::normalize( 1.0 ); };
//! Normalize data to a maximum of \e +-peak.
/*!
This function has no effect when data is incrementally loaded
from disk.
*/
void normalize( StkFloat peak ) { FileWvIn::normalize( peak ); };
//! Return the file size in sample frames.
unsigned long getSize( void ) const { return data_.frames(); };
//! Return the input file sample rate in Hz (not the data read rate).
/*!
WAV, SND, and AIF formatted files specify a sample rate in
their headers. STK RAW files have a sample rate of 22050 Hz
by definition. MAT-files are assumed to have a rate of 44100 Hz.
*/
StkFloat getFileRate( void ) const { return data_.dataRate(); };
//! Set the data read rate in samples. The rate can be negative.
/*!
If the rate value is negative, the data is read in reverse order.
*/
void setRate( StkFloat rate );
//! Set the data interpolation rate based on a looping frequency.
/*!
This function determines the interpolation rate based on the file
size and the current Stk::sampleRate. The \e frequency value
corresponds to file cycles per second. The frequency can be
negative, in which case the loop is read in reverse order.
*/
void setFrequency( StkFloat frequency ) { this->setRate( file_.fileSize() * frequency / Stk::sampleRate() ); };
//! Increment the read pointer by \e time samples, modulo file size.
void addTime( StkFloat time );
//! Increment current read pointer by \e angle, relative to a looping frequency.
/*!
This function increments the read pointer based on the file
size and the current Stk::sampleRate. The \e anAngle value
is a multiple of file size.
*/
void addPhase( StkFloat angle );
//! Add a phase offset to the current read pointer.
/*!
This function determines a time offset based on the file
size and the current Stk::sampleRate. The \e angle value
is a multiple of file size.
*/
void addPhaseOffset( StkFloat angle );
//! Return the specified channel value of the last computed frame.
/*!
For multi-channel files, use the lastFrame() function to get
all values from the last computed frame. If no file data is
loaded, the returned value is 0.0. The \c channel argument must
be less than the number of channels in the file data (the first
channel is specified by 0). However, range checking is only
performed if _STK_DEBUG_ is defined during compilation, in which
case an out-of-range value will trigger an StkError exception.
*/
StkFloat lastOut( unsigned int channel = 0 ) { return FileWvIn::lastOut( channel ); };
//! Compute a sample frame and return the specified \c channel value.
/*!
For multi-channel files, use the lastFrame() function to get
all values from the computed frame. If no file data is loaded,
the returned value is 0.0. The \c channel argument must be less
than the number of channels in the file data (the first channel is
specified by 0). However, range checking is only performed if
_STK_DEBUG_ is defined during compilation, in which case an
out-of-range value will trigger an StkError exception.
*/
StkFloat tick( unsigned int channel = 0 );
//! Fill the StkFrames argument with computed frames and return the same reference.
/*!
The number of channels in the StkFrames argument should equal
the number of channels in the file data. However, this is only
checked if _STK_DEBUG_ is defined during compilation, in which
case an incompatibility will trigger an StkError exception. If no
file data is loaded, the function does nothing (a warning will be
issued if _STK_DEBUG_ is defined during compilation and
Stk::showWarnings() has been set to \e true).
*/
StkFrames& tick( StkFrames& frames );
protected:
StkFrames firstFrame_;
StkFloat phaseOffset_;
};
} // stk namespace
#endif
| [
"stefan@nortd.com"
] | stefan@nortd.com |
934fbcd49526b540c91542c3fbceea094a5c99d3 | f0ba9db32f36c5aba864e5978872b2e8ad10aa40 | /tests/finally/behavior.cpp | 572ddac8ea2a86243c7a511c12946e1f5d89c2a7 | [
"MIT"
] | permissive | Bareflank/bsl | fb325084b19cd48e03197f4265049f9c8d008c9f | 6509cfff948fa34b98585512d7be33a36e2f9522 | refs/heads/master | 2021-12-25T11:19:43.743888 | 2021-10-21T14:47:58 | 2021-10-21T14:47:58 | 216,364,945 | 77 | 5 | NOASSERTION | 2021-10-21T02:24:26 | 2019-10-20T13:18:28 | C++ | UTF-8 | C++ | false | false | 4,384 | cpp | /// @copyright
/// Copyright (C) 2020 Assured Information Security, Inc.
///
/// @copyright
/// 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:
///
/// @copyright
/// The above copyright notice and this permission notice shall be included in
/// all copies or substantial portions of the Software.
///
/// @copyright
/// 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 <bsl/finally.hpp>
#include <bsl/ut.hpp>
namespace
{
/// @brief stores whether or not the finally was executed.
// NOLINTNEXTLINE(cppcoreguidelines-avoid-non-const-global-variables)
constinit bool g_mut_executed{};
/// <!-- description -->
/// @brief Used by some of the finally tests to ensure that we can
/// get 100% code coverage.
///
void
finally_function() noexcept
{
g_mut_executed = true;
}
/// <!-- description -->
/// @brief Used to execute the actual checks. We put the checks in this
/// function so that we can validate the tests both at compile-time
/// and at run-time. If a bsl::ut_check fails, the tests will either
/// fail fast at run-time, or will produce a compile-time error.
///
/// <!-- inputs/outputs -->
/// @return Always returns bsl::exit_success.
///
[[nodiscard]] constexpr auto
tests() noexcept -> bsl::exit_code
{
bsl::ut_scenario{"finally"} = []() noexcept {
bsl::ut_given_at_runtime{} = []() noexcept {
g_mut_executed = {};
bsl::ut_then{} = []() noexcept {
{
bsl::finally mut_test{&finally_function};
}
bsl::ut_check(g_mut_executed);
};
};
};
bsl::ut_scenario{"ignore finally"} = []() noexcept {
bsl::ut_given_at_runtime{} = []() noexcept {
g_mut_executed = {};
bsl::ut_then{} = []() noexcept {
{
bsl::finally mut_test{&finally_function};
mut_test.ignore();
}
bsl::ut_check(!g_mut_executed);
};
};
};
bsl::ut_scenario{"dormant finally"} = []() noexcept {
bsl::ut_given_at_runtime{} = []() noexcept {
g_mut_executed = {};
bsl::ut_then{} = []() noexcept {
{
bsl::finally mut_test{bsl::dormant, &finally_function};
}
bsl::ut_check(!g_mut_executed);
};
};
bsl::ut_given_at_runtime{} = []() noexcept {
g_mut_executed = {};
bsl::ut_then{} = []() noexcept {
{
bsl::finally mut_test{bsl::dormant, &finally_function};
mut_test.activate();
}
bsl::ut_check(g_mut_executed);
};
};
};
return bsl::ut_success();
}
}
/// <!-- description -->
/// @brief Main function for this unit test. If a call to bsl::ut_check() fails
/// the application will fast fail. If all calls to bsl::ut_check() pass, this
/// function will successfully return with bsl::exit_success.
///
/// <!-- inputs/outputs -->
/// @return Always returns bsl::exit_success.
///
[[nodiscard]] auto
main() noexcept -> bsl::exit_code
{
static_assert(tests() == bsl::ut_success());
return tests();
}
| [
"rianquinn@gmail.com"
] | rianquinn@gmail.com |
024db65ceaf5092cdbad2d13c44e08dc514f25f4 | 1118fa1d6b40d1cd33476e896a423a7e4c9e8880 | /shared/net/packets/PacketPresentation.h | 6f2b660f520504b74ba3c109c5f73b494e2170b3 | [] | no_license | melardev/XeytanQpp-RAT | 464995e6afc771bb7920d6a751f80392c84cd69e | 09097826b1bf9cfb45fad7552ea8c2738fdd93b7 | refs/heads/master | 2020-07-24T11:04:00.171848 | 2019-09-11T20:37:11 | 2019-09-11T20:37:11 | 207,902,443 | 8 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 898 | h | #pragma once
#include "Packet.h"
#include <QMap>
enum Details : qint8
{
Basic,
Extended
};
class PacketPresentation : public Packet
{
public:
PacketPresentation();
~PacketPresentation();
QString getOs() const
{
return os;
}
QString getPcName() const
{
return pcName;
}
QString get_password() const
{
return password;
}
void setOs(const QString &os);
void setPcName(const QString &pcName);
void setPassword(const QString &password);
virtual QDataStream& serialize(QDataStream& stream) const override;
virtual QDataStream& deserialize(QDataStream& stream) override;
Details getDetails();
QMap<QString, QString> getEnvironment();
void addEnv(const QString& key, const QString& value);
void setDetails(Details details);
private:
PacketType m_type;
QString os;
QString pcName;
QString password;
Details details = Basic;
QMap<QString, QString> environment;
};
| [
"melardev@users.noreply.github.com"
] | melardev@users.noreply.github.com |
4b8717857e51b6b36b6f7cfefd4fadba516febe1 | 94ea9a7ba11c27257293b8e176127aeb37a716a4 | /Manta/t01_simple/src/ofApp.cpp | 8d9f83b2ff29a5b9a6d61e01327bfeae9b26a437 | [] | no_license | genekogan/of-templates | 86dc47c249c053dafa68ce3fb3607e370148bdc3 | 15ae80f97895e9a00c4c83547aaaf13278211b97 | refs/heads/master | 2021-01-10T11:15:25.545770 | 2015-07-14T05:28:05 | 2015-07-14T05:28:05 | 36,607,484 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,236 | cpp | #include "ofApp.h"
//--------------------------------------------------------------
void ofApp::setup(){
manta.setup();
// set smoothing for manta stats (default=0.1)
manta.setVelocityLerpRate(0.1);
// manta values are stored as ofParameters, so you can keep a persistent reference to them
padRef.makeReferenceTo(manta.getPad(0, 0)); // get pad, row/column (0, 0)
sliderRef.makeReferenceTo(manta.getSlider(0)); // get first slider
buttonRef.makeReferenceTo(manta.getButton(0)); // get first button
// get other values
numPads.makeReferenceTo(manta.getNumPads());
padSum.makeReferenceTo(manta.getPadSum());
padAverage.makeReferenceTo(manta.getPadAverage());
centroidX.makeReferenceTo(manta.getCentroidX());
centroidY.makeReferenceTo(manta.getCentroidY());
weightedCentroidX.makeReferenceTo(manta.getWeightedCentroidX());
weightedCentroidY.makeReferenceTo(manta.getWeightedCentroidY());
averageInterFingerDistance.makeReferenceTo(manta.getAverageInterFingerDistance());
perimeter.makeReferenceTo(manta.getPerimeter());
area.makeReferenceTo(manta.getArea());
padWidth.makeReferenceTo(manta.getWidth());
padHeight.makeReferenceTo(manta.getHeight());
whRatio.makeReferenceTo(manta.getWidthHeightRatio());
// get other values (velocity)
numPadsVelocity.makeReferenceTo(manta.getNumPadsVelocity());
padSumVelocity.makeReferenceTo(manta.getPadSumVelocity());
padAverageVelocity.makeReferenceTo(manta.getPadAverageVelocity());
centroidVelocityX.makeReferenceTo(manta.getCentroidVelocityX());
centroidVelocityY.makeReferenceTo(manta.getCentroidVelocityY());
weightedCentroidVelocityX.makeReferenceTo(manta.getWeightedCentroidVelocityX());
weightedCentroidVelocityY.makeReferenceTo(manta.getWeightedCentroidVelocityY());
averageInterFingerDistanceVelocity.makeReferenceTo(manta.getAverageInterFingerDistanceVelocity());
perimeterVelocity.makeReferenceTo(manta.getPerimeterVelocity());
areaVelocity.makeReferenceTo(manta.getAreaVelocity());
widthVelocity.makeReferenceTo(manta.getWidthVelocity());
heightVelocity.makeReferenceTo(manta.getHeightVelocity());
whRatioVelocity.makeReferenceTo(manta.getWidthHeightRatioVelocity());
}
//--------------------------------------------------------------
void ofApp::update(){
}
//--------------------------------------------------------------
void ofApp::draw(){
manta.draw(20, 50, 400);
manta.drawStats(450, 50, 400);
ofSetColor(0);
ofDrawBitmapString(padRef.getName()+" = "+ofToString(padRef), 20, 450);
ofDrawBitmapString(sliderRef.getName()+" = "+ofToString(sliderRef), 20, 470);
ofDrawBitmapString(buttonRef.getName()+" = "+ofToString(buttonRef), 20, 490);
ofDrawBitmapString(numPads.getName()+" = "+ofToString(numPads), 320, 450);
ofDrawBitmapString(padSum.getName()+" = "+ofToString(padSum), 320, 470);
ofDrawBitmapString(padAverage.getName()+" = "+ofToString(padAverage), 320, 490);
ofDrawBitmapString(centroidX.getName()+" = "+ofToString(centroidX), 320, 510);
ofDrawBitmapString(centroidY.getName()+" = "+ofToString(centroidY), 320, 530);
ofDrawBitmapString(weightedCentroidX.getName()+" = "+ofToString(weightedCentroidX), 320, 550);
ofDrawBitmapString(weightedCentroidY.getName()+" = "+ofToString(weightedCentroidY), 320, 570);
ofDrawBitmapString(averageInterFingerDistance.getName()+" = "+ofToString(averageInterFingerDistance), 320, 590);
ofDrawBitmapString(perimeter.getName()+" = "+ofToString(perimeter), 320, 610);
ofDrawBitmapString(area.getName()+" = "+ofToString(area), 320, 630);
ofDrawBitmapString(padWidth.getName()+" = "+ofToString(padWidth), 320, 650);
ofDrawBitmapString(padHeight.getName()+" = "+ofToString(padHeight), 320, 670);
ofDrawBitmapString(whRatio.getName()+" = "+ofToString(whRatio), 320, 690);
ofDrawBitmapString(numPadsVelocity.getName()+" = "+ofToString(numPadsVelocity), 620, 450);
ofDrawBitmapString(padSumVelocity.getName()+" = "+ofToString(padSumVelocity), 620, 470);
ofDrawBitmapString(padAverageVelocity.getName()+" = "+ofToString(padAverageVelocity), 620, 490);
ofDrawBitmapString(centroidVelocityX.getName()+" = "+ofToString(centroidVelocityX), 620, 510);
ofDrawBitmapString(centroidVelocityY.getName()+" = "+ofToString(centroidVelocityY), 620, 530);
ofDrawBitmapString(weightedCentroidVelocityX.getName()+" = "+ofToString(weightedCentroidVelocityX), 620, 550);
ofDrawBitmapString(weightedCentroidVelocityY.getName()+" = "+ofToString(weightedCentroidVelocityY), 620, 570);
ofDrawBitmapString(averageInterFingerDistanceVelocity.getName()+" = "+ofToString(averageInterFingerDistanceVelocity), 620, 590);
ofDrawBitmapString(perimeterVelocity.getName()+" = "+ofToString(perimeterVelocity), 620, 610);
ofDrawBitmapString(areaVelocity.getName()+" = "+ofToString(areaVelocity), 620, 630);
ofDrawBitmapString(widthVelocity.getName()+" = "+ofToString(widthVelocity), 620, 650);
ofDrawBitmapString(heightVelocity.getName()+" = "+ofToString(heightVelocity), 620, 670);
ofDrawBitmapString(whRatioVelocity.getName()+" = "+ofToString(whRatioVelocity), 620, 690);
}
//--------------------------------------------------------------
void ofApp::keyPressed(int key){
}
//--------------------------------------------------------------
void ofApp::keyReleased(int key){
}
//--------------------------------------------------------------
void ofApp::mouseMoved(int x, int y ){
}
//--------------------------------------------------------------
void ofApp::mouseDragged(int x, int y, int button){
}
//--------------------------------------------------------------
void ofApp::mousePressed(int x, int y, int button){
}
//--------------------------------------------------------------
void ofApp::mouseReleased(int x, int y, int button){
}
//--------------------------------------------------------------
void ofApp::windowResized(int w, int h){
}
//--------------------------------------------------------------
void ofApp::gotMessage(ofMessage msg){
}
//--------------------------------------------------------------
void ofApp::dragEvent(ofDragInfo dragInfo){
}
| [
"kogan.gene@gmail.com"
] | kogan.gene@gmail.com |
aefe87aa8d5498757f3cc0ff651598f6eb3926c2 | 4c457c5d8238f756b7ceedc66fba65b58831cea3 | /BAEKJOON_1507_CuriousMinHo/1507_CuriousMinHo.cpp | 45f74bc63b97b284437b32070c4f417c14857293 | [] | no_license | pikacsc/CodingTestPrac | f2a030d23881b8a8d086562ab2502849916819fd | 2e85c4cfd2795ab1e42d1976fa9132cabef7bfa3 | refs/heads/master | 2023-04-07T21:49:48.635654 | 2021-04-25T03:20:17 | 2021-04-25T03:20:17 | 268,752,494 | 0 | 0 | null | null | null | null | UHC | C++ | false | false | 3,275 | cpp | /*
https://www.acmicpc.net/problem/1507
문제
강호는 N개의 도시로 이루어진 나라에 살고 있다. 각 도시는 M개의 도로로 연결되어 있으며, 각 도로를 지날 때 필요한 시간이 존재한다. 도로는 잘 연결되어 있기 때문에, 도시 A에서 B로 이동할 수 없는 경우는 존재하지 않는다.
도시 A에서 도시 B로 바로 갈 수 있는 도로가 있거나, 다른 도시를 거쳐서 갈 수 있을 때, 도시 A에서 B를 갈 수 있다고 한다.
강호는 모든 쌍의 도시에 대해서 최소 이동 시간을 구해놓았다. 민호는 이 표를 보고 원래 도로가 몇 개 있는지를 구해보려고 한다.
예를 들어, 예제의 경우에 모든 도시 사이에 강호가 구한 값을 가지는 도로가 존재한다고 해도 된다. 하지만, 이 도로의 개수는 최솟값이 아니다. 예를 들어, 도시 1-2, 2-3, 1-4, 3-4, 4-5, 3-5를 연결하는 도로만 있다고 가정해도, 강호가 구한 모든 쌍의 최솟값을 구할 수 있다. 이 경우 도로의 개수는 6개이고, 모든 도로의 시간의 합은 55이다.
모든 쌍의 도시 사이의 최소 이동 시간이 주어졌을 때, 이 나라에 존재할 수 있는 도로의 개수의 최솟값과 그 때, 모든 도로의 시간의 합을 구하는 프로그램을 작성하시오.
입력
첫째 줄에 도시의 개수 N(1 ≤ N ≤ 20)이 주어진다. 둘째 줄부터 N개의 줄에 각각의 도시 사이에 이동하는데 필요한 시간 (≤ 10,000)이 주어진다. A에서 B로 가는 시간과 B에서 A로 가는 시간은 같다. 또, A와 B가 같은 경우에는 필요한 시간은 0이다.
출력
첫째 줄에 도로 개수가 최소일 때, 모든 도로의 시간의 합을 출력한다. 불가능한 경우에는 -1을 출력한다.
예제 입력 1
5
0 6 15 2 6
6 0 9 8 12
15 9 0 16 18
2 8 16 0 4
6 12 18 4 0
예제 출력 1
55
*/
#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
int N;
int adj[21][21];
int arr[21][21];
int main()
{
scanf("%d", &N);
for (int i = 0; i < N; i++)
{
for (int j = 0; j < N; j++)
{
scanf("%d", &adj[i][j]);
arr[i][j] = adj[i][j];
}
}
int oldCost = 0;
int newCost = 0;
for (int stopover = 0; stopover < N; stopover++) //stopover : 경유지, 거쳐가는 노드
{
for (int start = 0; start < N; start++)
{
for (int goal = 0; goal < N; goal++)
{
//출발점 또는 도착점이 경유지와 동일 할경우 무시
if (start == stopover || goal == stopover)
continue;
//불가능한 경우
if (adj[start][goal] > adj[start][stopover] + adj[goal][stopover])
{
printf("-1\n");
return 0;
}
//출발점에서 도착점으로 가능 경로가 경유지를 거쳐가능 경우와 같은경우
//출발점에서 도착점으로 가능 경로는 필요없게됨, 0으로 초기화
if (adj[start][goal] == adj[start][stopover] + adj[stopover][goal])
arr[start][goal] = 0;
}
}
}
int ans = 0;
for (int i = 0; i < N; i++)
{
for (int j = 0; j < N; j++)
{
ans += arr[i][j];
}
}
//출발점 -> 도착점, 도착점 -> 출발점, 둘다 계산한 상태이므로
//반으로 나눠줌
printf("%d\n", ans / 2);
return 0;
} | [
"ccc11203@gmail.com"
] | ccc11203@gmail.com |
8a6a9ea641eec819530afe886a19d6ce9d482e8d | e5b98edd817712e1dbcabd927cc1fee62c664fd7 | /Classes/commonData/dictData/DictItemQuality/DictItemQuality.h | 7a95aadf7314e5b7553c14f5287022e7be6bce18 | [] | no_license | yuangu/project | 1a49092221e502bd5f070d7de634e4415c6a2314 | cc0b354aaa994c0ee2d20d1e3d74da492063945f | refs/heads/master | 2020-05-02T20:09:06.234554 | 2018-12-18T01:56:36 | 2018-12-18T01:56:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 506 | h | #ifndef __DictItemQuality__
#define __DictItemQuality__
#include "cocos2d.h"
USING_NS_CC;
using namespace std;
class DictItemQuality:public Ref
{
public:
DictItemQuality():
id(0)//ID
,name("")//类名
,ename("")//英文名称
,levelUpLimit(0)//装备等级上限
,levelColour("")//品质对应边框颜色
,levelColourResource("")//品质对应边框素材
{};
short id;
string name;
string ename;
short levelUpLimit;
string levelColour;
string levelColourResource;
};
#endif
| [
"chenyanbin@ixianlai.com"
] | chenyanbin@ixianlai.com |
fccae73f56cc00366ca8a53a0a36e0f408e8bc0b | dd2029864c813768cbc39e5775865e24efa47fe9 | /GPGPU2/newton_sycl.cpp | ef70e52bfff275ca20eed6574fd1d5061e8584b9 | [] | no_license | myxture/Teaching | bc02b55496d1f903baef3dffddfddd295bd225ae | f180ba94a6f0cb5ab4e870f2ea61c571975721c5 | refs/heads/master | 2020-04-07T03:41:31.813097 | 2018-11-17T21:31:17 | 2018-11-17T21:31:17 | 158,026,310 | 0 | 0 | null | 2018-11-17T21:26:26 | 2018-11-17T21:26:26 | null | UTF-8 | C++ | false | false | 4,835 | cpp | // SYCL include
#include <CL/sycl.hpp>
// Standard C++ includes
#include <iostream>
#include <iomanip>
#include <numeric>
#include <vector>
//Maybe functor:
struct Just{};
struct Nothing{};
template<typename T> struct Maybe
{
T value;
bool nothing;
Maybe(Nothing ):value{}, nothing{true}{}
Maybe(Just, T value_in):value{value_in}, nothing{false}{}
operator bool() const { return nothing ? false : true; }
};
template<typename F>
auto maybe(bool pred, F f){ using R = decltype(f()); return pred ? Maybe<R>(Just(), f()) : Maybe<R>(Nothing()); }
//Minimal Pair implementation
template<typename L, typename R> struct Pair
{
L l; R r;
};
template<typename L, typename R>
auto makePair(L const& l, R const& r){ return Pair<L, R>{ l, r }; }
template<typename UF, typename FF, typename S, typename Z>
auto hylo( UF uf, FF ff, S seed, Z const& zero )
{
auto maybe_val_and_seed = uf( seed );
Z acc = zero;
while( maybe_val_and_seed )
{
acc = ff( acc, maybe_val_and_seed.value.l );
maybe_val_and_seed = uf( maybe_val_and_seed.value.r );
}
return acc;
}
template<typename F, typename dF, typename S, typename T>
auto NewtonIterator( F f, dF df, S const& start, T const& tolerance, int nmaxit )
{
return hylo( [=](Pair<T, int> const& xn_n)
{
auto xnn = xn_n.l - f(xn_n.l)/df(xn_n.l);
int n = xn_n.r + 1;
return maybe(cl::sycl::fabs(xnn-xn_n.l)*2 > tolerance && n < nmaxit,
[=]{ return makePair(makePair(xnn, n), makePair(xnn, n)); });
},
[](auto xn, auto xnn){ return xnn; },
start, makePair(0.0, 0) );
}
template<typename F, typename DF, typename T>
auto roots(F f, DF df, T x00, T x10, size_t n, T tol)
{
auto x0 = std::min(x00, x10);
auto x1 = std::max(x00, x10);
std::vector<T> res0( n );
auto dx = (x1 - x0) / (n-1.0);
{
cl::sycl::queue queue{ cl::sycl::gpu_selector() };
cl::sycl::buffer<T, 1> b_dst(res0.data(), res0.size());
cl::sycl::range<1> r(n);
queue.submit([&](cl::sycl::handler& cgh)
{
auto dst = b_dst.template get_access<cl::sycl::access::mode::write>(cgh);
cgh.parallel_for<class Newton>(r, [=](cl::sycl::item<1> id)
{
auto i = id.get(0);
auto xlo = x0 + i * dx;
auto xhi = xlo + dx;
/*do
{
auto x2 = x = x - f(x) / df(x);
if( cl::sycl::fabs(x-x2)/2 < tol ){ x = x2; break; }
++n;
}while(n<20000);*/
auto res = NewtonIterator(f, df, makePair((xhi + xlo)/2.0, 0), tol, 20000);
double x = res.l;
int n = res.r;
if(n >= 20000)
{
dst[i] = xhi*2;
}
else
{
dst[i] = x;
}
});
});
}
//filter roots:
std::sort(res0.begin(), res0.end());
res0.erase(std::remove_if(res0.begin(), res0.end(), [=](auto x){ return x > x1 || x < x0; }), res0.end());
std::vector<T> res;
if(res0.size() == 0){ return res0; }
{
T last = res0[0];
int last_idx = 0;
for(int i=1; i<res0.size(); ++i)
{
auto diff = res0[i] - last;
if(diff > tol)
{
res.push_back(res0[(i + last_idx)/2]);
last_idx = i;
last = res0[i];
}
}
res.push_back(last);
}
return res;
}
int main()
{
std::cout << std::setprecision(16);
{
//Calculate square root os 612:
auto f = [](double x){ return x*x - 612.; };
auto df = [](double x){ return 2. * x; };
auto x0 = 24.0;
//Newton iteration with tracing:
auto res = hylo([=](auto const& xn_n)
{
auto xnn = xn_n.l - f(xn_n.l)/df(xn_n.l);
int n = xn_n.r + 1;
return maybe(cl::sycl::fabs(xnn-xn_n.l)*2 > 1e-14 && n < 5000,
[=]{ return makePair(makePair(xnn, n), makePair(xnn, n)); });
},
[](auto xn, auto xnn){ std::cout << xnn.r << " " << xn.l << " -> " << xnn.l << "\n"; return xnn; }, makePair(x0, 0), makePair(x0, 0) );
std::cout << "Result = " << res.l << "\n"
<< "Exact = " << sqrt(612.) << "\n";
}
//12th Hermite polinomial:
auto f = [](auto const& x)
{
auto sqx = x*x;
return cl::sycl::exp(-sqx/2) * ((((((4096* sqx - 135168)*sqx + 1520640)*sqx - 7096320)*sqx + 13305600)*sqx - 7983360)*sqx + 665280);
};
auto df = [](auto const& x)
{
auto sqx = x*x;
return -x*64*cl::sycl::exp(-sqx/2)*((((((64*sqx - 2880)*sqx + 44880)*sqx - 300960)*sqx + 873180)*sqx - 956340)*sqx + 259875);
};
auto res = roots(f, df, -5.0, 5.0, 2048, 1e-9);
//Compare: http://www.wolframalpha.com/input/?i=12th+Hermite+polynomial+*+exp(-x*x%2F2)
std::cout << "Roots of the 12th Hermite polinomial:\n";
for(int i=0; i<(int)res.size(); ++i)
{
std::cout << i << " = " << res[i] << "\n";
}
return 0;
} | [
"u235axe@gmail.com"
] | u235axe@gmail.com |
836c792ee5c392c4709ef4d3583dee4abc3c8548 | 5aa60bf4f8e58dc5a190a2d4c4b60cad7b640fd6 | /include/EndTab.h | 771f4ad01ec88ee4db56f79f72a721e9b607b28c | [] | no_license | Biosonic42/2012-Basis | 52abab2e8c212108252a76594661109b9a944982 | 6a1b04710861e718591895ca59e8dd4102366e36 | refs/heads/master | 2021-01-17T05:44:18.163225 | 2013-01-07T06:19:31 | 2013-01-07T06:19:31 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 947 | h |
#ifndef _game_EndTab_h
#define _game_EndTab_h
#include "Controller.h"
#include "model.h"
#include "Tab.h"
#include "NumberSprite.h"
#include "CheckBox.h"
class EndTabController : public Controller {
public:
EndTabController(Controller* superController);
~EndTabController();
void handleKey();
void loadData(const EndData& EndInfo);
void saveData(EndData* EndInfo);
void set_Defensive(CheckBox* cb);
void set_Assist(CheckBox* cb);
void set_Technical(NumberSprite* ns);
void set_Regular(NumberSprite* ns);
void set_YellowPenalty(SpecialBox* sb);
void set_RedPenalty(SpecialBox* sb);
void set_Finish(SpecialBox* sb);
bool getFinishFrame();
private:
Controller* mSuperController;
CheckBox* Defensive;
CheckBox* Assist;
NumberSprite* Technical;
NumberSprite* Regular;
SpecialBox* YellowPenalty;
SpecialBox* RedPenalty;
SpecialBox* Finish;
};
Tab* initEndTab();
bool endMatch();
#endif | [
"biosonic42@gmail.com"
] | biosonic42@gmail.com |
f035db9a38587f987608b670ee7393516d01ab0c | b71dff72733a98a8fa83f59abe48285e6812c62a | /src/static_request_handler.cc | f4ba2b235ec035c4847fbd055d8adf3281bef9ef | [] | no_license | AmyJZhao/webserver | 4dd16d6e0c166f455171d35dd906975377ac7c1c | 77b292388ab8c22a691dbe5395227a94d0fdd668 | refs/heads/master | 2022-11-06T21:22:19.263851 | 2020-06-19T21:08:52 | 2020-06-19T21:10:34 | 273,586,437 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,561 | cc | // static_request_handler.cc
// ~~~~~~~~~~~~~~~~~
#include "static_request_handler.h"
#include <fstream>
#include <iostream>
#include "server_information.h"
#include "response_helper.h"
#include "not_found_request_handler.h"
#include "logger.h"
request_handler* static_request_handler::Init(const std::string& location_path, const NginxConfig& config)
{
setLocationPath(location_path);
directory_ = config.getRoot();
return this;
}
Response static_request_handler::handle_request(const Request &request)
{
Response response;
int size;
std::string request_url;
std::string raw_uri = request.getUri();
url_decode(raw_uri, request_url);
std::string req_path_ = request_url.substr(request_url.find_last_of("/\\") + 1);
std::ifstream file(".." + directory_ + "/" + req_path_, std::ios::in | std::ios::binary);
if (file.is_open())
{
file.seekg(0, std::ios::end);
std::string data;
size = file.tellg();
data.resize(size);
file.seekg(0, std::ios::beg);
file.read(&data[0], data.size());
file.close();
response_helper resp_helper;
Response response = resp_helper.make_response(200, data);
std::size_t last_dot_pos = req_path_.find_last_of(".");
std::string extension;
extension = req_path_.substr(last_dot_pos + 1);
if (extension == "html")
{
resp_helper.push_header(response, "Content-Type", resp_helper.get_mime_type(MimeType::TEXT_HTML));
}
else if (extension == "jpg" || extension == "jpeg")
{
resp_helper.push_header(response, "Content-Type", resp_helper.get_mime_type(MimeType::IMAGE_JPEG));
}
else if (extension == "zip")
{
resp_helper.push_header(response, "Content-Type", resp_helper.get_mime_type(MimeType::APPLICATION_ZIP));
}
else if (extension == "txt")
{
resp_helper.push_header(response, "Content-Type", resp_helper.get_mime_type(MimeType::TEXT_PLAIN));
}
else if (extension == "css")
{
resp_helper.push_header(response, "Content-Type", resp_helper.get_mime_type(MimeType::TEXT_CSS));
}
else if (extension == "js")
{
resp_helper.push_header(response, "Content-Type", resp_helper.get_mime_type(MimeType::TEXT_JAVASCRIPT));
}
resp_helper.push_header(response, "Content-Length", std::to_string(response.body_.length()));
ServerInformation* info = ServerInformation::getInstance();
info->incrementResponseCodeCountByCode(200);
Logger *logger = Logger::getLogger();
logger->logDebug("handle_request in StaticHandler", "Response Code: 200");
return response;
}
else
{
ServerInformation* info = ServerInformation::getInstance();
info->incrementResponseCodeCountByCode(404);
NotFoundRequestHandler nfrh;
return nfrh.handle_request(request);
}
return response;
}
std::string static_request_handler::getDirectory() {
return directory_;
}
bool static_request_handler::url_decode(const std::string& in, std::string& out)
{
out.clear();
out.reserve(in.size());
for (std::size_t i = 0; i < in.size(); ++i)
{
if (in[i] == '%')
{
if (i + 3 <= in.size())
{
int value = 0;
std::istringstream is(in.substr(i + 1, 2));
if (is >> std::hex >> value)
{
out += static_cast<char>(value);
i += 2;
}
else
{
return false;
}
}
else
{
return false;
}
}
else if (in[i] == '+')
{
out += ' ';
}
else
{
out += in[i];
}
}
return true;
} | [
"17zhaoamy@gmail.com"
] | 17zhaoamy@gmail.com |
2d40c36a8cf475c0261563ccadb8804418509850 | c450a46781c10a6dbf9acc3615b9d08ea3ea2cbe | /Window.cpp | bb2ec6717956fbb7949ce6760ce58bbdb0292c0e | [] | no_license | Daniel95/Reflection | 574dc2059bf9064a3675f92785a97a2a3c346993 | ef9d7c5b4dd9d4f72f11c6abefda170cbd329ea3 | refs/heads/master | 2021-09-05T14:23:51.499239 | 2018-01-28T20:03:03 | 2018-01-28T20:03:03 | 112,529,649 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,861 | cpp | #include "stdafx.h"
#include <SFML/Graphics.hpp>
#include "Window.h"
#include <iostream>
using namespace sf;
using namespace std;
RenderWindow GameWindow(VideoMode::getFullscreenModes()[0], "Reflection", Style::Close | Style::Fullscreen);
//RenderWindow GameWindow(VideoMode(1280, 920), "Reflection", Style::Close);
map<int, vector<const Drawable*>> DrawablesByLayer;
vector<const Drawable*> DrawablesInOrder;
void SortDrawablesInOrder();
void AddDrawable(const Drawable &drawable, int renderLayer) {
if (DrawablesByLayer.find(renderLayer) == DrawablesByLayer.end()) {
DrawablesByLayer[renderLayer] = vector<const Drawable*>();
}
DrawablesByLayer[renderLayer].push_back(&drawable);
SortDrawablesInOrder();
}
void RemoveDrawable(const Drawable &drawable, int renderLayer) {
if (DrawablesByLayer.find(renderLayer) == DrawablesByLayer.end()) {
cout << "Drawable to remove not found!" << endl;
return;
}
vector<const Drawable*> &drawableVector = DrawablesByLayer[renderLayer];
drawableVector.erase(remove(drawableVector.begin(), drawableVector.end(), &drawable), drawableVector.end());
if (drawableVector.size() == 0) {
DrawablesByLayer.erase(renderLayer);
}
DrawablesInOrder.erase(remove(DrawablesInOrder.begin(), DrawablesInOrder.end(), &drawable), DrawablesInOrder.end());
}
void DrawDrawablesInOrder() {
for (size_t i = 0; i < DrawablesInOrder.size(); i++) {
GameWindow.draw(*DrawablesInOrder[i]);
}
}
void SortDrawablesInOrder() {
vector<int> drawableLayers;
for (auto const& x : DrawablesByLayer) {
drawableLayers.push_back(x.first);
}
DrawablesInOrder.clear();
for (int i = drawableLayers.size() - 1; i >= 0; i--) {
int layer = drawableLayers[i];
vector<const Drawable*> drawables = DrawablesByLayer[layer];
for (size_t d = 0; d < drawables.size(); d++) {
DrawablesInOrder.push_back(drawables[d]);
}
}
}
| [
"idaniel95@me.com"
] | idaniel95@me.com |
ab6f332c84d101f83a1cb09babbfae8fe8155a37 | eb10d421252568464bf17d0552bb5e811e1ff300 | /Leetcod_way/Leetcod_way/215.h | 85da99316b4a6b408e3b88fda852507bc12d9263 | [] | no_license | Meveral/Leetcode | 213d697489e5f5b723c8e45c13bbf68f142b4bcd | 674f4e4858d63a5c209d77924cbbd22b24ee9cfd | refs/heads/master | 2023-02-13T13:03:05.070954 | 2021-01-15T02:00:10 | 2021-01-15T02:00:10 | 270,582,300 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,595 | h | #pragma once
/****************************************
*215.数组中的第k个最大元素
在未排序的数组中找到第 k 个最大的元素。请注意,你需要找的是数组排序后的第 k 个最大的元素,而不是第 k 个不同的元素。
示例 1:
输入: [3,2,1,5,6,4] 和 k = 2
输出: 5
示例 2:
输入: [3,2,3,1,2,4,5,5,6] 和 k = 4
输出: 4
说明:
你可以假设 k 总是有效的,且 1 ≤ k ≤ 数组的长度。
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/kth-largest-element-in-an-array
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
***************************************/
#include<MeveralUse_HeadersUsual.h>
using namespace std;
//2021-1-14
//很经典的一道题,算法导论,特定情况下的快排.
class Solution {
public:
int findKthLargest(vector<int>& nums, int k) {
int ret = do_it(nums, 0, nums.size() - 1, k);
return ret;
}
int do_it(vector<int>&nums, int a, int b, int k)
{
if (a == b)
return nums[a];
int a_ = a;
int b_ = b;
int mark = 1;
while (a != b)
{
if (mark == 1)
{
if (nums[b] > nums[a])
{
swap(nums[a], nums[b]);
mark = 0;
++a;
}
else
--b;
}
else
{
if (nums[a < nums[b]])
{
swap(nums[a], nums[b]);
mark = 1;
--b;
}
else
++a;
}
}
int t = a - a_ + 1;
if (t == k)
return nums[a];
else if (t < k)
{
return do_it(nums, a + 1, b_, k - t);
}
else
{
return do_it(nums, a_, a - 1, k);
}
}
};
| [
"48489402+Meveral@users.noreply.github.com"
] | 48489402+Meveral@users.noreply.github.com |
39c60cda0a8e0edde6cb5223a6c05164c87bf1f1 | c19f0ffa5ff4fefaf0cefbfe7c970222b643112f | /src/DFS/DCore/dfs/core/DThreadPriorityEscalator.h | abe32f6921de529ade683b40e6513fef6cd3effa | [
"MIT"
] | permissive | Timie/PositionEstimationAccuracy | aa743124904047fe1ea14b95e13e812136ace055 | 9e88597c271ccc2a1a8442db6fa62236b7178296 | refs/heads/master | 2020-05-21T08:40:01.444356 | 2016-09-07T22:46:46 | 2016-09-07T22:46:46 | 63,778,229 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 617 | h | #ifndef DFS_CORE_DTHREADPRIORIDYESCALATOR_H
#define DFS_CORE_DTHREADPRIORIDYESCALATOR_H
#include <QThread>
namespace dfs {
namespace core {
class DThreadPriorityEscalator
{
public:
DThreadPriorityEscalator(QThread *targetThread,
QThread::Priority targetPriority = QThread::InheritPriority);
~DThreadPriorityEscalator();
protected:
QThread *targetThread_;
QThread::Priority formerPriority_;
};
} // namespace core
} // namespace dfs
#endif // DFS_CORE_DTHREADPRIORIDYESCALATOR_H
| [
"adam.babinec@gmail.com"
] | adam.babinec@gmail.com |
42515210d482dee5c5f5a6799ffc465d63271b39 | 5de7623d6e737918d2ea0cb91a71d4234b9b4456 | /include/screen.h | 2af53ed11b959d13ee6aa339faf4d61e22c88b53 | [] | no_license | LibelulaV/Game_2D | 14b3a997f06c844069b5930150d24c65b73ef020 | 0b45121295d5b86fea5d0624fbbdc17246d526b6 | refs/heads/master | 2016-08-12T18:35:38.541428 | 2016-02-15T12:09:32 | 2016-02-15T12:09:32 | 51,752,796 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,175 | h | #ifndef UGINE_SCREEN_H
#define UGINE_SCREEN_H
#include "string.h"
#include "types.h"
class Screen {
public:
static Screen& Instance();
// Pantalla
virtual void Open(uint16 width, uint16 height, bool fullscreen);
virtual void Close();
virtual bool IsOpened() const { return opened; }
virtual void SetTitle(const String& title);
virtual void Refresh();
virtual uint16 GetWidth() const { return width; }
virtual uint16 GetHeight() const { return height; }
virtual uint16 GetDesktopWidth() const;
virtual uint16 GetDesktopHeight() const;
// Temporizador
double ElapsedTime() const { return elapsed; }
// Input
virtual int32 GetMouseX() const { return mousex; }
virtual int32 GetMouseY() const { return mousey; }
virtual bool MouseButtonPressed(int button) const;
virtual bool KeyPressed(int key) const;
bool KeyReleased(int key) const;
bool KeyRepeated(int key) const;
protected:
Screen();
virtual ~Screen();
private:
static Screen* screen;
bool opened;
uint16 width, height;
int32 mousex, mousey;
double lastTime;
double elapsed;
static int CloseCallback();
};
#endif
| [
"maguilera2491@gmail.com"
] | maguilera2491@gmail.com |
e321cfedebbd87f2c4c56eb8348506578ab41960 | c92e18501d8962b58c8f7c5f531a8b9aafc9d0ef | /USACO/usaco18jang2.cpp | 8de5165d283ebf06a39b2e5ae5157863f6c91593 | [] | no_license | Dan13llljws/CP-Solutions | 8bc79208b741959c924ec117c2a8a9c7e79be0d8 | 4989119875843da53e0e076ecd9155a71112be8a | refs/heads/master | 2023-08-16T16:41:13.599206 | 2023-08-10T04:26:53 | 2023-08-10T04:26:53 | 254,217,958 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 621 | cpp | #include <bits/stdc++.h>
using namespace std;
const int MM = 1e5 + 5;
int n, k, d[MM]; vector<int> adj[MM];
int dfs(int src, int par, int dis){
int ret = 0; d[src] = 1e9;
if (adj[src].size() == 1) d[src] = dis;
for (int v : adj[src])
if (v != par) ret += dfs(v, src, dis + 1), d[src] = min(d[src], d[v]);
if ((d[src] + 1) / 2 == dis) return 1;
return ret;
}
int main(){
//freopen("atlarge.in", "r", stdin); freopen("atlarge.out", "w", stdout);
scanf("%d%d", &n, &k);
for (int i = 1; i < n; i++){
int a, b; scanf("%d%d", &a, &b);
adj[a].push_back(b); adj[b].push_back(a);
}
printf("%d\n", dfs(k, k, 0));
}
| [
"dan13jws@gmail.com"
] | dan13jws@gmail.com |
53b7da9d7807b96c8cc5d5735d75b8e300e4d195 | 3d2b464b3d372c2439deda699acb4040ac09ce75 | /game/raknetsdk64/source/DynDNS.cpp | 5fb3bec3c3aefe23e5b06458d0ab28cb4d174a87 | [] | no_license | gamemans/cargame | 072f2d60d8eaaf8348acf25bf6dd084c68679e37 | 03809920aa24c34cce76aecd2097e609da19c5d8 | refs/heads/master | 2021-09-03T01:38:35.794488 | 2018-01-04T16:12:17 | 2018-01-04T16:12:17 | 116,275,560 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,752 | cpp | #include "NativeFeatureIncludes.h"
#if _RAKNET_SUPPORT_DynDNS==1 && _RAKNET_SUPPORT_TCPInterface==1
#include "TCPInterface.h"
#include "SocketLayer.h"
#include "DynDNS.h"
#include "GetTime.h"
#include "Base64Encoder.h"
using namespace RakNet;
struct DynDnsResult
{
const char *description;
const char *code;
DynDnsResultCode resultCode;
};
DynDnsResult resultTable[13] =
{
// See http://www.dyndns.com/developers/specs/flow.pdf
{"DNS update success.\nPlease wait up to 60 seconds for the change to take effect.\n", "good", RC_SUCCESS}, // Even with success, it takes time for the cache to update!
{"No change", "nochg", RC_NO_CHANGE},
{"Host has been blocked. You will need to contact DynDNS to reenable.", "abuse", RC_ABUSE},
{"Useragent is blocked", "badagent", RC_BAD_AGENT},
{"Username/password pair bad", "badauth", RC_BAD_AUTH},
{"Bad system parameter", "badsys", RC_BAD_SYS},
{"DNS inconsistency", "dnserr", RC_DNS_ERROR},
{"Paid account feature", "!donator", RC_NOT_DONATOR},
{"No such host in system", "nohost", RC_NO_HOST},
{"Invalid hostname format", "notfqdn", RC_NOT_FQDN},
{"Serious error", "numhost", RC_NUM_HOST},
{"This host exists, but does not belong to you", "!yours", RC_NOT_YOURS},
{"911", "911", RC_911}
};
DynDNS::DynDNS()
{
connectPhase=CP_IDLE;
tcp=0;
}
DynDNS::~DynDNS()
{
if (tcp)
RakNet::OP_DELETE(tcp, _FILE_AND_LINE_);
}
void DynDNS::Stop(void)
{
tcp->Stop();
connectPhase = CP_IDLE;
RakNet::OP_DELETE(tcp, _FILE_AND_LINE_);
tcp=0;
}
// newIPAddress is optional - if left out, DynDNS will use whatever it receives
void DynDNS::UpdateHostIPAsynch(const char *dnsHost, const char *newIPAddress, const char *usernameAndPassword )
{
myIPStr[0]=0;
if (tcp==0)
tcp = RakNet::OP_NEW<TCPInterface>(_FILE_AND_LINE_);
connectPhase = CP_IDLE;
host = dnsHost;
if (tcp->Start(0, 1)==false)
{
SetCompleted(RC_TCP_FAILED_TO_START, "TCP failed to start");
return;
}
connectPhase = CP_CONNECTING_TO_CHECKIP;
tcp->Connect("checkip.dyndns.org", 80, false);
// See https://www.dyndns.com/developers/specs/syntax.html
getString="GET /nic/update?hostname=";
getString+=dnsHost;
if (newIPAddress)
{
getString+="&myip=";
getString+=newIPAddress;
}
getString+="&wildcard=NOCHG&mx=NOCHG&backmx=NOCHG HTTP/1.0\n";
getString+="Host: members.dyndns.org\n";
getString+="Authorization: Basic ";
char outputData[512];
Base64Encoding(usernameAndPassword, (int) strlen(usernameAndPassword), outputData);
getString+=outputData;
getString+="User-Agent: Jenkins Software LLC - PC - 1.0\n\n";
}
void DynDNS::Update(void)
{
if (connectPhase==CP_IDLE)
return;
serverAddress=tcp->HasFailedConnectionAttempt();
if (serverAddress!=UNASSIGNED_SYSTEM_ADDRESS)
{
SetCompleted(RC_TCP_DID_NOT_CONNECT, "Could not connect to DynDNS");
return;
}
serverAddress=tcp->HasCompletedConnectionAttempt();
if (serverAddress!=UNASSIGNED_SYSTEM_ADDRESS)
{
if (connectPhase == CP_CONNECTING_TO_CHECKIP)
{
checkIpAddress=serverAddress;
connectPhase = CP_WAITING_FOR_CHECKIP_RESPONSE;
tcp->Send("GET\n\n", (unsigned int) strlen("GET\n\n"), serverAddress, false); // Needs 2 newlines! This is not documented and wasted a lot of my time
}
else
{
connectPhase = CP_WAITING_FOR_DYNDNS_RESPONSE;
tcp->Send(getString.C_String(), (unsigned int) getString.GetLength(), serverAddress, false);
}
phaseTimeout=RakNet::GetTime()+1000;
}
if (connectPhase==CP_WAITING_FOR_CHECKIP_RESPONSE && RakNet::GetTime()>phaseTimeout)
{
connectPhase = CP_CONNECTING_TO_DYNDNS;
tcp->CloseConnection(checkIpAddress);
tcp->Connect("members.dyndns.org", 80, false);
}
else if (connectPhase==CP_WAITING_FOR_DYNDNS_RESPONSE && RakNet::GetTime()>phaseTimeout)
{
SetCompleted(RC_DYNDNS_TIMEOUT, "DynDNS did not respond");
return;
}
Packet *packet = tcp->Receive();
if (packet)
{
if (connectPhase==CP_WAITING_FOR_DYNDNS_RESPONSE)
{
unsigned int i;
char *result;
result=strstr((char*) packet->data, "Connection: close");
if (result!=0)
{
result+=strlen("Connection: close");
while (*result && ((*result=='\r') || (*result=='\n') || (*result==' ')) )
result++;
for (i=0; i < 13; i++)
{
if (strncmp(resultTable[i].code, result, strlen(resultTable[i].code))==0)
{
if (resultTable[i].resultCode==RC_SUCCESS)
{
// Read my external IP into myIPStr
// Advance until we hit a number
while (*result && ((*result<'0') || (*result>'9')) )
result++;
if (*result)
{
SystemAddress parser;
parser.FromString(result);
parser.ToString(false, myIPStr);
}
}
tcp->DeallocatePacket(packet);
SetCompleted(resultTable[i].resultCode, resultTable[i].description);
break;
}
}
if (i==13)
{
tcp->DeallocatePacket(packet);
SetCompleted(RC_UNKNOWN_RESULT, "DynDNS returned unknown result");
}
}
else
{
tcp->DeallocatePacket(packet);
SetCompleted(RC_PARSING_FAILURE, "Parsing failure on returned string from DynDNS");
}
return;
}
else
{
/*
HTTP/1.1 200 OK
Content-Type: text/html
Server: DynDNS-CheckIP/1.0
Connection: close
Cache-Control: no-cache
Pragma: no-cache
Content-Length: 105
<html><head><title>Current IP Check</title></head><body>Current IP Address: 98.1
89.219.22</body></html>
Connection to host lost.
*/
char *result;
result=strstr((char*) packet->data, "Current IP Address: ");
if (result!=0)
{
result+=strlen("Current IP Address: ");
SystemAddress myIp;
myIp.FromString(result);
myIp.ToString(false, myIPStr);
// Resolve DNS we are setting. If equal to current then abort
const char *existingHost = ( char* ) SocketLayer::DomainNameToIP( host.C_String() );
if (existingHost && strcmp(existingHost, myIPStr)==0)
{
// DynDNS considers setting the IP to what it is already set abuse
tcp->DeallocatePacket(packet);
SetCompleted(RC_DNS_ALREADY_SET, "No action needed");
return;
}
}
tcp->DeallocatePacket(packet);
tcp->CloseConnection(packet->systemAddress);
connectPhase = CP_CONNECTING_TO_DYNDNS;
tcp->Connect("members.dyndns.org", 80, false);
}
}
if (tcp->HasLostConnection()!=UNASSIGNED_SYSTEM_ADDRESS)
{
if (connectPhase==CP_WAITING_FOR_DYNDNS_RESPONSE)
{
SetCompleted(RC_CONNECTION_LOST_WITHOUT_RESPONSE, "Connection lost to DynDNS during GET operation");
}
}
}
#endif // _RAKNET_SUPPORT_DynDNS
| [
"aaaa@aaaa-VirtualBox.(none)"
] | aaaa@aaaa-VirtualBox.(none) |
4028f970b190b297d717aa107aacc96de3a803c2 | ba402820dad6928bda6a1b0cadc69b5cb7d64cb4 | /arduino.ino | de919d633d124c2c701db2c27aa12a696f67e220 | [] | no_license | stoffej/binary_sensor_cyclic | 5ee9fea955d9a9bba1264e9b2ccc10231da40292 | f072814ebcaca75b52f3a2972c1533ac648afd6f | refs/heads/master | 2021-01-01T04:05:24.553849 | 2016-04-17T16:11:02 | 2016-04-17T16:11:02 | 56,441,405 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,228 | ino | /**
* The MySensors Arduino library handles the wireless radio link and protocol
* between your home built sensors/actuators and HA controller of choice.
* The sensors forms a self healing radio network with optional repeaters. Each
* repeater and gateway builds a routing tables in EEPROM which keeps track of the
* network topology allowing messages to be routed to nodes.
*
* Created by Henrik Ekblad <henrik.ekblad@mysensors.org>
* Copyright (C) 2013-2015 Sensnology AB
* Full contributor list: https://github.com/mysensors/Arduino/graphs/contributors
*
* Documentation: http://www.mysensors.org
* Support Forum: http://forum.mysensors.org
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* version 2 as published by the Free Software Foundation.
*
*******************************
*
* DESCRIPTION
*
* Simple binary switch example
* Connect button or door/window reed switch between
* digitial I/O pin 3 (BUTTON_PIN below) and GND.
* http://www.mysensors.org/build/binary
*/
#include <MySensor.h>
#include <SPI.h>
#include <Bounce2.h>
#define CHILD_ID 3
#define BUTTON_PIN 3 // Arduino Digital I/O pin for button/reed switch
MySensor gw;
Bounce debouncer = Bounce();
int oldValue=-1;
int value = debouncer.read();
// Change to V_LIGHT if you use S_LIGHT in presentation below
MyMessage msg(CHILD_ID,V_TRIPPED);
void setup()
{
gw.begin(NULL,10);
// Setup the button
pinMode(BUTTON_PIN,INPUT);
// Activate internal pull-up
digitalWrite(BUTTON_PIN,HIGH);
// After setting up the button, setup debouncer
debouncer.attach(BUTTON_PIN);
debouncer.interval(5);
// Register binary input sensor to gw (they will be created as child devices)
// You can use S_DOOR, S_MOTION or S_LIGHT here depending on your usage.
// If S_LIGHT is used, remember to update variable type you send in. See "msg" above.
gw.present(CHILD_ID, S_DOOR);
debouncer.update();
// Get the update value
}
// Check if digital input has changed and send in new value
void loop()
{
delay(2000);
// Send in the new value
gw.send(msg.set(value==HIGH ? 1 : 0));
value = !value;
}
| [
"kristoffer.c.johansson@gmail.com"
] | kristoffer.c.johansson@gmail.com |
56215bf5515d1bfa56bc33f8a214997b3e4a4339 | 75057ce894911745e17989eb4385aba1947f1544 | /plugins/extra/timer.h | 50ec40498a01cbc02a5804cbad4bf71e9084cf31 | [
"BSD-3-Clause",
"LicenseRef-scancode-unknown-license-reference",
"MIT"
] | permissive | m42a/Lirch | 85fc2248cc51a40b1bbdefe2ec6320ddf60687c1 | aa1cdc5279ee9eb1ce747042afcd65ef84da7703 | refs/heads/master | 2016-09-06T01:07:16.754060 | 2012-05-03T15:14:39 | 2012-05-03T15:14:39 | 3,340,328 | 5 | 5 | null | null | null | null | UTF-8 | C++ | false | false | 364 | h | #ifndef TIMER_H_
#define TIMER_H_
class timed_message : public message_data
{
public:
virtual std::unique_ptr<message_data> copy() const {return std::unique_ptr<message_data>(new timed_message(*this));}
static message create(int m) {return message_create("timer", new timed_message(m));}
timed_message(int m) : msecs(m) {}
int msecs;
message m;
};
#endif
| [
"m101010a@gmail.com"
] | m101010a@gmail.com |
769586cc4088d73cf7d925e9f9eed70decc021ad | 69f7c335ce90cb454098b338559e1c0c092ff42d | /iSDC-P2_Translate-Pyhton-Cpp/localizer.cpp | db4424ce35a015dfa574ed8d647e53c518785cab | [] | no_license | bessszilard/Udacity-Intro-to-Self-Driving-Cars-Nanodegree | ff20238f86dcccc3ffd8b3055db1d81eb805448c | 221f85df3352874d2bc8f554bba63643c8be18de | refs/heads/master | 2020-05-18T07:22:56.043996 | 2019-05-09T20:14:01 | 2019-05-09T20:14:01 | 184,262,643 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,774 | cpp | /**
localizer.cpp
Purpose: implements a 2-dimensional histogram filter
for a robot living on a colored cyclical grid by
correctly implementing the "initialize_beliefs",
"sense", and "move" functions.
This file is incomplete! Your job is to make these
functions work. Feel free to look at localizer.py
for working implementations which are written in python.
*/
#include "localizer.h"
#include "helpers.h"
#include <stdlib.h>
#include "debugging_helpers.h"
using namespace std;
/**
TODO - implement this function
Initializes a grid of beliefs to a uniform distribution.
@param grid - a two dimensional grid map (vector of vectors
of chars) representing the robot's world. For example:
g g g
g r g
g g g
would be a 3x3 world where every cell is green except
for the center, which is red.
@return - a normalized two dimensional grid of floats. For
a 2x2 grid, for example, this would be:
0.25 0.25
0.25 0.25
*/
vector< vector <float> > initialize_beliefs(vector< vector <char> > &grid) {
int grid_h = grid.size();
int grid_w = grid[0].size();
vector< vector<float> > newGrid(grid_h, vector<float>(grid_w, 1.0f / ( grid_h * grid_w ) ));
return newGrid;
}
/**
TODO - implement this function
Implements robot motion by updating beliefs based on the
intended dx and dy of the robot.
For example, if a localized robot with the following beliefs
0.00 0.00 0.00
0.00 1.00 0.00
0.00 0.00 0.00
and dx and dy are both 1 and blurring is 0 (noiseless motion),
than after calling this function the returned beliefs would be
0.00 0.00 0.00
0.00 0.00 0.00
0.00 0.00 1.00
@param dy - the intended change in y position of the robot
@param dx - the intended change in x position of the robot
@param beliefs - a two dimensional grid of floats representing
the robot's beliefs for each cell before sensing. For
example, a robot which has almost certainly localized
itself in a 2D world might have the following beliefs:
0.01 0.98
0.00 0.01
@param blurring - A number representing how noisy robot motion
is. If blurring = 0.0 then motion is noiseless.
@return - a normalized two dimensional grid of floats
representing the updated beliefs for the robot.
*/
vector< vector <float> > move(int dy, int dx, vector < vector <float> > &beliefs, float blurring)
{
size_t beliefs_h = beliefs.size();
size_t beliefs_w = beliefs[0].size();
vector < vector <float> > newGrid ( beliefs_h, vector<float>(beliefs_w, 0.0)); // zeros
int new_i, new_j;
for (size_t i = 0; i < beliefs_h; i++) {
for (size_t j = 0; j < beliefs_w; j++) {
new_i = HELPERS_modulo(i + dy, beliefs_h);
new_j = HELPERS_modulo(j + dy, beliefs_w);
newGrid[new_i][new_j] = beliefs[i][j];
}
}
return blur(newGrid, blurring);
}
/**
TODO - implement this function
Implements robot sensing by updating beliefs based on the
color of a sensor measurement
@param color - the color the robot has sensed at its location
@param grid - the current map of the world, stored as a grid
(vector of vectors of chars) where each char represents a
color. For example:
g g g
g r g
g g g
@param beliefs - a two dimensional grid of floats representing
the robot's beliefs for each cell before sensing. For
example, a robot which has almost certainly localized
itself in a 2D world might have the following beliefs:
0.01 0.98
0.00 0.01
@param p_hit - the RELATIVE probability that any "sense" is
correct. The ratio of p_hit / p_miss indicates how many
times MORE likely it is to have a correct "sense" than
an incorrect one.
@param p_miss - the RELATIVE probability that any "sense" is
incorrect. The ratio of p_hit / p_miss indicates how many
times MORE likely it is to have a correct "sense" than
an incorrect one.
@return - a normalized two dimensional grid of floats
representing the updated beliefs for the robot.
*/
vector< vector <float> > sense(char color, vector< vector <char> > &grid,
vector< vector <float> > &beliefs, float p_hit, float p_miss)
{
size_t grid_h = grid.size();
size_t grid_w = grid[0].size();
vector < vector <float> > newGrid(grid_h, vector<float>(grid_w, 0.0)); // zeros
for (size_t i = 0; i < grid_h; i++) {
for (size_t j = 0; j < grid_w; j++) {
if (color == grid[i][j])
newGrid[i][j] = beliefs[i][j] * p_hit;
else
newGrid[i][j] = beliefs[i][j] * p_miss;
}
}
return normalize(newGrid);
}
| [
"bessszilard@gmail.com"
] | bessszilard@gmail.com |
4a747cbe354702d8ba3472f80105e268b28b3bb4 | c05a364f8c5324f7d1835a45f35fb43514e32882 | /src/TextureMenu.cpp | 38fd094a941774a6c0e783142aa17379442cf6da | [] | no_license | gaborpapp/IRPaint | e33d7bcf57419b99a6b81af790af269ee9a6ea34 | 54fbcc24d2c0aa467b2431e688b06e8917392fcc | refs/heads/master | 2020-05-17T00:27:02.116438 | 2014-07-29T12:38:49 | 2014-07-29T12:38:49 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,298 | cpp | #include "cinder/app/App.h"
#include "cinder/gl/gl.h"
#include "TextureMenu.h"
using namespace ci;
using namespace std;
namespace mndl { namespace gl {
TextureMenu::TextureMenu( ImageSourceRef background ) :
mObj( shared_ptr< Obj >( new Obj ) )
{
mObj->mBackground = ci::gl::Texture( background );
}
void TextureMenu::setPosition( const ci::Vec2i &pos )
{
mObj->mPosition = pos;
}
ci::Vec2i TextureMenu::getPosition() const
{
return mObj->mPosition;
}
Vec2i TextureMenu::getSize() const
{
return mObj->mBackground.getSize();
}
Area TextureMenu::getBounds() const
{
return mObj->mBackground.getBounds() + mObj->mPosition;
}
void TextureMenu::show( bool visible )
{
mObj->mVisible = visible;
}
void TextureMenu::hide()
{
mObj->mVisible = false;
}
bool TextureMenu::isVisible() const
{
return mObj->mVisible;
}
void TextureMenu::draw() const
{
if ( !isVisible() )
return;
Area bounds = getBounds();
ci::gl::enableAlphaBlending();
ci::gl::color( Color::white() );
ci::gl::draw( mObj->mBackground, bounds );
for ( vector< ButtonRef >::const_iterator it = mObj->mButtons.begin();
it != mObj->mButtons.end(); ++it )
{
if ( (*it)->mIsOn )
ci::gl::draw( (*it)->mTextureOn, bounds );
else
ci::gl::draw( (*it)->mTextureOff, bounds );
}
ci::gl::disableAlphaBlending();
}
void TextureMenu::processClick( const ci::Vec2i &pos )
{
if ( !isVisible() )
return;
Vec2i p = pos - getPosition();
for ( vector< ButtonRef >::const_iterator it = mObj->mButtons.begin();
it != mObj->mButtons.end(); ++it )
{
(*it)->mIsOn = (*it)->mArea.contains( p );
if ( (*it)->mIsOn )
{
(*it)->mSignal();
app::timeline().apply( &(*it)->mIsOn, false, .5f );
}
}
}
TextureMenu::Button::Button( ImageSourceRef buttonOn, ImageSourceRef buttonOff ) :
mIsOn( false )
{
mTextureOn = ci::gl::Texture( buttonOn );
mTextureOff = ci::gl::Texture( buttonOff );
Surface surf( buttonOn );
Surface::ConstIter it = surf.getIter();
Rectf bounds;
bool rectInited = false;
while ( it.line() )
{
while ( it.pixel() )
{
if ( it.a() )
{
Vec2i p = it.getPos();
if ( rectInited )
{
bounds.include( p );
}
else
{
bounds = Rectf( p, p );
rectInited = true;
}
}
}
}
mArea = Area( bounds );
}
} } // namespace mndl::gl
| [
"gabor.papp@gmail.com"
] | gabor.papp@gmail.com |
d5f8e1d009748cddf1d79ce386b3d7f7bf2a00b2 | bb65a3b3d17d88bce775bf4e97d37c60fb45413c | /UVA/543/14446575_AC_40ms_0kB.cpp | 448096404ba16d81ffaff9585b71f8bb87177d52 | [] | no_license | Tufahel/Vjudge-ACM-Solutions | 802502b993891a5a1d2d015087dd946cf5a7a7e0 | d60cdc27ff1a0b2da178906bb7450387d2695808 | refs/heads/master | 2023-06-30T17:26:27.710523 | 2021-08-05T15:10:58 | 2021-08-05T15:10:58 | 393,086,295 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,478 | cpp | /*بِسْمِ اللَّهِ الرَّحْمَنِ الرَّحِيم*/
#include<bits/stdc++.h>
using namespace std;
#define sz 1000000
#define sz1 100002
#define sc scanf
#define pf printf
#define ll long long
#define Mx 1000000007
#define mod 1000003
bool isPrime[sz];
//const ll mod=1000003;
//ll arr[sz1],num[sz1],num1[sz1];
void sieve()
{
//ll sz=18409202;
for(ll i=0; i<sz; i++)
isPrime[i]=true;
isPrime[0]=false;
isPrime[1]=true;
for(ll i=2; i<sz; i++)
{
if(isPrime[i])
{
for(ll j=i+i; j<sz; j+=i)
isPrime[j]=false;
}
}
}
int main()
{
sieve();
ll n;
while(cin>>n)
{
if(n==0)
break;
if(n==1){
cout<<n<<" = "<<0<<" + "<<1<<endl;
continue;
}
if(n==3){
cout<<n<<" = "<<0<<" + "<<3<<endl;
continue;
}
ll x,y,flag,f=0;
for(ll i=2; i<=n/2; i++)
{
flag=0;
if(isPrime[i])
{
ll j=n-i;
if(isPrime[j])
{
if(i+j==n)
{
flag=1;
f=1;
cout<<n<<" = "<<i<<" + "<<j<<endl;
break;
}
}
}
}
if(f==0){
cout<<"Goldbach's conjecture is wrong."<<endl;
}
}
}
| [
"60083437+Tufahel@users.noreply.github.com"
] | 60083437+Tufahel@users.noreply.github.com |
ec63e04ef2608c2fd5950607fbe388396fe21c32 | 0d17836238ba49e33734e9fa57ecb003ad63c225 | /wwisesharp/WwiseSharp/WwiseWrapper/AKAdditions/SampleLowLevelIO/Windows/AkDefaultIOHookBlocking.cpp | e43c18696ac4a6867b1caa4ef67f91fea3fb8a69 | [] | no_license | gap9269/Wwise-Sharp | d51429207f233f20e6506930746d09715a450ef9 | 7dfdda9a097d65afeba7bb3b1952b6de82ba50c7 | refs/heads/master | 2021-01-15T21:43:58.781320 | 2016-03-28T22:36:34 | 2016-03-28T22:36:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,845 | cpp | //////////////////////////////////////////////////////////////////////
//
// AkDefaultIOHookBlocking.cpp
//
// Default blocking low level IO hook (AK::StreamMgr::IAkIOHookBlocking)
// and file system (AK::StreamMgr::IAkFileLocationResolver) implementation
// on Windows. It can be used as a standalone implementation of the
// Low-Level I/O system.
//
// AK::StreamMgr::IAkFileLocationResolver:
// Resolves file location using simple path concatenation logic
// (implemented in ../Common/CAkFileLocationBase). It can be used as a
// standalone Low-Level IO system, or as part of a multi device system.
// In the latter case, you should manage multiple devices by implementing
// AK::StreamMgr::IAkFileLocationResolver elsewhere (you may take a look
// at class CAkDefaultLowLevelIODispatcher).
//
// AK::StreamMgr::IAkIOHookBlocking:
// Uses platform API for I/O. Calls to ::ReadFile() and ::WriteFile()
// block because files are opened without the FILE_FLAG_OVERLAPPED flag.
// The AK::StreamMgr::IAkIOHookBlocking interface is meant to be used with
// AK_SCHEDULER_BLOCKING streaming devices.
//
// Init() creates a streaming device (by calling AK::StreamMgr::CreateDevice()).
// AkDeviceSettings::uSchedulerTypeFlags is set inside to AK_SCHEDULER_BLOCKING.
// If there was no AK::StreamMgr::IAkFileLocationResolver previously registered
// to the Stream Manager, this object registers itself as the File Location Resolver.
//
// Copyright (c) 2006 Audiokinetic Inc. / All Rights Reserved
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "AkDefaultIOHookBlocking.h"
#include "AkFileHelpers.h"
#define WIN32_BLOCKING_DEVICE_NAME (L"Win32 Blocking") // Default blocking device name.
CAkDefaultIOHookBlocking::CAkDefaultIOHookBlocking()
: m_deviceID( AK_INVALID_DEVICE_ID )
, m_bAsyncOpen( false )
{
}
CAkDefaultIOHookBlocking::~CAkDefaultIOHookBlocking()
{
}
// Initialization/termination. Init() registers this object as the one and
// only File Location Resolver if none were registered before. Then
// it creates a streaming device with scheduler type AK_SCHEDULER_BLOCKING.
AKRESULT CAkDefaultIOHookBlocking::Init(
const AkDeviceSettings & in_deviceSettings, // Device settings.
bool in_bAsyncOpen/*=false*/ // If true, files are opened asynchronously when possible.
)
{
if ( in_deviceSettings.uSchedulerTypeFlags != AK_SCHEDULER_BLOCKING )
{
assert( !"CAkDefaultIOHookBlocking I/O hook only works with AK_SCHEDULER_BLOCKING devices" );
return AK_Fail;
}
m_bAsyncOpen = in_bAsyncOpen;
// If the Stream Manager's File Location Resolver was not set yet, set this object as the
// File Location Resolver (this I/O hook is also able to resolve file location).
if ( !AK::StreamMgr::GetFileLocationResolver() )
AK::StreamMgr::SetFileLocationResolver( this );
// Create a device in the Stream Manager, specifying this as the hook.
m_deviceID = AK::StreamMgr::CreateDevice( in_deviceSettings, this );
if ( m_deviceID != AK_INVALID_DEVICE_ID )
return AK_Success;
return AK_Fail;
}
void CAkDefaultIOHookBlocking::Term()
{
if ( AK::StreamMgr::GetFileLocationResolver() == this )
AK::StreamMgr::SetFileLocationResolver( NULL );
AK::StreamMgr::DestroyDevice( m_deviceID );
}
//
// IAkFileLocationAware interface.
//-----------------------------------------------------------------------------
// Returns a file descriptor for a given file name (string).
AKRESULT CAkDefaultIOHookBlocking::Open(
const AkOSChar* in_pszFileName, // File name.
AkOpenMode in_eOpenMode, // Open mode.
AkFileSystemFlags * in_pFlags, // Special flags. Can pass NULL.
bool & io_bSyncOpen, // If true, the file must be opened synchronously. Otherwise it is left at the File Location Resolver's discretion. Return false if Open needs to be deferred.
AkFileDesc & out_fileDesc // Returned file descriptor.
)
{
// We normally consider that calls to ::CreateFile() on a hard drive are fast enough to execute in the
// client thread. If you want files to be opened asynchronously when it is possible, this device should
// be initialized with the flag in_bAsyncOpen set to true.
if ( io_bSyncOpen || !m_bAsyncOpen )
{
io_bSyncOpen = true;
// Get the full file path, using path concatenation logic.
AkOSChar szFullFilePath[AK_MAX_PATH];
if ( GetFullFilePath( in_pszFileName, in_pFlags, in_eOpenMode, szFullFilePath ) == AK_Success )
{
// Open the file without FILE_FLAG_OVERLAPPED and FILE_FLAG_NO_BUFFERING flags.
AKRESULT eResult = CAkFileHelpers::OpenFile(
szFullFilePath,
in_eOpenMode,
false,
false,
out_fileDesc.hFile );
if ( eResult == AK_Success )
{
ULARGE_INTEGER Temp;
Temp.LowPart = ::GetFileSize( out_fileDesc.hFile,(LPDWORD)&Temp.HighPart );
out_fileDesc.iFileSize = Temp.QuadPart;
out_fileDesc.uSector = 0;
out_fileDesc.deviceID = m_deviceID;
out_fileDesc.pCustomParam = NULL;
out_fileDesc.uCustomParamSize = 0;
}
return eResult;
}
return AK_Fail;
}
else
{
// The client allows us to perform asynchronous opening.
// We only need to specify the deviceID, and leave the boolean to false.
out_fileDesc.iFileSize = 0;
out_fileDesc.uSector = 0;
out_fileDesc.deviceID = m_deviceID;
out_fileDesc.pCustomParam = NULL;
out_fileDesc.uCustomParamSize = 0;
return AK_Success;
}
}
// Returns a file descriptor for a given file ID.
AKRESULT CAkDefaultIOHookBlocking::Open(
AkFileID in_fileID, // File ID.
AkOpenMode in_eOpenMode, // Open mode.
AkFileSystemFlags * in_pFlags, // Special flags. Can pass NULL.
bool & io_bSyncOpen, // If true, the file must be opened synchronously. Otherwise it is left at the File Location Resolver's discretion. Return false if Open needs to be deferred.
AkFileDesc & out_fileDesc // Returned file descriptor.
)
{
// We normally consider that calls to ::CreateFile() on a hard drive are fast enough to execute in the
// client thread. If you want files to be opened asynchronously when it is possible, this device should
// be initialized with the flag in_bAsyncOpen set to true.
if ( io_bSyncOpen || !m_bAsyncOpen )
{
io_bSyncOpen = true;
// Get the full file path, using path concatenation logic.
AkOSChar szFullFilePath[AK_MAX_PATH];
if ( GetFullFilePath( in_fileID, in_pFlags, in_eOpenMode, szFullFilePath ) == AK_Success )
{
// Open the file without FILE_FLAG_OVERLAPPED and FILE_FLAG_NO_BUFFERING flags.
AKRESULT eResult = CAkFileHelpers::OpenFile(
szFullFilePath,
in_eOpenMode,
false,
false,
out_fileDesc.hFile );
if ( eResult == AK_Success )
{
ULARGE_INTEGER Temp;
Temp.LowPart = ::GetFileSize( out_fileDesc.hFile,(LPDWORD)&Temp.HighPart );
out_fileDesc.iFileSize = Temp.QuadPart;
out_fileDesc.uSector = 0;
out_fileDesc.deviceID = m_deviceID;
out_fileDesc.pCustomParam = NULL;
out_fileDesc.uCustomParamSize = 0;
}
return eResult;
}
return AK_Fail;
}
else
{
// The client allows us to perform asynchronous opening.
// We only need to specify the deviceID, and leave the boolean to false.
out_fileDesc.iFileSize = 0;
out_fileDesc.uSector = 0;
out_fileDesc.deviceID = m_deviceID;
out_fileDesc.pCustomParam = NULL;
out_fileDesc.uCustomParamSize = 0;
return AK_Success;
}
}
//
// IAkIOHookBlocking implementation.
//-----------------------------------------------------------------------------
// Reads data from a file (synchronous).
AKRESULT CAkDefaultIOHookBlocking::Read(
AkFileDesc & in_fileDesc, // File descriptor.
const AkIoHeuristics & /*in_heuristics*/, // Heuristics for this data transfer (not used in this implementation).
void * out_pBuffer, // Buffer to be filled with data.
AkIOTransferInfo & io_transferInfo // Synchronous data transfer info.
)
{
assert( out_pBuffer &&
in_fileDesc.hFile != INVALID_HANDLE_VALUE );
OVERLAPPED overlapped;
overlapped.Offset = (DWORD)( io_transferInfo.uFilePosition & 0xFFFFFFFF );
overlapped.OffsetHigh = (DWORD)( ( io_transferInfo.uFilePosition >> 32 ) & 0xFFFFFFFF );
overlapped.hEvent = NULL;
AkUInt32 uSizeTransferred;
if ( ::ReadFile(
in_fileDesc.hFile,
out_pBuffer,
io_transferInfo.uRequestedSize,
&uSizeTransferred,
&overlapped ) )
{
AKASSERT( uSizeTransferred == io_transferInfo.uRequestedSize );
return AK_Success;
}
return AK_Fail;
}
// Writes data to a file (synchronous).
AKRESULT CAkDefaultIOHookBlocking::Write(
AkFileDesc & in_fileDesc, // File descriptor.
const AkIoHeuristics & /*in_heuristics*/, // Heuristics for this data transfer (not used in this implementation).
void * in_pData, // Data to be written.
AkIOTransferInfo & io_transferInfo // Synchronous data transfer info.
)
{
assert( in_pData &&
in_fileDesc.hFile != INVALID_HANDLE_VALUE );
OVERLAPPED overlapped;
overlapped.Offset = (DWORD)( io_transferInfo.uFilePosition & 0xFFFFFFFF );
overlapped.OffsetHigh = (DWORD)( ( io_transferInfo.uFilePosition >> 32 ) & 0xFFFFFFFF );
overlapped.hEvent = NULL;
AkUInt32 uSizeTransferred;
if ( ::WriteFile(
in_fileDesc.hFile,
in_pData,
io_transferInfo.uRequestedSize,
&uSizeTransferred,
&overlapped ) )
{
AKASSERT( uSizeTransferred == io_transferInfo.uRequestedSize );
return AK_Success;
}
return AK_Fail;
}
// Cleans up a file.
AKRESULT CAkDefaultIOHookBlocking::Close(
AkFileDesc & in_fileDesc // File descriptor.
)
{
return CAkFileHelpers::CloseFile( in_fileDesc.hFile );
}
// Returns the block size for the file or its storage device.
AkUInt32 CAkDefaultIOHookBlocking::GetBlockSize(
AkFileDesc & /*in_fileDesc*/ // File descriptor.
)
{
// No constraint on block size (file seeking).
return 1;
}
// Returns a description for the streaming device above this low-level hook.
void CAkDefaultIOHookBlocking::GetDeviceDesc(
AkDeviceDesc &
#ifndef AK_OPTIMIZED
out_deviceDesc // Description of associated low-level I/O device.
#endif
)
{
#ifndef AK_OPTIMIZED
assert( m_deviceID != AK_INVALID_DEVICE_ID || !"Low-Level device was not initialized" );
out_deviceDesc.deviceID = m_deviceID;
out_deviceDesc.bCanRead = true;
out_deviceDesc.bCanWrite = true;
AKPLATFORM::SafeStrCpy( out_deviceDesc.szDeviceName, WIN32_BLOCKING_DEVICE_NAME, AK_MONITOR_DEVICENAME_MAXLENGTH );
out_deviceDesc.uStringSize = (AkUInt32)wcslen( out_deviceDesc.szDeviceName ) + 1;
#endif
}
// Returns custom profiling data: 1 if file opens are asynchronous, 0 otherwise.
AkUInt32 CAkDefaultIOHookBlocking::GetDeviceData()
{
return ( m_bAsyncOpen ) ? 1 : 0;
}
| [
"flanny21@gmail.com"
] | flanny21@gmail.com |
4d13b6fc4a13f70069851e5f9a19d4185b2fe0de | c6244728a4ec338f1af106e32ca4580be280c9c0 | /Optimus/tolmin.cc | 169c2efa426ff924a2d83a62fb6bfb08217cb0ba | [] | no_license | funkonymous/OPTIMUS | 40dc34649623a3cafa6b3e3d5e39f71c89cf5c85 | 76c2d45da7ee9cfa64a68f5846b1df6f32e7ae3d | refs/heads/master | 2022-12-08T18:42:05.422936 | 2020-09-17T14:20:28 | 2020-09-17T14:20:28 | 296,399,814 | 1 | 0 | null | 2020-09-17T17:43:46 | 2020-09-17T17:43:45 | null | UTF-8 | C++ | false | false | 57,496 | cc | # include <stdio.h>
# include <stdlib.h>
# include <math.h>
# include <tolmin.h>
# include <omp.h>
Tolmin::Tolmin(Problem *p)
{
myProblem=p;
ifail=0;
c__0=0;
long n=p->getDimension();
a=new double[n*n];
b=new double[n];
xl=new double[n];
xu=new double[n];
xp=new double[n];
w=new double[12*n+n*n*n];
iact=new long[3*n];
par=new double[n];
p->getleftmarginx(xl);
p->getrightmarginx(xu);
}
double Tolmin::Solve(Data &x)
{
long n=myProblem->getDimension();
for(int i=0;i<n;i++)
{
xp[i]=x[i];
}
double acc=1e-19;
long nact;
long iprint=0;
long info=2001;
long m=0;
long meq=0;
long ia=n;
getmin_(&n,&m,&meq,a,&ia,b,xl,xu,xp,&acc,iact,&nact,par,&iprint,&info,w);
for(int i=0;i<n;i++) x[i]=xp[i];
double fmin=myProblem->funmin(x);
if(!myProblem->isPointIn(x)) fmin=1e+100;
return fmin;
}
int Tolmin::getmin_(integer *n, integer *m, integer *meq, double
*a, integer *ia, double *b, double *xl, double *xu,
double *x, double *acc, integer *iact, integer *nact,
double *par, integer *iprint, integer *info, double *w)
{
integer a_dim1, a_offset;
integer iztg, ixbig, ibres, id, ig, iu, iz;
integer ireskt, igm, igs, ixs;
/* Partition the workspace array. */
/* Parameter adjustments */
a_dim1 = *ia;
a_offset = 1 + a_dim1 * 1;
a -= a_offset;
--b;
--xl;
--xu;
--x;
--iact;
--par;
--w;
/* Function Body */
ig = 1;
ireskt = ig + *n;
iz = ireskt + *n;
iu = iz + *n * *n;
ixbig = iu + *n;
ibres = ixbig + *n;
id = ibres + *m + *n + *n;
iztg = id + *n;
igm = iztg + *n;
ixs = igm + *n;
igs = ixs + *n;
minflc_(n, m, meq, &a[a_offset], ia, &b[1], &xl[1], &xu[1], &x[1], acc, &
iact[1], nact, &par[1], iprint, info, &w[ig], &w[iz], &w[iu], &w[
ixbig], &w[ireskt], &w[ibres], &w[id], &w[iztg], &w[igm], &w[ixs],
&w[igs]);
return 0;
}
int Tolmin::initzu_(integer *n, integer *m, double *xl,
double *xu, double *x, integer *iact, integer *meql, integer *
info, double *z__, double *u, double *xbig, double *
relacc)
{
integer i__1;
double d__1;
integer jact, i__, j;
double tempa, tempb, ztpar;
integer nn, iz;
--xbig;
--u;
--z__;
--iact;
--x;
--xu;
--xl;
/* Function Body */
ztpar = (float)100.;
*relacc = (float)1.;
L10:
*relacc *= (float).5;
tempa = ztpar + *relacc * (float).5;
tempb = ztpar + *relacc;
if (ztpar < tempa && tempa < tempb) {
goto L10;
}
/* Seek bound inconsistencies and bound equality constraints. */
*meql = 0;
i__1 = *n;
for (i__ = 1; i__ <= i__1; ++i__) {
if (xl[i__] > xu[i__]) {
goto L50;
}
if (xl[i__] == xu[i__]) {
++(*meql);
}
/* L20: */
}
/* Initialize U, Z and XBIG. */
jact = 0;
nn = *n * *n;
i__1 = nn;
for (i__ = 1; i__ <= i__1; ++i__) {
/* L30: */
z__[i__] = (float)0.;
}
iz = 0;
i__1 = *n;
for (i__ = 1; i__ <= i__1; ++i__) {
if (xl[i__] == xu[i__]) {
x[i__] = xu[i__];
++jact;
u[jact] = (float)1.;
iact[jact] = i__ + *m + *n;
j = jact;
} else {
j = i__ + *meql - jact;
}
z__[iz + j] = (float)1.;
iz += *n;
/* L40: */
xbig[i__] = (d__1 = x[i__], fabs(d__1));
}
*info = 1;
L50:
return 0;
}
int Tolmin::ktvec_(integer *n, integer *m, double *a, integer *
ia, integer *iact, integer *nact, double *par, double *g,
double *reskt, double *z__, double *u, double *bres,
double *relaxf, integer *meql, double *ssqkt, double *
parw, double *resktw)
{
/* System generated locals */
integer a_dim1, a_offset, i__1, i__2;
double d__1;
/* Local variables */
double temp;
integer i__, j, k, icase, kk, jm, kl, iz;
double ssqktw;
/* Calculate the Lagrange parameters and the residual vector. */
/* Parameter adjustments */
a_dim1 = *ia;
a_offset = 1 + a_dim1 * 1;
a -= a_offset;
--iact;
--par;
--g;
--reskt;
--z__;
--u;
--bres;
--parw;
--resktw;
/* Function Body */
i__1 = *n;
for (i__ = 1; i__ <= i__1; ++i__) {
/* L10: */
reskt[i__] = g[i__];
}
if (*nact > 0) {
icase = 0;
L20:
i__1 = *nact;
for (kk = 1; kk <= i__1; ++kk) {
k = *nact + 1 - kk;
j = iact[k];
temp = (float)0.;
iz = k;
i__2 = *n;
for (i__ = 1; i__ <= i__2; ++i__) {
temp += z__[iz] * reskt[i__];
/* L30: */
iz += *n;
}
temp *= u[k];
if (icase == 0) {
par[k] = (float)0.;
}
if (k <= *meql || par[k] + temp < (float)0.) {
par[k] += temp;
} else {
temp = -par[k];
par[k] = (float)0.;
}
if (temp != (float)0.) {
if (j <= *m) {
i__2 = *n;
for (i__ = 1; i__ <= i__2; ++i__) {
/* L40: */
reskt[i__] -= temp * a[i__ + j * a_dim1];
}
} else {
jm = j - *m;
if (jm <= *n) {
reskt[jm] += temp;
} else {
reskt[jm - *n] -= temp;
}
}
}
/* L50: */
}
/* Calculate the sum of squares of the KT residual vector. */
*ssqkt = (float)0.;
if (*nact == *n) {
goto L130;
}
i__1 = *n;
for (i__ = 1; i__ <= i__1; ++i__) {
/* L60: */
/* Computing 2nd power */
d__1 = reskt[i__];
*ssqkt += d__1 * d__1;
}
/* Apply iterative refinement to the residual vector. */
if (icase == 0) {
icase = 1;
i__1 = *nact;
for (k = 1; k <= i__1; ++k) {
/* L70: */
parw[k] = par[k];
}
i__1 = *n;
for (i__ = 1; i__ <= i__1; ++i__) {
/* L80: */
resktw[i__] = reskt[i__];
}
ssqktw = *ssqkt;
goto L20;
}
/* Undo the iterative refinement if it does not reduce SSQKT. */
if (ssqktw < *ssqkt) {
i__1 = *nact;
for (k = 1; k <= i__1; ++k) {
/* L90: */
par[k] = parw[k];
}
i__1 = *n;
for (i__ = 1; i__ <= i__1; ++i__) {
/* L100: */
reskt[i__] = resktw[i__];
}
*ssqkt = ssqktw;
}
/* Calculate SSQKT when there are no active constraints. */
} else {
*ssqkt = (float)0.;
i__1 = *n;
for (i__ = 1; i__ <= i__1; ++i__) {
/* L110: */
/* Computing 2nd power */
d__1 = g[i__];
*ssqkt += d__1 * d__1;
}
}
/* Predict the reduction in F if one corrects any positive residuals */
/* of active inequality constraints. */
*relaxf = (float)0.;
if (*meql < *nact) {
kl = *meql + 1;
i__1 = *nact;
for (k = kl; k <= i__1; ++k) {
j = iact[k];
if (bres[j] > (float)0.) {
*relaxf -= par[k] * bres[j];
}
/* L120: */
}
}
L130:
return 0;
} /* ktvec_ */
int Tolmin::lsrch_(integer *n, double *x, double *g,
double *d__, double *xs, double *gs, double *relacc,
double *stepcb, double *ddotg, double *f, double *
step, integer *nfvals, integer *nfmax, double *gopt)
{
/* System generated locals */
integer i__1;
double d__1, d__2;
/* Local variables */
double fhgh, temp, flow, fopt;
integer i__;
double fbase, dghgh, dgmid, sbase, dglow, dgopt, ratio;
double ddotgb;
integer isofar;
double dgknot, relint, stphgh;
integer icount;
double stpmin, stplow, stpopt, amx;
/* Initialization. */
/* Parameter adjustments */
--gopt;
--gs;
--xs;
--d__;
--g;
--x;
/* Function Body */
relint = (float).9;
icount = 0;
ratio = (float)-1.;
i__1 = *n;
for (i__ = 1; i__ <= i__1; ++i__) {
xs[i__] = x[i__];
gs[i__] = g[i__];
gopt[i__] = g[i__];
if (d__[i__] != (float)0.) {
temp = (d__1 = x[i__] / d__[i__], fabs(d__1));
if (ratio < (float)0. || temp < ratio) {
ratio = temp;
}
}
/* L10: */
}
amx = (float)1.;
*step = min(amx,*stepcb);
/* Computing MAX */
d__1 = *relacc * ratio, d__2 = *step * (float)1e-19;
stpmin = max(d__1,d__2);
*step = max(stpmin,*step);
sbase = (float)0.;
fbase = *f;
ddotgb = *ddotg;
stplow = (float)0.;
flow = *f;
dglow = *ddotg;
stphgh = (float)0.;
stpopt = (float)0.;
fopt = *f;
dgopt = fabs(*ddotg);
/* Calculate another function and gradient value. */
L20:
i__1 = *n;
for (i__ = 1; i__ <= i__1; ++i__) {
/* L30: */
x[i__] = xs[i__] + *step * d__[i__];
}
isofar = totcal_1.itnocs;
fgcalc_(n, &x[1], f, &g[1]);
icount += totcal_1.itnocs - isofar;
dgmid = (float)0.;
i__1 = *n;
for (i__ = 1; i__ <= i__1; ++i__) {
/* L40: */
dgmid += d__[i__] * g[i__];
}
if (*f <= fopt) {
if (*f < fopt || fabs(dgmid) < dgopt) {
stpopt = *step;
fopt = *f;
i__1 = *n;
for (i__ = 1; i__ <= i__1; ++i__) {
/* L50: */
gopt[i__] = g[i__];
}
dgopt = fabs(dgmid);
}
}
if (*nfvals + icount == *nfmax) {
goto L70;
}
/* Modify the bounds on the steplength or convergence. */
if (*f >= fbase + (*step - sbase) * (float).1 * ddotgb) {
if (stphgh > (float)0. || *f > fbase || dgmid > *ddotg * (float).5) {
stphgh = *step;
fhgh = *f;
dghgh = dgmid;
goto L60;
}
sbase = *step;
fbase = *f;
ddotgb = dgmid;
}
if (dgmid >= ddotgb * (float).7) {
goto L70;
}
stplow = *step;
flow = *f;
dglow = dgmid;
L60:
if (stphgh > (float)0. && stplow >= relint * stphgh) {
goto L70;
}
/* Calculate the next step length or end the iterations. */
if (stphgh == (float)0.) {
if (*step == *stepcb) {
goto L70;
}
temp = (float)10.;
if (dgmid > *ddotg * (float).9) {
temp = *ddotg / (*ddotg - dgmid);
}
/* Computing MIN */
d__1 = temp * *step;
*step = min(d__1,*stepcb);
goto L20;
} else if (icount == 1 || stplow > (float)0.) {
dgknot = (fhgh - flow) * (float)2. / (stphgh - stplow) - (dglow +
dghgh) * (float).5;
if (dgknot >= (float)0.) {
amx = (float).1;
/* Computing MAX */
d__1 = amx, d__2 = dglow * (float).5 / (dglow - dgknot);
ratio = max(d__1,d__2);
} else {
ratio = (dghgh * (float).5 - dgknot) / (dghgh - dgknot);
}
*step = stplow + ratio * (stphgh - stplow);
goto L20;
} else {
*step *= (float).1;
if (*step >= stpmin) {
goto L20;
}
}
/* Return from subroutine. */
L70:
if (*step != stpopt) {
*step = stpopt;
*f = fopt;
i__1 = *n;
for (i__ = 1; i__ <= i__1; ++i__) {
x[i__] = xs[i__] + *step * d__[i__];
/* L80: */
g[i__] = gopt[i__];
}
}
*nfvals += icount;
return 0;
} /* lsrch_ */
int Tolmin::minflc_(integer *n, integer *m, integer *meq, double
*a, integer *ia, double *b, double *xl, double *xu,
double *x, double *acc, integer *iact, integer *nact,
double *par, integer *iprint, integer *info, double *g,
double *z__, double *u, double *xbig, double *reskt,
double *bres, double *d__, double *ztg, double *gm,
double *xs, double *gs)
{
/* System generated locals */
integer a_dim1, a_offset, i__1, i__2;
double d__1, d__2;
/* Builtin functions */
//integer s_wsfe(cilist *), e_wsfe();
/* Local variables */
integer meql, msat, mtot;
double f;
integer i__, k, iterc, nfmax, iexau;
nfmax=5001;
double relacc;
integer mp;
integer nfvals;
double zznorm, amx, tol;
/* Parameter adjustments */
a_dim1 = *ia;
a_offset = 1 + a_dim1 * 1;
a -= a_offset;
--b;
--xl;
--xu;
--x;
--iact;
--par;
--g;
--z__;
--u;
--xbig;
--reskt;
--bres;
--d__;
--ztg;
--gm;
--xs;
--gs;
/* Function Body */
zznorm = (float)-1.;
iterc = 0;
nfvals = 0;
nfmax = 5001;
if (*info > 0) {
nfmax = *info;
}
/* Check the bounds on N, M and MEQ. */
*info = 4;
/* Computing MAX */
i__1 = 1 - *n, i__2 = *meq * (*meq - *m);
if (max(i__1,i__2) > 0) {
if (*iprint != 0) {
//io___56.ciunit = units_1.iuout;
//s_wsfe(&io___56);
//e_wsfe();
}
goto L40;
}
/* Initialize RELACC, Z, U and TOL. */
initzu_(n, m, &xl[1], &xu[1], &x[1], &iact[1], &meql, info, &z__[1], &u[1]
, &xbig[1], &relacc);
amx = (float).01;
/* Computing MAX */
d__1 = amx, d__2 = relacc * (float)10.;
tol = max(d__1,d__2);
if (*info == 4) {
if (*iprint != 0) {
//io___61.ciunit = units_1.iuout;
//s_wsfe(&io___61);
//e_wsfe();
}
goto L40;
}
/* Add any equality constraints to the active set. */
if (*meq > 0) {
eqcons_(n, m, meq, &a[a_offset], ia, &b[1], &xu[1], &iact[1], &meql,
info, &z__[1], &u[1], &relacc, &xs[1], &gs[1]);
if (*info == 5) {
if (*iprint != 0) {
//io___62.ciunit = units_1.iuout;
//s_wsfe(&io___62);
//e_wsfe();
}
goto L40;
}
}
*nact = meql;
msat = meql;
/* Add the bounds to the list of constraints. */
mtot = *nact;
i__1 = *n;
for (i__ = 1; i__ <= i__1; ++i__) {
if (xl[i__] < xu[i__]) {
mtot += 2;
iact[mtot - 1] = *m + i__;
iact[mtot] = *m + *n + i__;
}
/* L10: */
}
/* Try to satisfy the bound constraints. */
getfes_(n, m, &a[a_offset], ia, &b[1], &xl[1], &xu[1], &x[1], &iact[1],
nact, &par[1], info, &g[1], &z__[1], &u[1], &xbig[1], &relacc, &
tol, &meql, &msat, &mtot, &bres[1], &d__[1], &ztg[1], &gm[1], &
reskt[1], &xs[1], &gs[1]);
if (msat < mtot) {
if (*iprint != 0) {
//io___66.ciunit = units_1.iuout;
//s_wsfe(&io___66);
//e_wsfe();
}
*info = 6;
goto L40;
}
/* Add the ordinary inequalities to the list of constraints. */
if (*m > *meq) {
mp = *meq + 1;
i__1 = *m;
for (k = mp; k <= i__1; ++k) {
++mtot;
/* L20: */
iact[mtot] = k;
}
}
/* Correct any constraint violations. */
L30:
getfes_(n, m, &a[a_offset], ia, &b[1], &xl[1], &xu[1], &x[1], &iact[1],
nact, &par[1], info, &g[1], &z__[1], &u[1], &xbig[1], &relacc, &
tol, &meql, &msat, &mtot, &bres[1], &d__[1], &ztg[1], &gm[1], &
reskt[1], &xs[1], &gs[1]);
if (msat < mtot) {
if (*iprint != 0) {
//io___69.ciunit = units_1.iuout;
//s_wsfe(&io___69);
//e_wsfe();
}
*info = 7;
goto L40;
} else if (meql == *n) {
if (*iprint != 0) {
//io___70.ciunit = units_1.iuout;
//s_wsfe(&io___70);
//e_wsfe();
}
goto L40;
}
/* Minimize the objective function in the case when constraints are */
/* treated as degenerate if their residuals are less than TOL. */
iexau = 0;
minfun_(n, m, &a[a_offset], ia, &b[1], &xl[1], &xu[1], &x[1], acc, &iact[
1], nact, &par[1], iprint, info, &g[1], &z__[1], &u[1], &xbig[1],
&relacc, &zznorm, &tol, &meql, &mtot, &iterc, &nfvals, &nfmax, &
reskt[1], &bres[1], &d__[1], &ztg[1], &gm[1], &xs[1], &gs[1], &f,
&iexau);
if (iexau != 0) {
return 0;
}
/* Reduce TOL if necessary. */
if (tol > relacc && *nact > 0) {
if (nfvals < nfmax) {
adjtol_(n, m, &a[a_offset], ia, &b[1], &xl[1], &xu[1], &x[1], &
iact[1], nact, &xbig[1], &relacc, &tol, &meql);
goto L30;
} else {
*info = 8;
}
}
L40:
return 0;
}
int Tolmin::minfun_(integer *n, integer *m, double *a, integer *
ia, double *b, double *xl, double *xu, double *x,
double *acc, integer *iact, integer *nact, double *par,
integer *iprint, integer *info, double *g, double *z__,
double *u, double *xbig, double *relacc, double *
zznorm, double *tol, integer *meql, integer *mtot, integer *iterc,
integer *nfvals, integer *nfmax, double *reskt, double *bres,
double *d__, double *ztg, double *gm, double *xs,
double *gs, double *f, integer *iexau)
{
/* System generated locals */
integer a_dim1, a_offset, i__1;
double d__1, d__2, d__3;
/* Local variables */
double diff;
extern /* Subroutine */ int mdis_(double *, double *, integer *,
integer *, integer *, integer *, integer *);
integer msat;
double step;
integer i__, k;
double ddotg;
integer iterk;
double fprev;
integer iterp;
double ssqkt;
integer indxbd;
double stepcb;
integer nfvalk, isofar;
double relaxf;
double sum;
/* Initialize the minimization calculation. */
/* Parameter adjustments */
a_dim1 = *ia;
a_offset = 1 + a_dim1 * 1;
a -= a_offset;
--b;
--xl;
--xu;
--x;
--iact;
--par;
--g;
--z__;
--u;
--xbig;
--reskt;
--bres;
--d__;
--ztg;
--gm;
--xs;
--gs;
/* Function Body */
msat = *mtot;
iterk = *iterc;
nfvalk = *nfvals;
if (*nfvals == 0 || *info == 1) {
isofar = totcal_1.itnocs;
fgcalc_(n, &x[1], f, &g[1]);
*nfvals += totcal_1.itnocs - isofar;
}
fprev = (d__1 = *f + *f + (float)1., fabs(d__1));
iterp = -1;
if (*iprint != 0) {
/* WRITE (IUOUT,1000) TOL */
/* 1000 FORMAT (/5X,'NEW VALUE OF TOL =',1PE13.5) */
iterp = *iterc;
}
/* Calculate the next search direction. */
L10:
conres_(n, m, &a[a_offset], ia, &b[1], &xl[1], &xu[1], &x[1], &iact[1],
nact, &par[1], &g[1], &z__[1], &u[1], &xbig[1], &bres[1], &d__[1],
&ztg[1], relacc, tol, &stepcb, &ddotg, meql, &msat, mtot, &
indxbd, &gm[1], &reskt[1], &xs[1], &gs[1]);
/* Calculate the Kuhn Tucker residual vector. */
ktvec_(n, m, &a[a_offset], ia, &iact[1], nact, &par[1], &g[1], &reskt[1],
&z__[1], &u[1], &bres[1], &relaxf, meql, &ssqkt, &xs[1], &gs[1]);
/* Test for convergence. */
if (ssqkt <= *acc * *acc) {
*info = 1;
goto L70;
}
if (ddotg >= (float)0.) {
*info = 2;
goto L70;
}
/* Test for termination due to no decrease in F. */
if (*f >= fprev) {
if (*tol == *relacc || *nact == 0) {
if (diff > (float)0.) {
goto L20;
}
}
*info = 3;
goto L70;
}
L20:
diff = fprev - *f;
fprev = *f;
/* Test that more calls of FGCALC are allowed. */
if (*nfvals >= *nfmax) {
*info = 8;
goto L70;
}
/* Test whether to reduce TOL and to provide printing. */
/* Computing MAX */
d__1 = diff, d__2 = ddotg * (float)-.5;
if (*tol > *relacc && *iterc > iterk && relaxf * (float).1 >= max(d__1,
d__2)) {
goto L70;
}
if (iterp == *iterc) {
iterp = *iterc + abs(*iprint);
goto L80;
}
/* Calculate the step along the search direction. */
L40:
++(*iterc);
lsrch_(n, &x[1], &g[1], &d__[1], &xs[1], &gs[1], relacc, &stepcb, &ddotg,
f, &step, nfvals, nfmax, &bres[1]);
if (step == (float)0.) {
*info = 3;
sum = (float)0.;
i__1 = *n;
for (i__ = 1; i__ <= i__1; ++i__) {
/* L50: */
sum += (d__1 = d__[i__] * gs[i__], fabs(d__1));
}
if (ddotg + *relacc * sum >= (float)0.) {
*info = 2;
}
goto L70;
}
/* Revise XBIG. */
i__1 = *n;
for (i__ = 1; i__ <= i__1; ++i__) {
/* L60: */
/* Computing MAX */
d__2 = xbig[i__], d__3 = (d__1 = x[i__], fabs(d__1));
xbig[i__] = max(d__2,d__3);
}
/* Revise the second derivative approximation. */
zbfgs_(n, &x[1], nact, &g[1], &z__[1], &ztg[1], &xs[1], &gs[1], zznorm);
/* Add a constraint to the active set if it restricts the step. */
if (step == stepcb) {
k = iact[indxbd];
if (k > *m) {
k -= *m;
if (k <= *n) {
x[k] = xl[k];
} else {
x[k - *n] = xu[k - *n];
}
}
addcon_(n, m, &a[a_offset], ia, &iact[1], nact, &z__[1], &u[1],
relacc, &indxbd, &xs[1], &gs[1]);
}
goto L10;
/* Printing from the subroutine. */
L70:
if (*iprint == 0) {
goto L90;
}
iterp = -1;
L80:
if (iterp >= 0) {
goto L40;
}
L90:
return 0;
}
int Tolmin::newcon_(integer *n, integer *m, double *a, integer *
ia, integer *iact, integer *nact, double *z__, double *u,
double *d__, double *relacc, integer *mdeg, double *
zzdiag, double *gmnew, double *cgrad)
{
/* System generated locals */
integer a_dim1, a_offset, i__1, i__2;
double d__1;
/* Local variables */
integer iadd;
double temp, sumd;
integer i__, j, k, khigh;
double cviol, cvmax;
integer jm;
integer np, iz;
double savabs, sumabs, savsum;
integer jmv;
double sum;
/* Initialization. */
/* Parameter adjustments */
a_dim1 = *ia;
a_offset = 1 + a_dim1 * 1;
a -= a_offset;
--iact;
--z__;
--u;
--d__;
--zzdiag;
--gmnew;
--cgrad;
/* Function Body */
np = *nact + 1;
khigh = *mdeg;
iz = 0;
i__1 = *n;
for (i__ = 1; i__ <= i__1; ++i__) {
zzdiag[i__] = (float)0.;
i__2 = *n;
for (j = np; j <= i__2; ++j) {
/* L10: */
/* Computing 2nd power */
d__1 = z__[iz + j];
zzdiag[i__] += d__1 * d__1;
}
/* L20: */
iz += *n;
}
/* Calculate the scalar products of D with its constraints. */
L30:
cvmax = (float)0.;
i__1 = khigh;
for (k = np; k <= i__1; ++k) {
j = iact[k];
if (j <= *m) {
sum = (float)0.;
sumabs = (float)0.;
sumd = (float)0.;
i__2 = *n;
for (i__ = 1; i__ <= i__2; ++i__) {
temp = d__[i__] * a[i__ + j * a_dim1];
sum += temp;
sumabs += fabs(temp);
/* L40: */
/* Computing 2nd power */
d__1 = a[i__ + j * a_dim1];
sumd += zzdiag[i__] * (d__1 * d__1);
}
} else {
jm = j - *m;
if (jm <= *n) {
sum = -d__[jm];
} else {
jm -= *n;
sum = d__[jm];
}
sumabs = fabs(sum);
sumd = zzdiag[jm];
}
/* Pick out the most violated constraint, or return if the */
/* violation is negligible. */
if (sum > *relacc * sumabs) {
cviol = sum * sum / sumd;
if (cviol > cvmax) {
cvmax = cviol;
iadd = k;
savsum = sum;
savabs = sumabs;
}
}
/* L50: */
}
if (cvmax <= (float)0.) {
goto L140;
}
if (*nact == 0) {
goto L120;
}
/* Set GMNEW to the gradient of the most violated constraint. */
j = iact[iadd];
if (j <= *m) {
jmv = 0;
i__1 = *n;
for (i__ = 1; i__ <= i__1; ++i__) {
/* L60: */
gmnew[i__] = a[i__ + j * a_dim1];
}
} else {
jmv = j - *m;
i__1 = *n;
for (i__ = 1; i__ <= i__1; ++i__) {
/* L70: */
gmnew[i__] = (float)0.;
}
if (jmv <= *n) {
gmnew[jmv] = (float)-1.;
} else {
jmv -= *n;
gmnew[jmv] = (float)1.;
}
}
/* Modify GMNEW for the next active constraint. */
k = *nact;
L80:
temp = (float)0.;
iz = k;
i__1 = *n;
for (i__ = 1; i__ <= i__1; ++i__) {
temp += z__[iz] * gmnew[i__];
/* L90: */
iz += *n;
}
temp *= u[k];
j = iact[k];
if (j <= *m) {
i__1 = *n;
for (i__ = 1; i__ <= i__1; ++i__) {
/* L100: */
gmnew[i__] -= temp * a[i__ + j * a_dim1];
}
} else {
jm = j - *m;
if (jm <= *n) {
gmnew[jm] += temp;
} else {
gmnew[jm - *n] -= temp;
}
}
/* Revise the values of SAVSUM and SAVABS. */
sum = (float)0.;
sumabs = (float)0.;
i__1 = *n;
for (i__ = 1; i__ <= i__1; ++i__) {
temp = d__[i__] * gmnew[i__];
sum += temp;
/* L110: */
sumabs += fabs(temp);
}
savsum = min(savsum,sum);
savabs = max(savabs,sumabs);
--k;
if (k >= 1) {
goto L80;
}
/* Add the new constraint to the active set if the constraint */
/* violation is still significant. */
if (jmv > 0) {
d__[jmv] = (float)0.;
}
if (savsum <= *relacc * savabs) {
goto L130;
}
L120:
k = *nact;
addcon_(n, m, &a[a_offset], ia, &iact[1], nact, &z__[1], &u[1], relacc, &
iadd, &gmnew[1], &cgrad[1]);
if (*nact > k) {
goto L140;
}
/* Seek another constraint violation. */
iadd = np;
L130:
if (np < khigh) {
k = iact[khigh];
iact[khigh] = iact[iadd];
iact[iadd] = k;
--khigh;
goto L30;
}
L140:
return 0;
}
int Tolmin::satact_(integer *n, integer *m, double *a, integer *
ia, double *b, double *xl, double *xu, double *x,
integer *iact, integer *nact, integer *info, double *z__,
double *u, double *xbig, double *relacc, double *tol,
integer *meql)
{
/* System generated locals */
integer a_dim1, a_offset, i__1, i__2;
double d__1, d__2, d__3;
/* Local variables */
double temp;
integer i__, j, k;
double scale, tempa;
integer idrop;
double savex;
integer jx, iz;
double resbig, resabs, res;
/* Parameter adjustments */
a_dim1 = *ia;
a_offset = 1 + a_dim1 * 1;
a -= a_offset;
--b;
--xl;
--xu;
--x;
--iact;
--z__;
--u;
--xbig;
/* Function Body */
if (*nact == 0) {
goto L50;
}
i__1 = *nact;
for (k = 1; k <= i__1; ++k) {
/* Calculate the next constraint residual. */
j = iact[k];
if (j <= *m) {
res = b[j];
resabs = (d__1 = b[j], fabs(d__1));
resbig = resabs;
i__2 = *n;
for (i__ = 1; i__ <= i__2; ++i__) {
tempa = a[i__ + j * a_dim1];
temp = tempa * x[i__];
res -= temp;
resabs += fabs(temp);
/* L10: */
resbig += fabs(tempa) * xbig[i__];
}
} else {
jx = j - *m;
if (jx <= *n) {
res = x[jx] - xl[jx];
resabs = (d__1 = x[jx], fabs(d__1)) + (d__2 = xl[jx], fabs(d__2)
);
resbig = xbig[jx] + (d__1 = xl[jx], fabs(d__1));
savex = xl[jx];
} else {
jx -= *n;
res = xu[jx] - x[jx];
resabs = (d__1 = x[jx], fabs(d__1)) + (d__2 = xu[jx], fabs(d__2)
);
resbig = xbig[jx] + (d__1 = xu[jx], fabs(d__1));
savex = xu[jx];
}
}
/* Shift X if necessary. */
if (res != (float)0.) {
temp = res / resabs;
if (k <= *meql) {
temp = -fabs(temp);
}
if (*tol == *relacc || temp + *relacc < (float)0.) {
*info = 1;
scale = res * u[k];
iz = k;
i__2 = *n;
for (i__ = 1; i__ <= i__2; ++i__) {
x[i__] += scale * z__[iz];
iz += *n;
/* L20: */
/* Computing MAX */
d__2 = xbig[i__], d__3 = (d__1 = x[i__], fabs(d__1));
xbig[i__] = max(d__2,d__3);
}
if (j > *m) {
x[jx] = savex;
}
/* Else flag a constraint deletion if necessary. */
} else if (res / resbig > *tol) {
iact[k] = -iact[k];
}
}
/* L30: */
}
/* Delete any flagged constraints and then return. */
idrop = *nact;
L40:
if (iact[idrop] < 0) {
iact[idrop] = -iact[idrop];
delcon_(n, m, &a[a_offset], ia, &iact[1], nact, &z__[1], &u[1],
relacc, &idrop);
}
--idrop;
if (idrop > *meql) {
goto L40;
}
L50:
return 0;
}
int Tolmin::sdegen_(integer *n, integer *m, double *a, integer *
ia, integer *iact, integer *nact, double *par, double *z__,
double *u, double *d__, double *ztg, double *gm,
double *relacc, double *ddotgm, integer *meql, integer *mdeg,
double *gmnew, double *parnew, double *cgrad)
{
/* System generated locals */
integer a_dim1, a_offset, i__1;
double d__1;
/* Local variables */
double temp;
integer i__, j, k;
double theta, ratio;
integer idrop;
double dtest;
integer itest, jm, mp, np, ku, iz;
double amx, sum;
/* Parameter adjustments */
a_dim1 = *ia;
a_offset = 1 + a_dim1 * 1;
a -= a_offset;
--iact;
--par;
--z__;
--u;
--d__;
--ztg;
--gm;
--gmnew;
--parnew;
--cgrad;
/* Function Body */
mp = *meql + 1;
dtest = (float)0.;
/* Calculate the search direction and branch if it is not downhill. */
L10:
sdirn_(n, nact, &z__[1], &d__[1], &ztg[1], &gm[1], relacc, ddotgm);
if (*ddotgm == (float)0.) {
goto L120;
}
/* Branch if there is no need to consider any degenerate constraints. */
/* The test gives termination if two consecutive additions to the */
/* active set fail to increase the predicted new value of F. */
if (*nact == *mdeg) {
goto L120;
}
np = *nact + 1;
sum = (float)0.;
i__1 = *n;
for (j = np; j <= i__1; ++j) {
/* L20: */
/* Computing 2nd power */
d__1 = ztg[j];
sum += d__1 * d__1;
}
if (dtest > (float)0. && sum >= dtest) {
if (itest == 1) {
goto L120;
}
itest = 1;
} else {
dtest = sum;
itest = 0;
}
/* Add a constraint to the active set if there are any significant */
/* violations of degenerate constraints. */
k = *nact;
newcon_(n, m, &a[a_offset], ia, &iact[1], nact, &z__[1], &u[1], &d__[1],
relacc, mdeg, &gmnew[1], &parnew[1], &cgrad[1]);
if (*nact == k) {
goto L120;
}
par[*nact] = (float)0.;
/* Calculate the new reduced gradient and Lagrange parameters. */
L30:
i__1 = *n;
for (i__ = 1; i__ <= i__1; ++i__) {
/* L40: */
gmnew[i__] = gm[i__];
}
k = *nact;
L50:
temp = (float)0.;
iz = k;
i__1 = *n;
for (i__ = 1; i__ <= i__1; ++i__) {
temp += z__[iz] * gmnew[i__];
/* L60: */
iz += *n;
}
temp *= u[k];
parnew[k] = par[k] + temp;
amx = (float)0.;
if (k == *nact) {
/* Computing MIN */
d__1 = parnew[k];
parnew[k] = min(d__1,amx);
}
j = iact[k];
if (j <= *m) {
i__1 = *n;
for (i__ = 1; i__ <= i__1; ++i__) {
/* L70: */
gmnew[i__] -= temp * a[i__ + j * a_dim1];
}
} else {
jm = j - *m;
if (jm <= *n) {
gmnew[jm] += temp;
} else {
gmnew[jm - *n] -= temp;
}
}
--k;
if (k > *meql) {
goto L50;
}
/* Set RATIO for linear interpolation between PAR and PARNEW. */
ratio = (float)0.;
if (mp < *nact) {
ku = *nact - 1;
i__1 = ku;
for (k = mp; k <= i__1; ++k) {
if (parnew[k] > (float)0.) {
ratio = parnew[k] / (parnew[k] - par[k]);
idrop = k;
}
/* L80: */
}
}
/* Apply the linear interpolation. */
theta = (float)1. - ratio;
amx = (float)0.;
i__1 = *nact;
for (k = mp; k <= i__1; ++k) {
/* L90: */
/* Computing MIN */
d__1 = theta * parnew[k] + ratio * par[k];
par[k] = min(d__1,amx);
}
i__1 = *n;
for (i__ = 1; i__ <= i__1; ++i__) {
/* L100: */
gm[i__] = theta * gmnew[i__] + ratio * gm[i__];
}
/* Drop a constraint if RATIO is positive. */
if (ratio > (float)0.) {
delcon_(n, m, &a[a_offset], ia, &iact[1], nact, &z__[1], &u[1],
relacc, &idrop);
i__1 = *nact;
for (k = idrop; k <= i__1; ++k) {
/* L110: */
par[k] = par[k + 1];
}
goto L30;
}
/* Return if there is no freedom for a new search direction. */
if (*nact < *n) {
goto L10;
}
*ddotgm = (float)0.;
L120:
return 0;
}
int Tolmin::sdirn_(integer *n, integer *nact, double *z__,
double *d__, double *ztg, double *gm, double *relacc,
double *ddotgm)
{
/* System generated locals */
integer i__1, i__2;
/* Local variables */
double temp;
integer i__, j, np, iz;
double sumabs, sum;
/* Parameter adjustments */
--gm;
--ztg;
--d__;
--z__;
/* Function Body */
*ddotgm = (float)0.;
if (*nact >= *n) {
goto L60;
}
/* Premultiply GM by the transpose of Z. */
np = *nact + 1;
i__1 = *n;
for (j = np; j <= i__1; ++j) {
sum = (float)0.;
sumabs = (float)0.;
iz = j;
i__2 = *n;
for (i__ = 1; i__ <= i__2; ++i__) {
temp = z__[iz] * gm[i__];
sum += temp;
sumabs += fabs(temp);
/* L10: */
iz += *n;
}
if (fabs(sum) <= *relacc * sumabs) {
sum = (float)0.;
}
/* L20: */
ztg[j] = sum;
}
/* Form D by premultiplying ZTG by -Z. */
iz = 0;
i__1 = *n;
for (i__ = 1; i__ <= i__1; ++i__) {
sum = (float)0.;
sumabs = (float)0.;
i__2 = *n;
for (j = np; j <= i__2; ++j) {
temp = z__[iz + j] * ztg[j];
sum -= temp;
/* L30: */
sumabs += fabs(temp);
}
if (fabs(sum) <= *relacc * sumabs) {
sum = (float)0.;
}
d__[i__] = sum;
/* L40: */
iz += *n;
}
/* Test that the search direction is downhill. */
sumabs = (float)0.;
i__1 = *n;
for (i__ = 1; i__ <= i__1; ++i__) {
temp = d__[i__] * gm[i__];
*ddotgm += temp;
/* L50: */
sumabs += fabs(temp);
}
if (*ddotgm + *relacc * sumabs >= (float)0.) {
*ddotgm = (float)0.;
}
L60:
return 0;
}
int Tolmin::stepbd_(integer *n, integer *m, double *a, integer *
ia, integer *iact, double *bres, double *d__, double *
stepcb, double *ddotg, integer *mdeg, integer *msat, integer *
mtot, integer *indxbd)
{
/* System generated locals */
integer a_dim1, a_offset, i__1;
/* Local variables */
double temp;
integer i__, j, k, iflag, jm, kl;
double sp;
/* Set steps to constraint boundaries and find the least */
/* positive one. */
/* Parameter adjustments */
a_dim1 = *ia;
a_offset = 1 + a_dim1 * 1;
a -= a_offset;
--iact;
--bres;
--d__;
/* Function Body */
iflag = 0;
*stepcb = (float)0.;
*indxbd = 0;
k = *mdeg;
L10:
++k;
if (k > *mtot) {
goto L700;
}
/* Form the scalar product of D with the current constraint normal. */
L20:
j = iact[k];
if (j <= *m) {
sp = (float)0.;
i__1 = *n;
for (i__ = 1; i__ <= i__1; ++i__) {
/* L30: */
sp += d__[i__] * a[i__ + j * a_dim1];
}
} else {
jm = j - *m;
if (jm <= *n) {
sp = -d__[jm];
} else {
sp = d__[jm - *n];
}
}
/* The next branch is taken if label 20 was reached via label 40. */
if (iflag == 1) {
goto L50;
}
/* Set BRES(J) to indicate the status of the j-th constraint. */
if (sp * bres[j] <= (float)0.) {
bres[j] = (float)0.;
} else {
bres[j] /= sp;
if (*stepcb == (float)0. || bres[j] < *stepcb) {
*stepcb = bres[j];
*indxbd = k;
}
}
goto L10;
L700:
/* Try to pass through the boundary of a violated constraint. */
L40:
if (*indxbd <= *msat) {
goto L800;
}
iflag = 1;
k = *indxbd;
goto L20;
L50:
++(*msat);
iact[*indxbd] = iact[*msat];
iact[*msat] = j;
bres[j] = (float)0.;
*indxbd = *msat;
*ddotg -= sp;
if (*ddotg < (float)0. && *msat < *mtot) {
/* Seek the next constraint boundary along the search direction. */
temp = (float)0.;
kl = *mdeg + 1;
i__1 = *mtot;
for (k = kl; k <= i__1; ++k) {
j = iact[k];
if (bres[j] > (float)0.) {
if (temp == (float)0. || bres[j] < temp) {
temp = bres[j];
*indxbd = k;
}
}
/* L60: */
}
if (temp > (float)0.) {
*stepcb = temp;
goto L40;
}
}
L800:
return 0;
}
int Tolmin::zbfgs_(integer *n, double *x, integer *nact,
double *g, double *z__, double *ztg, double *xs,
double *gs, double *zznorm)
{
/* System generated locals */
integer i__1, i__2;
double d__1, d__2;
/* Builtin functions */
double sqrt(double);
/* Local variables */
double temp, wcos, wsin;
integer i__, k;
double dd, dg;
integer km, kp, np, iz;
double sum;
/* Test if there is sufficient convexity for the update. */
/* Parameter adjustments */
--gs;
--xs;
--ztg;
--z__;
--g;
--x;
/* Function Body */
dd = (float)0.;
dg = (float)0.;
temp = (float)0.;
i__1 = *n;
for (i__ = 1; i__ <= i__1; ++i__) {
xs[i__] = x[i__] - xs[i__];
/* Computing 2nd power */
d__1 = xs[i__];
dd += d__1 * d__1;
temp += gs[i__] * xs[i__];
gs[i__] = g[i__] - gs[i__];
/* L10: */
dg += gs[i__] * xs[i__];
}
if (dg < fabs(temp) * (float).1) {
goto L90;
}
/* Transform the Z matrix. */
k = *n;
L20:
kp = k;
--k;
if (k > *nact) {
if (ztg[kp] == (float)0.) {
goto L20;
}
/* Computing 2nd power */
d__2 = ztg[k] / ztg[kp];
temp = (d__1 = ztg[kp], fabs(d__1)) * sqrt(d__2 * d__2 + (float)1.);
wcos = ztg[k] / temp;
wsin = ztg[kp] / temp;
ztg[k] = temp;
iz = k;
i__1 = *n;
for (i__ = 1; i__ <= i__1; ++i__) {
temp = wcos * z__[iz + 1] - wsin * z__[iz];
z__[iz] = wcos * z__[iz] + wsin * z__[iz + 1];
z__[iz + 1] = temp;
/* L30: */
iz += *n;
}
goto L20;
}
/* Update the value of ZZNORM. */
if (*zznorm < (float)0.) {
*zznorm = dd / dg;
} else {
temp = sqrt(*zznorm * dd / dg);
*zznorm = min(*zznorm,temp);
/* Computing MAX */
d__1 = *zznorm, d__2 = temp * (float).1;
*zznorm = max(d__1,d__2);
}
/* Complete the updating of Z. */
np = *nact + 1;
temp = sqrt(dg);
iz = np;
i__1 = *n;
for (i__ = 1; i__ <= i__1; ++i__) {
z__[iz] = xs[i__] / temp;
/* L40: */
iz += *n;
}
if (np < *n) {
km = np + 1;
i__1 = *n;
for (k = km; k <= i__1; ++k) {
temp = (float)0.;
iz = k;
i__2 = *n;
for (i__ = 1; i__ <= i__2; ++i__) {
temp += gs[i__] * z__[iz];
/* L50: */
iz += *n;
}
temp /= dg;
sum = (float)0.;
iz = k;
i__2 = *n;
for (i__ = 1; i__ <= i__2; ++i__) {
z__[iz] -= temp * xs[i__];
/* Computing 2nd power */
d__1 = z__[iz];
sum += d__1 * d__1;
/* L60: */
iz += *n;
}
if (sum < *zznorm) {
temp = sqrt(*zznorm / sum);
iz = k;
i__2 = *n;
for (i__ = 1; i__ <= i__2; ++i__) {
z__[iz] = temp * z__[iz];
/* L70: */
iz += *n;
}
}
/* L80: */
}
}
L90:
return 0;
}
/*
double tolmin(Data &x, Problem *p,int iters)
{
double fmin;
oldmin=1e+100;
totcal_1.itnocs =0 ;
long n=p->getDimension();
long m=0;
long meq=0;
double *a=new double[n*n];
long ia=n;
double *b=new double[n];
double *xl=new double[n];
double *xu=new double[n];
double *xp=new double[n];
p->getleftmarginx(xl);
p->getrightmarginx(xu);
for(int i=0;i<n;i++)
{
xp[i]=x[i];
}
double acc=1e-19;
long *iact=new long[3*n];
long nact;
double *par=new double[n];
long iprint=0;
long info=iters;
double *w=new double[12*n+n*n*n];
getmin_(&n,&m,&meq,a,&ia,b,xl,xu,xp,&acc,iact,&nact,par,&iprint,&info,
w,p);
for(int i=0;i<n;i++) x[i]=xp[i];
fmin=p->funmin(x);
delete[] w;
delete[] a;
delete[] xp;
delete[] iact;
delete[] par;
delete[] b;
delete[] xl;
delete[] xu;
return fmin;
}
*/
int Tolmin::fgcalc_(long *n,double *x,double *f,double *g)
{
totcal_1.itnocs++;
*f=myProblem->funmin(x);
myProblem->granal(x,g);
if(*f<=oldMin)
{
// printf("NEW MIN[%d] =%20.10lg\n",totcal_1.itnocs,*f);
oldMin=*f;
}
return 0;
}
int Tolmin::getfes_(integer *n, integer *m, double *a, integer *
ia, double *b, double *xl, double *xu, double *x,
integer *iact, integer *nact, double *par, integer *info,
double *g, double *z__, double *u, double *xbig,
double *relacc, double *tol, integer *meql, integer *msat,
integer *mtot, double *bres, double *d__, double *ztg,
double *gm, double *gmnew, double *parnew, double *
cgrad)
{
/* System generated locals */
integer a_dim1, a_offset, i__1;
double d__1, d__2, d__3;
/* Local variables */
integer i__, msatk, itest;
integer indxbd;
double stepcb;
double sumres, sumrsk;
/* Make the correction to X for the active constraints. */
/* Parameter adjustments */
a_dim1 = *ia;
a_offset = 1 + a_dim1 * 1;
a -= a_offset;
--b;
--xl;
--xu;
--x;
--iact;
--par;
--g;
--z__;
--u;
--xbig;
--bres;
--d__;
--ztg;
--gm;
--gmnew;
--parnew;
--cgrad;
/* Function Body */
*info = 0;
L10:
satact_(n, m, &a[a_offset], ia, &b[1], &xl[1], &xu[1], &x[1], &iact[1],
nact, info, &z__[1], &u[1], &xbig[1], relacc, tol, meql);
if (*info > 0) {
*msat = *nact;
}
if (*msat == *mtot) {
goto L60;
}
/* Try to correct the infeasibility. */
L20:
msatk = *msat;
sumrsk = (float)0.;
L30:
conres_(n, m, &a[a_offset], ia, &b[1], &xl[1], &xu[1], &x[1], &iact[1],
nact, &par[1], &g[1], &z__[1], &u[1], &xbig[1], &bres[1], &d__[1],
&ztg[1], relacc, tol, &stepcb, &sumres, meql, msat, mtot, &
indxbd, &gm[1], &gmnew[1], &parnew[1], &cgrad[1]);
/* Include the new constraint in the active set. */
if (stepcb > (float)0.) {
i__1 = *n;
for (i__ = 1; i__ <= i__1; ++i__) {
x[i__] += stepcb * d__[i__];
/* L40: */
/* Computing MAX */
d__2 = xbig[i__], d__3 = (d__1 = x[i__], fabs(d__1));
xbig[i__] = max(d__2,d__3);
}
addcon_(n, m, &a[a_offset], ia, &iact[1], nact, &z__[1], &u[1],
relacc, &indxbd, &gmnew[1], &cgrad[1]);
}
/* Test whether to continue the search for feasibility. */
if (*msat < *mtot) {
if (stepcb == (float)0.) {
goto L50;
}
if (msatk < *msat) {
goto L20;
}
if (sumrsk == (float)0. || sumres < sumrsk) {
sumrsk = sumres;
itest = 0;
}
++itest;
if (itest <= 2) {
goto L30;
}
/* Reduce TOL if it may be too large to allow feasibility. */
L50:
if (*tol > *relacc) {
adjtol_(n, m, &a[a_offset], ia, &b[1], &xl[1], &xu[1], &x[1], &
iact[1], nact, &xbig[1], relacc, tol, meql);
goto L10;
}
}
L60:
return 0;
}
int Tolmin::addcon_(integer *n, integer *m, double *a, integer *
ia, integer *iact, integer *nact, double *z__, double *u,
double *relacc, integer *indxbd, double *ztc, double *
cgrad)
{
/* System generated locals */
integer a_dim1, a_offset, i__1, i__2;
double d__1, d__2;
/* Builtin functions */
double sqrt(double);
/* Local variables */
integer icon;
double temp;
integer ipiv;
double wcos, wsin, wpiv;
integer i__, j, iznbd;
double tempa, tempb;
integer jp, np, iz, inewbd;
double sumabs, sum;
/* Parameter adjustments */
a_dim1 = *ia;
a_offset = 1 + a_dim1 * 1;
a -= a_offset;
--iact;
--z__;
--u;
--ztc;
--cgrad;
/* Function Body */
np = *nact + 1;
icon = iact[*indxbd];
iact[*indxbd] = iact[np];
iact[np] = icon;
/* Form ZTC when the new constraint is a bound. */
if (icon > *m) {
inewbd = icon - *m;
if (inewbd <= *n) {
temp = (float)-1.;
} else {
inewbd -= *n;
temp = (float)1.;
}
iznbd = inewbd * *n - *n;
i__1 = *n;
for (j = 1; j <= i__1; ++j) {
/* L10: */
ztc[j] = temp * z__[iznbd + j];
}
/* Else form ZTC for an ordinary constraint. */
} else {
i__1 = *n;
for (i__ = 1; i__ <= i__1; ++i__) {
/* L20: */
cgrad[i__] = a[i__ + icon * a_dim1];
}
i__1 = *n;
for (j = 1; j <= i__1; ++j) {
ztc[j] = (float)0.;
iz = j;
i__2 = *n;
for (i__ = 1; i__ <= i__2; ++i__) {
ztc[j] += z__[iz] * cgrad[i__];
/* L30: */
iz += *n;
}
}
}
/* Find any Givens rotations to apply to the last columns of Z. */
j = *n;
L40:
jp = j;
--j;
if (j > *nact) {
if (ztc[jp] == (float)0.) {
goto L40;
}
if ((d__2 = ztc[jp], fabs(d__2)) <= *relacc * (d__1 = ztc[j], fabs(d__1)
)) {
temp = (d__1 = ztc[j], fabs(d__1));
} else if ((d__2 = ztc[j], fabs(d__2)) <= *relacc * (d__1 = ztc[jp],
fabs(d__1))) {
temp = (d__1 = ztc[jp], fabs(d__1));
} else {
/* Computing 2nd power */
d__2 = ztc[j] / ztc[jp];
temp = (d__1 = ztc[jp], fabs(d__1)) * sqrt(d__2 * d__2 + (float)1.)
;
}
wcos = ztc[j] / temp;
wsin = ztc[jp] / temp;
ztc[j] = temp;
/* Apply the rotation when the new constraint is a bound. */
iz = j;
if (icon > *m) {
i__2 = *n;
for (i__ = 1; i__ <= i__2; ++i__) {
temp = wcos * z__[iz + 1] - wsin * z__[iz];
z__[iz] = wcos * z__[iz] + wsin * z__[iz + 1];
z__[iz + 1] = temp;
/* L50: */
iz += *n;
}
z__[iznbd + jp] = (float)0.;
/* Else apply the rotation for an ordinary constraint. */
} else {
wpiv = (float)0.;
i__2 = *n;
for (i__ = 1; i__ <= i__2; ++i__) {
tempa = wcos * z__[iz + 1];
tempb = wsin * z__[iz];
temp = (d__1 = cgrad[i__], fabs(d__1)) * (fabs(tempa) + fabs(
tempb));
if (temp > wpiv) {
wpiv = temp;
ipiv = i__;
}
z__[iz] = wcos * z__[iz] + wsin * z__[iz + 1];
z__[iz + 1] = tempa - tempb;
/* L60: */
iz += *n;
}
/* Ensure orthogonality of Z(.,JP) to CGRAD. */
sum = (float)0.;
iz = jp;
i__2 = *n;
for (i__ = 1; i__ <= i__2; ++i__) {
sum += z__[iz] * cgrad[i__];
/* L70: */
iz += *n;
}
if (sum != (float)0.) {
iz = ipiv * *n - *n + jp;
z__[iz] -= sum / cgrad[ipiv];
}
}
goto L40;
}
/* Test for linear independence in the proposed new active set. */
if (ztc[np] == (float)0.) {
goto L90;
}
if (icon <= *m) {
sum = (float)0.;
sumabs = (float)0.;
iz = np;
i__2 = *n;
for (i__ = 1; i__ <= i__2; ++i__) {
temp = z__[iz] * cgrad[i__];
sum += temp;
sumabs += fabs(temp);
/* L80: */
iz += *n;
}
if (fabs(sum) <= *relacc * sumabs) {
goto L90;
}
}
/* Set the new diagonal element of U and return. */
u[np] = (float)1. / ztc[np];
*nact = np;
L90:
return 0;
}
int Tolmin::adjtol_(integer *n, integer *m, double *a, integer *
ia, double *b, double *xl, double *xu, double *x,
integer *iact, integer *nact, double *xbig, double *relacc,
double *tol, integer *meql)
{
/* System generated locals */
integer a_dim1, a_offset, i__1, i__2;
double d__1, d__2;
/* Local variables */
double viol;
integer i__, j, k, kl, jm;
double resabs, res;
/* Set VIOL to the greatest relative constraint residual of the first */
/* NACT constraints. */
/* Parameter adjustments */
a_dim1 = *ia;
a_offset = 1 + a_dim1 * 1;
a -= a_offset;
--b;
--xl;
--xu;
--x;
--iact;
--xbig;
/* Function Body */
viol = (float)0.;
if (*nact > *meql) {
kl = *meql + 1;
i__1 = *nact;
for (k = kl; k <= i__1; ++k) {
j = iact[k];
if (j <= *m) {
res = b[j];
resabs = (d__1 = b[j], fabs(d__1));
i__2 = *n;
for (i__ = 1; i__ <= i__2; ++i__) {
res -= a[i__ + j * a_dim1] * x[i__];
/* L10: */
resabs += (d__1 = a[i__ + j * a_dim1] * xbig[i__], fabs(
d__1));
}
} else {
jm = j - *m;
if (jm <= *n) {
res = x[jm] - xl[jm];
resabs = xbig[jm] + (d__1 = xl[jm], fabs(d__1));
} else {
jm -= *n;
res = xu[jm] - x[jm];
resabs = xbig[jm] + (d__1 = xu[jm], fabs(d__1));
}
}
if (res > (float)0.) {
/* Computing MAX */
d__1 = viol, d__2 = res / resabs;
viol = max(d__1,d__2);
}
/* L20: */
}
}
/* Adjust TOL. */
*tol = min(*tol,viol) * (float).1;
if (*tol <= *relacc + *relacc) {
*tol = *relacc;
i__1 = *n;
for (i__ = 1; i__ <= i__1; ++i__) {
/* L30: */
xbig[i__] = (d__1 = x[i__], fabs(d__1));
}
}
return 0;
}
int Tolmin::conres_(integer *n, integer *m, double *a, integer *
ia, double *b, double *xl, double *xu, double *x,
integer *iact, integer *nact, double *par, double *g,
double *z__, double *u, double *xbig, double *bres,
double *d__, double *ztg, double *relacc, double *tol,
double *stepcb, double *sumres, integer *meql, integer *msat,
integer *mtot, integer *indxbd, double *gm, double *gmnew,
double *parnew, double *cgrad)
{
/* System generated locals */
integer a_dim1, a_offset, i__1, i__2;
double d__1, d__2;
/* Local variables */
integer mdeg;
double temp;
integer i__, j, k, idiff;
double ddotg;
integer msatk, kl, jm;
double resabs;
double res, sum;
/* Parameter adjustments */
a_dim1 = *ia;
a_offset = 1 + a_dim1 * 1;
a -= a_offset;
--b;
--xl;
--xu;
--x;
--iact;
--par;
--g;
--z__;
--u;
--xbig;
--bres;
--d__;
--ztg;
--gm;
--gmnew;
--parnew;
--cgrad;
/* Function Body */
idiff = *mtot - *msat;
/* Calculate and partition the residuals of the inactive constraints, */
/* and set the gradient vector when seeking feasibility. */
if ((real) idiff > (float)0.) {
i__1 = *n;
for (i__ = 1; i__ <= i__1; ++i__) {
/* L10: */
g[i__] = (float)0.;
}
*sumres = (float)0.;
}
msatk = *msat;
mdeg = *nact;
*msat = *nact;
kl = *meql + 1;
i__1 = *mtot;
for (k = kl; k <= i__1; ++k) {
j = iact[k];
/* Calculate the residual of the current constraint. */
if (j <= *m) {
res = b[j];
resabs = (d__1 = b[j], fabs(d__1));
i__2 = *n;
for (i__ = 1; i__ <= i__2; ++i__) {
res -= x[i__] * a[i__ + j * a_dim1];
/* L20: */
resabs += (d__1 = xbig[i__] * a[i__ + j * a_dim1], fabs(d__1));
}
} else {
jm = j - *m;
if (jm <= *n) {
res = x[jm] - xl[jm];
resabs = (d__1 = xbig[jm], fabs(d__1)) + (d__2 = xl[jm], fabs(
d__2));
} else {
jm -= *n;
res = xu[jm] - x[jm];
resabs = (d__1 = xbig[jm], fabs(d__1)) + (d__2 = xu[jm], fabs(
d__2));
}
}
bres[j] = res;
/* Set TEMP to the relative residual. */
temp = (float)0.;
if (resabs != (float)0.) {
temp = res / resabs;
}
if (k > msatk && temp < (float)0.) {
if (temp + *relacc >= (float)0.) {
if (j <= *m) {
sum = (d__1 = b[j], fabs(d__1));
i__2 = *n;
for (i__ = 1; i__ <= i__2; ++i__) {
/* L30: */
sum += (d__1 = x[i__] * a[i__ + j * a_dim1], fabs(d__1)
);
}
} else {
jm = j - *m;
if (jm <= *n) {
sum = (d__1 = x[jm], fabs(d__1)) + (d__2 = xl[jm], fabs(
d__2));
} else {
sum = (d__1 = x[jm - *n], fabs(d__1)) + (d__2 = xu[jm
- *n], fabs(d__2));
}
}
if (fabs(res) <= sum * *relacc) {
temp = (float)0.;
}
}
}
/* Place the residual in the appropriate position. */
if (k <= *nact) {
goto L50;
}
if (k <= msatk || temp >= (float)0.) {
++(*msat);
if (*msat < k) {
iact[k] = iact[*msat];
}
if (temp > *tol) {
iact[*msat] = j;
} else {
++mdeg;
iact[*msat] = iact[mdeg];
iact[mdeg] = j;
}
/* Update the gradient and SUMRES if the constraint is violated when */
/* seeking feasibility. */
} else {
if (j <= *m) {
i__2 = *n;
for (i__ = 1; i__ <= i__2; ++i__) {
/* L40: */
g[i__] += a[i__ + j * a_dim1];
}
} else {
j -= *m;
if (j <= *n) {
g[j] += (float)-1.;
} else {
g[j - *n] += (float)1.;
}
}
*sumres += fabs(res);
}
L50:
;
}
/* Seek the next search direction unless CONRES was called from GETFES */
/* and feasibility has been achieved. */
*stepcb = (float)0.;
if (idiff > 0 && *msat == *mtot) {
goto L60;
}
getd_(n, m, &a[a_offset], ia, &iact[1], nact, &par[1], &g[1], &z__[1], &u[
1], &d__[1], &ztg[1], relacc, &ddotg, meql, &mdeg, &gm[1], &gmnew[
1], &parnew[1], &cgrad[1]);
/* Calculate the (bound on the) step-length due to the constraints. */
if (ddotg < (float)0.) {
stepbd_(n, m, &a[a_offset], ia, &iact[1], &bres[1], &d__[1], stepcb, &
ddotg, &mdeg, msat, mtot, indxbd);
}
if (idiff == 0) {
*sumres = ddotg;
}
L60:
return 0;
}
int Tolmin::delcon_(integer *n, integer *m, double *a, integer *
ia, integer *iact, integer *nact, double *z__, double *u,
double *relacc, integer *idrop)
{
/* System generated locals */
integer a_dim1, a_offset, i__1, i__2;
double d__1;
/* Builtin functions */
// double sqrt(double);
/* Local variables */
integer icon, izbd;
double rjjp, temp;
integer ipiv;
double wcos, wsin, wpiv;
integer i__, j;
double denom, tempa;
integer isave;
double tempb;
integer jp, nm, iz, ibd;
double ujp, sum;
/* Parameter adjustments */
a_dim1 = *ia;
a_offset = 1 + a_dim1 * 1;
a -= a_offset;
--iact;
--z__;
--u;
/* Function Body */
nm = *nact - 1;
if (*idrop == *nact) {
goto L60;
}
isave = iact[*idrop];
/* Cycle through the constraint exchanges that are needed. */
i__1 = nm;
for (j = *idrop; j <= i__1; ++j) {
jp = j + 1;
icon = iact[jp];
iact[j] = icon;
/* Calculate the (J,JP) element of R. */
if (icon <= *m) {
rjjp = (float)0.;
iz = j;
i__2 = *n;
for (i__ = 1; i__ <= i__2; ++i__) {
rjjp += z__[iz] * a[i__ + icon * a_dim1];
/* L10: */
iz += *n;
}
} else {
ibd = icon - *m;
if (ibd <= *n) {
izbd = ibd * *n - *n;
rjjp = -z__[izbd + j];
} else {
ibd -= *n;
izbd = ibd * *n - *n;
rjjp = z__[izbd + j];
}
}
/* Calculate the parameters of the next rotation. */
ujp = u[jp];
temp = rjjp * ujp;
denom = fabs(temp);
if (denom * *relacc < (float)1.) {
denom = sqrt(denom * denom + (float)1.);
}
wcos = temp / denom;
wsin = (float)1. / denom;
/* Rotate Z when a bound constraint is promoted. */
iz = j;
if (icon > *m) {
i__2 = *n;
for (i__ = 1; i__ <= i__2; ++i__) {
temp = wcos * z__[iz + 1] - wsin * z__[iz];
z__[iz] = wcos * z__[iz] + wsin * z__[iz + 1];
z__[iz + 1] = temp;
/* L20: */
iz += *n;
}
z__[izbd + jp] = (float)0.;
/* Rotate Z when an ordinary constraint is promoted. */
} else {
wpiv = (float)0.;
i__2 = *n;
for (i__ = 1; i__ <= i__2; ++i__) {
tempa = wcos * z__[iz + 1];
tempb = wsin * z__[iz];
temp = (d__1 = a[i__ + icon * a_dim1], fabs(d__1)) * (fabs(
tempa) + fabs(tempb));
if (temp > wpiv) {
wpiv = temp;
ipiv = i__;
}
z__[iz] = wcos * z__[iz] + wsin * z__[iz + 1];
z__[iz + 1] = tempa - tempb;
/* L30: */
iz += *n;
}
/* Ensure orthogonality to promoted constraint. */
sum = (float)0.;
iz = jp;
i__2 = *n;
for (i__ = 1; i__ <= i__2; ++i__) {
sum += z__[iz] * a[i__ + icon * a_dim1];
/* L40: */
iz += *n;
}
if (sum != (float)0.) {
iz = ipiv * *n - *n + jp;
z__[iz] -= sum / a[ipiv + icon * a_dim1];
}
}
/* Set the new diagonal elements of U. */
u[jp] = -denom * u[j];
u[j] = ujp / denom;
/* L50: */
}
/* Return. */
iact[*nact] = isave;
L60:
*nact = nm;
return 0;
}
int Tolmin::eqcons_(integer *n, integer *m, integer *meq, double
*a, integer *ia, double *b, double *xu, integer *iact,
integer *meql, integer *info, double *z__, double *u,
double *relacc, double *am, double *cgrad)
{
/* System generated locals */
integer a_dim1, a_offset, i__1, i__2;
double d__1;
/* Local variables */
integer i__, j, k;
double vmult;
integer jm;
integer np, iz;
double sumabs;
integer keq;
double rhs, sum;
/* Try to add the next equality constraint to the active set. */
/* Parameter adjustments */
a_dim1 = *ia;
a_offset = 1 + a_dim1 * 1;
a -= a_offset;
--b;
--xu;
--iact;
--z__;
--u;
--am;
--cgrad;
/* Function Body */
i__1 = *meq;
for (keq = 1; keq <= i__1; ++keq) {
if (*meql < *n) {
np = *meql + 1;
iact[np] = keq;
addcon_(n, m, &a[a_offset], ia, &iact[1], meql, &z__[1], &u[1],
relacc, &np, &am[1], &cgrad[1]);
if (*meql == np) {
goto L50;
}
}
/* If linear dependence occurs then find the multipliers of the */
/* dependence relation and apply them to the right hand sides. */
sum = b[keq];
sumabs = (d__1 = b[keq], fabs(d__1));
if (*meql > 0) {
i__2 = *n;
for (i__ = 1; i__ <= i__2; ++i__) {
/* L10: */
am[i__] = a[i__ + keq * a_dim1];
}
k = *meql;
L20:
vmult = (float)0.;
iz = k;
i__2 = *n;
for (i__ = 1; i__ <= i__2; ++i__) {
vmult += z__[iz] * am[i__];
/* L30: */
iz += *n;
}
vmult *= u[k];
j = iact[k];
if (j <= *m) {
i__2 = *n;
for (i__ = 1; i__ <= i__2; ++i__) {
/* L40: */
am[i__] -= vmult * a[i__ + j * a_dim1];
}
rhs = b[j];
} else {
jm = j - *m - *n;
am[jm] -= vmult;
rhs = xu[jm];
}
sum -= rhs * vmult;
sumabs += (d__1 = rhs * vmult, fabs(d__1));
--k;
if (k >= 1) {
goto L20;
}
}
/* Error return if the constraints are inconsistent. */
if (fabs(sum) > *relacc * sumabs) {
*info = 5;
goto L60;
}
L50:
;
}
L60:
return 0;
}
int Tolmin::getd_(integer *n, integer *m, double *a, integer *ia,
integer *iact, integer *nact, double *par, double *g,
double *z__, double *u, double *d__, double *ztg,
double *relacc, double *ddotg, integer *meql, integer *mdeg,
double *gm, double *gmnew, double *parnew, double *
cgrad)
{
/* System generated locals */
integer a_dim1, a_offset, i__1;
/* Local variables */
double temp;
integer i__, j, k, ii, jm, iz;
double ddotgm, abcd;
/* Initialize GM and cycle backwards through the active set. */
/* C dgp */
/* Parameter adjustments */
a_dim1 = *ia;
a_offset = 1 + a_dim1 * 1;
a -= a_offset;
--iact;
--par;
--g;
--z__;
--u;
--d__;
--ztg;
--gm;
--gmnew;
--parnew;
--cgrad;
/* Function Body */
abcd = (float)1.;
L10:
i__1 = *n;
for (ii = 1; ii <= i__1; ++ii) {
/* L20: */
gm[ii] = g[ii];
}
k = *nact;
L30:
if (k > 0) {
/* Set TEMP to the next multiplier, but reduce the active set if */
/* TEMP has an unacceptable sign. */
temp = (float)0.;
iz = k;
i__1 = *n;
for (i__ = 1; i__ <= i__1; ++i__) {
temp += z__[iz] * gm[i__];
/* L40: */
iz += *n;
}
temp *= u[k];
if (k > *meql && temp > (float)0.) {
delcon_(n, m, &a[a_offset], ia, &iact[1], nact, &z__[1], &u[1],
relacc, &k);
goto L10;
}
/* Update GM using the multiplier that has just been calculated. */
j = iact[k];
if (j <= *m) {
i__1 = *n;
for (i__ = 1; i__ <= i__1; ++i__) {
/* L50: */
gm[i__] -= temp * a[i__ + j * a_dim1];
}
} else {
jm = j - *m;
if (jm <= *n) {
gm[jm] += temp;
} else {
gm[jm - *n] -= temp;
}
}
par[k] = temp;
--k;
goto L30;
}
/* Calculate the search direction and DDOTG. */
*ddotg = (float)0.;
if (*nact < *n) {
sdegen_(n, m, &a[a_offset], ia, &iact[1], nact, &par[1], &z__[1], &u[
1], &d__[1], &ztg[1], &gm[1], relacc, &ddotgm, meql, mdeg, &
gmnew[1], &parnew[1], &cgrad[1]);
if (ddotgm < (float)0.) {
i__1 = *n;
for (i__ = 1; i__ <= i__1; ++i__) {
/* L60: */
*ddotg += d__[i__] * g[i__];
}
}
}
return 0;
} /* getd_ */
Tolmin::~Tolmin()
{
delete[] w;
delete[] a;
delete[] xp;
delete[] iact;
delete[] par;
delete[] b;
delete[] xl;
delete[] xu;
}
| [
"itsoulos@gmail.com"
] | itsoulos@gmail.com |
5f6f1ded589ec3fa10890d1f5b20ec212e7eb018 | 218e00ccf5060ada10fa1e3fe88a680fd394c147 | /TensorFlow_cpp_Cmake/tests/testCXX.cpp | f349e93b41caafd00711e363e93246c9ef770e69 | [] | no_license | Robinatp/Compile-Tensorflow-C--without-Bazel | b470fdf4555d629cb5bf06d16d817e2ebef9a4fd | 5a36fb741f1d21fc98f1365ca06654d02369f137 | refs/heads/master | 2020-03-21T14:43:01.653212 | 2018-07-10T13:29:40 | 2018-07-10T13:29:40 | 138,672,222 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,841 | cpp | #include "CXXTFDetector.h"
#include <sys/time.h>
#include "Common.h"
int main(int argc, char* argv[])
{
TFModelPara model_para;
// faster_rcnn
// model_para.graph_path ="../models/faster_rcnn_resnet101_coco/frozen_inference_graph.pb";
// model_para.graph_path ="../models/faster_rcnn_nas_coco/frozen_inference_graph.pb";
// model_para.input_width = 299;
// model_para.input_height = 299;
// const float conf_thresh = 0.7;
// mobilenet
model_para.graph_path = "../models/frozen_inference_graph.pb";
model_para.input_width = 224;
model_para.input_height = 224;
const float conf_thresh = 0.5;
model_para.labels_path ="../models/labels/mscoco_label_map.pbtxt";
model_para.input_mean = 0;
model_para.input_std = 1;
model_para.input_layer = "image_tensor:0";
model_para.output_layer = { "detection_boxes:0", "detection_scores:0",
"detection_classes:0", "num_detections:0" };
// init TF detector
CXXTFDetector my_detector(model_para);
my_detector.InitCXXTFDetector();
// TODO: *.jpg files are not supported
string image_path = "../data/001257.jpg";
timeval start_time, end_time;
while(1) {
cv::Mat img = cv::imread(image_path);
gettimeofday(&start_time, NULL);
// std::vector<Detection> detectionVec = my_detector.Detect(image_path, conf_thresh);
std::vector<Detection> detectionVec = my_detector.Detect(img, conf_thresh);
gettimeofday(&end_time, NULL);
double timeuse = (1000000 * (end_time.tv_sec - start_time.tv_sec)
+ end_time.tv_usec - start_time.tv_usec) / 1000000.0;
LOG(INFO) << "Use time: " << timeuse;
DrawBoxOnPic(detectionVec, img);
cv::imshow("result", img);
cv::waitKey(0);
}
return 0;
}
| [
"zhangbinatp@gmail.com"
] | zhangbinatp@gmail.com |
70f0a1fc3bc64699dd486607c7630a1830015d75 | be09c47c706e98c939544a05bd6c4cb02ae42b87 | /common/log.h | b02d29ac8bd43c459a5bd26a81ff169a906f422d | [] | no_license | zleesz/RemoteDesktop | 5e1953a870626890a434f798a90ac3de802c821e | 74b98699bc9cd079f7856326324dd46939039211 | refs/heads/master | 2021-01-19T10:53:31.524977 | 2017-04-27T14:28:56 | 2017-04-27T14:28:56 | 87,910,699 | 2 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 4,019 | h | #pragma once
#define LWA_COLORKEY 0x00000001
#define LWA_ALPHA 0x00000002
#define ULW_COLORKEY 0x00000001
#define ULW_ALPHA 0x00000002
#define ULW_OPAQUE 0x00000004
#define WS_EX_LAYERED 0x00080000
#define NERR_BASE 2100
#define MAX_NERR (NERR_BASE+899) /* This is the last error in NERR range. */
#define EMPTY_STRING _T("")
#define PROFILE_APP_NAME _T("Config")
#define countof(x) (sizeof(x)/sizeof(x[0]))
#define MAX_URL_LENGTH 2048
#ifdef UNICODE
#define lstrncpy wcsncpy
#define lstrstr wcsstr
#define lstrlwr _wcslwr
#define lstrupr _wcsupr
#define lstrncmp wcsncmp
#define lstricmp _wcsicmp
#define lstrnicmp _wcsnicmp
#define lsscanf swscanf
#define lstrtoi _wtoi
#define lstrtol wcstol
#define lstrtoul wcstoul
#define lstrtoull _wcstoui64
#define lstring wstring
#define fgetls fgetws
#define fopenl _wfopen
#else
#define lstrncpy strncpy
#define lstrstr strstr
#define lstrlwr strlwr
#define lstrupr strupr
#define lstrncmp strncmp
#define lstricmp stricmp
#define lstrnicmp strnicmp
#define lsscanf sscanf
#define lstrtoi atoi
#define lstrtol strtol
#define lstrtoul strtoul
#define lstrtoull _strtoui64
#define lstring string
#define fgetls fgets
#define fopenl fopen
#endif
void MillisecondToText(int nMs, TCHAR * pszText, BOOL bShowMillisecs = TRUE, BOOL bModeMinute = FALSE);
void ShowDebug(const TCHAR * pcszFormat, ... );
BOOL SelectFile(HWND hOwner, BOOL bIsSave, const TCHAR * pcszTitle, const TCHAR * pcszFilter, TCHAR * pszFilePath, int nMaxFilePath, TCHAR * pszFileTitle, int nMaxFileTitle);
BOOL IsDirectoryExists(const TCHAR * pcszDirectory);
BOOL IsFileExists(const TCHAR * pcszFileName);
BOOL IsKeyDown(int nKeyCode);
BOOL OpenDirectoryAndSelectFile(const TCHAR * pcszFileName);
BOOL GetFileVersionString(const TCHAR * pcszFileName, TCHAR * pszVersionString);
BOOL GetFileVersionStringA(const char* pcszFileName, char* pszVersionString);
int GetFileBuildNumber(const TCHAR * pcszFileName);
BOOL GetTargetPath(TCHAR * pszPath);
BOOL GetUsersPublicDirectory(TCHAR * pszDirectory);
BOOL GetPathFromFullName(const TCHAR * pcszFullName, TCHAR * pszPath);
BOOL GetModulePath(HMODULE hModule, TCHAR * pszPath);
const TCHAR * GetFileNameFromPath(const TCHAR * pcszFilePath);
void GetErrorInformation(DWORD dwLastError, LPTSTR * ppMessageBuffer);
///////////////////////////////////////////////////////////
// CTool
///////////////////////////////////////////////////////////
enum OPERATION_SYSTEM
{
OS_OTHER = 0,
OS_WIN2K = 1,
OS_WINXP = 2,
OS_VISTAWIN78 = 3,
};
class CTool
{
public:
CTool();
~CTool();
BOOL Initialize(void);
// System info
const TCHAR * GetExeFullName(void);
const TCHAR * GetExePath(void);
const TCHAR * GetExeName(void);
const TCHAR * GetSystemPath(void);
const TCHAR * GetTemporaryPath(void);
OPERATION_SYSTEM GetOS(void);
BOOL Is64BitSystem(void);
int GetIEVersion(void);
DWORD GetProcessId(void);
BOOL IsDebug(void);
// Profile
int GetProfileInt(const TCHAR * pcszKey, int nDefault);
BOOL GetProfileStr(const TCHAR * pcszKey,
const TCHAR * pcszDefault,
TCHAR * pszValue,
int nValueSize);
// Log
void EnableLog(BOOL bEnable);
BOOL HaveLog(void);
void Log(const TCHAR * pcszFormat, ... );
void LogA(const char * pcszFormat, ...);
protected:
void GetVersionInfo(void);
void GetInitFile(TCHAR * pszIniFile);
protected:
// Generic variables
TCHAR m_szExeFullName[MAX_PATH];
TCHAR m_szExePath[MAX_PATH];
TCHAR m_szExeName[MAX_PATH];
TCHAR m_szSystemPath[MAX_PATH];
TCHAR m_szTemporaryPath[MAX_PATH];
OPERATION_SYSTEM m_OperationSystem;
BOOL m_b64BitSystem;
int m_nIEVersion;
DWORD m_dwProcessId;
// Log settings
BOOL m_bLogEnabled;
TCHAR m_szLogFile[MAX_PATH];
HANDLE m_hFile;
BOOL m_bDebugOutput;
CRITICAL_SECTION m_LogSection;
};
| [
"shinezlee@qq.com"
] | shinezlee@qq.com |
227a6922a81f384801b2fbdfb928f4fe05dba7c5 | 43e42f048456ac8ac41f6951dd93282188b7b6c9 | /src/qt/peertablemodel.cpp | 2ed271a60798893bece47aff845dbaf985ee101b | [
"MIT"
] | permissive | Frenchh/French-core | 7a0f28ae8475b9adba3acfc2c5865a18d4d19243 | 0da631eeced40d9d21146703cf80f569350ee1a5 | refs/heads/master | 2020-04-05T20:57:43.559095 | 2018-11-13T00:46:04 | 2018-11-13T00:46:04 | 157,201,580 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 6,421 | cpp | // Copyright (c) 2011-2013 The Bitcoin developers
// Copyright (c) 2017-2018 The PIVX developers
// Copyright (c) 2017-2018 The French developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "peertablemodel.h"
#include "clientmodel.h"
#include "guiconstants.h"
#include "guiutil.h"
#include "net.h"
#include "sync.h"
#include <QDebug>
#include <QList>
#include <QTimer>
bool NodeLessThan::operator()(const CNodeCombinedStats& left, const CNodeCombinedStats& right) const
{
const CNodeStats* pLeft = &(left.nodeStats);
const CNodeStats* pRight = &(right.nodeStats);
if (order == Qt::DescendingOrder)
std::swap(pLeft, pRight);
switch (column) {
case PeerTableModel::Address:
return pLeft->addrName.compare(pRight->addrName) < 0;
case PeerTableModel::Subversion:
return pLeft->cleanSubVer.compare(pRight->cleanSubVer) < 0;
case PeerTableModel::Ping:
return pLeft->dPingTime < pRight->dPingTime;
}
return false;
}
// private implementation
class PeerTablePriv
{
public:
/** Local cache of peer information */
QList<CNodeCombinedStats> cachedNodeStats;
/** Column to sort nodes by */
int sortColumn;
/** Order (ascending or descending) to sort nodes by */
Qt::SortOrder sortOrder;
/** Index of rows by node ID */
std::map<NodeId, int> mapNodeRows;
/** Pull a full list of peers from vNodes into our cache */
void refreshPeers()
{
{
TRY_LOCK(cs_vNodes, lockNodes);
if (!lockNodes) {
// skip the refresh if we can't immediately get the lock
return;
}
cachedNodeStats.clear();
cachedNodeStats.reserve(vNodes.size());
foreach (CNode* pnode, vNodes) {
CNodeCombinedStats stats;
stats.nodeStateStats.nMisbehavior = 0;
stats.nodeStateStats.nSyncHeight = -1;
stats.nodeStateStats.nCommonHeight = -1;
stats.fNodeStateStatsAvailable = false;
pnode->copyStats(stats.nodeStats);
cachedNodeStats.append(stats);
}
}
// Try to retrieve the CNodeStateStats for each node.
{
TRY_LOCK(cs_main, lockMain);
if (lockMain) {
BOOST_FOREACH (CNodeCombinedStats& stats, cachedNodeStats)
stats.fNodeStateStatsAvailable = GetNodeStateStats(stats.nodeStats.nodeid, stats.nodeStateStats);
}
}
if (sortColumn >= 0)
// sort cacheNodeStats (use stable sort to prevent rows jumping around unneceesarily)
qStableSort(cachedNodeStats.begin(), cachedNodeStats.end(), NodeLessThan(sortColumn, sortOrder));
// build index map
mapNodeRows.clear();
int row = 0;
foreach (const CNodeCombinedStats& stats, cachedNodeStats)
mapNodeRows.insert(std::pair<NodeId, int>(stats.nodeStats.nodeid, row++));
}
int size()
{
return cachedNodeStats.size();
}
CNodeCombinedStats* index(int idx)
{
if (idx >= 0 && idx < cachedNodeStats.size()) {
return &cachedNodeStats[idx];
} else {
return 0;
}
}
};
PeerTableModel::PeerTableModel(ClientModel* parent) : QAbstractTableModel(parent),
clientModel(parent),
timer(0)
{
columns << tr("Address/Hostname") << tr("Version") << tr("Ping Time");
priv = new PeerTablePriv();
// default to unsorted
priv->sortColumn = -1;
// set up timer for auto refresh
timer = new QTimer();
connect(timer, SIGNAL(timeout()), SLOT(refresh()));
timer->setInterval(MODEL_UPDATE_DELAY);
// load initial data
refresh();
}
void PeerTableModel::startAutoRefresh()
{
timer->start();
}
void PeerTableModel::stopAutoRefresh()
{
timer->stop();
}
int PeerTableModel::rowCount(const QModelIndex& parent) const
{
Q_UNUSED(parent);
return priv->size();
}
int PeerTableModel::columnCount(const QModelIndex& parent) const
{
Q_UNUSED(parent);
return columns.length();
;
}
QVariant PeerTableModel::data(const QModelIndex& index, int role) const
{
if (!index.isValid())
return QVariant();
CNodeCombinedStats* rec = static_cast<CNodeCombinedStats*>(index.internalPointer());
if (role == Qt::DisplayRole) {
switch (index.column()) {
case Address:
return QString::fromStdString(rec->nodeStats.addrName);
case Subversion:
return QString::fromStdString(rec->nodeStats.cleanSubVer);
case Ping:
return GUIUtil::formatPingTime(rec->nodeStats.dPingTime);
}
} else if (role == Qt::TextAlignmentRole) {
if (index.column() == Ping)
return (int)(Qt::AlignRight | Qt::AlignVCenter);
}
return QVariant();
}
QVariant PeerTableModel::headerData(int section, Qt::Orientation orientation, int role) const
{
if (orientation == Qt::Horizontal) {
if (role == Qt::DisplayRole && section < columns.size()) {
return columns[section];
}
}
return QVariant();
}
Qt::ItemFlags PeerTableModel::flags(const QModelIndex& index) const
{
if (!index.isValid())
return 0;
Qt::ItemFlags retval = Qt::ItemIsSelectable | Qt::ItemIsEnabled;
return retval;
}
QModelIndex PeerTableModel::index(int row, int column, const QModelIndex& parent) const
{
Q_UNUSED(parent);
CNodeCombinedStats* data = priv->index(row);
if (data) {
return createIndex(row, column, data);
} else {
return QModelIndex();
}
}
const CNodeCombinedStats* PeerTableModel::getNodeStats(int idx)
{
return priv->index(idx);
}
void PeerTableModel::refresh()
{
emit layoutAboutToBeChanged();
priv->refreshPeers();
emit layoutChanged();
}
int PeerTableModel::getRowByNodeId(NodeId nodeid)
{
std::map<NodeId, int>::iterator it = priv->mapNodeRows.find(nodeid);
if (it == priv->mapNodeRows.end())
return -1;
return it->second;
}
void PeerTableModel::sort(int column, Qt::SortOrder order)
{
priv->sortColumn = column;
priv->sortOrder = order;
refresh();
}
| [
"florent.accault@gmail.com"
] | florent.accault@gmail.com |
2b07c1e3625b6e38ad5717746ec5e72c358f8d7e | 4231a454e45164dd4d20cf6d86aa1b3887521b02 | /Thunder/stdafx.cpp | 73e605cd330544ea3f4d0b1734260c1adcca1340 | [] | no_license | amcarthur/Thunder | cb6432440d57140b81d9b9b4879b34e01529034b | 7f18dddf4667fb8354067e0b28fc4bf542706ae9 | refs/heads/master | 2021-01-09T20:01:40.315461 | 2016-06-25T16:42:42 | 2016-06-25T16:42:42 | 60,864,565 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 286 | cpp | // stdafx.cpp : source file that includes just the standard includes
// Thunder.pch will be the pre-compiled header
// stdafx.obj will contain the pre-compiled type information
#include "stdafx.h"
// TODO: reference any additional headers you need in STDAFX.H
// and not in this file
| [
"aidan.b.mcarthur@gmail.com"
] | aidan.b.mcarthur@gmail.com |
992f4e5b3d690c1a88dce2aba32a4955647764b9 | 210be07ebb31f17b1a85de30abe6317113471388 | /pkg/scenic_cpp/include/lib/ui/scenic/cpp/session.h | 3455d150021269a1738a04f49e7c32170e3e02af | [
"BSD-3-Clause",
"LicenseRef-scancode-other-permissive"
] | permissive | Skylled/fuchsia-sdk | 85a4252e3c27214aecaa7735ae4ea0f639cd80e7 | 3b536386ef1811948f7d7f6a689d41b82f0ca035 | refs/heads/master | 2021-08-12T05:02:15.700530 | 2018-12-14T21:34:35 | 2018-12-14T21:34:35 | 161,841,423 | 42 | 8 | null | null | null | null | UTF-8 | C++ | false | false | 5,358 | h | // Copyright 2017 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef LIB_UI_SCENIC_CPP_SESSION_H_
#define LIB_UI_SCENIC_CPP_SESSION_H_
#include <fuchsia/images/cpp/fidl.h>
#include <fuchsia/ui/gfx/cpp/fidl.h>
#include <fuchsia/ui/input/cpp/fidl.h>
#include <fuchsia/ui/scenic/cpp/fidl.h>
#include <lib/fit/function.h>
#include <lib/zx/event.h>
#include <utility>
#include "lib/fidl/cpp/binding.h"
namespace scenic {
// Connect to Scenic and establish a new Session, as well as an InterfaceRequest
// for a SessionListener that can be hooked up as desired.
using SessionPtrAndListenerRequest =
std::pair<fuchsia::ui::scenic::SessionPtr,
fidl::InterfaceRequest<fuchsia::ui::scenic::SessionListener>>;
SessionPtrAndListenerRequest CreateScenicSessionPtrAndListenerRequest(
fuchsia::ui::scenic::Scenic* scenic);
// Wraps a Scenic session.
// Maintains a queue of pending operations and assists with allocation of
// resource ids.
class Session : private fuchsia::ui::scenic::SessionListener {
public:
// Provides timing information about a presentation request which has
// been applied by the scene manager.
using PresentCallback =
fit::function<void(fuchsia::images::PresentationInfo info)>;
// Provide information about hits.
using HitTestCallback =
fit::function<void(fidl::VectorPtr<fuchsia::ui::gfx::Hit> hits)>;
// Called when session events are received.
using EventHandler =
fit::function<void(fidl::VectorPtr<fuchsia::ui::scenic::Event>)>;
// Wraps the provided session and session listener.
// The listener is optional.
explicit Session(fuchsia::ui::scenic::SessionPtr session,
fidl::InterfaceRequest<fuchsia::ui::scenic::SessionListener>
session_listener = nullptr);
// Creates a new session using the provided Scenic and binds the listener to
// this object. The Scenic itself is not retained after construction.
explicit Session(fuchsia::ui::scenic::Scenic* scenic);
explicit Session(SessionPtrAndListenerRequest session_and_listener);
Session(const Session&) = delete;
Session& operator=(const Session&) = delete;
// Destroys the session.
// All resources must be released prior to destruction.
~Session();
void set_error_handler(fit::function<void(zx_status_t)> closure) {
session_.set_error_handler(std::move(closure));
}
// Sets a callback which is invoked when events are received.
void set_event_handler(EventHandler event_handler) {
event_handler_ = std::move(event_handler);
}
// Gets a pointer to the underlying session interface.
fuchsia::ui::scenic::Session* session() { return session_.get(); }
// Allocates a new unique resource id.
uint32_t AllocResourceId();
// Enqueues an operation to release a resource.
void ReleaseResource(uint32_t resource_id);
// Enqueues an operation.
// The session will queue operations locally to batch submission of operations
// until |Flush()| or |Present()| is called.
void Enqueue(fuchsia::ui::scenic::Command command);
void Enqueue(fuchsia::ui::gfx::Command command);
void Enqueue(fuchsia::ui::input::Command command);
// Registers an acquire fence to be submitted during the subsequent call to
// |Present()|.
void EnqueueAcquireFence(zx::event fence);
// Registers a release fence to be submitted during the subsequent call to
// |Present()|.
void EnqueueReleaseFence(zx::event fence);
// Flushes queued operations to the session.
void Flush();
// Presents all previously enqueued operations.
// Implicitly flushes all queued operations to the session.
// Invokes the callback when the scene manager applies the presentation.
void Present(uint64_t presentation_time, PresentCallback callback);
// Performs a hit test along the specified ray.
void HitTest(uint32_t node_id, const float ray_origin[3],
const float ray_direction[3], HitTestCallback callback);
// Performs a hit test along the specified ray into the engine's first
// compositor.
void HitTestDeviceRay(
const float ray_origin[3], const float ray_direction[3],
fuchsia::ui::scenic::Session::HitTestDeviceRayCallback callback);
// Unbinds the internal SessionPtr; this allows moving this across threads.
void Unbind();
// Rebinds the Session interface internally; this must be called after a call
// to Unbind().
void Rebind();
void SetDebugName(const std::string& debug_name);
private:
// |fuchsia::ui::scenic::SessionListener|
void OnScenicError(fidl::StringPtr error) override;
void OnScenicEvent(
fidl::VectorPtr<fuchsia::ui::scenic::Event> events) override;
fuchsia::ui::scenic::SessionPtr session_;
// |session_handle_| is stored only when |session_| is unbound/invalid.
fidl::InterfaceHandle<fuchsia::ui::scenic::Session> session_handle_;
uint32_t next_resource_id_ = 1u;
uint32_t resource_count_ = 0u;
fidl::VectorPtr<fuchsia::ui::scenic::Command> commands_;
fidl::VectorPtr<zx::event> acquire_fences_;
fidl::VectorPtr<zx::event> release_fences_;
EventHandler event_handler_;
fidl::Binding<fuchsia::ui::scenic::SessionListener> session_listener_binding_;
};
} // namespace scenic
#endif // LIB_UI_SCENIC_CPP_SESSION_H_
| [
"kyle@hotfixit.net"
] | kyle@hotfixit.net |
87793890e97d65ab0d1604b07497cf9b94987d3c | 048ab1167ffbc2e4e206c220265e729fad405545 | /PROGRAMADA_INTENTO_2/diffuse.cpp | 345b48d117b3dcebf7851b4966a79181ec02fe5a | [] | no_license | rijoalvi/tarea4graficacion | 2802c59352ea5fb7443ea9822dc4afe080c1d466 | ed2eed4e6dcd92f5ba810f7e30cfe329d73f93fe | refs/heads/master | 2020-06-02T23:49:27.178302 | 2011-10-29T01:28:08 | 2011-10-29T01:28:08 | 32,130,928 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 522 | cpp | #include "defines.h"
#include "intersection.h"
#include "diffuse.h"
using namespace std;
/**
* Constructs a diffuse (Lambertian) material with color c,
* and (optionally) reflectivity r and transparency t,
* and index of refraction n.
*/
Diffuse::Diffuse(const Color& c, float r, float t, float n) : Material(r, t, n), mDiffColor(c)
{
}
/**
* Returns the BRDF at the intersection is for the light direction L.
*/
Color Diffuse::evalBRDF(const Intersection& is, const Vector3D& L)
{
return mDiffColor / M_PI;
}
| [
"rijoalvi@gmail.com@5c4c3386-4ac9-2bb3-2425-1b8d11fe38ad"
] | rijoalvi@gmail.com@5c4c3386-4ac9-2bb3-2425-1b8d11fe38ad |
c986c88094b1bd77a33a399fff7db9dcef7e4cbc | 87ee2ea8268d752144f546003c9f0be2d56b67ff | /case2_10ts/0.0012/lagrangian/defaultCloud/positions | 2afbb11382c0a567b82fc737a4b4b780ae0e6ea2 | [] | no_license | OSCCAR-PFM/masa | 54f170e9482da6164f4431e5f88b4de82f35c61f | 0bac6ec8e795543b00ae290400ade73bf9bfc7e4 | refs/heads/master | 2020-03-28T18:47:54.870609 | 2014-10-29T14:14:18 | 2014-10-29T14:14:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,777,858 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.1.1 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class Cloud<solidParticle>;
location "0.0012";
object positions;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
44469
(
(0.000684797 0.00899243 0.00100977) 20041
(0.021202 0.00629691 0.00205479) 13482
(0.0211286 0.00629795 0.00205588) 13482
(0.0210496 0.00629923 0.00205704) 13482
(0.0209674 0.00630069 0.00205824) 13481
(0.0208806 0.0063024 0.00205946) 13481
(0.020789 0.00630428 0.00206062) 13481
(0.0206919 0.00630644 0.00206176) 13481
(0.0205911 0.00630877 0.00206268) 13481
(0.0204857 0.00631137 0.00206347) 13480
(0.0203754 0.00631436 0.00206421) 13480
(0.0202608 0.00631782 0.00206488) 13480
(0.0201411 0.00632185 0.00206556) 13480
(0.0200166 0.00632661 0.00206638) 13480
(0.0198897 0.0063322 0.00206746) 13479
(0.0197617 0.00633862 0.0020688) 13479
(0.0196337 0.00634588 0.00207043) 13479
(0.021742 0.00629177 0.00204215) 13483
(0.021686 0.00629086 0.00204083) 13483
(0.0216276 0.00629011 0.00203946) 13483
(0.0215668 0.00628953 0.00203841) 13483
(0.0215032 0.00628912 0.0020376) 13483
(0.021436 0.00628891 0.00203711) 13482
(0.0213648 0.00628894 0.00203687) 13482
(0.0212902 0.00628915 0.00203673) 13482
(0.0212103 0.00628963 0.00203673) 13482
(0.0211279 0.00629042 0.002037) 13482
(0.0210401 0.00629149 0.00203748) 13482
(0.0209482 0.00629285 0.00203811) 13481
(0.020851 0.00629452 0.00203867) 13481
(0.0207494 0.00629654 0.00203933) 13481
(0.0206431 0.00629892 0.00204006) 13481
(0.0205338 0.00630166 0.00204078) 13481
(0.0204182 0.00630481 0.00204138) 13480
(0.0202986 0.00630855 0.00204191) 13480
(0.0221761 0.00630504 0.00205343) 13484
(0.0201735 0.00631306 0.00204254) 13480
(0.0221294 0.0063019 0.00204986) 13484
(0.0168648 0.00298697 0.00329334) 31825
(0.0200454 0.00631822 0.00204315) 13480
(0.0220812 0.00629897 0.00204648) 13484
(0.0167357 0.0029825 0.00329343) 31825
(0.019913 0.0063243 0.00204399) 13479
(0.0220314 0.00629621 0.00204297) 13484
(0.0166009 0.0029781 0.00329381) 31825
(0.0197798 0.00633137 0.00204512) 13479
(0.0219797 0.00629361 0.00203941) 13483
(0.0164543 0.00297322 0.00329472) 31681
(0.0196447 0.00633963 0.00204662) 13479
(0.0219259 0.00629128 0.00203619) 13483
(0.0162938 0.00296761 0.00329627) 31681
(0.019508 0.00634908 0.00204845) 13479
(0.02187 0.00628924 0.00203328) 13483
(0.0161175 0.00296102 0.00329856) 31681
(0.0218117 0.00628747 0.00203069) 13483
(0.0159256 0.0029533 0.00330161) 31537
(0.0217511 0.00628587 0.00202799) 13483
(0.0157173 0.00294409 0.00330549) 31537
(0.0216879 0.00628446 0.00202542) 13483
(0.0154948 0.00293315 0.00331025) 31393
(0.0216215 0.00628335 0.00202332) 13483
(0.0152618 0.00292036 0.00331591) 31393
(0.0215507 0.00628253 0.00202166) 13483
(0.0150264 0.00290589 0.0033222) 31393
(0.0214754 0.00628191 0.0020203) 13482
(0.0213975 0.00628163 0.00201908) 13482
(0.0213137 0.00628178 0.00201828) 13482
(0.0212256 0.00628229 0.0020179) 13482
(0.018161 0.00301823 0.00329771) 816
(0.0211327 0.00628308 0.00201775) 13482
(0.0180759 0.00301539 0.00329484) 816
(0.0210342 0.00628427 0.00201753) 13482
(0.0179875 0.00301233 0.00329235) 815
(0.0209297 0.00628595 0.00201767) 13481
(0.0178935 0.00300886 0.00329032) 815
(0.0208193 0.00628823 0.00201813) 13481
(0.0225029 0.00632869 0.00207346) 13485
(0.0177962 0.00300516 0.00328853) 815
(0.0207037 0.00629096 0.00201864) 13481
(0.0224618 0.00632367 0.00206804) 13484
(0.0176936 0.0030011 0.00328707) 815
(0.0205829 0.00629429 0.00201918) 13481
(0.0224189 0.00631881 0.00206287) 13484
(0.0175863 0.00299682 0.00328588) 32113
(0.0204567 0.00629831 0.00201987) 13480
(0.0223744 0.00631416 0.00205796) 13484
(0.0174746 0.00299231 0.00328496) 31969
(0.0203255 0.006303 0.00202055) 13480
(0.0223283 0.0063096 0.00205283) 13484
(0.0173579 0.00298775 0.00328427) 31969
(0.0201877 0.00630856 0.0020213) 13480
(0.0222808 0.00630527 0.00204785) 13484
(0.0172348 0.00298307 0.00328385) 31969
(0.0200446 0.00631528 0.0020223) 13480
(0.0222313 0.00630124 0.00204319) 13484
(0.0171062 0.00297848 0.0032836) 31969
(0.0198975 0.00632321 0.00202358) 13479
(0.0221798 0.00629755 0.00203888) 13484
(0.0169715 0.00297401 0.00328355) 31825
(0.0197454 0.00633258 0.00202526) 13479
(0.0221262 0.00629413 0.00203464) 13484
(0.0168244 0.00296901 0.00328406) 31825
(0.0195888 0.00634363 0.00202751) 13479
(0.0220709 0.00629089 0.00203017) 13484
(0.0166623 0.00296323 0.00328521) 31825
(0.019429 0.0063566 0.00203027) 13478
(0.022013 0.00628802 0.00202611) 13484
(0.0164841 0.00295644 0.0032871) 31681
(0.0219522 0.00628552 0.00202243) 13483
(0.0162896 0.00294844 0.00328977) 31681
(0.0218883 0.00628337 0.0020191) 13483
(0.0160774 0.00293881 0.0032933) 31681
(0.0218212 0.00628148 0.00201559) 13483
(0.0162785 0.0046072 0.00091781) 11552
(0.0158517 0.0029274 0.00329773) 31537
(0.0217501 0.00627993 0.00201245) 13483
(0.0162432 0.00461352 0.000915508) 11552
(0.015615 0.00291378 0.00330319) 31537
(0.01895 0.00302857 0.00330872) 817
(0.0216751 0.00627869 0.0020098) 13483
(0.0162066 0.00461966 0.000913136) 11552
(0.0153775 0.00289841 0.00330923) 31393
(0.0188769 0.00302695 0.00330471) 817
(0.0215959 0.00627778 0.00200773) 13483
(0.0161689 0.00462565 0.000910744) 11552
(0.0151528 0.00288213 0.00331535) 31393
(0.0188013 0.00302512 0.00330085) 817
(0.0215119 0.0062772 0.00200564) 13483
(0.0161302 0.00463149 0.000908342) 11552
(0.0187226 0.00302302 0.00329714) 817
(0.0214224 0.00627706 0.00200393) 13482
(0.0160906 0.00463718 0.000905917) 11552
(0.0186404 0.00302062 0.00329361) 817
(0.0213276 0.00627747 0.002003) 13482
(0.0160501 0.00464272 0.000903477) 11552
(0.0185547 0.00301793 0.00329029) 817
(0.0212259 0.00627842 0.00200243) 13482
(0.0227767 0.00636148 0.00210345) 13425
(0.0160089 0.00464813 0.000901018) 11552
(0.0184661 0.00301496 0.00328718) 816
(0.0211196 0.00627983 0.00200188) 13482
(0.0227402 0.00635519 0.0020966) 13425
(0.0159667 0.00465338 0.000898544) 11551
(0.0183734 0.00301163 0.00328445) 816
(0.0210059 0.00628194 0.00200196) 13482
(0.0227017 0.0063489 0.0020897) 13485
(0.0159234 0.00465851 0.000896041) 11551
(0.0182769 0.00300795 0.0032821) 816
(0.0208846 0.00628478 0.00200248) 13481
(0.0226615 0.00634281 0.00208323) 13485
(0.0158786 0.00466354 0.0008935) 11551
(0.0181771 0.00300395 0.00327996) 816
(0.0207556 0.00628828 0.00200299) 13481
(0.0226192 0.00633686 0.002077) 13485
(0.0158327 0.00466852 0.000890916) 11551
(0.0180724 0.00299953 0.00327809) 32257
(0.020621 0.00629262 0.00200374) 13481
(0.0225755 0.00633097 0.00207058) 13485
(0.0157853 0.00467342 0.000888287) 11551
(0.0179646 0.00299493 0.00327641) 32113
(0.0204805 0.00629783 0.00200479) 13480
(0.0225298 0.00632518 0.00206423) 13485
(0.0178527 0.00299009 0.00327497) 32113
(0.0203314 0.0063039 0.00200573) 13480
(0.0224819 0.0063197 0.00205833) 13484
(0.0177368 0.00298524 0.00327369) 32113
(0.0201748 0.00631119 0.00200682) 13480
(0.0224319 0.00631452 0.00205289) 13484
(0.0176156 0.00298041 0.00327258) 32113
(0.0200114 0.00632004 0.00200829) 13480
(0.02238 0.00630943 0.00204712) 13484
(0.0172475 0.0051711 0.000637313) 11914
(0.0174888 0.0029757 0.00327161) 31969
(0.0198398 0.00633062 0.00201009) 13479
(0.022326 0.00630466 0.00204156) 13484
(0.0172025 0.00517645 0.0006391) 11914
(0.0173555 0.00297117 0.00327075) 31969
(0.0196616 0.00634332 0.00201259) 13479
(0.0222698 0.0063003 0.00203641) 13484
(0.0171555 0.00518159 0.000640672) 11914
(0.0172089 0.00296612 0.00327039) 31969
(0.0194765 0.00635875 0.00201598) 13478
(0.0222109 0.00629637 0.0020317) 13484
(0.016949 0.00458003 0.000919378) 11553
(0.0171067 0.00518656 0.000642065) 11914
(0.0170469 0.00296035 0.00327062) 31969
(0.0197473 0.00303675 0.00332624) 819
(0.0221491 0.00629268 0.0020267) 13484
(0.0169151 0.00458696 0.000917279) 11553
(0.0170559 0.00519137 0.000643176) 11914
(0.0168674 0.00295349 0.00327149) 31825
(0.0196796 0.00303606 0.00332149) 819
(0.0220848 0.00628933 0.00202174) 13484
(0.0168797 0.00459364 0.000915191) 11553
(0.0170032 0.00519603 0.000644116) 11914
(0.0166696 0.00294523 0.00327322) 31825
(0.0196103 0.00303526 0.00331686) 819
(0.0220178 0.00628646 0.00201735) 13484
(0.0168428 0.00460009 0.000913103) 11553
(0.016949 0.0052006 0.000644911) 11913
(0.0164524 0.00293503 0.00327589) 31681
(0.0195392 0.00303431 0.00331235) 819
(0.0219468 0.0062841 0.00201342) 13483
(0.0168046 0.00460637 0.000911013) 11553
(0.0168933 0.00520508 0.000645575) 11913
(0.0162181 0.00292247 0.00327966) 31681
(0.0194658 0.00303318 0.00330797) 818
(0.0218711 0.00628207 0.00200933) 13483
(0.0167652 0.00461248 0.000908917) 11553
(0.0168359 0.00520952 0.000646111) 11913
(0.0159752 0.00290771 0.00328447) 31537
(0.0193901 0.00303186 0.0033037) 818
(0.0217923 0.0062804 0.00200543) 13483
(0.0167246 0.00461841 0.000906811) 11553
(0.0167772 0.00521393 0.00064655) 11913
(0.0157326 0.00289083 0.00329005) 31537
(0.0193117 0.0030303 0.00329952) 818
(0.0138057 0.00369013 0.00345598) 14487
(0.0217076 0.00627925 0.00200229) 13483
(0.0230628 0.00641179 0.00215036) 13426
(0.0166836 0.0046242 0.000904933) 11553
(0.0167179 0.00521837 0.000647127) 11913
(0.01551 0.00287375 0.00329583) 31537
(0.0192304 0.0030285 0.00329558) 818
(0.0194345 0.00652989 0.00158631) 6758
(0.0137816 0.00369008 0.00345602) 14487
(0.0137541 0.00378361 0.0036701) 14547
(0.0216186 0.00627849 0.00199983) 13483
(0.0230297 0.00640474 0.00214371) 13426
(0.0166418 0.00462993 0.000903016) 11553
(0.0166572 0.00522286 0.000647585) 11913
(0.0153318 0.00285914 0.00330007) 31393
(0.0191467 0.00302644 0.00329168) 818
(0.0193025 0.00653815 0.00158244) 6758
(0.0137575 0.00369 0.00345606) 14487
(0.0137304 0.00378353 0.00367009) 14547
(0.0215238 0.00627813 0.00199722) 13483
(0.0229955 0.00639767 0.00213683) 13425
(0.0165991 0.00463555 0.000901067) 11553
(0.0165953 0.00522737 0.000647947) 11913
(0.0190594 0.00302403 0.00328789) 818
(0.0191595 0.00654805 0.00157848) 6758
(0.0137414 0.00638273 0.00289217) 13527
(0.0137334 0.00368991 0.00345611) 14487
(0.0137067 0.00378344 0.00367009) 14547
(0.021423 0.00627839 0.00199528) 13482
(0.0229606 0.00639063 0.00212981) 13425
(0.0165557 0.00464109 0.000899077) 11553
(0.0165325 0.00523195 0.000648231) 11913
(0.0182249 0.00511573 0.000618831) 11916
(0.0189702 0.00302133 0.00328416) 817
(0.0190043 0.0065599 0.00157448) 6758
(0.0137183 0.00638265 0.00289225) 13527
(0.0137093 0.00368979 0.00345617) 14487
(0.0142145 0.00368504 0.00345727) 14488
(0.0136831 0.00378333 0.00367011) 14547
(0.0213151 0.00627928 0.00199421) 13482
(0.0229244 0.00638357 0.00212253) 13425
(0.0165116 0.00464655 0.000897049) 11553
(0.0164687 0.00523658 0.000648426) 11912
(0.0182012 0.00512396 0.000623479) 11916
(0.0188786 0.00301834 0.00328056) 817
(0.0188394 0.00657376 0.00157061) 6757
(0.0136952 0.0063826 0.00289232) 13527
(0.0136852 0.00368965 0.00345623) 14487
(0.0141904 0.00368533 0.00345724) 14488
(0.0136595 0.00378321 0.00367013) 14547
(0.0141546 0.00377974 0.00367509) 14548
(0.0212003 0.00628082 0.00199328) 13482
(0.0228868 0.00637647 0.00211503) 13425
(0.0164669 0.00465195 0.000894976) 11552
(0.0164039 0.0052413 0.000648554) 11912
(0.0181723 0.00513144 0.000627523) 11916
(0.018783 0.00301494 0.00327732) 817
(0.0187076 0.00657967 0.00156781) 6757
(0.013672 0.00638257 0.00289239) 13527
(0.0141509 0.00639006 0.00288936) 13528
(0.0136611 0.0036895 0.00345629) 14487
(0.0141664 0.0036856 0.00345722) 14488
(0.013636 0.00378307 0.00367017) 14547
(0.0141304 0.00377994 0.0036749) 14548
(0.0210788 0.00628305 0.00199275) 13482
(0.022848 0.00636945 0.00210753) 13425
(0.0164212 0.00465731 0.000892852) 11552
(0.0163376 0.00524613 0.000648601) 11912
(0.0181419 0.00513856 0.00063132) 11916
(0.018685 0.00301122 0.00327437) 817
(0.018605 0.00658265 0.00156626) 6757
(0.0136488 0.00638256 0.00289246) 13527
(0.0141288 0.00638959 0.00288952) 13528
(0.0136371 0.00368932 0.00345636) 14487
(0.0141423 0.00368586 0.0034572) 14488
(0.0136125 0.00378292 0.00367022) 14547
(0.0141063 0.00378011 0.00367472) 14548
(0.0209491 0.00628619 0.00199302) 13481
(0.022807 0.00636243 0.00210001) 13425
(0.0163743 0.00466265 0.00089067) 11552
(0.01627 0.00525109 0.000648598) 11912
(0.0181099 0.00514534 0.000634901) 11916
(0.0185829 0.00300702 0.00327173) 817
(0.0185099 0.00658512 0.00156499) 6757
(0.0136256 0.00638258 0.00289251) 13527
(0.0141067 0.00638915 0.00288968) 13528
(0.0136132 0.00368912 0.00345642) 14487
(0.0141182 0.0036861 0.00345718) 14488
(0.013589 0.00378275 0.00367028) 14547
(0.0140823 0.00378028 0.00367454) 14548
(0.0208104 0.00629013 0.00199348) 13481
(0.0227642 0.00635542 0.00209224) 13425
(0.0163266 0.00466798 0.000888427) 11552
(0.0180764 0.00515181 0.000638265) 11916
(0.0184792 0.00300265 0.00326922) 816
(0.0184215 0.00658786 0.00156418) 6756
(0.0136024 0.00638262 0.00289256) 13527
(0.0140845 0.00638872 0.00288983) 13528
(0.0135892 0.0036889 0.0034565) 14487
(0.0140942 0.00368633 0.00345717) 14488
(0.0135656 0.00378257 0.00367035) 14547
(0.0140582 0.00378043 0.00367437) 14548
(0.0206634 0.00629508 0.00199408) 13481
(0.0227194 0.00634863 0.0020848) 13485
(0.0162778 0.00467332 0.000886119) 11552
(0.0180411 0.00515797 0.000641403) 11916
(0.0183718 0.00299789 0.00326693) 32257
(0.0183482 0.00659113 0.00156445) 6756
(0.0135791 0.00638268 0.0028926) 13527
(0.0140622 0.00638831 0.00288998) 13528
(0.0135653 0.00368867 0.00345657) 14487
(0.0140701 0.00368654 0.00345715) 14488
(0.0135423 0.00378237 0.00367042) 14547
(0.0140342 0.00378056 0.0036742) 14548
(0.0205083 0.00630122 0.0019951) 13481
(0.0226724 0.00634207 0.00207783) 13485
(0.016228 0.00467865 0.000883744) 11612
(0.0180039 0.00516383 0.000644307) 11916
(0.0182611 0.00299294 0.00326484) 32257
(0.0182829 0.00659466 0.00156525) 6756
(0.0135558 0.00638276 0.00289263) 13527
(0.0140398 0.00638792 0.00289012) 13528
(0.0134467 0.00421415 0.00186507) 14126
(0.0135414 0.00368841 0.00345665) 14487
(0.014046 0.00368673 0.00345714) 14488
(0.0145468 0.00367742 0.00345886) 14489
(0.013519 0.00378216 0.00367051) 14547
(0.0140102 0.00378068 0.00367404) 14548
(0.0135598 0.00638783 0.00312698) 15267
(0.0203425 0.00630855 0.00199612) 13480
(0.0226231 0.00633566 0.00207107) 13485
(0.0161771 0.00468396 0.000881298) 11612
(0.0179645 0.0051694 0.000646961) 11915
(0.0181463 0.0029878 0.00326296) 32257
(0.0205852 0.0030403 0.00334197) 821
(0.0182169 0.00659823 0.00156587) 6756
(0.0135325 0.00638287 0.00289266) 13527
(0.0140174 0.00638755 0.00289026) 13528
(0.0134244 0.00421396 0.00186506) 14126
(0.0135176 0.00368813 0.00345674) 14487
(0.0140219 0.00368691 0.00345713) 14488
(0.0145231 0.00367785 0.00345878) 14489
(0.0134957 0.00378193 0.00367061) 14546
(0.0139862 0.00378078 0.00367389) 14547
(0.0133375 0.00500724 0.00438172) 14846
(0.0135365 0.00638797 0.00312706) 15267
(0.0140226 0.00639133 0.00312647) 15268
(0.0201677 0.00631738 0.00199736) 13480
(0.0225719 0.00632936 0.00206403) 13485
(0.0161252 0.00468927 0.000878794) 11612
(0.0176307 0.00456055 0.000921706) 11555
(0.0179227 0.0051747 0.000649364) 11915
(0.0180266 0.00298274 0.00326122) 32257
(0.0205199 0.0030405 0.00333745) 821
(0.0181501 0.00660179 0.00156634) 6756
(0.0135091 0.006383 0.00289267) 13527
(0.0139949 0.0063872 0.0028904) 13527
(0.014452 0.00640012 0.00288657) 13528
(0.0134022 0.00421375 0.00186503) 14126
(0.0134938 0.00368784 0.00345682) 14486
(0.0139977 0.00368706 0.00345712) 14487
(0.0144994 0.00367827 0.00345871) 14488
(0.0134724 0.00378169 0.00367071) 14546
(0.0139622 0.00378087 0.00367374) 14547
(0.0144615 0.00377402 0.00368054) 14548
(0.0133147 0.00500709 0.00438207) 14846
(0.0137955 0.00501006 0.00438133) 14847
(0.0135132 0.00638814 0.00312714) 15267
(0.0139999 0.00639102 0.00312649) 15267
(0.0199837 0.00632825 0.00199906) 13479
(0.0225183 0.00632336 0.00205743) 13485
(0.016072 0.00469456 0.00087623) 11612
(0.0175991 0.00456828 0.000920093) 11555
(0.0178787 0.00517975 0.000651527) 11915
(0.0179028 0.00297797 0.00325953) 32113
(0.0204525 0.0030406 0.00333305) 820
(0.0180833 0.00660521 0.00156665) 6756
(0.0134857 0.00638314 0.00289268) 13526
(0.0139723 0.00638687 0.00289053) 13527
(0.014431 0.00639947 0.00288674) 13528
(0.01338 0.00421353 0.001865) 14126
(0.0138385 0.00421231 0.00186131) 14127
(0.01347 0.00368752 0.00345691) 14486
(0.0139736 0.00368719 0.00345711) 14487
(0.0144756 0.00367867 0.00345864) 14488
(0.0134493 0.00378144 0.00367083) 14546
(0.0139383 0.00378094 0.00367361) 14547
(0.0144374 0.00377433 0.0036803) 14548
(0.0132919 0.00500695 0.00438242) 14846
(0.0137722 0.00500986 0.00438129) 14847
(0.0134899 0.00638832 0.00312723) 15266
(0.0139772 0.00639073 0.00312651) 15267
(0.0197899 0.00634145 0.00200126) 13479
(0.0224621 0.00631773 0.00205137) 13484
(0.0160175 0.00469981 0.000873581) 11612
(0.0175671 0.00457575 0.00091848) 11555
(0.0178323 0.0051846 0.000653465) 11915
(0.0177714 0.00297336 0.00325795) 32113
(0.0203835 0.00304057 0.00332875) 820
(0.0180159 0.00660855 0.00156679) 6756
(0.0134623 0.00638331 0.00289268) 13526
(0.0139497 0.00638656 0.00289065) 13527
(0.01441 0.00639883 0.0028869) 13528
(0.0133578 0.0042133 0.00186495) 14126
(0.013816 0.00421238 0.00186152) 14127
(0.0134463 0.00368718 0.00345701) 14486
(0.0139494 0.00368731 0.00345711) 14487
(0.0144518 0.00367907 0.00345857) 14488
(0.0134261 0.00378116 0.00367095) 14546
(0.0139143 0.003781 0.00367348) 14547
(0.0144133 0.00377463 0.00368005) 14548
(0.0132692 0.00500681 0.00438279) 14846
(0.013749 0.00500967 0.00438128) 14847
(0.0134666 0.00638852 0.00312732) 15266
(0.0139543 0.00639047 0.00312653) 15267
(0.0195857 0.00635781 0.00200458) 13479
(0.0224033 0.00631227 0.00204522) 13484
(0.0175336 0.00458294 0.000916878) 11555
(0.0177835 0.00518927 0.000655177) 11915
(0.0176265 0.0029683 0.00325676) 32113
(0.0203112 0.00304033 0.00332462) 820
(0.0179479 0.00661184 0.00156678) 6755
(0.0203702 0.00652992 0.00159666) 6760
(0.0134388 0.0063835 0.00289267) 13526
(0.013927 0.00638627 0.00289078) 13527
(0.0143889 0.0063982 0.00288707) 13528
(0.0133356 0.00421306 0.0018649) 14126
(0.0137935 0.00421244 0.00186172) 14127
(0.0134225 0.00368682 0.00345711) 14486
(0.0139252 0.0036874 0.00345711) 14487
(0.014428 0.00367945 0.0034585) 14488
(0.013403 0.00378088 0.00367109) 14546
(0.0138904 0.00378104 0.00367336) 14547
(0.0143892 0.00377492 0.00367982) 14548
(0.0132465 0.00500667 0.00438317) 14846
(0.0137257 0.00500947 0.00438129) 14847
(0.0134432 0.00638875 0.00312741) 15266
(0.0139314 0.00639022 0.00312656) 15267
(0.01937 0.00637843 0.0020093) 13478
(0.0223429 0.00630712 0.002039) 13484
(0.0174984 0.00458986 0.000915285) 11554
(0.0177324 0.00519377 0.000656685) 11915
(0.0174646 0.00296243 0.00325615) 31969
(0.0202376 0.00304 0.00332058) 820
(0.0178794 0.00661527 0.00156658) 6755
(0.0202989 0.00653161 0.00159547) 6760
(0.0134153 0.00638371 0.00289265) 13526
(0.0139042 0.00638601 0.0028909) 13527
(0.0143677 0.00639759 0.00288723) 13528
(0.0133135 0.00421281 0.00186484) 14126
(0.0137711 0.00421248 0.0018619) 14127
(0.0133988 0.00368643 0.00345721) 14486
(0.013901 0.00368746 0.00345712) 14487
(0.0144042 0.00367982 0.00345844) 14488
(0.0133799 0.00378058 0.00367123) 14546
(0.0138666 0.00378107 0.00367326) 14547
(0.0143651 0.0037752 0.00367958) 14548
(0.0132237 0.00500654 0.00438356) 14846
(0.0137025 0.00500928 0.00438132) 14847
(0.0134199 0.00638898 0.00312751) 15266
(0.0139085 0.00639 0.00312659) 15267
(0.0222789 0.00630249 0.00203325) 13484
(0.0174613 0.00459653 0.000913693) 11554
(0.0176791 0.00519815 0.000658005) 11915
(0.0172835 0.00295546 0.00325627) 31969
(0.0201627 0.00303955 0.00331661) 820
(0.0178118 0.00661882 0.00156625) 6755
(0.0202175 0.00653417 0.00159355) 6760
(0.0133918 0.00638394 0.00289263) 13526
(0.0138813 0.00638577 0.00289101) 13527
(0.0143464 0.00639699 0.00288739) 13528
(0.0132913 0.00421255 0.00186477) 14126
(0.0137486 0.00421251 0.00186208) 14127
(0.0133752 0.00368604 0.00345732) 14486
(0.0138768 0.00368751 0.00345714) 14487
(0.0143804 0.00368018 0.00345838) 14488
(0.0133569 0.00378027 0.00367139) 14546
(0.0138428 0.00378108 0.00367316) 14547
(0.014341 0.00377546 0.00367935) 14548
(0.013201 0.00500641 0.00438397) 14846
(0.0136792 0.00500908 0.00438137) 14847
(0.0133965 0.00638924 0.00312762) 15266
(0.0138855 0.00638981 0.00312662) 15267
(0.022212 0.00629836 0.00202796) 13484
(0.0174225 0.00460297 0.000912093) 11554
(0.0176236 0.00520242 0.00065914) 11915
(0.0170809 0.00294685 0.00325734) 31969
(0.0200849 0.00303891 0.00331275) 820
(0.0177444 0.00662241 0.00156575) 2495
(0.0201258 0.00653767 0.001591) 6760
(0.0133683 0.00638419 0.0028926) 13526
(0.0138584 0.00638555 0.00289112) 13527
(0.014325 0.0063964 0.00288756) 13528
(0.0136881 0.00441885 0.00174531) 14067
(0.0132692 0.00421228 0.00186469) 14126
(0.0137261 0.00421253 0.00186224) 14127
(0.0133515 0.00368562 0.00345743) 14486
(0.0138526 0.00368753 0.00345715) 14487
(0.0143565 0.00368053 0.00345833) 14488
(0.0133339 0.00377995 0.00367156) 14546
(0.013819 0.00378108 0.00367308) 14547
(0.0143169 0.00377572 0.00367913) 14548
(0.0131784 0.00500629 0.00438439) 14846
(0.013656 0.00500889 0.00438143) 14847
(0.0133731 0.00638951 0.00312773) 15266
(0.0138624 0.00638963 0.00312666) 15267
(0.0221425 0.00629456 0.00202239) 13484
(0.0173823 0.00460922 0.000910483) 11554
(0.0175661 0.00520662 0.000660116) 11915
(0.0168577 0.00293616 0.00325941) 31825
(0.0200054 0.00303813 0.00330899) 820
(0.017676 0.00662603 0.00156498) 2495
(0.020024 0.00654223 0.00158801) 6760
(0.0133447 0.00638445 0.00289256) 13526
(0.0138353 0.00638535 0.00289123) 13527
(0.0143035 0.00639582 0.00288772) 13528
(0.013214 0.00441758 0.0017471) 14066
(0.0136657 0.00441885 0.00174545) 14067
(0.0132471 0.004212 0.0018646) 14126
(0.0137037 0.00421253 0.0018624) 14127
(0.0133279 0.00368518 0.00345754) 14486
(0.0138284 0.00368753 0.00345718) 14487
(0.0143325 0.00368087 0.00345828) 14488
(0.0133109 0.00377961 0.00367173) 14546
(0.0137952 0.00378105 0.00367301) 14547
(0.0142927 0.00377597 0.00367891) 14548
(0.0131557 0.00500617 0.00438481) 14846
(0.0136329 0.00500869 0.00438152) 14847
(0.0133497 0.0063898 0.00312784) 15266
(0.0138392 0.00638948 0.0031267) 15267
(0.0143129 0.00639884 0.00312697) 15268
(0.0220692 0.00629119 0.00201688) 13484
(0.0233007 0.00646262 0.00219136) 6106
(0.0173406 0.00461528 0.000908859) 11554
(0.0175067 0.00521077 0.000660948) 11915
(0.0188986 0.0050791 0.000603706) 7837
(0.016615 0.00292267 0.00326266) 31825
(0.0199251 0.00303723 0.00330526) 819
(0.0176058 0.00662957 0.00156386) 2495
(0.019912 0.00654811 0.00158469) 6759
(0.0133212 0.00638474 0.00289251) 13526
(0.0138123 0.00638518 0.00289133) 13527
(0.014282 0.00639526 0.00288788) 13528
(0.0131918 0.00441743 0.00174686) 14066
(0.0136434 0.00441883 0.00174558) 14067
(0.0132251 0.00421171 0.00186451) 14126
(0.0136812 0.00421252 0.00186254) 14127
(0.0141363 0.00420711 0.00185513) 14128
(0.0133043 0.00368473 0.00345766) 14486
(0.0138041 0.00368751 0.00345721) 14487
(0.0143086 0.00368119 0.00345824) 14488
(0.013288 0.00377926 0.00367192) 14546
(0.0137715 0.00378102 0.00367295) 14547
(0.0142686 0.00377621 0.0036787) 14548
(0.013133 0.00500606 0.00438525) 14846
(0.0136097 0.0050085 0.00438162) 14847
(0.0133263 0.0063901 0.00312796) 15266
(0.013816 0.00638935 0.00312674) 15267
(0.0142911 0.0063983 0.00312696) 15268
(0.0219919 0.00628841 0.00201189) 13483
(0.0232687 0.00645491 0.0021851) 6106
(0.0172975 0.00462118 0.000907213) 11554
(0.0174458 0.0052149 0.000661644) 11914
(0.0188978 0.00509051 0.000610748) 7837
(0.0163626 0.00290644 0.00326716) 31681
(0.0198419 0.00303612 0.00330165) 819
(0.0175327 0.00663304 0.00156227) 2495
(0.0197897 0.00655545 0.00158115) 6759
(0.0132976 0.00638504 0.00289246) 13526
(0.0137891 0.00638503 0.00289143) 13527
(0.0142603 0.00639471 0.00288804) 13528
(0.0131696 0.00441727 0.00174662) 14066
(0.0136211 0.00441881 0.00174568) 14067
(0.013203 0.00421141 0.0018644) 14126
(0.0136587 0.00421249 0.00186267) 14127
(0.0141143 0.00420734 0.00185551) 14128
(0.0132808 0.00368426 0.00345777) 14486
(0.0137799 0.00368747 0.00345725) 14487
(0.0142846 0.0036815 0.0034582) 14488
(0.0132651 0.0037789 0.00367212) 14546
(0.0137478 0.00378097 0.00367291) 14547
(0.0142444 0.00377644 0.0036785) 14548
(0.0131104 0.00500595 0.00438569) 14846
(0.0135866 0.00500831 0.00438175) 14847
(0.0133029 0.00639041 0.00312808) 15266
(0.0137928 0.00638925 0.00312679) 15267
(0.0142692 0.00639778 0.00312695) 15268
(0.0219104 0.0062861 0.00200728) 13483
(0.0232363 0.00644716 0.00217863) 6106
(0.0172533 0.00462694 0.000905545) 11554
(0.0173832 0.00521901 0.000662216) 11914
(0.0188934 0.00510126 0.000617372) 7837
(0.0161138 0.00288808 0.00327243) 31681
(0.0197569 0.00303481 0.00329805) 819
(0.0174569 0.00663634 0.00156018) 2494
(0.0196562 0.00656457 0.00157748) 6759
(0.0132739 0.00638536 0.0028924) 13526
(0.0137659 0.00638491 0.00289152) 13527
(0.0142386 0.00639418 0.00288821) 13528
(0.0131474 0.00441711 0.00174636) 14066
(0.0135987 0.00441878 0.00174577) 14067
(0.013181 0.0042111 0.00186429) 14126
(0.0136363 0.00421245 0.00186278) 14127
(0.0140923 0.00420756 0.00185588) 14128
(0.0132573 0.00368378 0.00345789) 14486
(0.0137557 0.00368741 0.00345729) 14487
(0.0142606 0.0036818 0.00345817) 14488
(0.0132422 0.00377853 0.00367233) 14546
(0.0137241 0.00378091 0.00367288) 14547
(0.0142203 0.00377666 0.0036783) 14548
(0.0130877 0.00500584 0.00438614) 14846
(0.0135635 0.00500812 0.00438189) 14847
(0.0132795 0.00639074 0.00312821) 15266
(0.0137695 0.00638916 0.00312685) 15267
(0.0142472 0.00639726 0.00312694) 15268
(0.0218237 0.00628419 0.00200231) 13483
(0.0232028 0.00643941 0.00217201) 13426
(0.0172081 0.00463259 0.000903856) 11554
(0.0173195 0.00522316 0.000662695) 11914
(0.0188855 0.00511137 0.000623589) 11917
(0.0158925 0.00287009 0.00327749) 31537
(0.0196694 0.00303325 0.00329448) 819
(0.017378 0.00663939 0.00155751) 2494
(0.0195099 0.00657578 0.00157366) 6759
(0.0132503 0.0063857 0.00289233) 13526
(0.0137427 0.0063848 0.00289161) 13527
(0.0142168 0.00639366 0.00288837) 13528
(0.0129854 0.00579566 0.00189346) 13765
(0.0131252 0.00441694 0.00174609) 14066
(0.0135764 0.00441874 0.00174584) 14067
(0.013159 0.00421078 0.00186417) 14126
(0.0136139 0.0042124 0.00186288) 14127
(0.0140702 0.00420777 0.00185624) 14128
(0.0132338 0.00368328 0.00345801) 14486
(0.0137316 0.00368733 0.00345734) 14487
(0.0142365 0.00368209 0.00345815) 14488
(0.0132194 0.00377815 0.00367254) 14546
(0.0137005 0.00378083 0.00367286) 14547
(0.0141962 0.00377687 0.00367811) 14548
(0.0130651 0.00500574 0.0043866) 14846
(0.0135404 0.00500794 0.00438204) 14847
(0.013256 0.00639108 0.00312835) 15266
(0.0137462 0.0063891 0.0031269) 15267
(0.0142252 0.00639677 0.00312694) 15268
(0.0217321 0.00628282 0.001998) 13483
(0.0231691 0.00643167 0.00216528) 13426
(0.017162 0.00463815 0.000902132) 11554
(0.0172545 0.00522734 0.000663077) 11914
(0.0188712 0.00512053 0.000629154) 11917
(0.0157238 0.00285569 0.00328065) 31537
(0.0195787 0.00303139 0.00329097) 819
(0.0172953 0.00664201 0.00155416) 2494
(0.019376 0.00658294 0.00157059) 6758
(0.0132266 0.00638606 0.00289226) 13526
(0.0137194 0.00638473 0.00289169) 13527
(0.0141949 0.00639316 0.00288853) 13528
(0.012963 0.00579586 0.00189314) 13765
(0.013103 0.00441677 0.00174581) 14066
(0.013554 0.0044187 0.00174588) 14067
(0.013137 0.00421045 0.00186404) 14126
(0.0135914 0.00421233 0.00186297) 14127
(0.0140481 0.00420797 0.00185659) 14128
(0.0132103 0.00368277 0.00345813) 14486
(0.0137074 0.00368723 0.00345739) 14487
(0.0142125 0.00368237 0.00345812) 14488
(0.0131966 0.00377776 0.00367277) 14546
(0.0136769 0.00378074 0.00367285) 14547
(0.014172 0.00377707 0.00367792) 14548
(0.0130425 0.00500565 0.00438706) 14846
(0.0135174 0.00500776 0.00438222) 14847
(0.0132326 0.00639144 0.00312848) 15266
(0.0137228 0.00638907 0.00312696) 15267
(0.014203 0.00639629 0.00312693) 15268
(0.0216345 0.00628193 0.0019946) 13483
(0.0231344 0.00642391 0.00215831) 13426
(0.0171151 0.00464361 0.000900372) 11554
(0.0171882 0.00523156 0.000663352) 11914
(0.0188521 0.00512894 0.000634169) 11917
(0.0194876 0.00302931 0.00328743) 818
(0.0172081 0.00664417 0.00155002) 2494
(0.0192623 0.0065866 0.00156857) 6758
(0.0132029 0.00638643 0.00289219) 13526
(0.013696 0.00638467 0.00289177) 13527
(0.0141729 0.00639268 0.00288869) 13528
(0.0129405 0.00579606 0.00189282) 13765
(0.0130808 0.0044166 0.00174551) 14066
(0.0135317 0.00441865 0.00174592) 14067
(0.0139819 0.00441747 0.00173836) 14067
(0.013115 0.00421011 0.00186389) 14126
(0.013569 0.00421225 0.00186305) 14127
(0.014026 0.00420816 0.00185692) 14128
(0.0131869 0.00368225 0.00345825) 14486
(0.0136833 0.00368711 0.00345745) 14487
(0.0141884 0.00368263 0.0034581) 14488
(0.0131738 0.00377736 0.00367299) 14546
(0.0136534 0.00378064 0.00367286) 14547
(0.0141479 0.00377725 0.00367774) 14548
(0.0130198 0.00500555 0.00438753) 14846
(0.0134944 0.00500758 0.00438241) 14846
(0.0132092 0.00639181 0.00312862) 15266
(0.0136994 0.00638906 0.00312702) 15267
(0.0141808 0.00639584 0.00312693) 15268
(0.0215305 0.00628152 0.00199115) 13483
(0.0230988 0.00641614 0.00215112) 13426
(0.0170674 0.00464898 0.000898564) 11554
(0.0171208 0.00523586 0.000663552) 11914
(0.0188302 0.00513687 0.000638898) 11917
(0.019394 0.0030269 0.00328392) 818
(0.0191665 0.00658932 0.00156768) 6758
(0.0131792 0.00638682 0.00289211) 13526
(0.0136727 0.00638464 0.00289184) 13527
(0.0141508 0.00639221 0.00288884) 13528
(0.0129181 0.00579627 0.0018925) 13765
(0.0130586 0.00441642 0.00174521) 14066
(0.0135094 0.00441859 0.00174593) 14067
(0.01396 0.00441757 0.00173874) 14067
(0.013093 0.00420977 0.00186374) 14126
(0.0135467 0.00421215 0.00186312) 14127
(0.0140038 0.00420834 0.00185725) 14128
(0.0131635 0.00368171 0.00345837) 14486
(0.0136592 0.00368697 0.00345751) 14487
(0.0141643 0.00368288 0.00345809) 14488
(0.0131511 0.00377694 0.00367323) 14546
(0.0136299 0.00378052 0.00367287) 14547
(0.0141238 0.00377743 0.00367756) 14548
(0.0129972 0.00500547 0.00438801) 14845
(0.0134715 0.00500741 0.00438261) 14846
(0.0131858 0.00639219 0.00312875) 15266
(0.013676 0.00638907 0.00312709) 15267
(0.0141585 0.0063954 0.00312693) 15268
(0.0214198 0.00628178 0.00198831) 13482
(0.0230621 0.00640832 0.00214365) 13426
(0.0170192 0.00465429 0.000896713) 11554
(0.0170524 0.00524026 0.000663675) 11914
(0.0188052 0.00514436 0.000643351) 11917
(0.0192973 0.00302406 0.00328054) 818
(0.0190838 0.00659158 0.00156749) 6758
(0.0131555 0.00638723 0.00289202) 13526
(0.0136493 0.00638463 0.00289191) 13527
(0.0141287 0.00639176 0.002889) 13528
(0.0128956 0.00579648 0.00189216) 13765
(0.0130365 0.00441624 0.00174489) 14066
(0.0134871 0.00441852 0.00174592) 14066
(0.0139381 0.00441767 0.00173911) 14067
(0.013071 0.00420941 0.00186358) 14126
(0.0135243 0.00421205 0.00186317) 14127
(0.0139816 0.00420852 0.00185756) 14127
(0.0131401 0.00368115 0.00345849) 14486
(0.0136352 0.00368681 0.00345758) 14487
(0.0141402 0.00368312 0.00345807) 14488
(0.0131283 0.00377652 0.00367347) 14546
(0.0136065 0.00378039 0.0036729) 14547
(0.0140997 0.00377759 0.00367739) 14548
(0.0129746 0.00500539 0.00438849) 14845
(0.0134485 0.00500723 0.00438283) 14846
(0.0131624 0.00639258 0.00312889) 15266
(0.0136526 0.0063891 0.00312716) 15267
(0.0141361 0.00639497 0.00312693) 15268
(0.0213017 0.00628292 0.0019866) 13482
(0.0230243 0.00640056 0.002136) 13426
(0.0172952 0.00670162 0.004161) 1894
(0.0169706 0.00465956 0.000894822) 11553
(0.0169832 0.00524477 0.000663719) 11913
(0.0187773 0.00515143 0.000647535) 11917
(0.0191996 0.00302095 0.00327732) 818
(0.0190005 0.00659378 0.00156704) 6758
(0.0131318 0.00638766 0.00289192) 13526
(0.0136258 0.00638464 0.00289197) 13527
(0.0141064 0.00639133 0.00288915) 13528
(0.0128731 0.00579671 0.00189183) 13765
(0.0130143 0.00441605 0.00174456) 14066
(0.0134648 0.00441845 0.0017459) 14066
(0.0139161 0.00441776 0.00173946) 14067
(0.0130491 0.00420905 0.00186341) 14126
(0.013502 0.00421193 0.00186321) 14127
(0.0139594 0.00420868 0.00185786) 14127
(0.0131167 0.00368058 0.0034586) 14486
(0.0136112 0.00368664 0.00345765) 14487
(0.014116 0.00368334 0.00345806) 14488
(0.0131056 0.00377609 0.00367371) 14546
(0.0135831 0.00378024 0.00367293) 14547
(0.0140756 0.00377774 0.00367722) 14548
(0.0129519 0.00500531 0.00438897) 14845
(0.0134256 0.00500707 0.00438307) 14846
(0.013139 0.00639298 0.00312903) 15266
(0.0136292 0.00638916 0.00312723) 15267
(0.0141136 0.00639457 0.00312694) 15268
(0.021175 0.00628488 0.00198507) 13482
(0.0229849 0.00639276 0.00212803) 13425
(0.0172041 0.00670526 0.0041638) 1894
(0.0169211 0.00466479 0.000892863) 11553
(0.0169128 0.00524941 0.000663702) 11913
(0.0187474 0.00515817 0.000651491) 11917
(0.0190992 0.0030174 0.00327429) 818
(0.0189266 0.00659633 0.00156726) 6757
(0.013108 0.0063881 0.00289182) 13526
(0.0136023 0.00638468 0.00289202) 13527
(0.0140841 0.00639092 0.0028893) 13528
(0.0128507 0.00579693 0.00189148) 13765
(0.0129921 0.00441586 0.00174421) 14065
(0.0134425 0.00441837 0.00174586) 14066
(0.0138941 0.00441784 0.00173979) 14067
(0.0130271 0.00420868 0.00186323) 14126
(0.0134797 0.00421179 0.00186324) 14126
(0.0139371 0.00420883 0.00185815) 14127
(0.0130933 0.00368 0.00345871) 14486
(0.0135872 0.00368644 0.00345772) 14487
(0.0140919 0.00368355 0.00345805) 14488
(0.0130829 0.00377565 0.00367396) 14546
(0.0135598 0.00378009 0.00367298) 14547
(0.0140516 0.00377788 0.00367705) 14548
(0.0129293 0.00500524 0.00438946) 14845
(0.0134027 0.0050069 0.00438332) 14846
(0.0136057 0.00638924 0.0031273) 15267
(0.014091 0.00639419 0.00312694) 15268
(0.0210402 0.00628783 0.00198426) 13482
(0.0229438 0.00638497 0.00211978) 13425
(0.0171105 0.0067091 0.00416664) 1894
(0.0168709 0.00467005 0.000890832) 11553
(0.0168411 0.00525419 0.000663628) 11913
(0.0187157 0.00516458 0.000655208) 11917
(0.0189973 0.00301354 0.00327136) 817
(0.0213928 0.00303781 0.00334211) 822
(0.0188622 0.00659922 0.00156817) 6757
(0.0130842 0.00638856 0.00289171) 13526
(0.0135788 0.00638474 0.00289206) 13527
(0.0140617 0.00639053 0.00288944) 13528
(0.0128282 0.00579716 0.00189114) 13765
(0.0134202 0.00441829 0.00174581) 14066
(0.0138721 0.00441791 0.00174011) 14067
(0.0130051 0.0042083 0.00186304) 14126
(0.0134574 0.00421165 0.00186326) 14126
(0.0139149 0.00420896 0.00185842) 14127
(0.01307 0.00367941 0.00345882) 14486
(0.0135632 0.00368623 0.0034578) 14487
(0.0140677 0.00368374 0.00345804) 14488
(0.0130602 0.0037752 0.00367421) 14546
(0.0135366 0.00377991 0.00367303) 14547
(0.0140275 0.003778 0.00367689) 14548
(0.0129066 0.00500517 0.00438995) 14845
(0.0133799 0.00500674 0.00438358) 14846
(0.0135822 0.00638933 0.00312737) 15267
(0.0140683 0.00639383 0.00312695) 15268
(0.0208961 0.00629183 0.0019843) 13481
(0.0229009 0.00637724 0.00211143) 13425
(0.0170143 0.00671314 0.00416958) 1894
(0.0168198 0.00467532 0.000888729) 11553
(0.0167684 0.00525914 0.000663506) 11913
(0.0186822 0.00517067 0.000658696) 11917
(0.0188932 0.0030093 0.00326856) 817
(0.021332 0.00303904 0.00333803) 822
(0.0188004 0.00660226 0.00156921) 6757
(0.0130603 0.00638904 0.0028916) 13526
(0.0135553 0.00638482 0.0028921) 13527
(0.0140392 0.00639015 0.00288958) 13528
(0.0128056 0.0057974 0.00189079) 13765
(0.013398 0.00441819 0.00174574) 14066
(0.01385 0.00441798 0.00174042) 14067
(0.0129832 0.00420792 0.00186283) 14125
(0.0134352 0.00421149 0.00186326) 14126
(0.0138926 0.00420909 0.00185869) 14127
(0.0130466 0.0036788 0.00345892) 14486
(0.0135393 0.00368599 0.00345787) 14487
(0.0140435 0.00368391 0.00345803) 14488
(0.0130376 0.00377475 0.00367447) 14546
(0.0135133 0.00377973 0.00367309) 14547
(0.0140035 0.00377812 0.00367674) 14548
(0.0128839 0.00500511 0.00439045) 14845
(0.0133571 0.00500659 0.00438386) 14846
(0.0135588 0.00638945 0.00312745) 15267
(0.0140456 0.00639348 0.00312696) 15268
(0.0207407 0.00629704 0.00198453) 13481
(0.0228557 0.00636955 0.00210302) 13425
(0.0169156 0.00671735 0.00417263) 1893
(0.0167681 0.00468063 0.000886554) 11613
(0.0166946 0.00526427 0.000663339) 11913
(0.0186467 0.00517645 0.000661954) 11917
(0.0187866 0.00300469 0.00326592) 817
(0.0212676 0.00304007 0.0033341) 822
(0.0187375 0.00660537 0.00157008) 6757
(0.0130365 0.00638953 0.00289148) 13526
(0.0135317 0.00638493 0.00289212) 13527
(0.0140166 0.00638979 0.00288972) 13528
(0.0127831 0.00579765 0.00189044) 13765
(0.0133757 0.0044181 0.00174565) 14066
(0.0138278 0.00441804 0.0017407) 14067
(0.0129612 0.00420752 0.00186262) 14125
(0.013413 0.00421132 0.00186326) 14126
(0.0138703 0.0042092 0.00185894) 14127
(0.0130232 0.00367818 0.00345903) 14486
(0.0135154 0.00368574 0.00345796) 14487
(0.0140193 0.00368407 0.00345802) 14488
(0.0130149 0.00377428 0.00367473) 14546
(0.0134902 0.00377953 0.00367316) 14546
(0.0139795 0.00377821 0.00367659) 14547
(0.0128612 0.00500505 0.00439095) 14845
(0.0133343 0.00500643 0.00438415) 14846
(0.0135353 0.00638959 0.00312752) 15267
(0.0140228 0.00639316 0.00312697) 15268
(0.0205761 0.00630362 0.00198522) 13481
(0.0228084 0.00636193 0.00209469) 13425
(0.0168145 0.00672161 0.00417589) 1893
(0.0167158 0.00468598 0.000884305) 11613
(0.018247 0.00456458 0.000922754) 11556
(0.0166199 0.00526957 0.000663139) 11913
(0.0186087 0.00518191 0.000664947) 11917
(0.0186765 0.0029998 0.00326344) 32401
(0.021201 0.00304097 0.00333029) 822
(0.0186732 0.00660849 0.00157076) 6757
(0.0208491 0.00654952 0.00158081) 6761
(0.0130126 0.00639003 0.00289135) 13526
(0.0135081 0.00638505 0.00289214) 13527
(0.0139939 0.00638945 0.00288985) 13527
(0.0127606 0.00579791 0.00189009) 13765
(0.0133535 0.00441799 0.00174555) 14066
(0.0138057 0.00441809 0.00174098) 14067
(0.0129393 0.00420712 0.00186241) 14125
(0.0133908 0.00421114 0.00186325) 14126
(0.0138479 0.00420931 0.00185918) 14127
(0.0129999 0.00367755 0.00345913) 14485
(0.0134915 0.00368546 0.00345804) 14486
(0.0139951 0.00368421 0.00345802) 14487
(0.0129923 0.0037738 0.00367499) 14545
(0.013467 0.00377932 0.00367324) 14546
(0.0139555 0.0037783 0.00367645) 14547
(0.0128385 0.005005 0.00439146) 14845
(0.0133115 0.00500629 0.00438446) 14846
(0.0135118 0.00638975 0.0031276) 15267
(0.0139999 0.00639286 0.00312699) 15267
(0.0204008 0.0063117 0.00198621) 13480
(0.0227593 0.00635447 0.00208629) 13425
(0.016714 0.00672513 0.00417997) 1893
(0.0166627 0.00469136 0.00088198) 11613
(0.0182138 0.00457254 0.000921379) 11556
(0.0165536 0.00527529 0.000663349) 11913
(0.0185682 0.00518707 0.000667666) 11917
(0.0185653 0.00299491 0.00326093) 32401
(0.0211308 0.00304163 0.00332664) 822
(0.0186081 0.00661159 0.0015713) 6757
(0.0208188 0.00655061 0.00158526) 6761
(0.0129887 0.00639055 0.00289121) 13525
(0.0134845 0.0063852 0.00289215) 13526
(0.0139712 0.00638914 0.00288998) 13527
(0.012738 0.00579818 0.00188974) 13765
(0.0133313 0.00441788 0.00174543) 14066
(0.0137835 0.00441813 0.00174123) 14067
(0.0129173 0.00420672 0.00186218) 14125
(0.0133686 0.00421094 0.00186323) 14126
(0.0138256 0.0042094 0.00185941) 14127
(0.0129765 0.0036769 0.00345923) 14485
(0.0134677 0.00368517 0.00345813) 14486
(0.0139708 0.00368433 0.00345802) 14487
(0.0129696 0.00377332 0.00367526) 14545
(0.013444 0.00377909 0.00367333) 14546
(0.0139316 0.00377836 0.00367631) 14547
(0.0128157 0.00500496 0.00439197) 14845
(0.0132887 0.00500614 0.00438479) 14846
(0.0134883 0.00638993 0.00312768) 15266
(0.0139769 0.00639258 0.00312701) 15267
(0.0202131 0.00632151 0.00198738) 13480
(0.0227076 0.00634729 0.00207841) 13485
(0.0166194 0.00672662 0.00418554) 1893
(0.0166088 0.00469678 0.000879578) 11613
(0.0181808 0.00458027 0.000919987) 11556
(0.0164895 0.00528119 0.000663589) 11912
(0.018525 0.00519195 0.000670111) 11917
(0.0184483 0.00298988 0.00325854) 32257
(0.0210577 0.0030421 0.00332313) 822
(0.0185424 0.00661466 0.00157171) 6757
(0.0207762 0.00655171 0.00158785) 6761
(0.0129648 0.00639108 0.00289107) 13525
(0.0134608 0.00638537 0.00289215) 13526
(0.0139483 0.00638884 0.00289011) 13527
(0.013309 0.00441776 0.0017453) 14066
(0.0137613 0.00441816 0.00174147) 14067
(0.0128954 0.00420631 0.00186195) 14125
(0.0133465 0.00421074 0.0018632) 14126
(0.0138032 0.00420947 0.00185963) 14127
(0.0129532 0.00367625 0.00345933) 14485
(0.0134439 0.00368486 0.00345822) 14486
(0.0139465 0.00368444 0.00345802) 14487
(0.0129469 0.00377282 0.00367553) 14545
(0.0134209 0.00377885 0.00367343) 14546
(0.0139076 0.00377842 0.00367619) 14547
(0.012793 0.00500491 0.00439249) 14845
(0.013266 0.005006 0.00438512) 14846
(0.0134648 0.00639012 0.00312777) 15266
(0.0139539 0.00639232 0.00312703) 15267
(0.0200152 0.00633367 0.00198912) 13480
(0.0226533 0.00634042 0.00207109) 13485
(0.0165392 0.00672513 0.00419265) 1893
(0.0169126 0.0037894 0.00484275) 10533
(0.0165541 0.00470222 0.000877098) 11613
(0.0181473 0.00458776 0.000918575) 11556
(0.0164252 0.00528719 0.000663807) 11912
(0.0184791 0.00519658 0.000672291) 11916
(0.0183268 0.00298503 0.00325613) 32257
(0.0209831 0.00304245 0.00331971) 821
(0.0184754 0.00661783 0.00157196) 6756
(0.0207218 0.00655303 0.00158887) 6761
(0.0129408 0.00639162 0.00289093) 13525
(0.0134371 0.00638555 0.00289215) 13526
(0.0139254 0.00638856 0.00289023) 13527
(0.0132868 0.00441764 0.00174516) 14066
(0.0137391 0.00441819 0.00174169) 14067
(0.0128734 0.00420589 0.00186171) 14125
(0.0133244 0.00421052 0.00186316) 14126
(0.0137809 0.00420954 0.00185984) 14127
(0.0129298 0.00367558 0.00345943) 14485
(0.0134202 0.00368453 0.00345832) 14486
(0.0139222 0.00368452 0.00345803) 14487
(0.0129243 0.00377232 0.00367581) 14545
(0.013398 0.00377859 0.00367353) 14546
(0.0138837 0.00377846 0.00367607) 14547
(0.0132433 0.00500587 0.00438547) 14846
(0.0134413 0.00639033 0.00312786) 15266
(0.0139308 0.00639208 0.00312705) 15267
(0.0198034 0.006349 0.00199169) 13479
(0.0225967 0.00633366 0.00206351) 13485
(0.0164655 0.00672285 0.0042002) 1892
(0.0168856 0.00378475 0.00483702) 10533
(0.0164985 0.00470769 0.000874541) 11612
(0.0181125 0.00459501 0.000917168) 11556
(0.0184307 0.005201 0.000674231) 11916
(0.018197 0.0029803 0.00325375) 32257
(0.020905 0.00304253 0.00331647) 821
(0.0184078 0.00662113 0.00157208) 2496
(0.0206557 0.00655489 0.0015886) 6761
(0.0129168 0.00639218 0.00289078) 13525
(0.0134134 0.00638576 0.00289213) 13526
(0.0139025 0.00638831 0.00289035) 13527
(0.0132646 0.00441751 0.001745) 14066
(0.0137168 0.00441821 0.0017419) 14067
(0.0128514 0.00420547 0.00186146) 14125
(0.0133023 0.0042103 0.00186311) 14126
(0.0137585 0.00420959 0.00186003) 14127
(0.0129064 0.00367489 0.00345953) 14485
(0.0133965 0.00368418 0.00345841) 14486
(0.0138979 0.00368458 0.00345804) 14487
(0.0129016 0.00377181 0.00367609) 14545
(0.013375 0.00377833 0.00367365) 14546
(0.0138599 0.00377848 0.00367596) 14547
(0.0132206 0.00500575 0.00438583) 14846
(0.0134178 0.00639056 0.00312795) 15266
(0.0139076 0.00639187 0.00312708) 15267
(0.0195771 0.00636856 0.00199579) 13479
(0.0225381 0.00632717 0.00205619) 13485
(0.0163896 0.0067208 0.00420785) 1892
(0.0168574 0.00378035 0.00483163) 10533
(0.0164418 0.00471314 0.0008719) 11612
(0.0180757 0.00460199 0.000915763) 11556
(0.0183795 0.00520522 0.000675924) 11916
(0.0180538 0.00297516 0.00325158) 32257
(0.0208254 0.0030425 0.00331331) 821
(0.0183413 0.00662459 0.00157219) 2496
(0.0205777 0.00655757 0.00158725) 6761
(0.0128928 0.00639274 0.00289062) 13525
(0.0133897 0.00638598 0.00289211) 13526
(0.0138794 0.00638808 0.00289046) 13527
(0.0132424 0.00441737 0.00174483) 14066
(0.0136946 0.00441822 0.00174209) 14067
(0.0128294 0.00420504 0.00186121) 14125
(0.0132802 0.00421006 0.00186305) 14126
(0.0137361 0.00420963 0.00186021) 14127
(0.012883 0.0036742 0.00345963) 14485
(0.0133729 0.00368382 0.00345851) 14486
(0.0138736 0.00368463 0.00345806) 14487
(0.0128789 0.00377129 0.00367637) 14545
(0.0133521 0.00377805 0.00367378) 14546
(0.013836 0.0037785 0.00367586) 14547
(0.0131979 0.00500563 0.00438621) 14846
(0.0133943 0.0063908 0.00312805) 15266
(0.0138843 0.00639167 0.00312711) 15267
(0.0224761 0.00632106 0.00204941) 13484
(0.0163114 0.00671901 0.00421555) 1892
(0.0168282 0.00377621 0.00482657) 10533
(0.0178403 0.00602588 0.00500267) 12335
(0.0178403 0.00602588 0.00500267) 12335
(0.0178403 0.00602588 0.00500267) 12335
(0.0163836 0.00471854 0.000869172) 11612
(0.0180369 0.00460874 0.000914348) 11556
(0.0183259 0.00520928 0.000677412) 11916
(0.0194221 0.00505032 0.00059168) 7838
(0.017893 0.00296918 0.00324984) 32112
(0.020743 0.00304225 0.00331028) 821
(0.0182751 0.00662819 0.00157222) 2496
(0.0204882 0.00656126 0.00158515) 6760
(0.0133659 0.00638622 0.00289208) 13526
(0.0138563 0.00638786 0.00289058) 13527
(0.0132203 0.00441723 0.00174465) 14066
(0.0136723 0.00441823 0.00174227) 14067
(0.0128074 0.00420461 0.00186095) 14125
(0.0132582 0.00420981 0.00186299) 14126
(0.0137137 0.00420966 0.00186038) 14127
(0.0128596 0.00367349 0.00345973) 14485
(0.0133493 0.00368344 0.00345862) 14486
(0.0138494 0.00368465 0.00345808) 14487
(0.0128562 0.00377076 0.00367665) 14545
(0.0133292 0.00377775 0.00367392) 14546
(0.0138122 0.00377849 0.00367577) 14547
(0.0131753 0.0050055 0.00438659) 14846
(0.0133708 0.00639105 0.00312815) 15266
(0.013861 0.0063915 0.00312715) 15267
(0.0224109 0.00631524 0.00204266) 13484
(0.016798 0.00377229 0.00482183) 10533
(0.0177902 0.00602214 0.00500584) 12335
(0.0177902 0.00602214 0.00500584) 12335
(0.0177902 0.00602214 0.00500584) 12335
(0.0163235 0.00472381 0.000866355) 11612
(0.0179964 0.00461526 0.000912928) 11555
(0.0182697 0.0052132 0.000678692) 11916
(0.0194376 0.00506419 0.000600313) 7838
(0.0177108 0.00296192 0.0032487) 32112
(0.0206591 0.00304187 0.00330732) 821
(0.0182089 0.00663188 0.00157213) 2496
(0.0203874 0.00656622 0.00158247) 6760
(0.0133421 0.00638648 0.00289204) 13526
(0.0138331 0.00638767 0.00289069) 13527
(0.0131981 0.00441708 0.00174445) 14066
(0.01365 0.00441823 0.00174242) 14067
(0.0127854 0.00420417 0.00186069) 14125
(0.0132361 0.00420955 0.00186291) 14126
(0.0136913 0.00420967 0.00186054) 14127
(0.0128361 0.00367278 0.00345982) 14485
(0.0133257 0.00368304 0.00345873) 14486
(0.0138251 0.00368465 0.00345811) 14487
(0.0128335 0.00377022 0.00367694) 14545
(0.0133064 0.00377745 0.00367407) 14546
(0.0137885 0.00377848 0.00367569) 14547
(0.0131526 0.00500539 0.00438699) 14846
(0.0133473 0.00639132 0.00312826) 15266
(0.0138377 0.00639135 0.00312719) 15267
(0.0223438 0.0063097 0.00203564) 13484
(0.023493 0.00651066 0.00222402) 6106
(0.0167668 0.00376861 0.00481741) 10533
(0.0177388 0.00601854 0.00500902) 12335
(0.0177388 0.00601854 0.00500902) 12335
(0.0177388 0.00601854 0.00500902) 12335
(0.0179542 0.00462159 0.000911493) 11555
(0.0182111 0.00521702 0.000679782) 11916
(0.0194491 0.00507725 0.000608505) 7838
(0.017506 0.00295288 0.00324833) 32112
(0.0205734 0.00304135 0.00330445) 821
(0.0181415 0.00663556 0.00157184) 2496
(0.0202747 0.00657263 0.00157936) 6760
(0.0133183 0.00638676 0.002892) 13526
(0.0138099 0.00638751 0.00289079) 13527
(0.013176 0.00441693 0.00174424) 14066
(0.0136277 0.00441822 0.00174256) 14067
(0.0127633 0.00420373 0.00186042) 14125
(0.0132142 0.00420929 0.00186283) 14126
(0.013669 0.00420968 0.00186069) 14127
(0.0128126 0.00367205 0.00345992) 14485
(0.0133022 0.00368262 0.00345884) 14486
(0.0138008 0.00368464 0.00345814) 14487
(0.0128108 0.00376967 0.00367723) 14545
(0.0132836 0.00377714 0.00367423) 14546
(0.0137648 0.00377845 0.00367562) 14547
(0.01313 0.00500527 0.00438739) 14846
(0.0133238 0.00639161 0.00312837) 15266
(0.0138143 0.00639122 0.00312723) 15267
(0.0222726 0.0063048 0.00202919) 13484
(0.0234608 0.00650221 0.00221842) 6106
(0.0167347 0.00376512 0.0048133) 10533
(0.0176861 0.00601501 0.00501224) 12335
(0.0176861 0.00601501 0.00501224) 12335
(0.0176861 0.00601501 0.00501224) 12335
(0.0179103 0.00462773 0.000910038) 11555
(0.0181501 0.00522074 0.000680684) 11916
(0.0194568 0.00508952 0.000616245) 7838
(0.0172776 0.00294141 0.00324889) 31968
(0.0204856 0.00304065 0.00330168) 820
(0.0180735 0.0066392 0.00157137) 2496
(0.0201496 0.00658076 0.00157594) 6760
(0.0132945 0.00638706 0.00289195) 13526
(0.0137866 0.00638736 0.00289089) 13527
(0.0131538 0.00441678 0.00174402) 14066
(0.0136054 0.0044182 0.00174269) 14067
(0.0127413 0.00420328 0.00186015) 14125
(0.0131922 0.00420901 0.00186274) 14126
(0.0136466 0.00420966 0.00186082) 14127
(0.0127891 0.00367132 0.00346002) 14485
(0.0132787 0.00368219 0.00345895) 14486
(0.0137766 0.00368461 0.00345817) 14487
(0.012788 0.00376912 0.00367752) 14545
(0.0132609 0.00377681 0.00367439) 14546
(0.0137411 0.0037784 0.00367557) 14547
(0.0131073 0.00500516 0.00438781) 14846
(0.0133004 0.00639191 0.00312848) 15266
(0.0137909 0.00639111 0.00312727) 15267
(0.022198 0.00630043 0.00202307) 13484
(0.0234278 0.00649369 0.00221237) 6106
(0.0167016 0.00376181 0.00480951) 10533
(0.017632 0.00601154 0.0050155) 12335
(0.017632 0.00601154 0.0050155) 12335
(0.017632 0.00601154 0.0050155) 12335
(0.0178648 0.0046337 0.000908564) 11555
(0.0180871 0.00522441 0.000681425) 11916
(0.0194607 0.0051011 0.000623564) 11918
(0.0170293 0.00292697 0.00325043) 31969
(0.0203962 0.0030398 0.00329897) 820
(0.0180041 0.00664276 0.00157063) 2496
(0.0200264 0.0065874 0.00157295) 6760
(0.0132707 0.00638737 0.00289189) 13526
(0.0137632 0.00638723 0.00289099) 13527
(0.0131317 0.00441662 0.00174378) 14066
(0.0135831 0.00441817 0.00174279) 14067
(0.0127192 0.00420283 0.00185987) 14125
(0.0131702 0.00420872 0.00186265) 14126
(0.0136242 0.00420964 0.00186095) 14127
(0.0127656 0.00367057 0.00346011) 14485
(0.0132552 0.00368175 0.00345907) 14486
(0.0137523 0.00368456 0.00345821) 14487
(0.0127653 0.00376857 0.00367782) 14545
(0.0132381 0.00377648 0.00367457) 14546
(0.0137174 0.00377835 0.00367552) 14547
(0.0130847 0.00500506 0.00438823) 14846
(0.0132769 0.00639222 0.0031286) 15266
(0.0137674 0.00639102 0.00312732) 15267
(0.0221194 0.00629639 0.00201638) 13484
(0.0233949 0.00648518 0.0022061) 6106
(0.0166676 0.00375868 0.004806) 10533
(0.0175769 0.00600812 0.00501882) 12335
(0.0175769 0.00600812 0.00501882) 12335
(0.0175769 0.00600812 0.00501882) 12335
(0.0178179 0.00463951 0.000907065) 11555
(0.0180217 0.00522804 0.000681987) 11916
(0.019461 0.00511199 0.000630479) 11918
(0.0167686 0.00290918 0.00325318) 31825
(0.0203049 0.00303879 0.0032963) 820
(0.0179331 0.00664608 0.00156954) 2495
(0.0199192 0.00659111 0.0015711) 6759
(0.0132469 0.0063877 0.00289183) 13526
(0.0137398 0.00638713 0.00289109) 13527
(0.0131096 0.00441646 0.00174354) 14066
(0.0135608 0.00441814 0.00174288) 14067
(0.0126971 0.00420238 0.00185959) 14125
(0.0131483 0.00420843 0.00186254) 14126
(0.0136018 0.0042096 0.00186106) 14127
(0.012742 0.00366982 0.0034602) 14485
(0.0132317 0.00368129 0.00345919) 14486
(0.0137281 0.00368449 0.00345826) 14487
(0.0127425 0.003768 0.00367812) 14545
(0.0132154 0.00377613 0.00367476) 14546
(0.0136938 0.00377828 0.00367549) 14547
(0.0130621 0.00500496 0.00438866) 14846
(0.0132534 0.00639254 0.00312872) 15266
(0.0137439 0.00639096 0.00312738) 15267
(0.0220374 0.00629294 0.00200999) 13484
(0.0233611 0.00647664 0.00219949) 6106
(0.0183466 0.00667537 0.00414396) 1896
(0.0166327 0.00375569 0.00480278) 10533
(0.0175208 0.00600473 0.00502219) 12335
(0.0175208 0.00600473 0.00502219) 12335
(0.0175208 0.00600473 0.00502219) 12335
(0.0177697 0.00464516 0.000905534) 11555
(0.0179544 0.00523165 0.000682393) 11915
(0.0194541 0.0051218 0.000636669) 11918
(0.0165159 0.0028896 0.00325644) 31825
(0.020212 0.0030376 0.00329361) 820
(0.0178598 0.00664915 0.00156802) 2495
(0.0198192 0.00659393 0.00156988) 6759
(0.013223 0.00638805 0.00289176) 13526
(0.0137164 0.00638705 0.00289118) 13527
(0.0130875 0.00441629 0.00174328) 14066
(0.0135385 0.0044181 0.00174295) 14067
(0.0131264 0.00420813 0.00186242) 14126
(0.0135795 0.00420955 0.00186116) 14127
(0.0127184 0.00366906 0.00346029) 14485
(0.0132083 0.00368081 0.00345931) 14486
(0.0137039 0.0036844 0.00345831) 14487
(0.0127198 0.00376744 0.00367841) 14545
(0.0131928 0.00377577 0.00367495) 14546
(0.0136703 0.0037782 0.00367547) 14547
(0.0130395 0.00500487 0.0043891) 14846
(0.01323 0.00639287 0.00312885) 15266
(0.0137204 0.00639091 0.00312743) 15267
(0.0219494 0.00629023 0.00200428) 13483
(0.0233271 0.0064682 0.00219276) 6106
(0.0182635 0.00667783 0.00414715) 1896
(0.0165969 0.00375285 0.00479986) 10533
(0.0174638 0.00600138 0.00502561) 12334
(0.0174638 0.00600138 0.00502561) 12334
(0.0174638 0.00600138 0.00502561) 12334
(0.0177203 0.00465066 0.000903963) 11555
(0.0178855 0.00523529 0.000682682) 11915
(0.0194429 0.00513094 0.000642394) 11918
(0.0162935 0.00287057 0.00325949) 31681
(0.0201169 0.00303619 0.00329086) 820
(0.0177843 0.00665176 0.00156601) 2495
(0.0197316 0.00659634 0.00156964) 6759
(0.0131992 0.00638842 0.00289169) 13526
(0.0136929 0.006387 0.00289126) 13527
(0.0130653 0.00441612 0.00174301) 14066
(0.0135163 0.00441805 0.00174301) 14067
(0.0131045 0.00420782 0.0018623) 14126
(0.0135572 0.00420949 0.00186124) 14127
(0.0126948 0.00366829 0.00346037) 14485
(0.0131849 0.00368032 0.00345942) 14486
(0.0136797 0.0036843 0.00345837) 14487
(0.012697 0.00376687 0.00367871) 14545
(0.0131701 0.0037754 0.00367515) 14546
(0.0136468 0.00377811 0.00367546) 14547
(0.0130169 0.00500478 0.00438954) 14846
(0.0132066 0.00639322 0.00312897) 15266
(0.0136968 0.00639089 0.00312749) 15267
(0.0218567 0.006288 0.00199837) 13483
(0.0232925 0.00645971 0.00218577) 6106
(0.0181778 0.00668071 0.00415018) 1896
(0.0165603 0.00375009 0.00479718) 10533
(0.017406 0.00599807 0.00502908) 12334
(0.017406 0.00599807 0.00502908) 12334
(0.017406 0.00599807 0.00502908) 12334
(0.0176701 0.00465606 0.000902361) 11555
(0.0178153 0.00523898 0.000682867) 11915
(0.0194287 0.00513962 0.000647856) 11918
(0.0161317 0.00285643 0.0032604) 31681
(0.0200198 0.00303454 0.00328805) 820
(0.0177036 0.00665413 0.00156326) 2495
(0.0196568 0.00659863 0.00157042) 6759
(0.0131753 0.0063888 0.00289161) 13526
(0.0136694 0.00638696 0.00289134) 13527
(0.0130432 0.00441595 0.00174272) 14066
(0.013494 0.00441799 0.00174304) 14066
(0.0130826 0.0042075 0.00186217) 14126
(0.0135349 0.00420941 0.00186132) 14127
(0.0126711 0.00366752 0.00346045) 14485
(0.0131615 0.00367982 0.00345954) 14486
(0.0136556 0.00368417 0.00345843) 14487
(0.0126742 0.0037663 0.00367902) 14545
(0.0131475 0.00377503 0.00367535) 14546
(0.0136234 0.003778 0.00367546) 14547
(0.0129943 0.0050047 0.00438999) 14845
(0.0131831 0.00639358 0.0031291) 15266
(0.0136733 0.0063909 0.00312755) 15267
(0.0217583 0.00628633 0.00199264) 13483
(0.0232573 0.00645128 0.00217866) 6106
(0.0180894 0.00668395 0.0041531) 1896
(0.0165227 0.00374734 0.00479468) 10533
(0.0173476 0.00599476 0.00503263) 12334
(0.0173476 0.00599476 0.00503263) 12334
(0.0173476 0.00599476 0.00503263) 12334
(0.0176766 0.00404751 0.00128552) 12755
(0.0176189 0.00466136 0.000900712) 11555
(0.017744 0.00524276 0.000682965) 11915
(0.0194112 0.00514784 0.000653034) 11918
(0.0160351 0.002849 0.00325867) 31681
(0.0199216 0.00303266 0.00328515) 819
(0.0176153 0.0066565 0.00155958) 2495
(0.0195804 0.00660088 0.00157103) 6759
(0.0131514 0.0063892 0.00289152) 13526
(0.0136458 0.00638695 0.00289141) 13527
(0.0130211 0.00441577 0.00174242) 14066
(0.0134717 0.00441793 0.00174306) 14066
(0.0130607 0.00420717 0.00186203) 14126
(0.0135126 0.00420932 0.00186138) 14127
(0.0126475 0.00366673 0.00346052) 14485
(0.0131381 0.0036793 0.00345966) 14486
(0.0136315 0.00368403 0.00345849) 14487
(0.0126514 0.00376572 0.00367932) 14545
(0.0131249 0.00377464 0.00367556) 14546
(0.0136 0.00377788 0.00367546) 14547
(0.0129717 0.00500462 0.00439044) 14845
(0.0131597 0.00639395 0.00312923) 15266
(0.0136497 0.00639092 0.00312761) 15267
(0.0216525 0.00628543 0.00198826) 13483
(0.0232211 0.00644281 0.00217133) 13426
(0.0179986 0.00668751 0.00415594) 1895
(0.0164837 0.00374454 0.00479236) 10532
(0.0172888 0.00599147 0.00503627) 12334
(0.0172888 0.00599147 0.00503627) 12334
(0.0172888 0.00599147 0.00503627) 12334
(0.0175798 0.00405112 0.0012819) 12755
(0.0175672 0.00466656 0.000899016) 11555
(0.017672 0.00524666 0.000683009) 11915
(0.0193906 0.00515559 0.000657938) 11918
(0.0198216 0.00303041 0.0032822) 819
(0.0221984 0.00302409 0.00333609) 824
(0.017518 0.00665895 0.00155482) 2495
(0.0195066 0.00660327 0.00157179) 6759
(0.0131274 0.00638962 0.00289143) 13526
(0.0136222 0.00638696 0.00289147) 13527
(0.012999 0.00441558 0.00174212) 14065
(0.0134494 0.00441786 0.00174307) 14066
(0.0130389 0.00420684 0.00186187) 14126
(0.0134903 0.00420922 0.00186143) 14126
(0.0126238 0.00366595 0.00346059) 14485
(0.0131147 0.00367877 0.00345977) 14486
(0.0136074 0.00368387 0.00345855) 14487
(0.0126286 0.00376514 0.00367962) 14545
(0.0131023 0.00377424 0.00367577) 14546
(0.0135766 0.00377775 0.00367548) 14547
(0.0129491 0.00500455 0.0043909) 14845
(0.0131363 0.00639433 0.00312935) 15266
(0.0136261 0.00639097 0.00312768) 15267
(0.0215396 0.00628513 0.00198402) 13483
(0.0231841 0.00643436 0.00216385) 13426
(0.0179054 0.00669139 0.00415872) 1895
(0.0172296 0.00598816 0.00503998) 12334
(0.0172296 0.00598816 0.00503998) 12334
(0.0172296 0.00598816 0.00503998) 12334
(0.0174838 0.00405476 0.00127808) 12754
(0.017515 0.0046717 0.000897268) 11555
(0.0175995 0.0052507 0.00068301) 11915
(0.0193671 0.00516292 0.000662575) 11918
(0.0197211 0.00302789 0.00327923) 819
(0.02215 0.00302677 0.00333242) 824
(0.0174099 0.00666166 0.00154901) 2494
(0.0194417 0.00660584 0.00157305) 6758
(0.0131035 0.00639005 0.00289133) 13526
(0.0135985 0.00638699 0.00289153) 13527
(0.0129769 0.00441539 0.0017418) 14065
(0.0134272 0.00441778 0.00174305) 14066
(0.013017 0.00420649 0.00186171) 14126
(0.013468 0.00420911 0.00186147) 14126
(0.0126001 0.00366516 0.00346065) 14485
(0.0130914 0.00367823 0.00345988) 14486
(0.0135834 0.0036837 0.00345862) 14487
(0.0126058 0.00376456 0.00367992) 14545
(0.0130798 0.00377384 0.00367599) 14546
(0.0135533 0.00377761 0.00367551) 14547
(0.0129265 0.00500449 0.00439136) 14845
(0.0131129 0.00639473 0.00312948) 15266
(0.0136025 0.00639103 0.00312774) 15267
(0.0214193 0.00628563 0.00198043) 13482
(0.0231458 0.00642589 0.00215611) 13426
(0.0178104 0.00669548 0.0041615) 1895
(0.0171701 0.00598485 0.00504378) 12334
(0.0171701 0.00598485 0.00504378) 12334
(0.0171701 0.00598485 0.00504378) 12334
(0.0189837 0.00605114 0.00497544) 12337
(0.0189837 0.00605114 0.00497544) 12337
(0.0189837 0.00605114 0.00497544) 12337
(0.0173882 0.00405827 0.00127409) 12754
(0.0174624 0.00467676 0.000895466) 11554
(0.0175263 0.00525486 0.000682941) 11915
(0.0193399 0.00516978 0.000666892) 11918
(0.0196179 0.0030249 0.00327642) 819
(0.0220976 0.00302932 0.00332875) 824
(0.0172896 0.00666478 0.00154207) 2494
(0.019384 0.00660847 0.00157467) 6758
(0.0130795 0.0063905 0.00289122) 13526
(0.0135748 0.00638705 0.00289158) 13527
(0.0129548 0.0044152 0.00174147) 14065
(0.0134049 0.0044177 0.00174302) 14066
(0.0129952 0.00420614 0.00186154) 14125
(0.0134458 0.00420898 0.0018615) 14126
(0.0125764 0.00366436 0.0034607) 14485
(0.013068 0.00367767 0.00345999) 14486
(0.0135594 0.00368351 0.00345869) 14487
(0.0125829 0.00376398 0.00368023) 14545
(0.0130572 0.00377343 0.00367622) 14546
(0.0135301 0.00377746 0.00367554) 14547
(0.0129039 0.00500443 0.00439183) 14845
(0.0130895 0.00639513 0.00312961) 15266
(0.0135789 0.00639112 0.00312781) 15267
(0.0212897 0.00628726 0.00197822) 13482
(0.0231064 0.00641745 0.00214811) 13426
(0.0177133 0.00669978 0.00416429) 1895
(0.0171104 0.0059815 0.00504766) 12334
(0.0171104 0.0059815 0.00504766) 12334
(0.0171104 0.0059815 0.00504766) 12334
(0.0189313 0.00604561 0.00497878) 12337
(0.0189313 0.00604561 0.00497878) 12337
(0.0189313 0.00604561 0.00497878) 12337
(0.017293 0.00406177 0.00126988) 12754
(0.0174091 0.00468183 0.000893603) 11614
(0.017452 0.00525916 0.000682806) 11914
(0.0193101 0.00517624 0.000670931) 11918
(0.0195145 0.00302163 0.00327362) 819
(0.0220413 0.00303173 0.00332519) 824
(0.0171568 0.00666846 0.00153388) 2494
(0.0193255 0.00661115 0.00157612) 6758
(0.0130555 0.00639096 0.00289111) 13526
(0.0135511 0.00638712 0.00289162) 13527
(0.0129327 0.004415 0.00174112) 14065
(0.0133827 0.00441761 0.00174298) 14066
(0.0129733 0.00420578 0.00186136) 14125
(0.0134236 0.00420884 0.00186152) 14126
(0.0125527 0.00366356 0.00346075) 14485
(0.0130447 0.0036771 0.0034601) 14486
(0.0135355 0.0036833 0.00345877) 14487
(0.0125601 0.0037634 0.00368054) 14545
(0.0130347 0.003773 0.00367644) 14546
(0.0135069 0.00377729 0.00367558) 14547
(0.0128813 0.00500437 0.0043923) 14845
(0.0130661 0.00639554 0.00312973) 15266
(0.0135553 0.00639122 0.00312788) 15267
(0.0211506 0.0062899 0.00197633) 13482
(0.0230656 0.006409 0.00213985) 13426
(0.0176143 0.00670428 0.00416713) 1895
(0.0170501 0.00597813 0.00505164) 12334
(0.0170501 0.00597813 0.00505164) 12334
(0.0170501 0.00597813 0.00505164) 12334
(0.0188801 0.00604027 0.00498201) 12337
(0.0188801 0.00604027 0.00498201) 12337
(0.0188801 0.00604027 0.00498201) 12337
(0.0171983 0.0040652 0.00126544) 11494
(0.0173551 0.0046869 0.000891672) 11614
(0.0173766 0.00526364 0.000682612) 11914
(0.0192783 0.00518235 0.00067473) 11918
(0.0194089 0.00301788 0.0032709) 818
(0.0219811 0.003034 0.00332175) 823
(0.0170116 0.00667303 0.00152452) 2494
(0.019266 0.00661383 0.0015774) 6758
(0.0212048 0.00656453 0.00156111) 6762
(0.0130314 0.00639144 0.00289099) 13526
(0.0135274 0.00638722 0.00289165) 13527
(0.0129106 0.00441481 0.00174077) 14065
(0.0133605 0.00441751 0.00174292) 14066
(0.0129515 0.00420541 0.00186118) 14125
(0.0134014 0.00420869 0.00186153) 14126
(0.012529 0.00366276 0.00346078) 14485
(0.0130213 0.00367652 0.00346021) 14486
(0.0135116 0.00368307 0.00345885) 14487
(0.0125372 0.00376282 0.00368084) 14545
(0.0130122 0.00377257 0.00367668) 14546
(0.0134838 0.00377711 0.00367563) 14546
(0.0128586 0.00500432 0.00439278) 14845
(0.0130427 0.00639596 0.00312986) 15266
(0.0135317 0.00639134 0.00312795) 15267
(0.0210013 0.00629389 0.00197538) 13482
(0.0230233 0.00640062 0.00213135) 13426
(0.0175133 0.00670896 0.00417005) 1895
(0.0188352 0.00603482 0.00498518) 12337
(0.0188352 0.00603482 0.00498518) 12337
(0.0188352 0.00603482 0.00498518) 12337
(0.0171044 0.00406854 0.00126073) 11494
(0.0173008 0.004692 0.000889668) 11614
(0.0188467 0.00456846 0.000924813) 11557
(0.0173004 0.00526831 0.000682364) 11914
(0.0192443 0.00518813 0.000678279) 11918
(0.0193034 0.00301388 0.00326816) 818
(0.0219169 0.00303607 0.00331846) 823
(0.0192052 0.00661648 0.00157848) 6758
(0.0211951 0.00656706 0.00156961) 6762
(0.0130074 0.00639193 0.00289087) 13526
(0.0135036 0.00638734 0.00289168) 13527
(0.0128885 0.0044146 0.00174041) 14065
(0.0133383 0.00441741 0.00174284) 14066
(0.0129296 0.00420503 0.00186098) 14125
(0.0133793 0.00420853 0.00186153) 14126
(0.0125053 0.00366196 0.00346081) 14485
(0.012998 0.00367592 0.00346031) 14485
(0.0134877 0.00368282 0.00345893) 14486
(0.0125144 0.00376224 0.00368114) 14545
(0.0129896 0.00377213 0.00367692) 14545
(0.0134607 0.00377691 0.00367569) 14546
(0.012836 0.00500428 0.00439326) 14845
(0.0130193 0.00639638 0.00312998) 15266
(0.0135081 0.00639148 0.00312802) 15267
(0.0208405 0.00629932 0.00197544) 13481
(0.0229792 0.00639227 0.00212251) 13425
(0.0174102 0.00671381 0.00417307) 1894
(0.017616 0.00378878 0.00484468) 10535
(0.0187917 0.00602956 0.00498832) 12337
(0.0187917 0.00602956 0.00498832) 12337
(0.0187917 0.00602956 0.00498832) 12337
(0.0170114 0.00407173 0.00125574) 11494
(0.017246 0.00469714 0.000887588) 11614
(0.0188138 0.00457688 0.000923669) 11557
(0.0172233 0.00527315 0.00068207) 11914
(0.019208 0.00519359 0.000681573) 11918
(0.0191958 0.00300951 0.0032655) 818
(0.0218484 0.00303792 0.00331531) 823
(0.0191424 0.00661916 0.00157933) 2498
(0.021172 0.00656925 0.0015758) 6762
(0.0129834 0.00639243 0.00289074) 13525
(0.0134798 0.00638748 0.0028917) 13526
(0.0128664 0.00441439 0.00174004) 14065
(0.0133161 0.0044173 0.00174276) 14066
(0.0129077 0.00420465 0.00186077) 14125
(0.0133572 0.00420836 0.00186153) 14126
(0.0124816 0.00366116 0.00346084) 14484
(0.0129746 0.00367531 0.00346042) 14485
(0.0134639 0.00368256 0.00345901) 14486
(0.0124915 0.00376165 0.00368145) 14544
(0.0129671 0.00377168 0.00367716) 14545
(0.0134377 0.00377671 0.00367576) 14546
(0.0128133 0.00500424 0.00439375) 14845
(0.0129959 0.00639681 0.0031301) 15265
(0.0134845 0.00639164 0.0031281) 15266
(0.0206674 0.00630633 0.0019759) 13481
(0.0229332 0.00638399 0.00211354) 13425
(0.0173069 0.00671828 0.00417658) 1894
(0.0175896 0.00378345 0.0048382) 10535
(0.0187482 0.00602451 0.00499142) 12337
(0.0187482 0.00602451 0.00499142) 12337
(0.0187482 0.00602451 0.00499142) 12337
(0.0169189 0.00407461 0.00125049) 11493
(0.0171908 0.00470234 0.000885428) 11614
(0.0187803 0.00458507 0.000922509) 11557
(0.0171478 0.00527826 0.00068185) 11914
(0.0191693 0.00519874 0.000684619) 11918
(0.0190856 0.00300482 0.00326291) 818
(0.0217765 0.00303959 0.00331227) 823
(0.0190787 0.00662188 0.00158003) 2498
(0.021137 0.00657118 0.00158005) 6762
(0.0129593 0.00639294 0.0028906) 13525
(0.013456 0.00638763 0.00289171) 13526
(0.0128443 0.00441418 0.00173967) 14065
(0.0132939 0.00441719 0.00174266) 14066
(0.0128858 0.00420427 0.00186056) 14125
(0.0133351 0.00420818 0.00186151) 14126
(0.0124579 0.00366035 0.00346086) 14484
(0.0129513 0.00367469 0.00346052) 14485
(0.0134402 0.00368228 0.0034591) 14486
(0.0124687 0.00376107 0.00368175) 14544
(0.0129446 0.00377122 0.00367741) 14545
(0.0134147 0.00377649 0.00367584) 14546
(0.0127906 0.0050042 0.00439424) 14845
(0.0129725 0.00639724 0.00313023) 15265
(0.0134609 0.00639181 0.00312818) 15266
(0.0204831 0.00631522 0.00197707) 13480
(0.0228846 0.00637578 0.00210449) 13425
(0.0172063 0.00672144 0.00418113) 1894
(0.017562 0.00377841 0.00483206) 10535
(0.0187035 0.00601972 0.00499445) 12337
(0.0187035 0.00601972 0.00499445) 12337
(0.0187035 0.00601972 0.00499445) 12337
(0.016826 0.00407696 0.00124505) 11493
(0.0171353 0.00470759 0.000883189) 11614
(0.0187468 0.00459307 0.000921328) 11557
(0.0170805 0.00528377 0.000681983) 11914
(0.0191278 0.00520361 0.000687395) 11918
(0.0189736 0.003 0.00326033) 32401
(0.0217007 0.00304098 0.00330936) 823
(0.019013 0.00662472 0.00158049) 2498
(0.0210904 0.006573 0.00158254) 6762
(0.0129352 0.00639347 0.00289046) 13525
(0.0134321 0.00638781 0.00289172) 13526
(0.0128221 0.00441396 0.00173928) 14065
(0.0132717 0.00441707 0.00174254) 14066
(0.0128639 0.00420387 0.00186034) 14125
(0.0133131 0.00420799 0.00186149) 14126
(0.0124342 0.00365955 0.00346087) 14484
(0.0129279 0.00367405 0.00346062) 14485
(0.0134165 0.00368199 0.0034592) 14486
(0.0109586 0.0037377 0.00368455) 14541
(0.0109586 0.0037377 0.00368455) 14541
(0.0109586 0.0037377 0.00368455) 14541
(0.0124458 0.00376049 0.00368204) 14544
(0.012922 0.00377076 0.00367766) 14545
(0.0133918 0.00377626 0.00367592) 14546
(0.0127679 0.00500417 0.00439474) 14845
(0.0129492 0.00639768 0.00313035) 15265
(0.0134373 0.006392 0.00312826) 15266
(0.0103059 0.00362824 0.00343497) 14480
(0.0102494 0.00374178 0.00369175) 14540
(0.0202859 0.00632604 0.00197848) 13480
(0.0228337 0.00636772 0.00209558) 13425
(0.017117 0.00672163 0.00418741) 1894
(0.0175332 0.00377365 0.00482622) 10535
(0.0186572 0.00601519 0.00499742) 12337
(0.0186572 0.00601519 0.00499742) 12337
(0.0186572 0.00601519 0.00499742) 12337
(0.0167326 0.00407878 0.00123941) 11493
(0.0170793 0.00471288 0.000880862) 11614
(0.0187128 0.00460086 0.000920109) 11557
(0.0170149 0.00528946 0.00068213) 11914
(0.0190839 0.00520823 0.000689916) 11918
(0.018857 0.00299505 0.0032578) 32401
(0.0216222 0.00304217 0.00330655) 823
(0.0189461 0.00662768 0.0015808) 2497
(0.0210311 0.00657509 0.00158339) 6762
(0.0129111 0.00639401 0.00289031) 13525
(0.0134083 0.006388 0.00289171) 13526
(0.0127999 0.00441374 0.00173889) 14065
(0.0132496 0.00441694 0.00174241) 14066
(0.012842 0.00420347 0.00186011) 14125
(0.0132911 0.00420778 0.00186145) 14126
(0.0124105 0.00365874 0.00346087) 14484
(0.0129045 0.00367341 0.00346073) 14485
(0.0133928 0.00368167 0.00345929) 14486
(0.0109359 0.00373756 0.00368465) 14541
(0.0109359 0.00373756 0.00368465) 14541
(0.0109359 0.00373756 0.00368465) 14541
(0.0124229 0.0037599 0.00368234) 14544
(0.0128995 0.00377029 0.00367791) 14545
(0.0133689 0.00377601 0.00367602) 14546
(0.0127452 0.00500414 0.00439524) 14845
(0.0129258 0.00639812 0.00313048) 15265
(0.0134138 0.00639221 0.00312835) 15266
(0.0102891 0.00362908 0.00343597) 14480
(0.0102312 0.00374227 0.0036911) 14540
(0.0200751 0.00633955 0.00198053) 13480
(0.0227805 0.00635972 0.00208648) 13425
(0.0170425 0.00671943 0.00419479) 1894
(0.0175031 0.00376913 0.00482068) 10535
(0.0186092 0.0060109 0.00500034) 12337
(0.0186092 0.0060109 0.00500034) 12337
(0.0186092 0.0060109 0.00500034) 12337
(0.0166391 0.00408011 0.0012336) 11493
(0.0170229 0.00471822 0.000878454) 11614
(0.0186774 0.00460843 0.00091887) 11557
(0.016949 0.00529525 0.000682243) 11913
(0.0190372 0.00521262 0.000692183) 11918
(0.0187358 0.00299027 0.00325522) 32401
(0.0215403 0.00304309 0.00330385) 823
(0.0188796 0.00663086 0.00158108) 2497
(0.0209591 0.00657775 0.00158292) 6761
(0.012887 0.00639455 0.00289016) 13525
(0.0133844 0.00638822 0.0028917) 13526
(0.0127778 0.00441352 0.0017385) 14065
(0.0132274 0.00441681 0.00174227) 14066
(0.01282 0.00420306 0.00185988) 14125
(0.0132691 0.00420757 0.00186141) 14126
(0.0123868 0.00365794 0.00346087) 14484
(0.0128811 0.00367275 0.00346083) 14485
(0.0133692 0.00368134 0.00345939) 14486
(0.0109131 0.00373742 0.00368475) 14541
(0.0109131 0.00373742 0.00368475) 14541
(0.0109131 0.00373742 0.00368475) 14541
(0.0124001 0.00375932 0.00368263) 14544
(0.0128769 0.0037698 0.00367818) 14545
(0.0133461 0.00377576 0.00367612) 14546
(0.0107186 0.00393051 0.00391568) 14601
(0.0127225 0.00500412 0.00439574) 14845
(0.0129025 0.00639857 0.0031306) 15265
(0.0133902 0.00639242 0.00312844) 15266
(0.010057 0.00584293 0.00190022) 13760
(0.0099748 0.00557717 0.00173595) 13819
(0.0102724 0.00363007 0.00343736) 14480
(0.0102132 0.00374284 0.00369037) 14540
(0.0198488 0.00635686 0.00198375) 13479
(0.0227246 0.00635204 0.00207782) 13485
(0.0169673 0.00671724 0.00420241) 1893
(0.017472 0.00376488 0.00481544) 10534
(0.0185596 0.00600687 0.00500321) 12337
(0.0185596 0.00600687 0.00500321) 12337
(0.0185596 0.00600687 0.00500321) 12337
(0.0165459 0.00408095 0.0012277) 11493
(0.0169659 0.00472359 0.000875967) 11613
(0.01864 0.00461575 0.000917626) 11557
(0.0168823 0.00530111 0.000682287) 11853
(0.0189876 0.00521676 0.000694191) 11917
(0.0186059 0.00298557 0.00325265) 32401
(0.0214553 0.00304372 0.00330126) 822
(0.0188139 0.00663417 0.00158134) 2497
(0.0208737 0.00658139 0.00158135) 6761
(0.0128629 0.00639511 0.00289) 13525
(0.0133605 0.00638845 0.00289168) 13526
(0.0106522 0.00583423 0.00188773) 13761
(0.0127556 0.0044133 0.00173809) 14065
(0.0132053 0.00441668 0.00174212) 14066
(0.0127981 0.00420265 0.00185964) 14125
(0.0132471 0.00420735 0.00186136) 14126
(0.0108807 0.00363152 0.00344521) 14481
(0.0108807 0.00363152 0.00344521) 14481
(0.0108807 0.00363152 0.00344521) 14481
(0.0123631 0.00365714 0.00346087) 14484
(0.0128577 0.00367208 0.00346093) 14485
(0.0133456 0.00368099 0.0034595) 14486
(0.0108904 0.00373729 0.00368486) 14541
(0.0108904 0.00373729 0.00368486) 14541
(0.0108904 0.00373729 0.00368486) 14541
(0.0123772 0.00375875 0.00368292) 14544
(0.0128544 0.00376932 0.00367844) 14545
(0.0133232 0.00377549 0.00367623) 14546
(0.0106958 0.00393036 0.00391573) 14601
(0.0126997 0.0050041 0.00439625) 14845
(0.0128791 0.00639902 0.00313073) 15265
(0.0133667 0.00639265 0.00312854) 15266
(0.0100415 0.00584112 0.00190046) 13760
(0.00995931 0.00557701 0.00173745) 13819
(0.0102556 0.00363119 0.00343894) 14480
(0.0101954 0.0037435 0.00368959) 14540
(0.0196051 0.0063794 0.00198889) 13479
(0.0226662 0.00634473 0.00206989) 13485
(0.0237179 0.00656828 0.00225187) 6107
(0.0168905 0.00671517 0.00421018) 1893
(0.0174398 0.00376086 0.00481049) 10534
(0.0185084 0.00600311 0.00500606) 12337
(0.0185084 0.00600311 0.00500606) 12337
(0.0185084 0.00600311 0.00500606) 12337
(0.0164534 0.00408137 0.00122173) 11492
(0.0169081 0.00472896 0.000873394) 11613
(0.0186007 0.00462282 0.000916378) 11557
(0.016815 0.00530705 0.000682265) 11853
(0.0189353 0.0052207 0.000695955) 11917
(0.0199199 0.0050581 0.000603687) 7839
(0.0184615 0.00298031 0.00325033) 32257
(0.0213671 0.00304409 0.0032988) 822
(0.0187482 0.00663756 0.00158149) 2497
(0.0207747 0.00658634 0.00157891) 6761
(0.0128388 0.00639567 0.00288984) 13525
(0.0133366 0.00638869 0.00289165) 13526
(0.0106118 0.00634097 0.00255514) 13581
(0.0106299 0.00583441 0.00188769) 13761
(0.0106006 0.00559129 0.00173136) 13821
(0.0127334 0.00441308 0.00173768) 14065
(0.0131832 0.00441654 0.00174195) 14066
(0.0127761 0.00420223 0.00185939) 14125
(0.0132252 0.00420712 0.0018613) 14126
(0.0106587 0.00396271 0.00205989) 14181
(0.0108581 0.00363135 0.00344513) 14481
(0.0108581 0.00363135 0.00344513) 14481
(0.0108581 0.00363135 0.00344513) 14481
(0.0123395 0.00365635 0.00346086) 14484
(0.0128343 0.0036714 0.00346104) 14485
(0.013322 0.00368063 0.0034596) 14486
(0.0108677 0.00373716 0.00368496) 14541
(0.0108677 0.00373716 0.00368496) 14541
(0.0108677 0.00373716 0.00368496) 14541
(0.0123543 0.00375817 0.00368321) 14544
(0.0128318 0.00376882 0.00367871) 14545
(0.0133005 0.00377521 0.00367635) 14546
(0.010673 0.00393022 0.00391579) 14601
(0.012677 0.00500408 0.00439676) 14845
(0.0128558 0.00639947 0.00313086) 15265
(0.0133432 0.0063929 0.00312864) 15266
(0.0100254 0.00583937 0.00190073) 13760
(0.00994309 0.00557683 0.00173889) 13819
(0.0102391 0.00363241 0.00344031) 14480
(0.0101779 0.00374423 0.00368875) 14540
(0.0092736 0.00522062 0.00437943) 14898
(0.0226053 0.00633753 0.00206168) 13485
(0.0236841 0.00656023 0.00224886) 6107
(0.0168116 0.00671326 0.0042181) 1893
(0.0174065 0.00375703 0.00480584) 10534
(0.0184555 0.00599959 0.00500886) 12336
(0.0184555 0.00599959 0.00500886) 12336
(0.0184555 0.00599959 0.00500886) 12336
(0.0168493 0.00473428 0.000870739) 11613
(0.0185592 0.00462963 0.000915115) 11557
(0.0167463 0.00531303 0.000682154) 11853
(0.0188804 0.00522445 0.000697512) 11917
(0.0199394 0.00507223 0.000612484) 7839
(0.0182983 0.00297406 0.00324842) 32256
(0.0212768 0.0030442 0.00329645) 822
(0.0186821 0.00664104 0.00158159) 2497
(0.0206656 0.00659229 0.00157614) 6761
(0.0128146 0.00639624 0.00288967) 13525
(0.0133127 0.00638896 0.00289162) 13526
(0.0105895 0.00634089 0.00255492) 13581
(0.0106077 0.0058346 0.00188765) 13761
(0.0105786 0.00559128 0.00173125) 13821
(0.0127111 0.00441285 0.00173727) 14065
(0.013161 0.00441639 0.00174177) 14066
(0.0127541 0.00420181 0.00185914) 14125
(0.0132032 0.00420688 0.00186124) 14126
(0.0106358 0.00396258 0.00205982) 14181
(0.0105608 0.00359877 0.00315651) 14421
(0.0108356 0.00363117 0.00344507) 14481
(0.0108356 0.00363117 0.00344507) 14481
(0.0108356 0.00363117 0.00344507) 14481
(0.0123158 0.00365556 0.00346084) 14484
(0.0128108 0.00367071 0.00346114) 14485
(0.0132985 0.00368025 0.00345971) 14486
(0.0108451 0.00373704 0.00368506) 14541
(0.0108451 0.00373704 0.00368506) 14541
(0.0108451 0.00373704 0.00368506) 14541
(0.0113562 0.00373962 0.00368703) 14542
(0.0123315 0.0037576 0.0036835) 14544
(0.0128092 0.00376832 0.00367898) 14545
(0.0132777 0.00377492 0.00367649) 14546
(0.0106503 0.00393007 0.00391584) 14601
(0.0126542 0.00500407 0.00439727) 14845
(0.0104535 0.00622538 0.00366291) 15140
(0.0128325 0.00639992 0.00313098) 15265
(0.0133197 0.00639316 0.00312874) 15266
(0.0100087 0.00583818 0.00190149) 13760
(0.00992594 0.00557666 0.00174023) 13819
(0.00823004 0.00444458 0.00168949) 14056
(0.00893753 0.00445132 0.00171223) 14057
(0.0102225 0.00363365 0.00344154) 14480
(0.0101607 0.0037452 0.00368794) 14540
(0.00925043 0.0052235 0.00437999) 14898
(0.0225411 0.00633057 0.00205354) 13485
(0.0236502 0.00655189 0.00224526) 6107
(0.0167304 0.0067116 0.00422611) 1893
(0.0173722 0.00375343 0.00480148) 10534
(0.0184011 0.00599637 0.00501162) 12336
(0.0184011 0.00599637 0.00501162) 12336
(0.0184011 0.00599637 0.00501162) 12336
(0.0167888 0.00473949 0.000867995) 11613
(0.0185157 0.00463618 0.000913832) 11557
(0.0188228 0.00522805 0.000698866) 11917
(0.0199547 0.00508544 0.0006208) 7839
(0.0181122 0.00296634 0.00324709) 32256
(0.0211848 0.00304409 0.00329419) 822
(0.018615 0.00664454 0.0015815) 2497
(0.0205628 0.00659653 0.00157412) 6761
(0.0127905 0.00639681 0.0028895) 13525
(0.0132888 0.00638924 0.00289158) 13526
(0.0105672 0.00634082 0.00255472) 13581
(0.0105856 0.0058348 0.00188764) 13761
(0.0105566 0.00559129 0.00173114) 13821
(0.0126889 0.00441262 0.00173685) 14065
(0.0131389 0.00441625 0.00174158) 14066
(0.012732 0.00420138 0.00185889) 14125
(0.0131813 0.00420663 0.00186116) 14126
(0.010613 0.00396246 0.00205974) 14181
(0.0105389 0.00359877 0.00315657) 14421
(0.010813 0.003631 0.003445) 14481
(0.010813 0.003631 0.003445) 14481
(0.010813 0.003631 0.003445) 14481
(0.0122922 0.00365478 0.00346082) 14484
(0.0127873 0.00367001 0.00346124) 14485
(0.013275 0.00367985 0.00345983) 14486
(0.0108225 0.0037369 0.00368517) 14541
(0.0108225 0.0037369 0.00368517) 14541
(0.0108225 0.0037369 0.00368517) 14541
(0.0113336 0.00373938 0.0036871) 14542
(0.0123086 0.00375703 0.00368378) 14544
(0.0127866 0.00376781 0.00367926) 14545
(0.0132551 0.00377462 0.00367663) 14546
(0.0106276 0.00392991 0.00391588) 14601
(0.0126314 0.00500406 0.00439779) 14845
(0.010432 0.00622529 0.00366296) 15140
(0.0128091 0.00640037 0.00313111) 15265
(0.0132962 0.00639343 0.00312885) 15266
(0.00879027 0.00643307 0.00292224) 13517
(0.00999162 0.00583745 0.00190272) 13759
(0.00990818 0.00557629 0.00174144) 13819
(0.00665795 0.00440761 0.00166794) 14053
(0.00817371 0.00444184 0.00168683) 14056
(0.00891402 0.00445214 0.00171162) 14057
(0.0102062 0.00363505 0.00344273) 14480
(0.010145 0.00374702 0.00368741) 14540
(0.00922735 0.00522678 0.00438043) 14898
(0.00904598 0.00639633 0.00311016) 15258
(0.022474 0.00632416 0.00204616) 13484
(0.0236159 0.00654328 0.00224107) 6107
(0.0166468 0.00671026 0.00423417) 1893
(0.0192401 0.00665829 0.00412971) 1958
(0.017337 0.00375005 0.00479741) 10534
(0.0183451 0.00599335 0.00501439) 12336
(0.0183451 0.00599335 0.00501439) 12336
(0.0183451 0.00599335 0.00501439) 12336
(0.0167263 0.00474454 0.000865167) 11613
(0.0184706 0.00464257 0.000912534) 11556
(0.0187624 0.00523154 0.000700019) 11917
(0.0199664 0.00509789 0.000628708) 11919
(0.0179021 0.00295662 0.0032465) 32112
(0.0210898 0.0030437 0.00329204) 822
(0.0185478 0.00664807 0.00158131) 2497
(0.0204698 0.00659937 0.00157312) 6760
(0.0127664 0.0063974 0.00288933) 13525
(0.0132649 0.00638954 0.00289153) 13526
(0.0105451 0.00634075 0.00255453) 13581
(0.0105635 0.00583499 0.00188763) 13761
(0.0105347 0.0055913 0.00173104) 13821
(0.0126666 0.0044124 0.00173642) 14065
(0.0131169 0.00441609 0.00174138) 14066
(0.0127099 0.00420094 0.00185862) 14125
(0.0131595 0.00420637 0.00186108) 14126
(0.0105903 0.00396235 0.00205965) 14181
(0.0105171 0.00359876 0.00315663) 14421
(0.0107905 0.00363084 0.00344495) 14481
(0.0107905 0.00363084 0.00344495) 14481
(0.0107905 0.00363084 0.00344495) 14481
(0.0122686 0.003654 0.00346079) 14484
(0.0127638 0.0036693 0.00346134) 14485
(0.0132515 0.00367944 0.00345994) 14486
(0.0107999 0.00373677 0.00368526) 14541
(0.0107999 0.00373677 0.00368526) 14541
(0.0107999 0.00373677 0.00368526) 14541
(0.0113109 0.00373916 0.00368717) 14542
(0.0118028 0.00374585 0.00368673) 14543
(0.0122858 0.00375646 0.00368405) 14544
(0.012764 0.0037673 0.00367953) 14545
(0.0132324 0.00377431 0.00367678) 14546
(0.0106049 0.00392975 0.00391592) 14601
(0.0126086 0.00500405 0.0043983) 14845
(0.0104107 0.00622519 0.003663) 15140
(0.0127858 0.00640083 0.00313124) 15265
(0.0132727 0.00639371 0.00312896) 15266
(0.00744402 0.0064487 0.0029097) 13514
(0.00819746 0.006438 0.00292611) 13516
(0.00876597 0.00643336 0.0029225) 13517
(0.00997487 0.00583688 0.00190443) 13759
(0.00989055 0.00557547 0.00174273) 13819
(0.00668447 0.00440448 0.00167057) 14053
(0.00810799 0.00443879 0.00168405) 14056
(0.00889051 0.00445291 0.00171098) 14057
(0.0101885 0.00363617 0.00344362) 14480
(0.010028 0.00503309 0.00439798) 14840
(0.00920813 0.00523059 0.00438016) 14898
(0.00809428 0.00641144 0.0031026) 15256
(0.00845116 0.00642193 0.00308294) 15256
(0.00902293 0.00639648 0.00311013) 15258
(0.0224036 0.00631796 0.00203866) 13484
(0.0235816 0.00653445 0.00223627) 6107
(0.0191635 0.00665864 0.00413377) 1958
(0.017301 0.00374684 0.00479358) 10534
(0.0182877 0.00599037 0.00501723) 12336
(0.0182877 0.00599037 0.00501723) 12336
(0.0182877 0.00599037 0.00501723) 12336
(0.0166614 0.00474937 0.00086224) 11613
(0.0184237 0.00464878 0.000911197) 11556
(0.0186996 0.00523495 0.000700996) 11917
(0.0199746 0.00510965 0.000636226) 11919
(0.0176667 0.00294407 0.00324686) 32112
(0.0209932 0.00304309 0.00328994) 821
(0.0184803 0.00665147 0.00158101) 2496
(0.0203825 0.00660159 0.00157278) 6760
(0.0127423 0.00639798 0.00288915) 13525
(0.013241 0.00638985 0.00289148) 13526
(0.0105229 0.00634066 0.00255432) 13581
(0.0105415 0.00583519 0.00188761) 13761
(0.0105128 0.00559129 0.00173094) 13821
(0.0126443 0.00441217 0.00173599) 14065
(0.0130948 0.00441594 0.00174116) 14066
(0.0107816 0.00417671 0.00184196) 14121
(0.0107816 0.00417671 0.00184196) 14121
(0.0107816 0.00417671 0.00184196) 14121
(0.0126878 0.00420051 0.00185836) 14125
(0.0131376 0.0042061 0.00186099) 14126
(0.0105676 0.00396224 0.00205958) 14181
(0.0104953 0.00359877 0.00315671) 14420
(0.0107681 0.00363068 0.00344493) 14481
(0.0107681 0.00363068 0.00344493) 14481
(0.0107681 0.00363068 0.00344493) 14481
(0.012245 0.00365323 0.00346076) 14484
(0.0127403 0.00366858 0.00346144) 14485
(0.013228 0.00367902 0.00346006) 14486
(0.0107774 0.00373664 0.00368536) 14541
(0.0107774 0.00373664 0.00368536) 14541
(0.0107774 0.00373664 0.00368536) 14541
(0.0112883 0.00373895 0.00368726) 14542
(0.0117801 0.00374542 0.00368686) 14543
(0.0122629 0.0037559 0.00368432) 14544
(0.0127414 0.00376678 0.00367982) 14545
(0.0132098 0.003774 0.00367693) 14546
(0.0105823 0.00392961 0.00391598) 14601
(0.0125857 0.00500405 0.00439882) 14845
(0.0103894 0.00622509 0.00366303) 15140
(0.0127625 0.00640128 0.00313137) 15265
(0.0132492 0.006394 0.00312907) 15266
(0.00728721 0.00645214 0.00289703) 13514
(0.00817391 0.00643796 0.00292609) 13516
(0.00874229 0.00643355 0.00292279) 13517
(0.00672311 0.0044012 0.00167375) 14053
(0.00801268 0.00443611 0.00168159) 14056
(0.00886726 0.00445357 0.00171038) 14057
(0.00548853 0.00360691 0.0033965) 14470
(0.00445771 0.00367776 0.00366659) 14528
(0.0100123 0.00503296 0.00439664) 14840
(0.00919973 0.00523283 0.00437822) 14898
(0.00801655 0.00641509 0.00310016) 15256
(0.00881504 0.00637042 0.00308298) 15257
(0.00900175 0.00639632 0.00310982) 15258
(0.022329 0.00631209 0.00203071) 13484
(0.023547 0.00652546 0.00223098) 6107
(0.0190839 0.00665969 0.00413752) 1958
(0.0172643 0.00374381 0.00479001) 10534
(0.018229 0.00598747 0.00502014) 12336
(0.018229 0.00598747 0.00502014) 12336
(0.018229 0.00598747 0.00502014) 12336
(0.0187343 0.00404175 0.00129689) 12757
(0.0165938 0.00475392 0.000859209) 11613
(0.0183753 0.00465483 0.000909826) 11556
(0.0186345 0.00523829 0.000701797) 11917
(0.019977 0.00512045 0.000643185) 11919
(0.0174125 0.00292832 0.00324826) 31968
(0.0208955 0.00304232 0.0032879) 821
(0.0184125 0.00665471 0.00158053) 2496
(0.0203004 0.00660366 0.00157299) 6760
(0.0127182 0.00639858 0.00288897) 13525
(0.013217 0.00639018 0.00289142) 13526
(0.0105008 0.00634058 0.00255413) 13581
(0.0105196 0.00583538 0.0018876) 13761
(0.010491 0.00559129 0.00173084) 13820
(0.012622 0.00441195 0.00173555) 14065
(0.0130727 0.00441578 0.00174093) 14066
(0.0107589 0.00417654 0.00184183) 14121
(0.0107589 0.00417654 0.00184183) 14121
(0.0107589 0.00417654 0.00184183) 14121
(0.0126657 0.00420006 0.00185809) 14125
(0.0131157 0.00420583 0.00186089) 14126
(0.010545 0.00396214 0.00205951) 14181
(0.0104735 0.00359877 0.00315679) 14420
(0.0107456 0.00363052 0.00344492) 14481
(0.0107456 0.00363052 0.00344492) 14481
(0.0107456 0.00363052 0.00344492) 14481
(0.0122215 0.00365247 0.00346073) 14484
(0.0127167 0.00366786 0.00346153) 14485
(0.0132046 0.00367858 0.00346018) 14486
(0.0107549 0.00373651 0.00368546) 14541
(0.0107549 0.00373651 0.00368546) 14541
(0.0107549 0.00373651 0.00368546) 14541
(0.0112657 0.00373875 0.00368734) 14542
(0.0117575 0.00374501 0.00368699) 14543
(0.0122401 0.00375534 0.00368459) 14544
(0.0127188 0.00376626 0.0036801) 14545
(0.0131872 0.00377367 0.0036771) 14546
(0.0105597 0.00392947 0.00391603) 14601
(0.0125629 0.00500404 0.00439934) 14845
(0.0103681 0.00622499 0.00366305) 15140
(0.0127391 0.00640174 0.00313151) 15265
(0.0132258 0.00639431 0.00312919) 15266
(0.007043 0.00645715 0.00287754) 13514
(0.00815373 0.00643733 0.00292634) 13516
(0.0087379 0.00643354 0.00292288) 13517
(0.0079069 0.00443344 0.00167939) 14055
(0.00884853 0.00445449 0.00171045) 14057
(0.00542954 0.00356556 0.00335799) 14470
(0.00464434 0.00367291 0.00366297) 14529
(0.00999606 0.00503275 0.00439519) 14839
(0.00920027 0.00523381 0.00437477) 14898
(0.00790534 0.00642027 0.00309535) 15255
(0.00872272 0.00638364 0.00309817) 15257
(0.00897023 0.00639819 0.00310791) 15257
(0.0222513 0.00630692 0.00202335) 13484
(0.0235122 0.00651635 0.00222518) 6107
(0.0190016 0.00666136 0.004141) 1958
(0.0172268 0.00374094 0.00478669) 10534
(0.0181692 0.00598461 0.00502312) 12336
(0.0181692 0.00598461 0.00502312) 12336
(0.0181692 0.00598461 0.00502312) 12336
(0.0186431 0.00404583 0.00129507) 12757
(0.0183252 0.0046607 0.00090842) 11556
(0.0185671 0.00524159 0.000702414) 11917
(0.0199738 0.00513038 0.000649553) 11919
(0.0171489 0.00290918 0.00325077) 31969
(0.0207955 0.00304131 0.00328592) 821
(0.0183437 0.00665766 0.00157978) 2496
(0.0202293 0.00660574 0.00157423) 6760
(0.0126941 0.00639917 0.00288879) 13525
(0.0131931 0.00639053 0.00289136) 13526
(0.0104788 0.0063405 0.00255396) 13580
(0.0104976 0.00583557 0.0018876) 13760
(0.0104693 0.00559129 0.00173075) 13820
(0.0125997 0.00441172 0.00173511) 14065
(0.0130507 0.00441562 0.00174069) 14066
(0.0107362 0.00417637 0.0018417) 14121
(0.0107362 0.00417637 0.0018417) 14121
(0.0107362 0.00417637 0.0018417) 14121
(0.0126435 0.00419962 0.00185781) 14125
(0.0130939 0.00420554 0.00186078) 14126
(0.0105225 0.00396205 0.00205943) 14181
(0.0104518 0.00359879 0.00315687) 14420
(0.0107232 0.00363037 0.0034449) 14481
(0.0107232 0.00363037 0.0034449) 14481
(0.0107232 0.00363037 0.0034449) 14481
(0.012198 0.00365172 0.00346069) 14484
(0.0126931 0.00366712 0.00346162) 14485
(0.0131812 0.00367813 0.00346029) 14486
(0.0107324 0.00373639 0.00368557) 14541
(0.0107324 0.00373639 0.00368557) 14541
(0.0107324 0.00373639 0.00368557) 14541
(0.011243 0.00373855 0.00368742) 14542
(0.0117349 0.0037446 0.00368712) 14543
(0.0122173 0.00375478 0.00368485) 14544
(0.0126961 0.00376573 0.00368039) 14545
(0.0131646 0.00377333 0.00367727) 14546
(0.0105372 0.00392934 0.00391608) 14601
(0.0110394 0.00393003 0.00391843) 14602
(0.0125401 0.00500404 0.00439986) 14845
(0.0103469 0.00622489 0.00366306) 15140
(0.0127158 0.00640219 0.00313164) 15265
(0.0132024 0.00639463 0.00312931) 15266
(0.00709189 0.00645441 0.0028634) 13514
(0.00812641 0.00643793 0.00292601) 13516
(0.0086946 0.00643392 0.00292288) 13517
(0.00779936 0.00443058 0.00167747) 14055
(0.0088222 0.00445433 0.00170967) 14057
(0.00535808 0.0035194 0.00333092) 5350
(0.00477531 0.0036729 0.00365756) 14529
(0.00997934 0.00503242 0.00439382) 14839
(0.00860442 0.00639892 0.00310446) 15257
(0.00895381 0.00639694 0.00310965) 15257
(0.0221685 0.00630231 0.00201611) 13484
(0.023477 0.0065072 0.00221897) 6106
(0.0189167 0.0066636 0.00414426) 1957
(0.0171887 0.00373822 0.00478362) 10534
(0.0173926 0.00324275 0.00169074) 394
(0.0181083 0.00598179 0.00502616) 12336
(0.0181083 0.00598179 0.00502616) 12336
(0.0181083 0.00598179 0.00502616) 12336
(0.0198427 0.00605999 0.00496755) 12339
(0.0198427 0.00605999 0.00496755) 12339
(0.0198427 0.00605999 0.00496755) 12339
(0.0185492 0.00404971 0.00129297) 12757
(0.0182738 0.0046664 0.000906981) 11556
(0.0169062 0.0058422 0.000901068) 12153
(0.0184976 0.00524486 0.000702859) 11916
(0.0199672 0.00513979 0.000655639) 11919
(0.0168984 0.0028886 0.0032536) 31825
(0.020694 0.0030401 0.00328392) 821
(0.0182727 0.00666033 0.00157863) 2496
(0.0201648 0.00660787 0.00157603) 6760
(0.01267 0.00639977 0.0028886) 13525
(0.0131691 0.00639089 0.00289129) 13526
(0.0104568 0.00634043 0.00255381) 13580
(0.0104758 0.00583576 0.0018876) 13760
(0.0109764 0.00582776 0.00187863) 13761
(0.0104475 0.00559128 0.00173065) 13820
(0.0125774 0.00441149 0.00173466) 14065
(0.0130286 0.00441545 0.00174043) 14066
(0.0107136 0.00417621 0.00184157) 14121
(0.0107136 0.00417621 0.00184157) 14121
(0.0107136 0.00417621 0.00184157) 14121
(0.0126213 0.00419917 0.00185752) 14125
(0.0130721 0.00420525 0.00186066) 14126
(0.0105 0.00396196 0.00205936) 14181
(0.0109889 0.00396521 0.00205293) 14181
(0.0104301 0.00359881 0.00315695) 14420
(0.0107008 0.00363022 0.0034449) 14481
(0.0107008 0.00363022 0.0034449) 14481
(0.0107008 0.00363022 0.0034449) 14481
(0.0112005 0.0036314 0.00345075) 14482
(0.0121745 0.00365098 0.00346064) 14484
(0.0126695 0.00366639 0.00346171) 14485
(0.0131578 0.00367766 0.00346041) 14486
(0.0107099 0.00373628 0.00368568) 14541
(0.0107099 0.00373628 0.00368568) 14541
(0.0107099 0.00373628 0.00368568) 14541
(0.0112204 0.00373836 0.00368751) 14542
(0.0117122 0.00374421 0.00368724) 14543
(0.0121945 0.00375423 0.0036851) 14544
(0.0126735 0.0037652 0.00368067) 14545
(0.0131421 0.00377298 0.00367745) 14546
(0.0105148 0.00392922 0.00391614) 14601
(0.0110162 0.00392985 0.00391852) 14602
(0.0125172 0.00500404 0.00440038) 14845
(0.0103257 0.00622478 0.00366306) 15140
(0.0126925 0.00640265 0.00313177) 15265
(0.013179 0.00639496 0.00312943) 15266
(0.00706719 0.00645335 0.00285611) 13514
(0.00810243 0.00643794 0.00292593) 13516
(0.00869 0.00643405 0.00292291) 13517
(0.00925344 0.00642683 0.00290936) 13518
(0.00768413 0.00442744 0.00167578) 14055
(0.00879983 0.00445467 0.00170922) 14057
(0.00528738 0.0034761 0.00331345) 5410
(0.00482958 0.0036804 0.00365799) 14529
(0.00996174 0.00503201 0.00439258) 14839
(0.00974696 0.00522663 0.00435015) 14899
(0.00857316 0.00639989 0.00310673) 15257
(0.00893044 0.00639712 0.0031099) 15257
(0.0220814 0.00629815 0.00200821) 13484
(0.0234416 0.00649802 0.00221236) 6106
(0.0188291 0.00666636 0.00414731) 1897
(0.0171498 0.00373563 0.0047808) 10534
(0.0173381 0.00324791 0.00168626) 394
(0.0180465 0.00597899 0.00502928) 12336
(0.0180465 0.00597899 0.00502928) 12336
(0.0180465 0.00597899 0.00502928) 12336
(0.019804 0.00605275 0.00497089) 12339
(0.019804 0.00605275 0.00497089) 12339
(0.019804 0.00605275 0.00497089) 12339
(0.0184522 0.00405333 0.00129056) 12756
(0.0182212 0.00467194 0.00090551) 11556
(0.0168595 0.00584487 0.000902641) 12153
(0.0184261 0.00524812 0.000703152) 11916
(0.0199576 0.00514873 0.000661475) 11919
(0.0166899 0.00287009 0.00325547) 31825
(0.0205905 0.00303865 0.00328191) 821
(0.0228955 0.00300023 0.00332103) 825
(0.0181966 0.00666291 0.00157684) 2496
(0.0200976 0.00660998 0.00157755) 6760
(0.012646 0.00640037 0.00288841) 13525
(0.0131451 0.00639127 0.00289122) 13526
(0.0104348 0.00634035 0.00255369) 13580
(0.0104539 0.00583595 0.00188761) 13760
(0.0109541 0.00582795 0.00187861) 13761
(0.0104258 0.00559127 0.00173056) 13820
(0.012555 0.00441126 0.0017342) 14065
(0.0130066 0.00441528 0.00174017) 14066
(0.010691 0.00417606 0.00184144) 14121
(0.010691 0.00417606 0.00184144) 14121
(0.010691 0.00417606 0.00184144) 14121
(0.012599 0.00419871 0.00185723) 14125
(0.0130503 0.00420495 0.00186053) 14126
(0.0104777 0.0039619 0.00205928) 14180
(0.0109648 0.00396492 0.00205279) 14181
(0.0104083 0.00359883 0.00315703) 14420
(0.0106784 0.00363007 0.0034449) 14481
(0.0106784 0.00363007 0.0034449) 14481
(0.0106784 0.00363007 0.0034449) 14481
(0.0111779 0.00363117 0.00345059) 14482
(0.012151 0.00365025 0.00346059) 14484
(0.0126459 0.00366564 0.00346179) 14485
(0.0131344 0.00367719 0.00346052) 14486
(0.0106875 0.00373617 0.00368579) 14541
(0.0106875 0.00373617 0.00368579) 14541
(0.0106875 0.00373617 0.00368579) 14541
(0.0111977 0.00373818 0.0036876) 14542
(0.0116896 0.00374383 0.00368735) 14543
(0.0121716 0.00375369 0.00368535) 14544
(0.0126508 0.00376467 0.00368096) 14545
(0.0131196 0.00377263 0.00367763) 14546
(0.0104924 0.0039291 0.0039162) 14600
(0.0109929 0.00392968 0.00391862) 14601
(0.0124943 0.00500404 0.0044009) 14844
(0.0103045 0.00622467 0.00366304) 15140
(0.0126693 0.0064031 0.0031319) 15265
(0.0131556 0.0063953 0.00312955) 15266
(0.00707944 0.00645207 0.0028502) 13514
(0.00807866 0.00643792 0.00292588) 13516
(0.00866655 0.00643416 0.00292292) 13517
(0.00922866 0.00642734 0.00291031) 13518
(0.00757732 0.00442444 0.00167448) 14055
(0.00877878 0.00445502 0.00170887) 14057
(0.00483976 0.00368439 0.00366445) 14529
(0.00994356 0.00503158 0.00439143) 14839
(0.0097528 0.00523103 0.00436714) 14899
(0.00855593 0.00639927 0.00310653) 15257
(0.00890737 0.0063973 0.0031096) 15257
(0.021989 0.00629481 0.00200098) 13483
(0.0234058 0.00648884 0.00220538) 6106
(0.0187387 0.00666956 0.00415025) 1897
(0.0171103 0.00373317 0.00477823) 10534
(0.0172828 0.00325301 0.00168169) 394
(0.0179838 0.00597623 0.00503247) 12335
(0.0179838 0.00597623 0.00503247) 12335
(0.0179838 0.00597623 0.00503247) 12335
(0.0197631 0.00604592 0.00497408) 12339
(0.0197631 0.00604592 0.00497408) 12339
(0.0197631 0.00604592 0.00497408) 12339
(0.0183549 0.0040571 0.00128793) 12756
(0.0181673 0.00467732 0.000904006) 11556
(0.0168125 0.0058476 0.00090416) 12153
(0.0183527 0.0052514 0.000703297) 11916
(0.0199446 0.00515719 0.000667027) 11919
(0.0165543 0.00285875 0.00325431) 31825
(0.0204844 0.00303691 0.00327988) 820
(0.0228626 0.00300375 0.00331771) 825
(0.0181148 0.00666543 0.00157433) 2496
(0.0200324 0.00661224 0.00157919) 6760
(0.012622 0.00640097 0.00288822) 13525
(0.0131212 0.00639167 0.00289114) 13526
(0.0104129 0.00634029 0.00255361) 13580
(0.0108462 0.00635434 0.00256647) 13581
(0.0104321 0.00583613 0.00188761) 13760
(0.0109318 0.00582815 0.00187859) 13761
(0.0104042 0.00559126 0.00173048) 13820
(0.0125326 0.00441103 0.00173374) 14065
(0.0129845 0.0044151 0.00173988) 14065
(0.0106684 0.00417591 0.00184131) 14121
(0.0106684 0.00417591 0.00184131) 14121
(0.0106684 0.00417591 0.00184131) 14121
(0.0125767 0.00419825 0.00185694) 14125
(0.0130285 0.00420464 0.00186039) 14126
(0.0104553 0.00396184 0.00205919) 14180
(0.0109407 0.00396463 0.00205264) 14181
(0.0103866 0.00359887 0.00315711) 14420
(0.010656 0.00362993 0.00344491) 14481
(0.010656 0.00362993 0.00344491) 14481
(0.010656 0.00362993 0.00344491) 14481
(0.0111553 0.00363094 0.00345043) 14482
(0.0121276 0.00364953 0.00346053) 14484
(0.0126222 0.00366489 0.00346187) 14485
(0.013111 0.00367669 0.00346063) 14486
(0.010665 0.00373606 0.0036859) 14541
(0.010665 0.00373606 0.0036859) 14541
(0.010665 0.00373606 0.0036859) 14541
(0.0111751 0.003738 0.00368769) 14542
(0.011667 0.00374345 0.00368746) 14543
(0.0121488 0.00375315 0.0036856) 14544
(0.0126281 0.00376414 0.00368125) 14545
(0.0130971 0.00377226 0.00367781) 14546
(0.0104701 0.00392899 0.00391626) 14600
(0.0109697 0.00392952 0.00391873) 14601
(0.0124714 0.00500404 0.00440142) 14844
(0.0102834 0.00622457 0.003663) 15140
(0.012646 0.00640356 0.00313203) 15265
(0.0131322 0.00639566 0.00312967) 15266
(0.00705822 0.00645091 0.00284595) 13514
(0.0080549 0.00643788 0.00292582) 13516
(0.008643 0.00643426 0.00292292) 13517
(0.0092238 0.00642711 0.00291166) 13518
(0.00748034 0.00442152 0.00167346) 14054
(0.00875733 0.00445515 0.00170848) 14057
(0.00932226 0.00444417 0.00172154) 14058
(0.00484466 0.00369239 0.00367958) 14529
(0.00992478 0.00503038 0.00439114) 14839
(0.00974029 0.00523257 0.00436741) 14899
(0.00852843 0.00639996 0.00310653) 15257
(0.00888421 0.0063975 0.00310935) 15257
(0.0218905 0.00629226 0.00199427) 13483
(0.0233699 0.00647973 0.0021982) 6106
(0.0186452 0.0066732 0.00415308) 1897
(0.0170702 0.00373079 0.00477586) 10534
(0.0172266 0.00325803 0.00167702) 394
(0.0179205 0.00597347 0.00503573) 12335
(0.0179205 0.00597347 0.00503573) 12335
(0.0179205 0.00597347 0.00503573) 12335
(0.01972 0.00603947 0.00497715) 12339
(0.01972 0.00603947 0.00497715) 12339
(0.01972 0.00603947 0.00497715) 12339
(0.0182563 0.00406087 0.00128508) 12756
(0.0181126 0.00468256 0.000902462) 11616
(0.0167651 0.00585042 0.000905636) 12153
(0.0182778 0.00525475 0.000703325) 11916
(0.0199281 0.00516517 0.000672273) 11919
(0.0164597 0.00285187 0.0032513) 31681
(0.0203789 0.00303507 0.00327772) 820
(0.0228254 0.00300729 0.00331457) 825
(0.0180258 0.00666795 0.00157093) 2496
(0.0199729 0.00661474 0.00158129) 6759
(0.012598 0.00640157 0.00288802) 13525
(0.0130972 0.00639208 0.00289105) 13526
(0.010391 0.00634023 0.00255356) 13580
(0.0108233 0.00635432 0.00256619) 13581
(0.0104103 0.00583632 0.00188762) 13760
(0.0109094 0.00582835 0.00187857) 13761
(0.0103825 0.00559125 0.0017304) 13820
(0.0108246 0.00559038 0.00172394) 13821
(0.0125101 0.0044108 0.00173327) 14065
(0.0129625 0.00441492 0.00173959) 14065
(0.0106458 0.00417578 0.00184118) 14121
(0.0106458 0.00417578 0.00184118) 14121
(0.0106458 0.00417578 0.00184118) 14121
(0.0125544 0.00419779 0.00185664) 14125
(0.0130067 0.00420433 0.00186024) 14126
(0.0104331 0.0039618 0.00205911) 14180
(0.0109166 0.00396436 0.00205249) 14181
(0.0103649 0.00359891 0.00315717) 14420
(0.0106336 0.00362979 0.00344493) 14481
(0.0106336 0.00362979 0.00344493) 14481
(0.0106336 0.00362979 0.00344493) 14481
(0.0111328 0.00363072 0.00345029) 14482
(0.0121042 0.00364882 0.00346047) 14484
(0.0125985 0.00366414 0.00346193) 14485
(0.0130876 0.00367619 0.00346074) 14486
(0.0106426 0.00373596 0.00368601) 14541
(0.0106426 0.00373596 0.00368601) 14541
(0.0106426 0.00373596 0.00368601) 14541
(0.0111524 0.00373783 0.00368778) 14542
(0.0116444 0.00374309 0.00368756) 14543
(0.012126 0.00375262 0.00368583) 14544
(0.0126054 0.0037636 0.00368154) 14545
(0.0130747 0.00377189 0.003678) 14546
(0.0104479 0.00392888 0.00391632) 14600
(0.0109464 0.00392937 0.00391884) 14601
(0.0124485 0.00500405 0.00440194) 14844
(0.0102623 0.00622447 0.00366294) 15140
(0.0126227 0.00640401 0.00313216) 15265
(0.0131088 0.00639602 0.0031298) 15266
(0.00703244 0.00645076 0.00284345) 13514
(0.00803113 0.00643784 0.00292576) 13516
(0.00861945 0.00643435 0.00292292) 13517
(0.00920233 0.00642685 0.00291274) 13518
(0.0074033 0.00441885 0.00167287) 14054
(0.00872997 0.00445471 0.00170747) 14057
(0.00929224 0.00444381 0.00171943) 14058
(0.00645224 0.00413139 0.00186036) 14112
(0.00626628 0.00412256 0.00184618) 14112
(0.00559451 0.00417242 0.00176819) 14111
(0.00473458 0.00355571 0.00340418) 5349
(0.00485656 0.00370322 0.00369024) 14529
(0.00990613 0.00502915 0.00439065) 14839
(0.0097248 0.00523365 0.00436656) 14899
(0.0085052 0.00640009 0.0031065) 15257
(0.00886056 0.0063978 0.00310892) 15257
(0.0217857 0.00629037 0.0019872) 13483
(0.0233334 0.00647065 0.00219079) 6106
(0.0185489 0.00667719 0.00415586) 1897
(0.017029 0.00372843 0.00477367) 10534
(0.0171694 0.00326293 0.00167228) 394
(0.0178567 0.00597072 0.00503906) 12335
(0.0178567 0.00597072 0.00503906) 12335
(0.0178567 0.00597072 0.00503906) 12335
(0.0196747 0.0060334 0.0049801) 12339
(0.0196747 0.0060334 0.0049801) 12339
(0.0196747 0.0060334 0.0049801) 12339
(0.0181572 0.00406465 0.00128197) 12756
(0.0180571 0.00468766 0.000900874) 11616
(0.0167172 0.00585333 0.000907056) 12153
(0.0182016 0.00525821 0.000703257) 11916
(0.0199078 0.00517266 0.000677198) 11919
(0.0163679 0.00284506 0.0032483) 31680
(0.0202715 0.0030329 0.00327551) 820
(0.0227844 0.00301082 0.00331158) 825
(0.017928 0.00667058 0.00156651) 2495
(0.0199178 0.00661738 0.00158368) 6759
(0.012574 0.00640217 0.00288782) 13525
(0.0130732 0.0063925 0.00289096) 13526
(0.0103692 0.00634019 0.00255356) 13580
(0.0108004 0.0063543 0.00256592) 13581
(0.0103886 0.0058365 0.00188764) 13760
(0.0108872 0.00582855 0.00187856) 13761
(0.0103609 0.00559124 0.00173032) 13820
(0.0108027 0.00559038 0.00172387) 13821
(0.0124877 0.00441057 0.0017328) 14064
(0.0129404 0.00441474 0.00173929) 14065
(0.0106233 0.00417566 0.00184105) 14121
(0.0106233 0.00417566 0.00184105) 14121
(0.0106233 0.00417566 0.00184105) 14121
(0.012532 0.00419732 0.00185633) 14125
(0.0129849 0.00420401 0.00186009) 14125
(0.0104109 0.00396177 0.00205902) 14180
(0.0108926 0.00396409 0.00205235) 14181
(0.0103432 0.00359896 0.00315723) 14420
(0.0106113 0.00362966 0.00344495) 14481
(0.0106113 0.00362966 0.00344495) 14481
(0.0106113 0.00362966 0.00344495) 14481
(0.0111103 0.00363051 0.00345015) 14482
(0.0115963 0.00363659 0.00345608) 14483
(0.0120808 0.00364812 0.0034604) 14484
(0.0125749 0.00366338 0.003462) 14485
(0.0130643 0.00367567 0.00346084) 14486
(0.0106203 0.00373585 0.00368613) 14541
(0.0106203 0.00373585 0.00368613) 14541
(0.0106203 0.00373585 0.00368613) 14541
(0.0111297 0.00373767 0.00368788) 14542
(0.0116217 0.00374274 0.00368766) 14543
(0.0121033 0.00375209 0.00368606) 14544
(0.0125827 0.00376306 0.00368183) 14545
(0.0130522 0.00377151 0.0036782) 14546
(0.0104257 0.00392878 0.00391638) 14600
(0.0109232 0.00392921 0.00391894) 14601
(0.0124256 0.00500407 0.00440245) 14844
(0.0102412 0.00622438 0.00366286) 15140
(0.0125995 0.00640446 0.00313228) 15265
(0.0130854 0.00639639 0.00312992) 15266
(0.00700611 0.00645077 0.0028415) 13514
(0.00800759 0.00643777 0.00292573) 13516
(0.00857663 0.00643447 0.00292294) 13517
(0.00918148 0.00642643 0.00291376) 13518
(0.00734128 0.00441629 0.00167262) 14054
(0.00869722 0.00445386 0.00170595) 14057
(0.00926936 0.00444457 0.00171869) 14058
(0.00652019 0.00413248 0.00186234) 14113
(0.00627574 0.00412255 0.0018473) 14112
(0.00582223 0.00415205 0.00179898) 14111
(0.00486349 0.00351416 0.00336169) 5349
(0.00716236 0.00368947 0.00348563) 14474
(0.00488106 0.00372473 0.0036955) 14529
(0.00595463 0.00380235 0.0037597) 14531
(0.00988751 0.0050282 0.00438971) 14839
(0.00970637 0.00523556 0.00436631) 14899
(0.00848388 0.00639991 0.00310707) 15256
(0.00883918 0.00639757 0.00310967) 15257
(0.00937624 0.00638125 0.00311134) 15258
(0.021672 0.00628947 0.00198163) 13483
(0.0232959 0.00646156 0.00218315) 6106
(0.01845 0.00668152 0.0041586) 1896
(0.0169867 0.00372605 0.00477164) 10533
(0.0171113 0.00326771 0.00166745) 394
(0.0177926 0.00596795 0.00504247) 12335
(0.0177926 0.00596795 0.00504247) 12335
(0.0177926 0.00596795 0.00504247) 12335
(0.0196273 0.00602767 0.00498295) 12339
(0.0196273 0.00602767 0.00498295) 12339
(0.0196273 0.00602767 0.00498295) 12339
(0.0174358 0.00367567 0.00144313) 9214
(0.0180579 0.00406842 0.00127864) 12756
(0.0180011 0.00469264 0.000899233) 11616
(0.0166691 0.00585631 0.000908424) 12153
(0.0181244 0.00526179 0.000703091) 11916
(0.0198841 0.00517969 0.000681813) 11919
(0.020162 0.00303033 0.00327333) 820
(0.0227388 0.00301435 0.00330868) 825
(0.0178204 0.00667348 0.0015611) 2495
(0.0198629 0.00661986 0.00158579) 2499
(0.0215517 0.00657193 0.00153936) 6763
(0.0125501 0.00640277 0.00288761) 13525
(0.0130492 0.00639294 0.00289086) 13526
(0.0103474 0.00634015 0.00255361) 13580
(0.0107776 0.00635429 0.00256565) 13581
(0.0103668 0.00583668 0.00188766) 13760
(0.0108649 0.00582876 0.00187855) 13761
(0.0103393 0.00559122 0.00173024) 13820
(0.0107807 0.00559037 0.0017238) 13821
(0.0124652 0.00441034 0.00173232) 14064
(0.0129184 0.00441456 0.00173897) 14065
(0.0106008 0.00417555 0.00184092) 14121
(0.0106008 0.00417555 0.00184092) 14121
(0.0106008 0.00417555 0.00184092) 14121
(0.0110905 0.00417745 0.00184093) 14122
(0.0125096 0.00419684 0.00185602) 14125
(0.0129631 0.00420367 0.00185992) 14125
(0.0103887 0.00396176 0.00205892) 14180
(0.0108685 0.00396382 0.0020522) 14181
(0.0103215 0.00359901 0.00315728) 14420
(0.0107802 0.00358603 0.00316354) 14421
(0.010589 0.00362953 0.00344498) 14481
(0.010589 0.00362953 0.00344498) 14481
(0.010589 0.00362953 0.00344498) 14481
(0.0110877 0.00363031 0.00345002) 14482
(0.0115736 0.00363619 0.00345593) 14483
(0.0120575 0.00364744 0.00346033) 14484
(0.0125512 0.00366262 0.00346205) 14485
(0.013041 0.00367514 0.00346095) 14486
(0.0105979 0.00373576 0.00368624) 14541
(0.0105979 0.00373576 0.00368624) 14541
(0.0105979 0.00373576 0.00368624) 14541
(0.0111071 0.00373751 0.00368798) 14542
(0.0115991 0.0037424 0.00368776) 14543
(0.0120805 0.00375157 0.00368628) 14544
(0.01256 0.00376252 0.00368212) 14545
(0.0130298 0.00377112 0.0036784) 14546
(0.0104036 0.00392869 0.00391644) 14600
(0.0109 0.00392906 0.00391905) 14601
(0.0104473 0.004999 0.00441831) 14840
(0.0124027 0.00500409 0.00440296) 14844
(0.0102201 0.00622429 0.00366276) 15140
(0.0111399 0.0064191 0.00313128) 15262
(0.0125762 0.00640491 0.0031324) 15265
(0.0130621 0.00639677 0.00313004) 15266
(0.00698181 0.00645035 0.00283979) 13513
(0.00798399 0.00643774 0.00292567) 13515
(0.00855308 0.00643454 0.00292295) 13517
(0.00916082 0.00642598 0.00291465) 13518
(0.00729704 0.00441394 0.00167279) 14054
(0.00866078 0.00445262 0.00170388) 14057
(0.00924665 0.00444525 0.00171801) 14058
(0.00658996 0.00413397 0.00186456) 14113
(0.00631916 0.00412153 0.00184899) 14112
(0.00608219 0.00413296 0.00182067) 14112
(0.0049796 0.00347275 0.00333055) 5409
(0.00677245 0.00369803 0.00351507) 14473
(0.00490265 0.00375747 0.00370082) 14529
(0.00570472 0.0038073 0.0037879) 14531
(0.00986911 0.00502734 0.00438853) 14839
(0.00968675 0.00523718 0.00436595) 14899
(0.00846095 0.0064 0.00310697) 15256
(0.00881852 0.00639732 0.00310952) 15257
(0.00933126 0.00638963 0.00311246) 15258
(0.0215508 0.00628938 0.00197668) 13483
(0.0232575 0.00645248 0.00217534) 13426
(0.0183487 0.00668613 0.00416133) 1896
(0.0169432 0.00372361 0.00476978) 10533
(0.0170525 0.00327236 0.00166255) 394
(0.0177283 0.00596515 0.00504596) 12335
(0.0177283 0.00596515 0.00504596) 12335
(0.0177283 0.00596515 0.00504596) 12335
(0.0195776 0.00602226 0.00498574) 12339
(0.0195776 0.00602226 0.00498574) 12339
(0.0195776 0.00602226 0.00498574) 12339
(0.017344 0.00367927 0.00143931) 9214
(0.0179585 0.00407216 0.00127514) 11495
(0.0179446 0.00469751 0.000897539) 11615
(0.0166207 0.00585938 0.000909754) 12153
(0.0180465 0.00526552 0.000702861) 11916
(0.0198568 0.00518628 0.000686123) 11919
(0.0187352 0.00540545 0.00525057) 12517
(0.0200529 0.00302751 0.00327119) 820
(0.0226888 0.00301782 0.00330579) 825
(0.0177006 0.00667683 0.00155453) 2495
(0.0198075 0.0066222 0.00158761) 2499
(0.0215524 0.00657653 0.00155061) 6763
(0.0125262 0.00640337 0.00288741) 13525
(0.0130252 0.00639339 0.00289076) 13526
(0.0103256 0.00634012 0.00255368) 13580
(0.0107547 0.00635428 0.0025654) 13581
(0.0103451 0.00583685 0.00188768) 13760
(0.0108426 0.00582896 0.00187854) 13761
(0.0103177 0.0055912 0.00173016) 13820
(0.0107588 0.00559036 0.00172373) 13821
(0.0119774 0.00440499 0.00172342) 14063
(0.0124427 0.00441011 0.00173184) 14064
(0.0128963 0.00441437 0.00173865) 14065
(0.0105783 0.00417545 0.00184078) 14121
(0.0105783 0.00417545 0.00184078) 14121
(0.0105783 0.00417545 0.00184078) 14121
(0.0110672 0.00417722 0.00184075) 14122
(0.0124871 0.00419637 0.00185569) 14124
(0.0129413 0.00420334 0.00185974) 14125
(0.0103665 0.00396175 0.00205883) 14180
(0.0108446 0.00396357 0.00205205) 14181
(0.0102997 0.00359907 0.00315732) 14420
(0.010758 0.00358593 0.00316357) 14421
(0.0105666 0.00362941 0.00344501) 14481
(0.0105666 0.00362941 0.00344501) 14481
(0.0105666 0.00362941 0.00344501) 14481
(0.0110652 0.00363011 0.00344989) 14482
(0.011551 0.0036358 0.00345578) 14483
(0.0120342 0.00364676 0.00346026) 14484
(0.0125275 0.00366186 0.0034621) 14485
(0.0130176 0.0036746 0.00346105) 14486
(0.0105755 0.00373566 0.00368634) 14541
(0.0105755 0.00373566 0.00368634) 14541
(0.0105755 0.00373566 0.00368634) 14541
(0.0110844 0.00373736 0.00368808) 14542
(0.0115765 0.00374207 0.00368785) 14543
(0.0120577 0.00375105 0.00368649) 14544
(0.0125372 0.00376198 0.00368241) 14545
(0.0130074 0.00377072 0.0036786) 14546
(0.0103815 0.0039286 0.0039165) 14600
(0.0108769 0.00392891 0.00391915) 14601
(0.0104246 0.00499905 0.0044184) 14840
(0.0123797 0.00500411 0.00440347) 14844
(0.010199 0.0062242 0.00366265) 15140
(0.0111175 0.00641918 0.00313122) 15262
(0.012553 0.00640535 0.00313252) 15265
(0.0130388 0.00639715 0.00313016) 15266
(0.00699529 0.00644927 0.00283795) 13513
(0.0079586 0.00643807 0.00292537) 13515
(0.0085295 0.00643461 0.00292295) 13517
(0.00913882 0.00642588 0.00291517) 13518
(0.00726927 0.00441175 0.0016734) 14054
(0.0086206 0.00445094 0.00170139) 14057
(0.00922422 0.00444588 0.00171743) 14058
(0.0063291 0.00412165 0.00185012) 14112
(0.00624765 0.00412435 0.00183049) 14112
(0.00509226 0.00344304 0.00332019) 5410
(0.00647577 0.00370457 0.00354143) 14472
(0.00492912 0.00379725 0.00371333) 14529
(0.00545109 0.00379229 0.00378973) 14530
(0.00985225 0.00502658 0.00438616) 14839
(0.00966737 0.00523905 0.00436537) 14899
(0.0084336 0.0064006 0.00310715) 15256
(0.00882849 0.00639336 0.0030968) 15257
(0.0092956 0.00639405 0.00311303) 15258
(0.02142 0.00629033 0.00197233) 13482
(0.0232181 0.00644345 0.00216741) 13426
(0.0182452 0.006691 0.0041641) 1896
(0.0168985 0.00372109 0.0047681) 10533
(0.0182971 0.00378241 0.00483922) 10536
(0.0169928 0.00327685 0.00165756) 393
(0.017664 0.00596231 0.00504952) 12335
(0.017664 0.00596231 0.00504952) 12335
(0.017664 0.00596231 0.00504952) 12335
(0.0195286 0.00601703 0.00498844) 12339
(0.0195286 0.00601703 0.00498844) 12339
(0.0195286 0.00601703 0.00498844) 12339
(0.0172547 0.00368277 0.0014353) 9214
(0.0178593 0.00407593 0.00127146) 11495
(0.0178875 0.00470235 0.000895783) 11615
(0.0194284 0.00456933 0.00092684) 11558
(0.0179683 0.00526946 0.000702593) 11915
(0.0198272 0.00519253 0.000690191) 11919
(0.0186934 0.00539974 0.00525108) 11437
(0.0199424 0.00302426 0.00326906) 819
(0.0226343 0.00302123 0.00330303) 825
(0.017569 0.00668075 0.00154673) 2495
(0.0197501 0.00662452 0.00158916) 2499
(0.0215467 0.00658047 0.00156047) 6763
(0.0125023 0.00640396 0.0028872) 13525
(0.0130012 0.00639384 0.00289064) 13526
(0.0103038 0.00634009 0.00255377) 13580
(0.0107318 0.00635428 0.00256517) 13581
(0.0103234 0.00583703 0.0018877) 13760
(0.0108204 0.00582917 0.00187853) 13761
(0.0102961 0.00559118 0.00173008) 13820
(0.0107369 0.00559035 0.00172365) 13821
(0.0119539 0.00440471 0.00172293) 14063
(0.0124201 0.00440987 0.00173135) 14064
(0.0128743 0.00441418 0.00173831) 14065
(0.0105558 0.00417536 0.00184064) 14121
(0.0105558 0.00417536 0.00184064) 14121
(0.0105558 0.00417536 0.00184064) 14121
(0.0110439 0.00417699 0.00184056) 14122
(0.0124646 0.00419589 0.00185536) 14124
(0.0129194 0.00420299 0.00185955) 14125
(0.0103444 0.00396175 0.00205874) 14180
(0.0108206 0.00396332 0.00205189) 14181
(0.010278 0.00359913 0.00315736) 14420
(0.0107357 0.00358583 0.00316361) 14421
(0.0105443 0.0036293 0.00344506) 14481
(0.0105443 0.0036293 0.00344506) 14481
(0.0105443 0.0036293 0.00344506) 14481
(0.0110426 0.00362991 0.00344977) 14482
(0.0115283 0.00363543 0.00345563) 14483
(0.012011 0.00364611 0.00346018) 14484
(0.0125038 0.00366109 0.00346214) 14485
(0.0129943 0.00367404 0.00346115) 14485
(0.0105531 0.00373556 0.00368645) 14541
(0.0105531 0.00373556 0.00368645) 14541
(0.0105531 0.00373556 0.00368645) 14541
(0.0110618 0.00373721 0.00368818) 14542
(0.0115539 0.00374175 0.00368795) 14543
(0.0120349 0.00375054 0.0036867) 14544
(0.0125145 0.00376144 0.0036827) 14545
(0.012985 0.00377031 0.00367881) 14545
(0.0103594 0.00392852 0.00391656) 14600
(0.0108537 0.00392876 0.00391926) 14601
(0.0104019 0.00499912 0.00441849) 14840
(0.0123568 0.00500413 0.00440398) 14844
(0.0101778 0.00622411 0.00366253) 15140
(0.0110951 0.00641927 0.00313117) 15262
(0.0125297 0.00640579 0.00313264) 15265
(0.0130154 0.00639754 0.00313028) 15266
(0.00704545 0.00644712 0.00283596) 13514
(0.00789883 0.00644075 0.00292345) 13515
(0.00850686 0.00643449 0.00292304) 13517
(0.00911547 0.00642609 0.00291529) 13518
(0.00725817 0.00440958 0.00167455) 14054
(0.00857715 0.00444886 0.00169855) 14057
(0.00920183 0.00444642 0.0017169) 14058
(0.00633903 0.00412181 0.00185113) 14112
(0.00631896 0.0041213 0.00183461) 14112
(0.00518445 0.00343188 0.00332054) 5410
(0.006187 0.00370931 0.00356984) 14472
(0.00526051 0.00374936 0.00375948) 14530
(0.00983462 0.00502553 0.00438389) 14839
(0.00964617 0.00524121 0.00436525) 14899
(0.00838413 0.00640393 0.00310735) 15256
(0.00900154 0.00636702 0.00305741) 15258
(0.0092747 0.00639361 0.00311238) 15258
(0.0212787 0.00629267 0.00196969) 13482
(0.0231775 0.00643446 0.00215927) 13426
(0.0181396 0.00669611 0.00416693) 1896
(0.0168523 0.00371846 0.00476659) 10533
(0.0182718 0.0037767 0.00483232) 10536
(0.0169323 0.00328115 0.00165249) 393
(0.0175994 0.00595942 0.00505318) 12335
(0.0175994 0.00595942 0.00505318) 12335
(0.0175994 0.00595942 0.00505318) 12335
(0.0194838 0.0060118 0.00499113) 12338
(0.0194838 0.0060118 0.00499113) 12338
(0.0194838 0.0060118 0.00499113) 12338
(0.0171671 0.00368609 0.00143111) 9214
(0.0177608 0.00407968 0.00126758) 11495
(0.01783 0.00470715 0.000893967) 11615
(0.0193967 0.00457797 0.000926004) 11558
(0.0178896 0.00527361 0.000702297) 11915
(0.0197956 0.00519846 0.000694022) 11919
(0.0186506 0.00539438 0.00525167) 11437
(0.0198326 0.00302076 0.00326688) 819
(0.0225746 0.00302451 0.00330039) 825
(0.0174265 0.00668557 0.00153781) 2494
(0.0196914 0.00662681 0.00159051) 2499
(0.0215336 0.00658374 0.00156879) 6763
(0.0124785 0.00640456 0.00288699) 13524
(0.0129772 0.00639431 0.00289053) 13525
(0.010282 0.00634007 0.00255389) 13580
(0.010709 0.00635429 0.00256495) 13581
(0.0103016 0.00583719 0.00188772) 13760
(0.0107982 0.00582938 0.00187853) 13761
(0.0102745 0.00559117 0.00173001) 13820
(0.010715 0.00559033 0.00172357) 13821
(0.0119303 0.00440443 0.00172244) 14063
(0.0123975 0.00440964 0.00173086) 14064
(0.0128522 0.00441399 0.00173796) 14065
(0.0110206 0.00417677 0.00184037) 14122
(0.01197 0.00418695 0.00184818) 14123
(0.0124421 0.00419541 0.00185503) 14124
(0.0128976 0.00420264 0.00185936) 14125
(0.0103224 0.00396176 0.00205864) 14180
(0.0107967 0.00396309 0.00205174) 14181
(0.0107135 0.00358574 0.00316364) 14421
(0.010522 0.0036292 0.00344511) 14481
(0.010522 0.0036292 0.00344511) 14481
(0.010522 0.0036292 0.00344511) 14481
(0.0110201 0.00362972 0.00344966) 14482
(0.0115057 0.00363506 0.00345547) 14483
(0.0119878 0.00364546 0.0034601) 14483
(0.0124801 0.00366032 0.00346217) 14484
(0.0129709 0.00367348 0.00346125) 14485
(0.0105308 0.00373547 0.00368654) 14541
(0.0105308 0.00373547 0.00368654) 14541
(0.0105308 0.00373547 0.00368654) 14541
(0.0110391 0.00373707 0.00368828) 14542
(0.0115313 0.00374145 0.00368804) 14543
(0.0120121 0.00375004 0.00368689) 14544
(0.0124917 0.00376089 0.00368299) 14544
(0.0129626 0.00376989 0.00367903) 14545
(0.0103374 0.00392844 0.00391662) 14600
(0.0108306 0.0039286 0.00391936) 14601
(0.0103793 0.00499919 0.00441856) 14840
(0.0123338 0.00500415 0.00440448) 14844
(0.0101567 0.00622403 0.0036624) 15140
(0.0110727 0.00641935 0.00313111) 15262
(0.0125065 0.00640623 0.00313275) 15265
(0.0129921 0.00639794 0.0031304) 15265
(0.00589963 0.00641884 0.00283734) 13511
(0.00774616 0.00644716 0.00291682) 13515
(0.00850308 0.00643442 0.00292307) 13517
(0.00909218 0.00642623 0.00291528) 13518
(0.00724788 0.00440699 0.00167588) 14054
(0.00853144 0.00444637 0.00169553) 14057
(0.00917946 0.00444687 0.00171641) 14058
(0.00634856 0.00412206 0.00185219) 14112
(0.0063952 0.00411878 0.00183836) 14112
(0.00524436 0.00344345 0.00332327) 5410
(0.00595702 0.00370023 0.00357559) 14531
(0.00962605 0.00524254 0.00436438) 14899
(0.00828963 0.00641169 0.00310418) 15256
(0.00899058 0.00635643 0.00306191) 15257
(0.00925236 0.00639354 0.0031121) 15258
(0.0211265 0.00629643 0.00196763) 13482
(0.0231354 0.00642549 0.00215083) 13426
(0.0180322 0.00670141 0.00416984) 1896
(0.0168046 0.0037157 0.00476527) 10533
(0.018245 0.00377132 0.00482579) 10536
(0.016871 0.00328524 0.00164735) 393
(0.0175343 0.00595647 0.00505692) 12335
(0.0175343 0.00595647 0.00505692) 12335
(0.0175343 0.00595647 0.00505692) 12335
(0.0194399 0.00600677 0.00499382) 12338
(0.0194399 0.00600677 0.00499382) 12338
(0.0194399 0.00600677 0.00499382) 12338
(0.0170813 0.00368931 0.00142669) 9214
(0.017663 0.00408323 0.00126353) 11495
(0.0177722 0.00471195 0.000892083) 11615
(0.0193645 0.00458645 0.000925158) 11558
(0.0178102 0.00527795 0.000701952) 11915
(0.0197615 0.00520403 0.000697589) 11919
(0.0186067 0.00538936 0.00525234) 11437
(0.0197216 0.00301684 0.00326473) 819
(0.0225102 0.00302766 0.00329789) 825
(0.0172764 0.00669151 0.00152826) 2494
(0.0196306 0.00662913 0.00159163) 2499
(0.0215085 0.0065865 0.00157504) 6763
(0.0124547 0.00640515 0.00288677) 13524
(0.0129532 0.0063948 0.00289041) 13525
(0.0102603 0.00634005 0.00255402) 13580
(0.0106862 0.0063543 0.00256475) 13581
(0.0102799 0.00583733 0.00188772) 13760
(0.010776 0.00582959 0.00187853) 13761
(0.0102528 0.00559117 0.00172995) 13820
(0.0106932 0.00559031 0.00172348) 13821
(0.0119066 0.00440418 0.00172193) 14063
(0.0123749 0.00440938 0.00173038) 14064
(0.0128301 0.00441378 0.00173761) 14065
(0.0109973 0.00417655 0.00184018) 14121
(0.0119464 0.00418645 0.0018478) 14123
(0.0124194 0.00419494 0.00185468) 14124
(0.0128758 0.00420228 0.00185915) 14125
(0.0103003 0.00396177 0.00205855) 14180
(0.0107728 0.00396286 0.00205158) 14181
(0.0106913 0.00358565 0.00316368) 14421
(0.0104996 0.0036291 0.00344517) 14480
(0.0104996 0.0036291 0.00344517) 14480
(0.0104996 0.0036291 0.00344517) 14480
(0.0109975 0.00362954 0.00344956) 14481
(0.011483 0.00363471 0.00345531) 14482
(0.0119647 0.00364483 0.00346002) 14483
(0.0124564 0.00365955 0.00346219) 14484
(0.0129476 0.0036729 0.00346135) 14485
(0.0105084 0.00373537 0.00368664) 14541
(0.0105084 0.00373537 0.00368664) 14541
(0.0105084 0.00373537 0.00368664) 14541
(0.0110164 0.00373693 0.00368839) 14542
(0.0115087 0.00374115 0.00368812) 14543
(0.0119894 0.00374954 0.00368708) 14543
(0.0124689 0.00376035 0.00368328) 14544
(0.0129402 0.00376947 0.00367924) 14545
(0.0103153 0.00392838 0.00391669) 14600
(0.0108076 0.00392844 0.00391945) 14601
(0.0103567 0.00499925 0.00441863) 14840
(0.0123109 0.00500416 0.00440498) 14844
(0.0101355 0.00622394 0.00366226) 15140
(0.0110502 0.00641943 0.00313106) 15262
(0.0124833 0.00640666 0.00313286) 15264
(0.0129689 0.00639834 0.00313051) 15265
(0.00582396 0.00642031 0.00283597) 13511
(0.00756479 0.00645346 0.00290575) 13515
(0.00847965 0.00643444 0.00292308) 13516
(0.00906896 0.00642636 0.00291527) 13518
(0.00723922 0.00440395 0.00167749) 14054
(0.00848275 0.00444356 0.00169242) 14056
(0.00915726 0.00444726 0.00171598) 14058
(0.00638829 0.00412152 0.00185359) 14112
(0.00647607 0.00411675 0.00184174) 14112
(0.00680291 0.0041603 0.00179988) 14113
(0.00529232 0.00347576 0.00332474) 5410
(0.00578872 0.00367803 0.00355104) 14471
(0.00960509 0.005244 0.00436379) 14899
(0.00819348 0.00641793 0.0031007) 15256
(0.00896884 0.00635803 0.00306368) 15257
(0.00922961 0.00639358 0.00311199) 15258
(0.0209634 0.00630187 0.00196681) 13481
(0.0230918 0.00641652 0.00214208) 13426
(0.0179233 0.00670683 0.0041729) 1895
(0.0167553 0.00371276 0.00476413) 10533
(0.0182166 0.00376626 0.00481962) 10536
(0.016809 0.00328911 0.0016421) 393
(0.0174691 0.00595347 0.00506076) 12574
(0.0174691 0.00595347 0.00506076) 12574
(0.0174691 0.00595347 0.00506076) 12574
(0.0193958 0.00600198 0.00499647) 12338
(0.0193958 0.00600198 0.00499647) 12338
(0.0193958 0.00600198 0.00499647) 12338
(0.0169976 0.00369252 0.00142199) 9213
(0.0175659 0.00408668 0.00125922) 11495
(0.0177141 0.00471677 0.000890128) 11615
(0.0193316 0.00459472 0.000924305) 11558
(0.0177304 0.0052825 0.000701565) 11915
(0.0197244 0.00520919 0.000700853) 11919
(0.0185619 0.00538469 0.00525309) 11437
(0.019609 0.00301252 0.00326263) 819
(0.0224416 0.00303067 0.00329547) 824
(0.0171257 0.00669863 0.00151885) 2494
(0.019568 0.00663153 0.00159253) 2499
(0.0214702 0.00658901 0.00157916) 6762
(0.0124309 0.00640573 0.00288654) 13524
(0.0129292 0.00639529 0.00289028) 13525
(0.0102384 0.00634004 0.00255417) 13580
(0.0106634 0.00635432 0.00256456) 13581
(0.0102581 0.00583746 0.00188771) 13760
(0.0107538 0.0058298 0.00187853) 13761
(0.0102312 0.00559117 0.00172989) 13820
(0.0106713 0.00559029 0.00172339) 13821
(0.0118828 0.00440393 0.00172142) 14063
(0.0123522 0.00440912 0.00172989) 14064
(0.012808 0.00441358 0.00173725) 14065
(0.010974 0.00417633 0.00183998) 14121
(0.0114457 0.0041794 0.0018423) 14122
(0.0119226 0.00418594 0.00184742) 14123
(0.0123968 0.00419447 0.00185433) 14124
(0.0128539 0.00420192 0.00185894) 14125
(0.0102782 0.0039618 0.00205845) 14180
(0.0107489 0.00396264 0.00205142) 14181
(0.010669 0.00358557 0.00316371) 14421
(0.0104773 0.003629 0.00344523) 14480
(0.0104773 0.003629 0.00344523) 14480
(0.0104773 0.003629 0.00344523) 14480
(0.010975 0.00362935 0.00344946) 14481
(0.0114604 0.00363437 0.00345515) 14482
(0.0119416 0.00364422 0.00345993) 14483
(0.0124327 0.00365878 0.00346221) 14484
(0.0129243 0.0036723 0.00346145) 14485
(0.010486 0.00373527 0.00368673) 14540
(0.010486 0.00373527 0.00368673) 14540
(0.010486 0.00373527 0.00368673) 14540
(0.0109938 0.00373679 0.00368849) 14541
(0.0114861 0.00374086 0.00368821) 14542
(0.0119666 0.00374905 0.00368726) 14543
(0.0124462 0.0037598 0.00368357) 14544
(0.0129178 0.00376904 0.00367947) 14545
(0.0102933 0.00392832 0.00391675) 14600
(0.0107845 0.00392827 0.00391953) 14601
(0.0103342 0.00499931 0.0044187) 14840
(0.0122879 0.00500418 0.00440548) 14844
(0.0101143 0.00622386 0.00366211) 15140
(0.0110278 0.00641951 0.003131) 15262
(0.0115027 0.00641804 0.00313365) 15263
(0.0124601 0.00640709 0.00313297) 15264
(0.0129456 0.00639875 0.00313063) 15265
(0.00574536 0.00642225 0.00283408) 13511
(0.00738854 0.00645742 0.00289078) 13514
(0.00845624 0.00643446 0.00292309) 13516
(0.00904577 0.00642648 0.00291525) 13518
(0.00723593 0.00440073 0.00167938) 14054
(0.00843364 0.00444053 0.00168937) 14056
(0.00913524 0.00444763 0.00171556) 14058
(0.00639791 0.00412186 0.00185451) 14112
(0.00651842 0.00411589 0.00184417) 14113
(0.00660722 0.00415712 0.00180025) 14113
(0.0056871 0.00365409 0.00351154) 14471
(0.00958541 0.00524456 0.0043625) 14899
(0.0081208 0.00642162 0.00309694) 15256
(0.00889717 0.00637997 0.00308979) 15257
(0.00920685 0.00639366 0.00311181) 15258
(0.0207861 0.00630931 0.00196738) 13481
(0.0230467 0.00640766 0.0021331) 13426
(0.0178153 0.00671153 0.0041767) 1895
(0.0167043 0.0037096 0.00476319) 10533
(0.0181867 0.00376148 0.0048138) 10536
(0.016746 0.00329276 0.00163675) 393
(0.0174038 0.00595046 0.00506467) 12574
(0.0174038 0.00595046 0.00506467) 12574
(0.0174038 0.00595046 0.00506467) 12574
(0.0193504 0.00599743 0.00499907) 12338
(0.0193504 0.00599743 0.00499907) 12338
(0.0193504 0.00599743 0.00499907) 12338
(0.0169162 0.00369575 0.00141703) 9213
(0.0174698 0.00408998 0.00125461) 11494
(0.017656 0.00472163 0.000888101) 11615
(0.019298 0.00460279 0.000923429) 11558
(0.0176533 0.00528735 0.000701293) 11915
(0.0196844 0.00521395 0.000703813) 11919
(0.0185161 0.00538036 0.0052539) 11437
(0.0194963 0.00300802 0.00326049) 818
(0.0223677 0.00303344 0.00329319) 824
(0.016984 0.0067068 0.00151034) 2493
(0.0195032 0.00663404 0.00159317) 2499
(0.0214199 0.00659141 0.00158148) 6762
(0.0124072 0.00640631 0.00288632) 13524
(0.0129052 0.00639578 0.00289015) 13525
(0.0102167 0.00634003 0.00255434) 13580
(0.0106406 0.00635434 0.00256438) 13581
(0.0102363 0.00583759 0.0018877) 13760
(0.0107317 0.00583001 0.00187852) 13761
(0.0112185 0.00582307 0.00187503) 13762
(0.0102095 0.00559118 0.00172983) 13820
(0.0106494 0.00559028 0.0017233) 13821
(0.0113899 0.00440031 0.00171554) 14062
(0.0118589 0.00440368 0.00172091) 14063
(0.0123295 0.00440886 0.0017294) 14064
(0.0127859 0.00441337 0.00173689) 14065
(0.0109506 0.00417612 0.00183979) 14121
(0.0114215 0.00417902 0.00184199) 14122
(0.0118987 0.00418544 0.00184705) 14123
(0.012374 0.00419399 0.00185397) 14124
(0.012832 0.00420155 0.00185872) 14125
(0.0102562 0.00396184 0.00205836) 14180
(0.0107251 0.00396242 0.00205126) 14181
(0.0106468 0.00358548 0.00316375) 14421
(0.0104549 0.00362891 0.0034453) 14480
(0.0104549 0.00362891 0.0034453) 14480
(0.0104549 0.00362891 0.0034453) 14480
(0.0109524 0.00362917 0.00344938) 14481
(0.0114378 0.00363404 0.00345499) 14482
(0.0119185 0.00364362 0.00345984) 14483
(0.012409 0.00365801 0.00346222) 14484
(0.0129009 0.0036717 0.00346155) 14485
(0.0104636 0.00373518 0.00368682) 14540
(0.0104636 0.00373518 0.00368682) 14540
(0.0104636 0.00373518 0.00368682) 14540
(0.0109711 0.00373665 0.00368859) 14541
(0.0114634 0.00374059 0.0036883) 14542
(0.0119439 0.00374857 0.00368744) 14543
(0.0124234 0.00375926 0.00368385) 14544
(0.0128953 0.0037686 0.0036797) 14545
(0.0102713 0.00392826 0.00391681) 14600
(0.0107615 0.00392811 0.00391962) 14601
(0.0103117 0.00499937 0.00441876) 14840
(0.0122649 0.0050042 0.00440597) 14844
(0.0102019 0.00527553 0.00438643) 14900
(0.0110053 0.0064196 0.00313095) 15262
(0.01148 0.0064182 0.0031336) 15262
(0.0124369 0.00640751 0.00313308) 15264
(0.0129223 0.00639917 0.00313075) 15265
(0.0056464 0.00642487 0.00283075) 13511
(0.00730635 0.00645757 0.0028756) 13514
(0.00843291 0.00643445 0.0029231) 13516
(0.00902258 0.00642661 0.00291522) 13518
(0.00724651 0.00439784 0.00168163) 14054
(0.00838308 0.00443721 0.0016863) 14056
(0.00911326 0.00444798 0.00171515) 14058
(0.00640631 0.00412239 0.00185515) 14112
(0.00656762 0.00411519 0.00184624) 14113
(0.00656329 0.00415439 0.00180144) 14113
(0.00560637 0.00363179 0.00347083) 14471
(0.0048205 0.00367091 0.00366082) 14529
(0.00601046 0.00504203 0.00446013) 14832
(0.00956609 0.00524463 0.00436084) 14899
(0.00806741 0.00642381 0.00309289) 15256
(0.0088374 0.00638971 0.00310172) 15257
(0.00918393 0.00639382 0.00311149) 15258
(0.020596 0.00631872 0.00196856) 13481
(0.0229997 0.00639885 0.00212376) 13425
(0.0177116 0.00671457 0.00418163) 1895
(0.0181554 0.00375699 0.00480831) 10536
(0.0166823 0.00329621 0.00163131) 393
(0.0173385 0.00594743 0.00506867) 12574
(0.0173385 0.00594743 0.00506867) 12574
(0.0173385 0.00594743 0.00506867) 12574
(0.0193031 0.00599313 0.0050016) 12338
(0.0193031 0.00599313 0.0050016) 12338
(0.0193031 0.00599313 0.0050016) 12338
(0.0168371 0.00369895 0.00141186) 9213
(0.0173749 0.004093 0.00124971) 11494
(0.0175978 0.00472654 0.000885993) 11615
(0.019264 0.00461068 0.000922501) 11558
(0.0175842 0.00529264 0.00070134) 11915
(0.0196416 0.0052184 0.000706509) 11919
(0.0184694 0.00537639 0.00525478) 11436
(0.019382 0.00300338 0.00325832) 818
(0.0222898 0.00303599 0.00329101) 824
(0.0194378 0.00663671 0.00159366) 2498
(0.0213568 0.00659399 0.00158217) 6762
(0.0123835 0.00640689 0.00288609) 13524
(0.0128812 0.00639629 0.00289001) 13525
(0.0101948 0.00634003 0.00255452) 13580
(0.0106178 0.00635437 0.00256422) 13581
(0.0102144 0.00583769 0.00188767) 13760
(0.0107095 0.00583021 0.00187851) 13761
(0.0111957 0.00582333 0.00187495) 13762
(0.0101879 0.00559121 0.00172979) 13820
(0.0106275 0.00559026 0.0017232) 13821
(0.0113654 0.00440012 0.00171514) 14062
(0.0118348 0.00440343 0.00172039) 14063
(0.0123067 0.00440859 0.00172891) 14064
(0.0127638 0.00441317 0.00173651) 14065
(0.0109273 0.0041759 0.00183959) 14121
(0.0113972 0.00417864 0.00184169) 14122
(0.0118748 0.00418493 0.00184667) 14123
(0.0123512 0.00419351 0.00185361) 14124
(0.0128101 0.00420118 0.00185849) 14125
(0.0102341 0.00396188 0.00205826) 14180
(0.0107013 0.00396222 0.00205111) 14181
(0.0111593 0.00396556 0.00204923) 14182
(0.0106245 0.0035854 0.00316379) 14421
(0.0104326 0.00362883 0.00344538) 14480
(0.0104326 0.00362883 0.00344538) 14480
(0.0104326 0.00362883 0.00344538) 14480
(0.0109298 0.00362899 0.0034493) 14481
(0.0114152 0.00363373 0.00345483) 14482
(0.0118955 0.00364303 0.00345974) 14483
(0.0123853 0.00365725 0.00346223) 14484
(0.0128775 0.00367108 0.00346165) 14485
(0.0104412 0.00373508 0.00368691) 14540
(0.0104412 0.00373508 0.00368691) 14540
(0.0104412 0.00373508 0.00368691) 14540
(0.0109484 0.00373652 0.00368869) 14541
(0.0114408 0.00374032 0.00368839) 14542
(0.0119211 0.00374809 0.00368761) 14543
(0.0124006 0.00375872 0.00368413) 14544
(0.0128729 0.00376816 0.00367993) 14545
(0.0102493 0.0039282 0.00391687) 14600
(0.0107385 0.00392794 0.00391971) 14601
(0.0112213 0.00392927 0.00391831) 14602
(0.0102893 0.00499942 0.00441881) 14840
(0.0117617 0.00500429 0.00441395) 14843
(0.0122419 0.00500422 0.00440646) 14844
(0.0101792 0.00527541 0.00438658) 14900
(0.0109828 0.00641969 0.00313089) 15261
(0.0114573 0.00641835 0.00313355) 15262
(0.0124137 0.00640793 0.00313318) 15264
(0.012899 0.00639958 0.00313086) 15265
(0.00551595 0.00642827 0.0028236) 13511
(0.00732079 0.00645525 0.00286342) 13514
(0.00840971 0.00643442 0.00292312) 13516
(0.00899949 0.00642671 0.0029152) 13517
(0.00725961 0.00439472 0.00168411) 14054
(0.00831281 0.00443403 0.00168365) 14056
(0.0090912 0.00444827 0.00171476) 14058
(0.00647612 0.00412247 0.00185736) 14112
(0.00661562 0.00411472 0.00184848) 14113
(0.00646381 0.00415262 0.00180176) 14112
(0.00554523 0.00361189 0.00343507) 14471
(0.00484242 0.00367466 0.00366672) 14529
(0.00592775 0.00504932 0.00446058) 14831
(0.00954661 0.00524439 0.00435894) 14899
(0.00802414 0.00642529 0.00308893) 15256
(0.00880064 0.00639279 0.00310567) 15257
(0.0091608 0.00639407 0.00311116) 15258
(0.0203922 0.00633055 0.0019705) 13480
(0.0229504 0.00639006 0.00211417) 13425
(0.0176244 0.006714 0.00418826) 1895
(0.0181227 0.00375274 0.00480312) 10536
(0.0166179 0.00329945 0.00162578) 393
(0.0172733 0.00594439 0.00507272) 12574
(0.0172733 0.00594439 0.00507272) 12574
(0.0172733 0.00594439 0.00507272) 12574
(0.0192542 0.00598907 0.00500409) 12338
(0.0192542 0.00598907 0.00500409) 12338
(0.0192542 0.00598907 0.00500409) 12338
(0.0167597 0.00370202 0.00140657) 9213
(0.0172799 0.00409551 0.00124458) 11494
(0.0175395 0.0047315 0.000883805) 11615
(0.019229 0.00461838 0.000921537) 11558
(0.0175169 0.00529811 0.00070142) 11915
(0.0195963 0.0052226 0.000708967) 11919
(0.0184218 0.00537276 0.00525572) 11436
(0.0192646 0.00299865 0.00325612) 32545
(0.0222074 0.00303826 0.00328894) 824
(0.0193724 0.00663953 0.00159405) 2498
(0.0212792 0.0065972 0.00158138) 6762
(0.0123599 0.00640746 0.00288586) 13524
(0.0128572 0.0063968 0.00288987) 13525
(0.010173 0.00634003 0.00255474) 13580
(0.010595 0.0063544 0.00256407) 13581
(0.0101926 0.00583778 0.00188763) 13760
(0.0106873 0.00583041 0.0018785) 13761
(0.011173 0.00582359 0.00187487) 13762
(0.0101662 0.00559124 0.00172974) 13820
(0.0106055 0.00559025 0.0017231) 13821
(0.0113407 0.00439992 0.00171474) 14062
(0.0118107 0.00440318 0.00171988) 14063
(0.0122838 0.00440832 0.00172842) 14064
(0.0127416 0.00441296 0.00173613) 14065
(0.0109039 0.00417569 0.00183939) 14121
(0.0113729 0.00417826 0.00184139) 14122
(0.0118508 0.00418443 0.00184629) 14123
(0.0123284 0.00419304 0.00185324) 14124
(0.0127881 0.00420079 0.00185826) 14125
(0.0102121 0.00396193 0.00205816) 14180
(0.0106776 0.00396202 0.00205095) 14181
(0.011133 0.00396506 0.00204898) 14182
(0.0106023 0.00358533 0.00316384) 14421
(0.0104102 0.00362875 0.00344546) 14480
(0.0104102 0.00362875 0.00344546) 14480
(0.0104102 0.00362875 0.00344546) 14480
(0.0109073 0.00362882 0.00344923) 14481
(0.0113926 0.00363342 0.00345467) 14482
(0.0118725 0.00364245 0.00345964) 14483
(0.0123616 0.00365648 0.00346223) 14484
(0.0128541 0.00367046 0.00346175) 14485
(0.0104188 0.00373498 0.00368699) 14540
(0.0104188 0.00373498 0.00368699) 14540
(0.0104188 0.00373498 0.00368699) 14540
(0.0109258 0.00373638 0.00368879) 14541
(0.0114181 0.00374006 0.00368848) 14542
(0.0118983 0.00374763 0.00368777) 14543
(0.0123777 0.00375818 0.00368441) 14544
(0.0128505 0.00376771 0.00368017) 14545
(0.0102273 0.00392814 0.00391692) 14600
(0.0107155 0.00392777 0.0039198) 14601
(0.0111975 0.00392902 0.00391848) 14602
(0.0102669 0.00499946 0.00441886) 14840
(0.0117387 0.00500422 0.00441429) 14843
(0.0122188 0.00500423 0.00440695) 14844
(0.0101566 0.00527527 0.00438672) 14900
(0.0109603 0.00641977 0.00313084) 15261
(0.0114347 0.0064185 0.0031335) 15262
(0.0119077 0.00641528 0.0031345) 15263
(0.0123906 0.00640834 0.00313328) 15264
(0.0128758 0.0064 0.00313098) 15265
(0.00158971 0.00649722 0.00290072) 6123
(0.00525612 0.00643246 0.00279413) 13510
(0.00738453 0.00645178 0.00285499) 13514
(0.00836517 0.00643479 0.00292297) 13516
(0.00897627 0.00642686 0.00291524) 13517
(0.00728016 0.0043922 0.00168662) 14054
(0.00822712 0.00443026 0.00168095) 14056
(0.00906923 0.00444853 0.00171441) 14058
(0.00654801 0.00412299 0.00185983) 14113
(0.006665 0.00411431 0.00184996) 14113
(0.00637032 0.00414935 0.00180311) 14112
(0.00550052 0.00359288 0.00340784) 14471
(0.00484921 0.00367894 0.00367844) 14529
(0.00587885 0.00505539 0.00446061) 14831
(0.00952616 0.00524458 0.00435752) 14899
(0.00799073 0.00642606 0.00308542) 15255
(0.00875727 0.00639693 0.00310908) 15257
(0.00913482 0.00639494 0.00311232) 15258
(0.0201739 0.00634521 0.00197299) 13480
(0.0228993 0.00638149 0.0021046) 13425
(0.0239148 0.00661118 0.00225965) 6107
(0.017546 0.00671216 0.00419555) 1895
(0.0180886 0.00374873 0.00479822) 10536
(0.017208 0.00594131 0.00507684) 12574
(0.017208 0.00594131 0.00507684) 12574
(0.017208 0.00594131 0.00507684) 12574
(0.0192035 0.00598526 0.00500654) 12338
(0.0192035 0.00598526 0.00500654) 12338
(0.0192035 0.00598526 0.00500654) 12338
(0.0171848 0.00409736 0.00123925) 11494
(0.017481 0.00473651 0.000881537) 11614
(0.0191922 0.00462586 0.00092055) 11558
(0.0174497 0.00530367 0.000701448) 11854
(0.0195485 0.0052266 0.00071121) 11919
(0.0183735 0.00536948 0.0052567) 11436
(0.0191427 0.00299402 0.00325384) 32545
(0.0221207 0.00304024 0.00328697) 824
(0.0193069 0.00664247 0.00159435) 2498
(0.0211877 0.00660134 0.00157951) 6762
(0.0118518 0.00641798 0.00288112) 13523
(0.0123363 0.00640802 0.00288564) 13524
(0.0128332 0.00639733 0.00288972) 13525
(0.0105723 0.00635443 0.00256394) 13581
(0.0101707 0.00583786 0.00188759) 13760
(0.0106652 0.0058306 0.00187848) 13761
(0.0111503 0.00582384 0.00187479) 13762
(0.0116348 0.00581635 0.00187485) 13763
(0.0101444 0.00559127 0.0017297) 13820
(0.0105836 0.00559025 0.001723) 13821
(0.0113159 0.00439973 0.00171433) 14062
(0.0117864 0.00440293 0.00171937) 14063
(0.0122609 0.00440806 0.00172792) 14064
(0.0127195 0.00441275 0.00173574) 14065
(0.0108805 0.00417548 0.00183919) 14121
(0.0113484 0.00417789 0.00184108) 14122
(0.0118267 0.00418393 0.00184591) 14123
(0.0123055 0.00419255 0.00185287) 14124
(0.0127661 0.0042004 0.00185802) 14125
(0.01019 0.00396199 0.00205806) 14180
(0.0106539 0.00396183 0.00205079) 14181
(0.0111067 0.00396456 0.00204872) 14182
(0.01058 0.00358525 0.00316388) 14421
(0.0108847 0.00362864 0.00344917) 14481
(0.01137 0.00363312 0.00345451) 14482
(0.0118495 0.00364189 0.00345954) 14483
(0.012338 0.00365573 0.00346223) 14484
(0.0128307 0.00366982 0.00346185) 14485
(0.0103963 0.00373488 0.00368706) 14540
(0.0103963 0.00373488 0.00368706) 14540
(0.0103963 0.00373488 0.00368706) 14540
(0.0109031 0.00373624 0.00368889) 14541
(0.0113955 0.00373982 0.00368857) 14542
(0.0118756 0.00374717 0.00368793) 14543
(0.0123549 0.00375764 0.00368469) 14544
(0.0128281 0.00376725 0.00368041) 14545
(0.0102053 0.00392808 0.00391696) 14600
(0.0106926 0.00392761 0.00391989) 14601
(0.0111736 0.00392877 0.00391865) 14602
(0.0102445 0.00499951 0.0044189) 14840
(0.0107491 0.00499897 0.00442151) 14841
(0.0117156 0.00500415 0.00441463) 14843
(0.0121958 0.00500425 0.00440742) 14844
(0.0101341 0.00527513 0.00438686) 14900
(0.011412 0.00641865 0.00313345) 15262
(0.0118848 0.00641556 0.0031345) 15263
(0.0123674 0.00640875 0.00313338) 15264
(0.0128525 0.00640042 0.0031311) 15265
(0.00208717 0.00650168 0.00289373) 6124
(0.00489624 0.00643711 0.0026971) 13569
(0.00740343 0.00644989 0.00284977) 13514
(0.00834126 0.00643487 0.00292291) 13516
(0.00895282 0.00642711 0.00291542) 13517
(0.00730695 0.00438938 0.00168953) 14054
(0.00813937 0.00442649 0.00167874) 14056
(0.00904691 0.00444868 0.00171407) 14058
(0.00661792 0.00412393 0.00186196) 14113
(0.00667773 0.00411444 0.00185112) 14113
(0.00629536 0.00414608 0.00180521) 14112
(0.00485807 0.00368679 0.00369269) 14529
(0.00586788 0.00506158 0.00446015) 14831
(0.00950548 0.00524458 0.0043559) 14899
(0.00795976 0.00642661 0.00308251) 15255
(0.00873291 0.00639732 0.0031097) 15257
(0.00911232 0.00639497 0.00311252) 15258
(0.0199377 0.00636405 0.00197676) 13479
(0.022846 0.00637303 0.00209517) 13425
(0.0238794 0.00660446 0.00225956) 6107
(0.0174675 0.00671021 0.00420314) 1894
(0.0200923 0.00666078 0.00411307) 1960
(0.0180533 0.00374494 0.00479359) 10536
(0.0171429 0.00593815 0.00508105) 12574
(0.0171429 0.00593815 0.00508105) 12574
(0.0171429 0.00593815 0.00508105) 12574
(0.019151 0.0059817 0.00500895) 12338
(0.019151 0.0059817 0.00500895) 12338
(0.019151 0.0059817 0.00500895) 12338
(0.0170895 0.00409854 0.00123376) 11494
(0.0174223 0.00474156 0.000879186) 11614
(0.0191534 0.00463312 0.000919541) 11558
(0.0173818 0.00530929 0.000701394) 11854
(0.0194983 0.00523042 0.000713245) 11918
(0.0203812 0.00506587 0.000618313) 7840
(0.0183245 0.00536655 0.00525771) 11436
(0.0190121 0.00298933 0.00325153) 32545
(0.0220304 0.00304191 0.00328508) 824
(0.0192408 0.00664553 0.00159453) 2498
(0.0210968 0.0066048 0.001578) 6762
(0.0118288 0.0064184 0.00288089) 13523
(0.0123127 0.00640858 0.00288541) 13524
(0.0128093 0.00639785 0.00288957) 13525
(0.0105495 0.00635447 0.00256383) 13581
(0.0109639 0.00636312 0.00257509) 13581
(0.0101488 0.00583795 0.00188754) 13760
(0.010643 0.00583078 0.00187846) 13761
(0.0111276 0.00582408 0.00187473) 13762
(0.0116117 0.00581673 0.00187466) 13763
(0.0105617 0.00559025 0.00172291) 13821
(0.011291 0.00439953 0.00171392) 14062
(0.0117621 0.00440268 0.00171886) 14063
(0.0122379 0.00440779 0.00172743) 14064
(0.0126973 0.00441254 0.00173534) 14065
(0.0108571 0.00417528 0.00183899) 14121
(0.0113239 0.00417751 0.00184077) 14122
(0.0118024 0.00418343 0.00184553) 14123
(0.0122825 0.00419207 0.0018525) 14124
(0.0127441 0.00420001 0.00185777) 14125
(0.0106302 0.00396165 0.00205063) 14181
(0.0110804 0.00396407 0.00204847) 14182
(0.0105578 0.00358518 0.00316393) 14421
(0.0108621 0.00362847 0.00344912) 14481
(0.0113473 0.00363282 0.00345434) 14482
(0.0118265 0.00364135 0.00345943) 14483
(0.0123143 0.00365497 0.00346222) 14484
(0.0128073 0.00366917 0.00346195) 14485
(0.0103739 0.00373479 0.00368714) 14540
(0.0103739 0.00373479 0.00368714) 14540
(0.0103739 0.00373479 0.00368714) 14540
(0.0108804 0.0037361 0.00368898) 14541
(0.0113728 0.00373958 0.00368867) 14542
(0.0118528 0.00374673 0.00368808) 14543
(0.0123321 0.0037571 0.00368496) 14544
(0.0128056 0.00376679 0.00368066) 14545
(0.0101833 0.00392802 0.003917) 14600
(0.0106696 0.00392744 0.00391998) 14601
(0.0111497 0.00392852 0.00391883) 14602
(0.0102222 0.00499955 0.00441894) 14840
(0.010726 0.00499891 0.00442167) 14841
(0.0116926 0.00500407 0.00441496) 14843
(0.0121728 0.00500427 0.0044079) 14844
(0.0101116 0.00527499 0.00438698) 14900
(0.0113893 0.00641879 0.00313339) 15262
(0.0118618 0.00641584 0.0031345) 15263
(0.0123442 0.00640915 0.00313348) 15264
(0.0128293 0.00640085 0.00313122) 15265
(0.0025197 0.00649533 0.00288093) 6125
(0.00391326 0.00640487 0.0026229) 13567
(0.00741973 0.00644841 0.00284623) 13514
(0.00831774 0.00643488 0.00292288) 13516
(0.00892962 0.00642731 0.00291562) 13517
(0.00805911 0.00442301 0.00167727) 14056
(0.00902474 0.00444884 0.00171377) 14058
(0.00668588 0.00412524 0.00186386) 14113
(0.0066905 0.00411465 0.00185216) 14113
(0.00630428 0.00414058 0.00180981) 14112
(0.00782686 0.00367492 0.00345669) 14475
(0.00487672 0.00370087 0.00370034) 14529
(0.0068122 0.00374993 0.00367669) 14533
(0.00587903 0.00506702 0.00445941) 14831
(0.00792963 0.00642705 0.00308005) 15255
(0.00871055 0.00639739 0.00310975) 15257
(0.00908817 0.00639551 0.00311253) 15258
(0.0196821 0.00638871 0.00198259) 13479
(0.0227901 0.00636462 0.00208549) 13425
(0.0238436 0.00659732 0.00225883) 6107
(0.017388 0.00670833 0.00421091) 1894
(0.0200272 0.00665702 0.00411824) 1960
(0.0180169 0.00374136 0.00478923) 10536
(0.0190968 0.00597837 0.00501134) 12338
(0.0190968 0.00597837 0.00501134) 12338
(0.0190968 0.00597837 0.00501134) 12338
(0.0169943 0.00409913 0.00122815) 11493
(0.0173631 0.00474663 0.00087675) 11614
(0.0191124 0.00464017 0.000918505) 11558
(0.0173136 0.00531496 0.000701285) 11854
(0.0194455 0.00523407 0.000715075) 11918
(0.0204036 0.0050802 0.000627089) 11920
(0.0182748 0.00536397 0.00525874) 11436
(0.0188673 0.00298401 0.00324937) 32400
(0.0219356 0.00304319 0.00328331) 823
(0.0191739 0.00664866 0.00159456) 2498
(0.0210131 0.0066074 0.00157753) 6762
(0.0118059 0.0064188 0.00288067) 13523
(0.0122892 0.00640913 0.00288517) 13524
(0.0127853 0.00639839 0.00288941) 13525
(0.0105268 0.00635452 0.00256374) 13581
(0.0109396 0.00636323 0.00257473) 13581
(0.0106209 0.00583096 0.00187843) 13761
(0.0111049 0.00582432 0.00187467) 13762
(0.0115886 0.0058171 0.00187448) 13763
(0.0105397 0.00559025 0.00172281) 13821
(0.0109653 0.0055903 0.00171884) 13821
(0.011266 0.00439934 0.00171351) 14062
(0.0117376 0.00440243 0.00171836) 14063
(0.0122149 0.00440752 0.00172693) 14064
(0.012675 0.00441233 0.00173493) 14065
(0.0108338 0.00417508 0.00183879) 14121
(0.0112993 0.00417713 0.00184047) 14122
(0.0117781 0.00418293 0.00184516) 14123
(0.0122595 0.00419159 0.00185213) 14124
(0.0127221 0.00419961 0.00185752) 14125
(0.0106065 0.00396147 0.00205048) 14181
(0.011054 0.00396358 0.00204823) 14182
(0.0105355 0.00358512 0.00316398) 14421
(0.0108395 0.00362829 0.00344909) 14481
(0.0113247 0.00363254 0.00345417) 14482
(0.0118036 0.00364081 0.00345931) 14483
(0.0122907 0.00365423 0.00346221) 14484
(0.0127838 0.00366852 0.00346205) 14485
(0.0108578 0.00373595 0.00368908) 14541
(0.0113501 0.00373935 0.00368877) 14542
(0.01183 0.00374629 0.00368823) 14543
(0.0123093 0.00375656 0.00368523) 14544
(0.0127832 0.00376632 0.00368091) 14545
(0.0101613 0.00392796 0.00391703) 14600
(0.0106467 0.00392728 0.00392008) 14601
(0.0111258 0.00392828 0.003919) 14602
(0.0101999 0.00499959 0.00441897) 14840
(0.0107029 0.00499886 0.00442184) 14841
(0.0116695 0.00500399 0.00441528) 14843
(0.0121497 0.00500428 0.00440836) 14844
(0.0100892 0.00527485 0.0043871) 14900
(0.0113665 0.00641893 0.00313334) 15262
(0.0118388 0.0064161 0.00313449) 15263
(0.0123211 0.00640954 0.00313357) 15264
(0.012806 0.00640127 0.00313135) 15265
(0.00283902 0.0064803 0.00286193) 13505
(0.00743817 0.00644654 0.00284312) 13514
(0.00831408 0.00643485 0.00292285) 13516
(0.0089063 0.00642752 0.00291577) 13517
(0.0079864 0.0044198 0.00167636) 14055
(0.00900259 0.00444897 0.00171347) 14058
(0.00673058 0.00412708 0.00186549) 14113
(0.00670318 0.00411488 0.00185315) 14113
(0.00640429 0.00413314 0.00181656) 14112
(0.00498078 0.0034661 0.00332201) 5409
(0.00761536 0.00367374 0.00346479) 14475
(0.00489616 0.00372438 0.00370406) 14529
(0.0065073 0.0037672 0.00370078) 14533
(0.00590243 0.00507167 0.0044585) 14831
(0.0086887 0.00639736 0.00310975) 15257
(0.00906539 0.00639567 0.00311248) 15258
(0.0227314 0.00635649 0.00207616) 13485
(0.0238073 0.00658979 0.00225748) 6107
(0.0173071 0.00670656 0.00421886) 1894
(0.0199588 0.00665405 0.00412308) 1959
(0.0179793 0.00373797 0.00478511) 10535
(0.0190407 0.00597529 0.00501371) 12338
(0.0190407 0.00597529 0.00501371) 12338
(0.0190407 0.00597529 0.00501371) 12338
(0.0168996 0.00409915 0.00122243) 11493
(0.0173033 0.0047517 0.000874218) 11614
(0.0190694 0.00464704 0.000917431) 11558
(0.0172444 0.00532068 0.000701068) 11854
(0.01939 0.00523758 0.000716697) 11918
(0.0204223 0.00509365 0.000635473) 11920
(0.0182246 0.00536164 0.00525982) 11436
(0.0187035 0.00297766 0.00324754) 32400
(0.0218392 0.00304422 0.00328159) 823
(0.0191066 0.00665187 0.00159452) 2498
(0.0209377 0.00660941 0.00157807) 6761
(0.011783 0.0064192 0.00288044) 13523
(0.0122658 0.00640968 0.00288494) 13524
(0.0127613 0.00639893 0.00288925) 13525
(0.0105041 0.00635457 0.00256366) 13581
(0.0109153 0.00636334 0.00257437) 13581
(0.0105988 0.00583114 0.0018784) 13761
(0.0110823 0.00582456 0.00187461) 13762
(0.0115654 0.00581746 0.0018743) 13763
(0.0105178 0.00559025 0.00172271) 13821
(0.0109423 0.00559034 0.0017187) 13821
(0.0112408 0.00439915 0.0017131) 14062
(0.011713 0.00440217 0.00171786) 14063
(0.0121917 0.00440726 0.00172643) 14064
(0.0126528 0.00441212 0.00173452) 14065
(0.0108104 0.00417487 0.00183859) 14121
(0.0112746 0.00417676 0.00184016) 14122
(0.0117537 0.00418244 0.00184478) 14123
(0.0122364 0.0041911 0.00185175) 14124
(0.0127 0.0041992 0.00185726) 14125
(0.0105829 0.0039613 0.00205032) 14181
(0.0110276 0.0039631 0.00204798) 14182
(0.0105132 0.00358505 0.00316404) 14421
(0.0108169 0.00362812 0.00344906) 14481
(0.0113021 0.00363225 0.00345401) 14482
(0.0117807 0.00364029 0.00345919) 14483
(0.0122671 0.00365349 0.00346219) 14484
(0.0127603 0.00366785 0.00346215) 14485
(0.0108351 0.00373581 0.00368918) 14541
(0.0113273 0.00373913 0.00368887) 14542
(0.0118073 0.00374587 0.00368838) 14543
(0.0122864 0.00375603 0.0036855) 14544
(0.0127607 0.00376585 0.00368116) 14545
(0.0101393 0.0039279 0.00391706) 14600
(0.0106238 0.00392712 0.00392017) 14601
(0.0111018 0.00392804 0.00391917) 14602
(0.0101776 0.00499963 0.00441899) 14840
(0.0106799 0.0049988 0.004422) 14841
(0.0116463 0.0050039 0.0044156) 14843
(0.0121266 0.00500429 0.00440883) 14844
(0.0100669 0.00527472 0.00438721) 14900
(0.0113438 0.00641906 0.00313329) 15262
(0.0118158 0.00641636 0.00313448) 15263
(0.0122979 0.00640994 0.00313366) 15264
(0.0127828 0.0064017 0.00313147) 15265
(0.00309436 0.00646334 0.00283836) 13506
(0.00745913 0.00644433 0.00284036) 13514
(0.00829067 0.00643489 0.00292278) 13516
(0.00888303 0.00642771 0.0029159) 13517
(0.00792271 0.00441683 0.00167593) 14055
(0.00898047 0.0044491 0.00171319) 14057
(0.00677307 0.00412907 0.00186698) 14113
(0.00671524 0.00411518 0.00185409) 14113
(0.00646343 0.004128 0.00182247) 14112
(0.00513539 0.00342882 0.00332065) 5410
(0.00734269 0.00367758 0.00347681) 14474
(0.00491665 0.00375608 0.00371107) 14529
(0.00624711 0.00378555 0.00372996) 14532
(0.00593188 0.00507558 0.00445747) 14831
(0.00945554 0.0063579 0.00339009) 15198
(0.00866637 0.00639742 0.00310976) 15257
(0.00904271 0.00639581 0.00311243) 15258
(0.022669 0.00634874 0.00206752) 13485
(0.023771 0.00658191 0.00225551) 6107
(0.0172245 0.00670495 0.00422694) 1894
(0.0198873 0.00665187 0.00412761) 1959
(0.0179408 0.00373476 0.00478122) 10535
(0.018983 0.00597245 0.00501606) 12337
(0.018983 0.00597245 0.00501606) 12337
(0.018983 0.00597245 0.00501606) 12337
(0.0205461 0.00606858 0.00496196) 12341
(0.0168045 0.00409844 0.00121675) 11493
(0.0195462 0.00403432 0.00129459) 12759
(0.0172424 0.00475667 0.000871583) 11614
(0.0190244 0.0046537 0.000916316) 11558
(0.0171734 0.00532644 0.000700716) 11854
(0.0193322 0.00524096 0.00071813) 11918
(0.0204374 0.00510629 0.000643461) 11920
(0.0181736 0.00535944 0.00526097) 11076
(0.0185165 0.00296972 0.00324625) 32400
(0.0217388 0.00304485 0.00327999) 823
(0.0190394 0.00665508 0.00159443) 2498
(0.0208634 0.00661124 0.00157883) 6761
(0.0117601 0.00641959 0.00288022) 13523
(0.0122423 0.00641022 0.00288471) 13524
(0.0127374 0.00639947 0.00288908) 13525
(0.0104814 0.00635462 0.00256363) 13580
(0.0108909 0.00636345 0.00257401) 13581
(0.0105766 0.00583131 0.00187837) 13761
(0.0110596 0.0058248 0.00187457) 13762
(0.0115423 0.00581781 0.00187412) 13763
(0.0104958 0.00559026 0.0017226) 13820
(0.0109193 0.00559037 0.00171855) 13821
(0.0112156 0.00439896 0.00171268) 14062
(0.0116884 0.00440191 0.00171736) 14063
(0.0121686 0.004407 0.00172592) 14064
(0.0126305 0.00441191 0.0017341) 14065
(0.010787 0.00417468 0.00183839) 14121
(0.0112497 0.00417638 0.00183985) 14122
(0.0117292 0.00418195 0.0018444) 14123
(0.0122132 0.00419061 0.00185138) 14124
(0.0126779 0.00419879 0.00185699) 14125
(0.0105594 0.00396114 0.00205017) 14181
(0.0110012 0.00396263 0.00204774) 14182
(0.0104909 0.00358499 0.0031641) 14420
(0.0107943 0.00362795 0.00344905) 14481
(0.0112794 0.00363198 0.00345386) 14482
(0.0117578 0.00363979 0.00345907) 14483
(0.0122435 0.00365276 0.00346216) 14484
(0.0127368 0.00366718 0.00346224) 14485
(0.0108124 0.00373567 0.00368928) 14541
(0.0113046 0.00373891 0.00368898) 14542
(0.0117845 0.00374545 0.00368852) 14543
(0.0122636 0.0037555 0.00368576) 14544
(0.0127382 0.00376537 0.00368141) 14545
(0.0101173 0.00392783 0.00391709) 14600
(0.010601 0.00392696 0.00392027) 14601
(0.0110778 0.0039278 0.00391935) 14602
(0.0101554 0.00499966 0.00441901) 14840
(0.0106568 0.00499876 0.00442217) 14841
(0.0116232 0.00500381 0.00441591) 14843
(0.0121036 0.0050043 0.00440928) 14844
(0.0100446 0.00527459 0.00438731) 14900
(0.0113211 0.00641919 0.00313323) 15262
(0.0117928 0.00641662 0.00313447) 15263
(0.0122748 0.00641032 0.00313375) 15264
(0.0127595 0.00640213 0.00313159) 15265
(0.0033853 0.00644184 0.00280198) 13506
(0.00633819 0.0064127 0.00284091) 13512
(0.00747468 0.00644278 0.00283864) 13514
(0.00826592 0.00643526 0.00292248) 13516
(0.00885972 0.00642789 0.00291601) 13517
(0.00787017 0.00441419 0.00167591) 14055
(0.0089569 0.00444902 0.00171262) 14057
(0.00681155 0.00413116 0.00186837) 14113
(0.00669613 0.00411584 0.00185492) 14113
(0.00664988 0.00412187 0.00182931) 14113
(0.00522169 0.00343083 0.00333232) 5410
(0.00704535 0.00368387 0.00349381) 14474
(0.00493415 0.00378535 0.00371891) 14529
(0.00602958 0.00380005 0.00375937) 14532
(0.00596485 0.00507882 0.00445633) 14831
(0.00943391 0.0063582 0.00338967) 15198
(0.00863836 0.00639851 0.00311017) 15257
(0.00902003 0.00639594 0.00311241) 15258
(0.0226043 0.00634115 0.00205868) 13485
(0.0237343 0.00657363 0.0022528) 6107
(0.01714 0.00670356 0.00423511) 1894
(0.0198126 0.00665052 0.0041318) 1959
(0.0179015 0.00373171 0.00477756) 10535
(0.0181424 0.00323404 0.00170686) 456
(0.0189237 0.00596979 0.00501843) 12337
(0.0189237 0.00596979 0.00501843) 12337
(0.0189237 0.00596979 0.00501843) 12337
(0.0205118 0.00606064 0.0049659) 12341
(0.0194619 0.00403968 0.00129396) 12758
(0.0171796 0.00476145 0.000868856) 11614
(0.0189775 0.00466018 0.000915172) 11557
(0.0176326 0.00585387 0.000909044) 12155
(0.0171007 0.00533222 0.000700233) 11854
(0.0192719 0.00524425 0.000719365) 11918
(0.0204485 0.00511813 0.000651033) 11920
(0.0181222 0.00535734 0.00526217) 11076
(0.0183041 0.00295955 0.00324566) 32256
(0.0216357 0.00304515 0.00327845) 823
(0.0189718 0.00665829 0.0015942) 2497
(0.0207956 0.00661308 0.00158031) 6761
(0.0117371 0.00641996 0.00287999) 13523
(0.0122189 0.00641076 0.00288448) 13524
(0.0127134 0.00640002 0.00288892) 13525
(0.0104587 0.00635469 0.00256362) 13580
(0.0108666 0.00636356 0.00257366) 13581
(0.0105545 0.00583148 0.00187833) 13761
(0.0110369 0.00582503 0.00187452) 13762
(0.0115192 0.00581816 0.00187395) 13763
(0.0104738 0.00559026 0.00172249) 13820
(0.0108963 0.00559041 0.00171841) 13821
(0.0111902 0.00439877 0.00171226) 14062
(0.0116636 0.00440165 0.00171687) 14063
(0.0121453 0.00440674 0.00172542) 14064
(0.0126082 0.00441169 0.00173367) 14065
(0.0107636 0.0041745 0.00183817) 14121
(0.0112249 0.00417601 0.00183954) 14122
(0.0117047 0.00418147 0.00184402) 14123
(0.01219 0.00419012 0.00185101) 14124
(0.0126557 0.00419837 0.00185672) 14125
(0.0105358 0.00396099 0.00205001) 14181
(0.0109748 0.00396216 0.0020475) 14181
(0.0104686 0.00358493 0.00316415) 14420
(0.0107717 0.00362777 0.00344904) 14481
(0.0112567 0.00363171 0.0034537) 14482
(0.011735 0.0036393 0.00345894) 14483
(0.01222 0.00365204 0.00346213) 14484
(0.0127133 0.0036665 0.00346234) 14485
(0.0107898 0.00373553 0.00368939) 14541
(0.0112818 0.00373869 0.00368908) 14542
(0.0117617 0.00374505 0.00368866) 14543
(0.0122408 0.00375497 0.00368601) 14544
(0.0127157 0.00376489 0.00368167) 14545
(0.0100952 0.00392777 0.00391711) 14600
(0.0105781 0.0039268 0.00392037) 14601
(0.0110537 0.00392757 0.00391952) 14602
(0.0101331 0.00499969 0.00441902) 14840
(0.0106337 0.00499871 0.00442233) 14841
(0.0116 0.00500372 0.00441622) 14843
(0.0120805 0.00500431 0.00440973) 14844
(0.0100224 0.00527446 0.00438741) 14900
(0.0112983 0.00641933 0.00313318) 15262
(0.0117698 0.00641686 0.00313445) 15263
(0.0122517 0.0064107 0.00313384) 15264
(0.0127363 0.00640256 0.00313172) 15265
(0.00356896 0.00642838 0.00277457) 13507
(0.00625201 0.00641561 0.00284054) 13512
(0.00748932 0.00644126 0.00283739) 13514
(0.00823927 0.00643611 0.00292178) 13516
(0.00883644 0.00642805 0.00291611) 13517
(0.00956177 0.00641526 0.00289771) 13519
(0.00782957 0.00441187 0.00167626) 14055
(0.00893035 0.00444857 0.00171146) 14057
(0.00963245 0.0044361 0.00173272) 14059
(0.00683 0.00413358 0.00187003) 14113
(0.00670899 0.00411618 0.00185588) 14113
(0.0067748 0.00411848 0.00183477) 14113
(0.00526644 0.00345843 0.003342) 5410
(0.00681265 0.00368845 0.0035095) 14473
(0.00496807 0.00381069 0.0037336) 14529
(0.00581271 0.00380859 0.00378936) 14531
(0.00594935 0.00508013 0.00445607) 14831
(0.00941198 0.00635848 0.00338937) 15198
(0.00860469 0.00640058 0.00311049) 15257
(0.00899744 0.00639605 0.00311243) 15257
(0.0225362 0.00633378 0.00204981) 13485
(0.0236977 0.00656505 0.00224949) 6107
(0.0170534 0.00670241 0.00424336) 1894
(0.0197348 0.00665001 0.00413566) 1959
(0.0178614 0.00372882 0.0047741) 10535
(0.0180887 0.00323942 0.00170233) 456
(0.0188628 0.00596723 0.00502086) 12337
(0.0188628 0.00596723 0.00502086) 12337
(0.0188628 0.00596723 0.00502086) 12337
(0.020481 0.00605251 0.00496945) 12340
(0.0193752 0.00404479 0.00129317) 12758
(0.0171145 0.00476595 0.000866037) 11614
(0.0189286 0.00466647 0.000913986) 11557
(0.0175848 0.00585579 0.000910647) 12155
(0.0170265 0.005338 0.000699615) 11854
(0.0192089 0.00524744 0.000720388) 11918
(0.020453 0.00512888 0.000657951) 11920
(0.0180702 0.00535531 0.00526342) 11076
(0.0180656 0.00294635 0.00324601) 32256
(0.0215313 0.00304513 0.00327696) 823
(0.0234878 0.00296703 0.00330588) 33697
(0.0189046 0.00666136 0.0015939) 2497
(0.020735 0.00661501 0.0015825) 6761
(0.0117142 0.00642033 0.00287977) 13523
(0.0121956 0.00641128 0.00288424) 13524
(0.0126895 0.00640057 0.00288875) 13525
(0.0104361 0.00635475 0.00256364) 13580
(0.0108421 0.00636367 0.00257332) 13581
(0.0105324 0.00583165 0.0018783) 13761
(0.0110142 0.00582526 0.00187448) 13762
(0.011496 0.00581851 0.00187379) 13762
(0.0104517 0.00559027 0.00172238) 13820
(0.0108732 0.00559044 0.00171827) 13821
(0.0111648 0.00439859 0.00171184) 14062
(0.0116387 0.00440139 0.00171638) 14063
(0.012122 0.00440647 0.00172491) 14064
(0.0125858 0.00441147 0.00173323) 14065
(0.0107401 0.00417432 0.00183795) 14121
(0.0111999 0.00417563 0.00183923) 14122
(0.01168 0.00418099 0.00184364) 14123
(0.0121667 0.00418962 0.00185063) 14124
(0.0126335 0.00419794 0.00185645) 14125
(0.0105123 0.00396084 0.00204986) 14181
(0.0109484 0.0039617 0.00204725) 14181
(0.0104463 0.00358487 0.00316421) 14420
(0.010749 0.00362759 0.00344904) 14481
(0.011234 0.00363145 0.00345356) 14482
(0.0117121 0.00363882 0.00345881) 14483
(0.0121965 0.00365132 0.00346209) 14484
(0.0126897 0.00366581 0.00346243) 14485
(0.0107671 0.00373538 0.0036895) 14541
(0.011259 0.00373849 0.00368919) 14542
(0.0117389 0.00374465 0.00368879) 14543
(0.0122179 0.00375445 0.00368626) 14544
(0.0126932 0.0037644 0.00368193) 14545
(0.0100731 0.00392771 0.00391713) 14600
(0.0105553 0.00392664 0.00392047) 14601
(0.0110297 0.00392733 0.00391969) 14602
(0.0101109 0.00499972 0.00441903) 14840
(0.0106106 0.00499867 0.0044225) 14841
(0.0110973 0.005001 0.00442058) 14842
(0.0115768 0.00500363 0.00441653) 14843
(0.0120574 0.00500432 0.00441017) 14844
(0.0100002 0.00527433 0.00438749) 14900
(0.0112755 0.00641945 0.00313312) 15262
(0.0117468 0.00641711 0.00313444) 15263
(0.0122286 0.00641108 0.00313392) 15264
(0.0127131 0.00640299 0.00313184) 15265
(0.00383088 0.00641363 0.00273042) 13567
(0.00621631 0.00641674 0.00284085) 13512
(0.00750902 0.00643908 0.00283584) 13515
(0.00818944 0.00643755 0.00292044) 13516
(0.00881319 0.00642819 0.00291619) 13517
(0.00954042 0.0064146 0.00289869) 13519
(0.00780113 0.00440979 0.00167697) 14055
(0.00890113 0.00444772 0.00170976) 14057
(0.00960941 0.00443582 0.00173149) 14059
(0.0068641 0.00413574 0.00187176) 14113
(0.00672074 0.00411646 0.00185675) 14113
(0.00677791 0.00411753 0.00183714) 14113
(0.00530753 0.00349545 0.0033476) 5350
(0.00658204 0.0036932 0.00352824) 14473
(0.00501459 0.00382966 0.00374898) 14530
(0.0055536 0.00380179 0.00380674) 14531
(0.00593242 0.00508112 0.00445585) 14831
(0.00939054 0.00635871 0.00338879) 15198
(0.00856325 0.00640399 0.00310953) 15257
(0.00897474 0.00639618 0.00311252) 15257
(0.0224639 0.00632687 0.0020415) 13484
(0.023661 0.00655612 0.00224541) 6107
(0.0169646 0.00670158 0.00425162) 1893
(0.0196539 0.00665031 0.0041392) 1959
(0.0178206 0.00372607 0.00477085) 10535
(0.0180344 0.00324465 0.00169783) 456
(0.0188004 0.00596476 0.00502337) 12337
(0.0188004 0.00596476 0.00502337) 12337
(0.0188004 0.00596476 0.00502337) 12337
(0.0204503 0.00604461 0.00497275) 12340
(0.0204503 0.00604461 0.00497275) 12340
(0.0204503 0.00604461 0.00497275) 12340
(0.0192858 0.0040496 0.00129217) 12758
(0.0170469 0.00477014 0.000863136) 11614
(0.0188779 0.00467259 0.000912756) 11557
(0.0175367 0.00585771 0.00091218) 12155
(0.0191438 0.00525057 0.000721236) 11918
(0.0204538 0.00513898 0.000664512) 11920
(0.0180179 0.00535333 0.00526472) 11076
(0.0195513 0.00543351 0.00524702) 12519
(0.0178084 0.00292985 0.00324739) 32112
(0.0214239 0.00304475 0.00327557) 822
(0.0234755 0.00297033 0.00330224) 33697
(0.0188376 0.00666418 0.00159348) 2497
(0.0206771 0.00661697 0.00158496) 6761
(0.0116913 0.00642069 0.00287954) 13523
(0.0121723 0.00641181 0.00288401) 13524
(0.0126657 0.00640112 0.00288857) 13525
(0.0104135 0.00635482 0.00256367) 13580
(0.0108177 0.00636378 0.00257298) 13581
(0.0105103 0.00583182 0.00187827) 13761
(0.0109916 0.00582548 0.00187444) 13761
(0.0114729 0.00581885 0.00187364) 13762
(0.0104296 0.00559027 0.00172227) 13820
(0.0108502 0.00559047 0.00171813) 13821
(0.0111392 0.00439841 0.00171142) 14062
(0.0116138 0.00440113 0.0017159) 14063
(0.0120986 0.00440621 0.00172441) 14064
(0.0125634 0.00441125 0.00173279) 14065
(0.0107167 0.00417415 0.00183773) 14121
(0.0111748 0.00417526 0.00183892) 14122
(0.0116552 0.00418052 0.00184326) 14123
(0.0121433 0.00418913 0.00185026) 14124
(0.0126112 0.00419751 0.00185616) 14125
(0.0104888 0.00396072 0.00204969) 14180
(0.0109219 0.00396126 0.002047) 14181
(0.0104239 0.00358482 0.00316427) 14420
(0.0107264 0.00362742 0.00344905) 14481
(0.0112113 0.0036312 0.00345342) 14482
(0.0116893 0.00363836 0.00345867) 14483
(0.012173 0.00365062 0.00346204) 14484
(0.0126661 0.00366511 0.00346252) 14485
(0.0107444 0.00373524 0.00368961) 14541
(0.0112362 0.00373828 0.0036893) 14542
(0.0117161 0.00374427 0.00368892) 14543
(0.0121951 0.00375393 0.0036865) 14544
(0.0126707 0.00376391 0.0036822) 14545
(0.010051 0.00392765 0.00391714) 14600
(0.0105324 0.00392648 0.00392056) 14601
(0.0110055 0.00392709 0.00391986) 14602
(0.0100887 0.00499974 0.00441904) 14840
(0.0105875 0.00499864 0.00442267) 14841
(0.0110738 0.00500086 0.00442082) 14842
(0.0115536 0.00500353 0.00441682) 14843
(0.0120343 0.00500432 0.00441061) 14844
(0.00997814 0.00527421 0.00438757) 14899
(0.0104777 0.00527931 0.00438831) 14900
(0.0112527 0.00641958 0.00313307) 15262
(0.0117238 0.00641734 0.00313442) 15263
(0.0122054 0.00641145 0.003134) 15264
(0.0126899 0.00640341 0.00313196) 15265
(0.00409419 0.00640615 0.00268358) 13568
(0.00615392 0.00641961 0.002842) 13512
(0.00753093 0.00643661 0.00283449) 13515
(0.00815649 0.00643964 0.00291791) 13516
(0.00878993 0.00642832 0.00291626) 13517
(0.00951889 0.00641401 0.0028995) 13519
(0.00778288 0.00440788 0.00167795) 14055
(0.00886917 0.00444648 0.00170759) 14057
(0.00958644 0.00443555 0.00173041) 14059
(0.00688561 0.00413834 0.00187414) 14113
(0.0067313 0.00411674 0.00185755) 14113
(0.00683547 0.00411644 0.00183959) 14113
(0.00767409 0.00416985 0.00180253) 14115
(0.00537713 0.00354738 0.00335582) 14470
(0.00639048 0.00369726 0.0035466) 14472
(0.00513135 0.00385749 0.0037768) 14590
(0.00537467 0.00377651 0.00379669) 14530
(0.00592403 0.00508184 0.00445543) 14831
(0.00936903 0.00635892 0.00338824) 15198
(0.00851871 0.0064076 0.00310772) 15257
(0.00895202 0.00639633 0.00311247) 15257
(0.0223882 0.00632021 0.00203285) 13484
(0.0236242 0.00654699 0.00224071) 6107
(0.0195697 0.00665145 0.00414244) 1959
(0.0177792 0.00372346 0.00476781) 10535
(0.0179789 0.00324973 0.00169332) 455
(0.0187368 0.00596234 0.00502596) 12337
(0.0187368 0.00596234 0.00502596) 12337
(0.0187368 0.00596234 0.00502596) 12337
(0.0204174 0.00603717 0.00497585) 12340
(0.0204174 0.00603717 0.00497585) 12340
(0.0204174 0.00603717 0.00497585) 12340
(0.018636 0.00366985 0.00145718) 9217
(0.0191947 0.00405421 0.00129097) 12758
(0.0169763 0.00477393 0.000860154) 11613
(0.0188255 0.00467852 0.000911483) 11557
(0.0174883 0.00585965 0.000913653) 12154
(0.0190759 0.00525364 0.000721891) 11918
(0.0204515 0.00514857 0.000670831) 11920
(0.0179654 0.0053514 0.00526607) 11075
(0.0195213 0.00542508 0.00524657) 12519
(0.0175438 0.00290994 0.0032498) 32112
(0.0213156 0.0030441 0.00327422) 822
(0.0234595 0.00297374 0.00329883) 33697
(0.0187688 0.00666683 0.00159276) 2497
(0.0206171 0.00661891 0.00158716) 2501
(0.0116685 0.00642104 0.00287931) 13523
(0.012149 0.00641232 0.00288378) 13524
(0.0126418 0.00640167 0.0028884) 13525
(0.0103909 0.0063549 0.00256373) 13580
(0.0107932 0.0063639 0.00257265) 13581
(0.0104882 0.00583198 0.00187823) 13760
(0.0109689 0.00582569 0.0018744) 13761
(0.0114498 0.00581919 0.00187349) 13762
(0.0104075 0.00559028 0.00172215) 13820
(0.0108272 0.0055905 0.00171799) 13821
(0.0111136 0.00439823 0.001711) 14062
(0.0115887 0.00440087 0.00171542) 14063
(0.0120751 0.00440595 0.00172391) 14064
(0.012541 0.00441102 0.00173234) 14065
(0.0106933 0.00417398 0.00183751) 14121
(0.0111497 0.00417489 0.00183861) 14122
(0.0116303 0.00418005 0.00184288) 14123
(0.0121198 0.00418863 0.00184988) 14124
(0.012589 0.00419708 0.00185587) 14125
(0.0104654 0.0039606 0.00204953) 14180
(0.0108955 0.00396082 0.00204675) 14181
(0.0104015 0.00358476 0.00316433) 14420
(0.0107037 0.00362724 0.00344907) 14481
(0.0111886 0.00363095 0.00345329) 14482
(0.0116665 0.00363791 0.00345854) 14483
(0.0121496 0.00364993 0.00346199) 14484
(0.0126425 0.00366442 0.0034626) 14485
(0.0107217 0.0037351 0.00368973) 14541
(0.0112133 0.00373808 0.00368941) 14542
(0.0116933 0.00374389 0.00368905) 14543
(0.0121723 0.00375341 0.00368674) 14544
(0.0126482 0.00376342 0.00368246) 14545
(0.0105096 0.00392633 0.00392066) 14601
(0.0109814 0.00392685 0.00392002) 14601
(0.0100666 0.00499974 0.00441904) 14840
(0.0105644 0.00499862 0.00442284) 14841
(0.0110504 0.00500071 0.00442107) 14842
(0.0115303 0.00500343 0.00441712) 14843
(0.0120112 0.00500433 0.00441104) 14844
(0.00995608 0.0052741 0.00438763) 14899
(0.010454 0.00527926 0.00438862) 14900
(0.0112299 0.00641971 0.00313302) 15262
(0.0117008 0.00641757 0.0031344) 15263
(0.0121823 0.00641181 0.00313408) 15264
(0.0126667 0.00640384 0.00313208) 15265
(0.00410688 0.00640604 0.00268151) 13568
(0.00609036 0.00642176 0.00284135) 13512
(0.00755421 0.00643391 0.00283333) 13515
(0.00810714 0.00644229 0.00291377) 13516
(0.0087667 0.00642844 0.00291632) 13517
(0.00949716 0.00641351 0.00290014) 13518
(0.00776881 0.00440598 0.00167913) 14055
(0.00883472 0.00444484 0.00170504) 14057
(0.00956353 0.00443527 0.00172944) 14059
(0.00692963 0.00414157 0.00187748) 14113
(0.00674186 0.00411708 0.00185842) 14113
(0.00689229 0.0041157 0.00184186) 14113
(0.0075568 0.0041642 0.0018041) 14115
(0.00542419 0.00360646 0.00337421) 14470
(0.00627885 0.00369843 0.0035563) 14472
(0.00528095 0.00387965 0.00380476) 14590
(0.00590816 0.00508228 0.00445515) 14831
(0.00934744 0.00635911 0.00338772) 15198
(0.0084701 0.00641135 0.00310552) 15256
(0.0089293 0.00639648 0.00311242) 15257
(0.0223075 0.00631394 0.00202377) 13484
(0.0235873 0.00653762 0.0022354) 6107
(0.0194825 0.00665333 0.0041454) 1958
(0.0177373 0.00372101 0.00476496) 10535
(0.0179222 0.00325468 0.00168878) 455
(0.0186719 0.00595998 0.00502862) 12337
(0.0186719 0.00595998 0.00502862) 12337
(0.0186719 0.00595998 0.00502862) 12337
(0.0203823 0.00603014 0.00497878) 12340
(0.0203823 0.00603014 0.00497878) 12340
(0.0203823 0.00603014 0.00497878) 12340
(0.0185309 0.00367237 0.00145451) 9217
(0.0191029 0.00405887 0.00128956) 12758
(0.0169027 0.00477725 0.000857096) 11613
(0.0187715 0.00468429 0.00091017) 11617
(0.0174395 0.00586163 0.000915066) 12154
(0.0190055 0.00525665 0.000722359) 11918
(0.0204458 0.00515764 0.000676888) 11920
(0.0179127 0.00534947 0.00526746) 11075
(0.0194893 0.00541716 0.00524619) 12518
(0.0172985 0.00288911 0.00325233) 31969
(0.0212041 0.0030431 0.00327292) 822
(0.0234401 0.00297728 0.00329567) 33697
(0.0186962 0.00666946 0.00159155) 2497
(0.0205584 0.00662096 0.00158945) 2501
(0.0116456 0.00642138 0.00287908) 13523
(0.0121257 0.00641283 0.00288355) 13524
(0.012618 0.00640223 0.00288822) 13525
(0.0103683 0.00635498 0.00256381) 13580
(0.0107687 0.00636403 0.00257233) 13581
(0.010466 0.00583214 0.0018782) 13760
(0.0109462 0.00582591 0.00187436) 13761
(0.0114267 0.00581952 0.00187334) 13762
(0.0103854 0.00559029 0.00172203) 13820
(0.0108041 0.00559053 0.00171785) 13821
(0.0110879 0.00439805 0.00171058) 14062
(0.0115635 0.00440061 0.00171494) 14063
(0.0120516 0.00440568 0.0017234) 14064
(0.0125186 0.0044108 0.00173189) 14065
(0.0106699 0.00417382 0.00183729) 14121
(0.0111245 0.00417453 0.00183829) 14122
(0.0116054 0.00417958 0.00184251) 14123
(0.0120963 0.00418813 0.0018495) 14124
(0.0125667 0.00419665 0.00185558) 14125
(0.010442 0.00396049 0.00204937) 14180
(0.010869 0.00396039 0.0020465) 14181
(0.0103791 0.00358471 0.00316438) 14420
(0.010681 0.00362706 0.00344909) 14481
(0.0111658 0.00363071 0.00345316) 14482
(0.0116437 0.00363748 0.0034584) 14483
(0.0121263 0.00364925 0.00346194) 14484
(0.0126189 0.00366371 0.00346267) 14485
(0.010699 0.00373495 0.00368984) 14541
(0.0111904 0.00373789 0.00368953) 14542
(0.0116705 0.00374353 0.00368917) 14543
(0.0121494 0.00375291 0.00368697) 14544
(0.0126256 0.00376293 0.00368273) 14545
(0.0104868 0.00392618 0.00392076) 14600
(0.0109572 0.00392662 0.00392018) 14601
(0.0100444 0.00499972 0.00441903) 14840
(0.0105413 0.00499861 0.00442301) 14841
(0.0110268 0.00500057 0.00442131) 14842
(0.011507 0.00500332 0.00441741) 14843
(0.0119881 0.00500433 0.00441146) 14843
(0.00993406 0.00527403 0.00438768) 14899
(0.0104302 0.00527918 0.00438893) 14900
(0.0112071 0.00641984 0.00313298) 15262
(0.0116778 0.0064178 0.00313438) 15263
(0.0121592 0.00641217 0.00313415) 15264
(0.0126435 0.00640427 0.00313221) 15265
(0.00409177 0.00640568 0.0026824) 13568
(0.00600721 0.00642423 0.00284052) 13512
(0.00760063 0.0064309 0.00283215) 13515
(0.0080284 0.00644512 0.00290743) 13516
(0.00874348 0.00642855 0.00291637) 13517
(0.0094752 0.00641309 0.00290066) 13518
(0.00775485 0.00440367 0.00168047) 14055
(0.00879815 0.00444283 0.00170221) 14057
(0.00954077 0.00443503 0.00172861) 14059
(0.00696871 0.00414468 0.00188052) 14113
(0.00675223 0.00411748 0.0018593) 14113
(0.00694736 0.00411521 0.00184397) 14113
(0.00748483 0.004159 0.00180584) 14114
(0.00544208 0.003648 0.00339904) 14470
(0.00617878 0.00369854 0.00356419) 14472
(0.00485638 0.00366746 0.00369372) 5289
(0.00588732 0.00508272 0.00445502) 14831
(0.0066911 0.00502592 0.00445612) 14833
(0.00932576 0.00635929 0.00338722) 15198
(0.00841878 0.00641501 0.00310323) 15256
(0.00890661 0.00639662 0.00311237) 15257
(0.00955081 0.00637113 0.00311501) 15259
(0.0222224 0.0063085 0.00201539) 13484
(0.0235503 0.0065281 0.0022295) 6107
(0.0193925 0.00665587 0.00414812) 1898
(0.0176949 0.00371867 0.00476233) 10535
(0.0178644 0.00325948 0.00168421) 395
(0.018606 0.00595766 0.00503136) 12337
(0.018606 0.00595766 0.00503136) 12337
(0.018606 0.00595766 0.00503136) 12337
(0.020345 0.0060235 0.00498157) 12340
(0.020345 0.0060235 0.00498157) 12340
(0.020345 0.0060235 0.00498157) 12340
(0.0184243 0.00367474 0.00145166) 9216
(0.0190087 0.0040633 0.00128791) 12758
(0.0187161 0.00468988 0.000908817) 11617
(0.0173905 0.00586365 0.000916419) 12154
(0.018933 0.00525964 0.000722669) 11917
(0.0204363 0.00516621 0.00068264) 11920
(0.01786 0.00534753 0.00526891) 11075
(0.0194552 0.00540974 0.00524587) 12518
(0.0171048 0.00287176 0.00325344) 31969
(0.0210924 0.00304188 0.00327157) 822
(0.0234169 0.00298093 0.00329271) 33697
(0.0186192 0.00667205 0.0015898) 2497
(0.0205036 0.00662318 0.00159205) 2501
(0.0116227 0.00642171 0.00287885) 13523
(0.0121025 0.00641333 0.00288333) 13524
(0.0125941 0.00640279 0.00288804) 13525
(0.0103457 0.00635506 0.00256391) 13580
(0.0107442 0.00636416 0.00257202) 13581
(0.0104439 0.0058323 0.00187816) 13760
(0.0109235 0.00582612 0.00187431) 13761
(0.0114036 0.00581984 0.0018732) 13762
(0.0103631 0.0055903 0.00172191) 13820
(0.0107811 0.00559056 0.0017177) 13821
(0.0110621 0.00439786 0.00171015) 14062
(0.0115382 0.00440036 0.00171446) 14063
(0.012028 0.00440542 0.0017229) 14064
(0.0124961 0.00441057 0.00173142) 14064
(0.0106464 0.00417366 0.00183707) 14121
(0.0110993 0.00417416 0.00183798) 14122
(0.0115804 0.00417911 0.00184213) 14123
(0.0120727 0.00418764 0.00184912) 14124
(0.0125443 0.00419621 0.00185527) 14125
(0.0104187 0.00396038 0.00204921) 14180
(0.0108426 0.00395996 0.00204625) 14181
(0.0103567 0.00358465 0.00316443) 14420
(0.0106583 0.00362689 0.00344912) 14481
(0.011143 0.00363047 0.00345305) 14482
(0.0116209 0.00363706 0.00345826) 14483
(0.0121029 0.00364858 0.00346188) 14484
(0.0125953 0.003663 0.00346274) 14485
(0.0106763 0.00373481 0.00368997) 14541
(0.0111675 0.0037377 0.00368964) 14542
(0.0116476 0.00374318 0.00368929) 14543
(0.0121266 0.0037524 0.0036872) 14544
(0.012603 0.00376243 0.00368299) 14545
(0.010464 0.00392603 0.00392087) 14600
(0.010933 0.00392638 0.00392035) 14601
(0.0100223 0.0049997 0.00441903) 14840
(0.0105182 0.0049986 0.00442318) 14841
(0.0110032 0.00500043 0.00442156) 14842
(0.0114836 0.00500322 0.00441769) 14842
(0.0119649 0.00500432 0.00441187) 14843
(0.00991207 0.00527397 0.00438773) 14899
(0.0104065 0.00527911 0.00438923) 14900
(0.0111843 0.00641996 0.00313293) 15262
(0.0116548 0.00641802 0.00313435) 15263
(0.0121362 0.00641252 0.00313422) 15264
(0.0126203 0.0064047 0.00313232) 15265
(0.00423761 0.00640789 0.00265546) 13568
(0.00591986 0.0064274 0.00283909) 13511
(0.00794709 0.00644741 0.00289879) 13515
(0.00872027 0.00642865 0.00291641) 13517
(0.00945311 0.00641274 0.00290108) 13518
(0.00774218 0.00440102 0.001682) 14055
(0.00875997 0.00444045 0.00169924) 14057
(0.00951823 0.00443484 0.00172793) 14059
(0.0067623 0.00411795 0.00186012) 14113
(0.00696353 0.00411513 0.00184593) 14113
(0.00741481 0.00415441 0.00180768) 14114
(0.00546862 0.00368462 0.00344212) 14470
(0.0061086 0.00369739 0.00356796) 14472
(0.00487518 0.00367494 0.00370507) 5289
(0.00587106 0.00508313 0.00445481) 14831
(0.00659137 0.00503582 0.00445861) 14833
(0.009304 0.00635945 0.00338674) 15198
(0.00836609 0.0064184 0.00310103) 15256
(0.00888393 0.00639675 0.00311232) 15257
(0.00952755 0.00637118 0.00311413) 15259
(0.0221323 0.00630362 0.00200645) 13484
(0.0235133 0.00651849 0.00222312) 6107
(0.0192992 0.006659 0.00415069) 1898
(0.0176522 0.00371645 0.00475988) 10535
(0.0178055 0.00326413 0.00167963) 395
(0.0185393 0.00595536 0.00503419) 12337
(0.0185393 0.00595536 0.00503419) 12337
(0.0185393 0.00595536 0.00503419) 12337
(0.0203056 0.00601722 0.00498422) 12340
(0.0203056 0.00601722 0.00498422) 12340
(0.0203056 0.00601722 0.00498422) 12340
(0.0183164 0.00367699 0.00144867) 9216
(0.0189123 0.00406753 0.00128602) 12757
(0.0186595 0.00469531 0.000907425) 11617
(0.0173413 0.00586575 0.000917721) 12154
(0.0188588 0.00526263 0.00072284) 11917
(0.0204233 0.00517431 0.000688108) 11920
(0.0178073 0.00534556 0.00527042) 11075
(0.0194192 0.00540277 0.00524563) 11438
(0.0169889 0.00286304 0.00325112) 31825
(0.0209784 0.00304033 0.00327021) 821
(0.0233903 0.00298472 0.00328995) 33697
(0.018537 0.0066746 0.00158738) 2497
(0.0204529 0.00662556 0.00159498) 2500
(0.0115998 0.00642203 0.00287861) 13523
(0.0120793 0.00641382 0.0028831) 13524
(0.0125704 0.00640334 0.00288785) 13525
(0.0103231 0.00635514 0.00256402) 13580
(0.0107197 0.00636429 0.00257173) 13581
(0.0104217 0.00583246 0.00187812) 13760
(0.0109009 0.00582633 0.00187427) 13761
(0.0113805 0.00582016 0.00187306) 13762
(0.0103409 0.00559031 0.00172178) 13820
(0.010758 0.00559059 0.00171755) 13821
(0.0110363 0.00439768 0.00170973) 14062
(0.0115129 0.0044001 0.00171398) 14063
(0.0120043 0.00440515 0.0017224) 14064
(0.0124736 0.00441035 0.00173095) 14064
(0.010623 0.00417351 0.00183685) 14121
(0.011074 0.00417381 0.00183767) 14122
(0.0115552 0.00417865 0.00184176) 14123
(0.0120491 0.00418715 0.00184874) 14124
(0.0125219 0.00419576 0.00185496) 14125
(0.0103953 0.00396028 0.00204906) 14180
(0.0108162 0.00395954 0.00204601) 14181
(0.0103342 0.0035846 0.00316449) 14420
(0.0106356 0.00362671 0.00344916) 14481
(0.0111202 0.00363024 0.00345294) 14482
(0.0115981 0.00363666 0.00345812) 14483
(0.0120797 0.00364793 0.00346181) 14484
(0.0125717 0.00366229 0.00346281) 14485
(0.0106536 0.00373466 0.00369009) 14541
(0.0111446 0.00373751 0.00368976) 14542
(0.0116248 0.00374283 0.00368941) 14543
(0.0121037 0.0037519 0.00368742) 14544
(0.0125805 0.00376193 0.00368326) 14545
(0.0104412 0.00392589 0.00392098) 14600
(0.0109087 0.00392614 0.00392051) 14601
(0.0100001 0.00499967 0.00441902) 14840
(0.0104951 0.00499859 0.00442335) 14840
(0.0109796 0.0050003 0.00442182) 14841
(0.0114603 0.00500312 0.00441798) 14842
(0.0119418 0.00500431 0.00441228) 14843
(0.00989011 0.0052739 0.00438776) 14899
(0.0103827 0.00527903 0.00438954) 14900
(0.0111615 0.00642009 0.00313289) 15262
(0.0116319 0.00641823 0.00313433) 15263
(0.0121131 0.00641287 0.00313428) 15264
(0.0125971 0.00640512 0.00313244) 15265
(0.00442598 0.00642231 0.00263365) 13568
(0.00582246 0.00643143 0.00283682) 13511
(0.0079002 0.00644851 0.00288842) 13515
(0.00869705 0.00642873 0.00291645) 13517
(0.00943092 0.00641246 0.00290142) 13518
(0.00773444 0.00439857 0.00168367) 14055
(0.00872094 0.00443781 0.00169621) 14057
(0.00949573 0.00443466 0.00172732) 14058
(0.0067773 0.00411892 0.00186151) 14113
(0.00698104 0.00411516 0.00184754) 14113
(0.00734534 0.00415124 0.0018094) 14114
(0.00602942 0.00369386 0.00356894) 14472
(0.00489266 0.00368562 0.00370953) 14529
(0.00585876 0.0050835 0.00445454) 14831
(0.00652425 0.00504391 0.00445982) 14833
(0.00928219 0.00635961 0.00338627) 15198
(0.00831455 0.00642131 0.00309892) 15256
(0.00886135 0.00639686 0.00311227) 15257
(0.00950425 0.00637135 0.00311331) 15259
(0.0220367 0.0062995 0.00199744) 13484
(0.0234762 0.00650884 0.0022163) 6106
(0.0192026 0.00666262 0.00415318) 1898
(0.017609 0.00371434 0.00475764) 10535
(0.0177457 0.00326868 0.00167498) 395
(0.0184719 0.00595307 0.00503711) 12336
(0.0184719 0.00595307 0.00503711) 12336
(0.0184719 0.00595307 0.00503711) 12336
(0.020264 0.00601128 0.00498676) 12340
(0.020264 0.00601128 0.00498676) 12340
(0.020264 0.00601128 0.00498676) 12340
(0.0182146 0.00368058 0.00144548) 9216
(0.0188139 0.00407153 0.0012839) 12757
(0.0186018 0.00470056 0.000905986) 11617
(0.0172918 0.00586792 0.000918975) 12154
(0.0187827 0.00526565 0.000722872) 11917
(0.0204067 0.00518196 0.000693268) 11920
(0.0177542 0.00534358 0.00527201) 11075
(0.019382 0.00539622 0.00524548) 11438
(0.016892 0.00285639 0.00324788) 31824
(0.0208626 0.00303848 0.0032688) 821
(0.0233596 0.00298864 0.0032874) 33697
(0.0184483 0.00667714 0.00158417) 2496
(0.0204014 0.00662796 0.00159775) 2500
(0.021898 0.00657955 0.00153143) 6763
(0.0115769 0.00642234 0.00287838) 13523
(0.0120562 0.00641431 0.00288287) 13524
(0.0125466 0.0064039 0.00288766) 13525
(0.0103006 0.00635523 0.00256416) 13580
(0.0106951 0.00636443 0.00257145) 13581
(0.0103996 0.00583262 0.00187808) 13760
(0.0108782 0.00582653 0.00187422) 13761
(0.0113574 0.00582048 0.00187293) 13762
(0.0103186 0.00559032 0.00172165) 13820
(0.010735 0.00559062 0.0017174) 13821
(0.0110104 0.0043975 0.00170931) 14062
(0.0114875 0.00439986 0.00171351) 14062
(0.0119806 0.00440489 0.00172189) 14063
(0.012451 0.00441012 0.00173048) 14064
(0.0105995 0.00417336 0.00183664) 14121
(0.0110486 0.00417345 0.00183735) 14122
(0.0115301 0.00417819 0.00184139) 14123
(0.0120253 0.00418666 0.00184835) 14124
(0.0124994 0.00419531 0.00185465) 14124
(0.010372 0.00396019 0.00204891) 14180
(0.0107898 0.00395913 0.00204576) 14181
(0.0103116 0.00358454 0.00316454) 14420
(0.0106129 0.00362653 0.00344919) 14481
(0.0110973 0.00363001 0.00345284) 14482
(0.0115753 0.00363626 0.00345798) 14483
(0.0120564 0.00364729 0.00346174) 14484
(0.0125481 0.00366157 0.00346286) 14485
(0.0106309 0.00373452 0.00369023) 14541
(0.0111216 0.00373732 0.00368988) 14542
(0.0116019 0.0037425 0.00368952) 14543
(0.0120809 0.00375141 0.00368763) 14544
(0.0125579 0.00376143 0.00368353) 14545
(0.0104184 0.00392576 0.00392109) 14600
(0.0108845 0.0039259 0.00392068) 14601
(0.010472 0.00499857 0.00442352) 14840
(0.0109559 0.00500017 0.00442207) 14841
(0.0114368 0.00500302 0.00441826) 14842
(0.0119186 0.0050043 0.00441268) 14843
(0.00986817 0.00527384 0.00438778) 14899
(0.010359 0.00527895 0.00438984) 14900
(0.0113457 0.00527844 0.00438229) 14902
(0.0111387 0.00642021 0.00313284) 15262
(0.0116089 0.00641844 0.0031343) 15263
(0.01209 0.00641321 0.00313434) 15264
(0.012574 0.00640554 0.00313256) 15265
(0.00455834 0.00643147 0.00265292) 13569
(0.00561218 0.00643477 0.0028291) 13511
(0.0078634 0.00644834 0.00287694) 13515
(0.00867385 0.00642881 0.00291649) 13517
(0.00940858 0.00641228 0.00290165) 13518
(0.00773049 0.00439637 0.00168542) 14055
(0.00868032 0.00443471 0.00169298) 14057
(0.00947334 0.0044345 0.00172679) 14058
(0.00684802 0.00412 0.00186348) 14113
(0.00703532 0.0041152 0.00184934) 14114
(0.00727284 0.00414803 0.00181096) 14114
(0.00595866 0.00368882 0.00356654) 14471
(0.00490826 0.00370234 0.00371323) 14529
(0.00584843 0.00508381 0.00445419) 14831
(0.00648157 0.00505032 0.00446026) 14832
(0.0092603 0.00635976 0.00338584) 15198
(0.00827222 0.0064232 0.00309668) 15256
(0.00883857 0.00639704 0.0031121) 15257
(0.00948089 0.00637168 0.0031126) 15258
(0.0219336 0.00629657 0.00198961) 13483
(0.0234389 0.00649921 0.00220911) 6106
(0.019103 0.00666664 0.00415565) 1898
(0.0175651 0.0037123 0.00475555) 10535
(0.0189636 0.00377494 0.00483267) 10537
(0.0176852 0.00327317 0.00167023) 395
(0.018404 0.00595078 0.00504011) 12576
(0.018404 0.00595078 0.00504011) 12576
(0.018404 0.00595078 0.00504011) 12576
(0.0202202 0.00600566 0.00498921) 12340
(0.0202202 0.00600566 0.00498921) 12340
(0.0202202 0.00600566 0.00498921) 12340
(0.0181136 0.00368419 0.00144215) 9216
(0.0187146 0.00407538 0.00128154) 11497
(0.0185432 0.00470564 0.000904498) 11617
(0.017242 0.00587016 0.000920188) 12154
(0.0187053 0.00526876 0.000722791) 11917
(0.0203867 0.00518917 0.000698139) 11920
(0.0177007 0.0053416 0.00527369) 11075
(0.0193439 0.00539004 0.00524542) 11438
(0.0167975 0.00284979 0.00324464) 31824
(0.0207459 0.00303632 0.00326732) 821
(0.0233249 0.00299267 0.00328504) 33697
(0.0183516 0.00667978 0.00158003) 2496
(0.0203489 0.00663028 0.00160032) 2500
(0.0219025 0.00658516 0.00154333) 6763
(0.011554 0.00642265 0.00287815) 13523
(0.012033 0.00641478 0.00288265) 13524
(0.0125229 0.00640446 0.00288747) 13525
(0.010278 0.00635532 0.0025643) 13580
(0.0106706 0.00636458 0.00257118) 13581
(0.0103774 0.00583277 0.00187804) 13760
(0.0108555 0.00582673 0.00187417) 13761
(0.0113343 0.00582079 0.0018728) 13762
(0.0102962 0.00559033 0.00172151) 13820
(0.0107119 0.00559064 0.00171725) 13821
(0.0109845 0.00439732 0.00170888) 14061
(0.011462 0.00439962 0.00171304) 14062
(0.0119567 0.00440462 0.00172139) 14063
(0.0124284 0.00440989 0.00172999) 14064
(0.010576 0.00417322 0.00183642) 14121
(0.0110233 0.0041731 0.00183704) 14122
(0.0115048 0.00417773 0.00184102) 14123
(0.0120015 0.00418617 0.00184795) 14124
(0.0124769 0.00419485 0.00185432) 14124
(0.0103487 0.0039601 0.00204877) 14180
(0.0107636 0.00395873 0.00204552) 14181
(0.010289 0.00358449 0.00316459) 14420
(0.0105901 0.00362635 0.00344924) 14481
(0.0110744 0.00362978 0.00345274) 14482
(0.0115525 0.00363588 0.00345784) 14483
(0.0120332 0.00364666 0.00346167) 14484
(0.0125245 0.00366085 0.00346291) 14485
(0.0106081 0.00373438 0.00369036) 14541
(0.0110986 0.00373714 0.00369) 14542
(0.011579 0.00374218 0.00368963) 14543
(0.0120581 0.00375092 0.00368784) 14544
(0.0125352 0.00376092 0.0036838) 14545
(0.0103956 0.00392563 0.00392121) 14600
(0.0108602 0.00392566 0.00392084) 14601
(0.0104489 0.00499855 0.00442368) 14840
(0.0109321 0.00500004 0.00442233) 14841
(0.0114134 0.00500292 0.00441854) 14842
(0.0118955 0.00500428 0.00441307) 14843
(0.00984626 0.00527378 0.0043878) 14899
(0.0103353 0.00527886 0.00439014) 14900
(0.0113218 0.00527844 0.00438253) 14902
(0.0111158 0.00642034 0.0031328) 15262
(0.0115859 0.00641864 0.00313427) 15263
(0.012067 0.00641354 0.00313439) 15264
(0.0125508 0.00640596 0.00313267) 15265
(0.00464287 0.00643201 0.00268245) 13569
(0.00530827 0.00644058 0.00280021) 13510
(0.00783929 0.00644688 0.002866) 13515
(0.00865065 0.00642888 0.00291652) 13517
(0.00938544 0.00641264 0.00290148) 13518
(0.00773153 0.00439442 0.00168726) 14055
(0.00862734 0.00443065 0.0016896) 14057
(0.00945127 0.00443443 0.00172645) 14058
(0.00689319 0.00412139 0.00186545) 14113
(0.00705159 0.00411545 0.00185064) 14114
(0.00725115 0.00414376 0.00181328) 14114
(0.00590214 0.00368304 0.00356175) 14471
(0.0049219 0.0037251 0.00371802) 14529
(0.00583985 0.00508405 0.00445377) 14831
(0.00645924 0.00505599 0.00446011) 14832
(0.00923828 0.00635991 0.00338547) 15198
(0.00823643 0.00642445 0.00309433) 15256
(0.00881534 0.00639739 0.00311162) 15257
(0.0094559 0.00637365 0.00311279) 15258
(0.0218234 0.00629443 0.00198131) 13483
(0.023401 0.00648957 0.00220154) 6106
(0.0190007 0.00667099 0.00415814) 1898
(0.0175205 0.0037103 0.00475363) 10535
(0.0189404 0.00376873 0.00482513) 10537
(0.0176239 0.00327755 0.00166541) 395
(0.0183359 0.00594849 0.00504318) 12576
(0.0183359 0.00594849 0.00504318) 12576
(0.0183359 0.00594849 0.00504318) 12576
(0.0201743 0.00600035 0.00499157) 12340
(0.0201743 0.00600035 0.00499157) 12340
(0.0201743 0.00600035 0.00499157) 12340
(0.018013 0.00368766 0.00143871) 9216
(0.0186142 0.00407914 0.00127892) 11497
(0.0184838 0.00471054 0.000902956) 11616
(0.0199907 0.00457341 0.000928344) 11559
(0.0171928 0.00587245 0.000921441) 12154
(0.0186267 0.00527197 0.000722617) 11917
(0.0203633 0.00519595 0.000702713) 11920
(0.0176465 0.0053397 0.00527546) 11075
(0.0193046 0.00538423 0.00524547) 11438
(0.0167048 0.00284314 0.0032416) 31824
(0.0206296 0.00303397 0.00326578) 821
(0.0232859 0.00299681 0.00328278) 33697
(0.0182446 0.00668272 0.0015749) 2496
(0.0202951 0.00663245 0.00160248) 2500
(0.0219012 0.00659011 0.00155423) 6763
(0.011531 0.00642294 0.00287791) 13523
(0.0120099 0.00641525 0.00288242) 13524
(0.0124992 0.00640502 0.00288727) 13524
(0.0102554 0.00635541 0.00256445) 13580
(0.010646 0.00636473 0.00257092) 13581
(0.0103552 0.00583292 0.001878) 13760
(0.0108328 0.00582693 0.00187412) 13761
(0.0113112 0.00582109 0.00187268) 13762
(0.0102737 0.00559034 0.00172137) 13820
(0.0106887 0.00559067 0.00171709) 13821
(0.0109585 0.00439714 0.00170846) 14061
(0.0114364 0.00439938 0.00171257) 14062
(0.0119328 0.00440435 0.00172089) 14063
(0.0124058 0.00440966 0.00172951) 14064
(0.0105526 0.00417308 0.0018362) 14121
(0.0109979 0.00417275 0.00183672) 14121
(0.0114795 0.00417727 0.00184066) 14122
(0.0119776 0.00418569 0.00184756) 14123
(0.0124543 0.00419439 0.00185399) 14124
(0.0103255 0.00396002 0.00204862) 14180
(0.0107373 0.00395834 0.00204527) 14181
(0.0102664 0.00358443 0.00316465) 14420
(0.0105673 0.00362618 0.00344929) 14481
(0.0110515 0.00362956 0.00345266) 14482
(0.0115297 0.00363552 0.00345769) 14483
(0.0120101 0.00364604 0.00346159) 14484
(0.0125009 0.00366013 0.00346295) 14485
(0.0105854 0.00373424 0.0036905) 14541
(0.0110755 0.00373696 0.00369013) 14542
(0.0115561 0.00374186 0.00368974) 14543
(0.0120352 0.00375044 0.00368804) 14544
(0.0125126 0.00376041 0.00368407) 14545
(0.0103728 0.00392551 0.00392134) 14600
(0.0108359 0.00392542 0.00392101) 14601
(0.0104258 0.00499853 0.00442384) 14840
(0.0109082 0.00499992 0.0044226) 14841
(0.0113898 0.00500282 0.00441882) 14842
(0.0118723 0.00500426 0.00441346) 14843
(0.00982436 0.00527373 0.0043878) 14899
(0.0103117 0.00527877 0.00439043) 14900
(0.0112978 0.00527845 0.00438278) 14902
(0.011093 0.00642046 0.00313276) 15262
(0.011563 0.00641883 0.00313423) 15263
(0.012044 0.00641387 0.00313444) 15264
(0.0125277 0.00640638 0.00313279) 15265
(0.00470154 0.00643038 0.00270799) 13569
(0.00192029 0.00650297 0.00289516) 6123
(0.00488192 0.00644858 0.00268832) 13569
(0.00785103 0.00644485 0.00285657) 13515
(0.00862822 0.00642874 0.00291665) 13517
(0.00936268 0.00641266 0.00290152) 13518
(0.00773348 0.00439234 0.00168922) 14055
(0.00856959 0.00442655 0.00168689) 14057
(0.00942924 0.00443435 0.0017261) 14058
(0.00693704 0.00412304 0.00186733) 14113
(0.00703539 0.00411586 0.00185181) 14114
(0.00717069 0.00413978 0.00181604) 14114
(0.00517005 0.00341456 0.00332173) 5410
(0.00535579 0.00351405 0.00333759) 5350
(0.00585824 0.00367737 0.00355567) 14471
(0.00822065 0.00368443 0.00344245) 14476
(0.00493727 0.00375217 0.00372584) 14529
(0.00771308 0.00372483 0.00364753) 14535
(0.00583147 0.00508426 0.0044533) 14831
(0.00645408 0.00506103 0.00445951) 14832
(0.00921591 0.00636007 0.00338519) 15198
(0.00585973 0.00638612 0.00311342) 15251
(0.00820288 0.00642549 0.00309171) 15256
(0.00880799 0.00639387 0.00310707) 15257
(0.00943214 0.00637438 0.00311269) 15258
(0.0217037 0.00629351 0.00197441) 13483
(0.0233623 0.00647995 0.00219369) 6106
(0.0188958 0.00667563 0.00416068) 1897
(0.017475 0.00370832 0.00475187) 10534
(0.0189161 0.00376286 0.00481798) 10537
(0.017562 0.00328183 0.00166052) 395
(0.0182676 0.00594619 0.00504632) 12576
(0.0182676 0.00594619 0.00504632) 12576
(0.0182676 0.00594619 0.00504632) 12576
(0.0201282 0.00599521 0.00499387) 12340
(0.0201282 0.00599521 0.00499387) 12340
(0.0201282 0.00599521 0.00499387) 12340
(0.0179147 0.00369105 0.00143515) 9215
(0.0185129 0.0040829 0.00127607) 11497
(0.0184239 0.00471529 0.000901367) 11616
(0.0199605 0.00458195 0.000927865) 11559
(0.0171442 0.00587478 0.000922729) 12154
(0.0185472 0.00527531 0.000722345) 11917
(0.020336 0.00520226 0.000706963) 11920
(0.0175916 0.0053379 0.00527734) 11075
(0.0192642 0.00537873 0.00524562) 11438
(0.0205116 0.00303119 0.00326431) 821
(0.023242 0.00300101 0.0032806) 826
(0.0181271 0.00668608 0.00156876) 2496
(0.0202405 0.00663445 0.00160432) 2500
(0.0218935 0.00659444 0.0015639) 6763
(0.0115081 0.00642323 0.00287767) 13523
(0.0119869 0.00641571 0.0028822) 13523
(0.0124755 0.00640557 0.00288707) 13524
(0.0102328 0.00635551 0.00256461) 13580
(0.0106214 0.00636488 0.00257067) 13581
(0.010333 0.00583307 0.00187795) 13760
(0.0108101 0.00582713 0.00187407) 13761
(0.0112881 0.00582138 0.00187256) 13762
(0.0102512 0.00559035 0.00172122) 13820
(0.0106656 0.00559071 0.00171693) 13821
(0.0109325 0.00439697 0.00170803) 14061
(0.0114107 0.00439915 0.0017121) 14062
(0.0119089 0.00440408 0.0017204) 14063
(0.0123831 0.00440943 0.00172902) 14064
(0.0105291 0.00417296 0.00183598) 14121
(0.0109724 0.0041724 0.0018364) 14121
(0.0114542 0.00417682 0.0018403) 14122
(0.0119537 0.00418521 0.00184716) 14123
(0.0124317 0.00419392 0.00185366) 14124
(0.0103023 0.00395995 0.00204848) 14180
(0.0107111 0.00395797 0.00204503) 14181
(0.0102438 0.00358438 0.00316471) 14420
(0.0105445 0.00362601 0.00344935) 14481
(0.0110285 0.00362933 0.00345257) 14482
(0.0115068 0.00363516 0.00345755) 14483
(0.0119869 0.00364544 0.00346151) 14483
(0.0124772 0.00365941 0.00346299) 14484
(0.0105626 0.0037341 0.00369064) 14541
(0.0110524 0.00373678 0.00369025) 14542
(0.0115331 0.00374156 0.00368984) 14543
(0.0120124 0.00374996 0.00368823) 14544
(0.01249 0.0037599 0.00368433) 14544
(0.01035 0.00392539 0.00392146) 14600
(0.0108115 0.00392519 0.0039212) 14601
(0.0104027 0.0049985 0.004424) 14840
(0.0108843 0.00499981 0.00442287) 14841
(0.0113663 0.00500272 0.00441909) 14842
(0.0118491 0.00500424 0.00441384) 14843
(0.00980247 0.00527369 0.0043878) 14899
(0.010288 0.00527867 0.00439072) 14900
(0.0107783 0.00527941 0.00438752) 14901
(0.0112737 0.00527847 0.00438304) 14902
(0.0110701 0.00642059 0.00313272) 15262
(0.0115401 0.00641902 0.0031342) 15263
(0.0120209 0.00641419 0.00313448) 15264
(0.0125046 0.00640679 0.0031329) 15265
(0.00474805 0.00642875 0.00272977) 13509
(0.00245808 0.00649879 0.00288203) 6124
(0.00429158 0.00643663 0.00255477) 6188
(0.00783944 0.00644259 0.00284988) 13515
(0.00860528 0.00642871 0.0029167) 13517
(0.00933989 0.00641254 0.00290163) 13518
(0.00773594 0.00439014 0.00169131) 14055
(0.00851332 0.00442254 0.00168478) 14057
(0.00940733 0.00443429 0.00172578) 14058
(0.00695657 0.00412493 0.00186916) 14113
(0.00705089 0.00411618 0.00185286) 14114
(0.00719757 0.00413562 0.00181914) 14114
(0.0052307 0.00343169 0.00334115) 5410
(0.00535293 0.00351235 0.00333607) 5350
(0.00582384 0.00367214 0.00354914) 14471
(0.00813846 0.0036776 0.00344565) 14476
(0.00495042 0.00377633 0.00373382) 14529
(0.00753296 0.00372586 0.00365184) 14535
(0.00582339 0.00508447 0.00445281) 14831
(0.00645896 0.00506521 0.00445867) 14832
(0.00919274 0.00636023 0.00338511) 15198
(0.00565727 0.00640043 0.00311381) 15251
(0.00817152 0.0064264 0.00308801) 15256
(0.0089383 0.00635799 0.00307729) 15257
(0.00940921 0.00637421 0.00311278) 15258
(0.0215756 0.00629377 0.00196887) 13483
(0.0233231 0.0064704 0.00218569) 6106
(0.0187885 0.00668059 0.00416326) 1897
(0.0174286 0.00370635 0.00475029) 10534
(0.0188902 0.00375736 0.00481124) 10537
(0.0174993 0.00328597 0.00165554) 394
(0.0181994 0.00594384 0.00504954) 12576
(0.0181994 0.00594384 0.00504954) 12576
(0.0181994 0.00594384 0.00504954) 12576
(0.0200843 0.00599013 0.00499615) 12340
(0.0200843 0.00599013 0.00499615) 12340
(0.0200843 0.00599013 0.00499615) 12340
(0.0178184 0.00369432 0.00143145) 9215
(0.0184113 0.00408674 0.00127298) 11496
(0.0183632 0.00471993 0.000899714) 11616
(0.0199299 0.00459034 0.000927361) 11559
(0.0170958 0.00587716 0.000924002) 12154
(0.0184665 0.00527879 0.000721993) 11916
(0.0203054 0.00520806 0.000710886) 11920
(0.0192228 0.00537357 0.00524585) 11438
(0.0203939 0.00302813 0.00326278) 820
(0.0231931 0.00300525 0.00327858) 826
(0.0179984 0.00668999 0.00156143) 2495
(0.020184 0.00663642 0.0016059) 2500
(0.0218786 0.00659815 0.00157213) 6763
(0.0114852 0.0064235 0.00287744) 13522
(0.0119638 0.00641616 0.00288198) 13523
(0.0124519 0.00640613 0.00288687) 13524
(0.0102101 0.00635561 0.0025648) 13580
(0.0105969 0.00636504 0.00257043) 13581
(0.0103107 0.00583322 0.00187791) 13760
(0.0107874 0.00582732 0.00187401) 13761
(0.011265 0.00582167 0.00187245) 13762
(0.0102287 0.00559035 0.00172106) 13820
(0.0106425 0.00559074 0.00171676) 13821
(0.0109066 0.0043968 0.00170761) 14061
(0.011385 0.00439892 0.00171163) 14062
(0.0118848 0.00440381 0.0017199) 14063
(0.0123604 0.0044092 0.00172852) 14064
(0.0105056 0.00417284 0.00183576) 14121
(0.010947 0.00417206 0.00183609) 14121
(0.0114287 0.00417637 0.00183994) 14122
(0.0119297 0.00418473 0.00184676) 14123
(0.0124091 0.00419345 0.00185332) 14124
(0.0102791 0.00395989 0.00204834) 14180
(0.010685 0.0039576 0.00204479) 14181
(0.0102211 0.00358432 0.00316477) 14420
(0.0105217 0.00362584 0.00344942) 14481
(0.0110054 0.00362911 0.00345249) 14482
(0.011484 0.00363482 0.0034574) 14482
(0.0119638 0.00364485 0.00346142) 14483
(0.0124536 0.00365868 0.00346301) 14484
(0.0105398 0.00373395 0.00369077) 14541
(0.0110292 0.0037366 0.00369038) 14542
(0.0115102 0.00374126 0.00368994) 14543
(0.0119896 0.00374949 0.00368842) 14543
(0.0124673 0.00375939 0.0036846) 14544
(0.0103272 0.00392527 0.00392159) 14600
(0.0107872 0.00392496 0.00392139) 14601
(0.0103796 0.00499847 0.00442415) 14840
(0.0108603 0.00499972 0.00442314) 14841
(0.0113427 0.00500261 0.00441937) 14842
(0.0118259 0.00500421 0.00441421) 14843
(0.00978058 0.00527365 0.00438778) 14899
(0.0102644 0.00527859 0.004391) 14900
(0.0107533 0.00527941 0.00438793) 14901
(0.0112496 0.0052785 0.0043833) 14902
(0.0110472 0.00642072 0.00313267) 15262
(0.0115171 0.00641921 0.00313416) 15263
(0.0119979 0.0064145 0.00313452) 15263
(0.0124814 0.0064072 0.003133) 15264
(0.00478109 0.00642725 0.00274539) 13509
(0.00286199 0.006481 0.00285881) 13505
(0.00662553 0.00640452 0.00283863) 13513
(0.00785426 0.00644069 0.00284617) 13515
(0.00858113 0.006429 0.0029166) 13517
(0.00931702 0.00641247 0.0029017) 13518
(0.00774056 0.00438773 0.00169361) 14055
(0.00845969 0.0044187 0.00168324) 14056
(0.00938545 0.00443423 0.0017255) 14058
(0.00697295 0.00412698 0.00187094) 14113
(0.00706436 0.00411648 0.00185385) 14114
(0.007162 0.00413207 0.0018226) 14114
(0.00528247 0.00347533 0.00335606) 5350
(0.00534303 0.00350633 0.00333342) 5350
(0.00579711 0.00366722 0.00354274) 14471
(0.00803953 0.0036704 0.00344964) 14476
(0.00498085 0.00380054 0.003748) 14529
(0.00732368 0.00373012 0.00365867) 14534
(0.00581936 0.00508476 0.00445225) 14831
(0.00646864 0.00506869 0.00445765) 14832
(0.00916939 0.00636041 0.00338517) 15198
(0.00546681 0.0064155 0.00310561) 15250
(0.00814466 0.00642687 0.00308513) 15256
(0.00886478 0.00639862 0.00310805) 15257
(0.00938656 0.00637369 0.00311318) 15258
(0.0214374 0.00629524 0.00196379) 13482
(0.0232828 0.00646087 0.00217754) 13426
(0.0186789 0.00668585 0.00416592) 1897
(0.0173811 0.00370434 0.00474889) 10534
(0.0188625 0.00375224 0.00480492) 10537
(0.0174361 0.00328993 0.00165051) 394
(0.0181308 0.00594144 0.00505285) 12576
(0.0181308 0.00594144 0.00505285) 12576
(0.0181308 0.00594144 0.00505285) 12576
(0.0200408 0.00598526 0.00499845) 12340
(0.0200408 0.00598526 0.00499845) 12340
(0.0200408 0.00598526 0.00499845) 12340
(0.0177239 0.00369738 0.00142765) 9215
(0.0183099 0.00409055 0.00126975) 11496
(0.0183021 0.00472449 0.000898002) 11616
(0.0198987 0.00459861 0.000926829) 11559
(0.0170476 0.00587962 0.000925245) 12154
(0.0183846 0.00528244 0.000721558) 11916
(0.0202722 0.00521347 0.000714527) 11920
(0.0191802 0.00536871 0.00524619) 11438
(0.0202761 0.00302469 0.0032612) 820
(0.023139 0.0030095 0.00327674) 826
(0.0178595 0.00669478 0.00155301) 2495
(0.0201256 0.00663843 0.00160722) 2500
(0.0218529 0.00660127 0.00157846) 6763
(0.0114622 0.00642377 0.0028772) 13522
(0.0119408 0.0064166 0.00288175) 13523
(0.0124283 0.00640668 0.00288667) 13524
(0.0101875 0.00635571 0.00256501) 13580
(0.0105723 0.0063652 0.0025702) 13581
(0.0102884 0.00583338 0.00187786) 13760
(0.0107647 0.00582751 0.00187394) 13761
(0.0112419 0.00582195 0.00187235) 13762
(0.0102061 0.00559035 0.0017209) 13820
(0.0106193 0.00559077 0.0017166) 13821
(0.0108806 0.00439663 0.00170718) 14061
(0.0113593 0.0043987 0.00171117) 14062
(0.0118607 0.00440353 0.00171941) 14063
(0.0123376 0.00440896 0.00172802) 14064
(0.0104822 0.00417273 0.00183554) 14120
(0.0109215 0.00417172 0.00183577) 14121
(0.0114033 0.00417592 0.00183958) 14122
(0.0119056 0.00418425 0.00184636) 14123
(0.0123863 0.00419298 0.00185298) 14124
(0.010256 0.00395983 0.0020482) 14180
(0.0106589 0.00395724 0.00204456) 14181
(0.0104988 0.00362567 0.0034495) 14480
(0.0109823 0.00362888 0.00345242) 14481
(0.0114611 0.00363448 0.00345725) 14482
(0.0119408 0.00364427 0.00346133) 14483
(0.01243 0.00365796 0.00346303) 14484
(0.010517 0.00373381 0.00369091) 14541
(0.011006 0.00373642 0.00369051) 14542
(0.0114872 0.00374097 0.00369005) 14542
(0.0119667 0.00374902 0.00368859) 14543
(0.0124446 0.00375888 0.00368487) 14544
(0.0103043 0.00392516 0.00392171) 14600
(0.0107628 0.00392474 0.00392158) 14601
(0.0103565 0.00499843 0.00442431) 14840
(0.0108363 0.00499963 0.00442341) 14841
(0.011319 0.00500249 0.00441965) 14842
(0.0118026 0.00500418 0.00441458) 14843
(0.00975873 0.00527359 0.00438776) 14899
(0.0102408 0.00527852 0.00439128) 14900
(0.0107283 0.0052794 0.00438834) 14901
(0.0112253 0.00527854 0.00438356) 14902
(0.0110244 0.00642085 0.00313263) 15262
(0.0114942 0.00641938 0.00313413) 15262
(0.0119749 0.0064148 0.00313455) 15263
(0.0124583 0.00640761 0.00313311) 15264
(0.00479962 0.00642607 0.00275384) 13509
(0.00376132 0.00642189 0.00274352) 13507
(0.00656753 0.00640669 0.00283891) 13513
(0.00783791 0.00643949 0.00284367) 13515
(0.00855802 0.00642907 0.00291663) 13517
(0.00929393 0.00641271 0.00290157) 13518
(0.00483966 0.00449129 0.00158415) 5709
(0.00775395 0.00438483 0.00169656) 14055
(0.00841019 0.00441505 0.00168226) 14056
(0.00936341 0.00443421 0.00172536) 14058
(0.00698929 0.00412925 0.00187256) 14113
(0.00704838 0.00411692 0.0018548) 14114
(0.00723249 0.00412853 0.00182644) 14114
(0.00534793 0.00353031 0.00336854) 5350
(0.00532488 0.00349503 0.00332953) 5410
(0.0057756 0.00366308 0.00353673) 14471
(0.00790308 0.00366516 0.00345494) 14475
(0.00501719 0.00381591 0.00376109) 14530
(0.00709672 0.00373785 0.00366852) 14534
(0.00582062 0.00508519 0.00445153) 14831
(0.00648147 0.00507156 0.00445653) 14832
(0.00914619 0.00636062 0.00338528) 15198
(0.00536809 0.00642348 0.0030968) 15250
(0.00811694 0.00642733 0.00308261) 15256
(0.00884516 0.00639753 0.00311108) 15257
(0.00936317 0.00637385 0.00311414) 15258
(0.0212877 0.00629846 0.00196081) 13482
(0.023241 0.00645138 0.00216922) 13426
(0.0185676 0.00669132 0.00416867) 1897
(0.0173325 0.00370226 0.00474771) 10534
(0.0188332 0.00374745 0.00479899) 10537
(0.0173723 0.0032937 0.0016454) 394
(0.0180621 0.00593897 0.00505625) 12576
(0.0180621 0.00593897 0.00505625) 12576
(0.0180621 0.00593897 0.00505625) 12576
(0.0199971 0.00598061 0.00500071) 12339
(0.0199971 0.00598061 0.00500071) 12339
(0.0199971 0.00598061 0.00500071) 12339
(0.0176314 0.00370025 0.0014237) 9215
(0.0182091 0.00409433 0.00126634) 11496
(0.0182406 0.00472901 0.00089623) 11616
(0.019867 0.00460675 0.000926273) 11559
(0.0169999 0.00588215 0.000926481) 12153
(0.0183025 0.00528632 0.000721081) 11916
(0.0202369 0.00521859 0.000717952) 11920
(0.0191365 0.00536416 0.00524661) 11438
(0.0201584 0.00302093 0.00325959) 820
(0.0230792 0.00301369 0.00327503) 826
(0.0177149 0.00670061 0.00154402) 2495
(0.0200646 0.00664051 0.00160827) 2500
(0.0218141 0.00660404 0.00158266) 6763
(0.0114393 0.00642403 0.00287697) 13522
(0.0119178 0.00641704 0.00288153) 13523
(0.0124047 0.00640723 0.00288647) 13524
(0.0101649 0.00635582 0.00256523) 13580
(0.0105477 0.00636537 0.00256999) 13581
(0.0102661 0.00583354 0.00187782) 13760
(0.0107419 0.0058277 0.00187388) 13761
(0.0112189 0.00582222 0.00187225) 13762
(0.0101834 0.00559033 0.00172072) 13820
(0.0105961 0.00559081 0.00171643) 13821
(0.0108546 0.00439646 0.00170676) 14061
(0.0113334 0.00439848 0.00171071) 14062
(0.0118365 0.00440326 0.00171892) 14063
(0.0123148 0.00440873 0.00172753) 14064
(0.0104587 0.00417263 0.00183532) 14120
(0.0108961 0.00417138 0.00183545) 14121
(0.0113778 0.00417548 0.00183924) 14122
(0.0118814 0.00418378 0.00184596) 14123
(0.0123635 0.00419251 0.00185263) 14124
(0.0102328 0.00395978 0.00204806) 14180
(0.0106329 0.0039569 0.00204433) 14181
(0.0104759 0.0036255 0.00344959) 14480
(0.0109591 0.00362866 0.00345236) 14481
(0.0114382 0.00363416 0.0034571) 14482
(0.0119178 0.00364371 0.00346123) 14483
(0.0124065 0.00365723 0.00346304) 14484
(0.0104941 0.00373366 0.00369104) 14540
(0.0109828 0.00373625 0.00369064) 14541
(0.0114642 0.0037407 0.00369015) 14542
(0.0119439 0.00374856 0.00368876) 14543
(0.0124219 0.00375836 0.00368513) 14544
(0.0102815 0.00392504 0.00392184) 14600
(0.0107385 0.00392451 0.00392178) 14601
(0.0103335 0.00499839 0.00442445) 14840
(0.0108122 0.00499954 0.00442369) 14841
(0.0112953 0.00500237 0.00441993) 14842
(0.0117794 0.00500414 0.00441494) 14843
(0.00973688 0.00527353 0.00438773) 14899
(0.0102172 0.00527845 0.00439155) 14900
(0.0107032 0.0052794 0.00438877) 14901
(0.011201 0.00527857 0.00438384) 14902
(0.00983292 0.00635555 0.00340536) 15199
(0.0110014 0.00642098 0.00313259) 15262
(0.0114713 0.00641955 0.00313409) 15262
(0.011952 0.00641509 0.00313458) 15263
(0.0124352 0.00640801 0.00313321) 15264
(0.00481927 0.0064247 0.00276265) 13509
(0.00424147 0.00641772 0.00266107) 13568
(0.00650162 0.00640956 0.00283872) 13513
(0.00781689 0.00643894 0.00284215) 13515
(0.00855262 0.00642908 0.00291665) 13517
(0.0092708 0.00641306 0.00290138) 13518
(0.00483755 0.00446996 0.00157522) 5709
(0.0083723 0.00441237 0.00168197) 14056
(0.00934137 0.00443421 0.00172526) 14058
(0.00702208 0.00413162 0.00187399) 14114
(0.00706108 0.00411726 0.00185572) 14114
(0.0072488 0.00412576 0.00183049) 14114
(0.0054114 0.00357768 0.00338509) 14470
(0.00575846 0.00365961 0.00353131) 14471
(0.00773759 0.00366312 0.00346096) 14475
(0.00507735 0.00383189 0.00377861) 14530
(0.00686941 0.00374856 0.00368164) 14533
(0.00582801 0.00508576 0.00445065) 14831
(0.00648904 0.00507379 0.00445553) 14832
(0.0091232 0.00636085 0.00338546) 15198
(0.00534693 0.00642428 0.00309541) 15250
(0.00809059 0.00642764 0.00308049) 15256
(0.00882266 0.00639766 0.00311109) 15257
(0.00933959 0.00637416 0.00311556) 15258
(0.0211268 0.0063035 0.00195894) 13482
(0.0231978 0.00644193 0.00216065) 13426
(0.0184551 0.00669691 0.00417159) 1896
(0.0172824 0.00370008 0.00474675) 10534
(0.0188022 0.00374295 0.00479341) 10537
(0.0173079 0.00329729 0.00164019) 394
(0.0179933 0.00593643 0.00505973) 12575
(0.0179933 0.00593643 0.00505973) 12575
(0.0179933 0.00593643 0.00505973) 12575
(0.0199521 0.00597624 0.00500291) 12339
(0.0199521 0.00597624 0.00500291) 12339
(0.0199521 0.00597624 0.00500291) 12339
(0.0175412 0.00370299 0.00141956) 9215
(0.0181087 0.00409801 0.00126275) 11496
(0.018179 0.00473353 0.000894393) 11616
(0.0198344 0.00461469 0.000925689) 11559
(0.0169533 0.0058848 0.000927752) 12153
(0.0182206 0.00529043 0.000720589) 11916
(0.0201994 0.00522344 0.000721156) 11920
(0.0190917 0.00535994 0.00524711) 11438
(0.0200418 0.00301692 0.00325792) 820
(0.0230141 0.00301781 0.00327348) 826
(0.0175718 0.00670744 0.00153522) 2495
(0.0200021 0.00664267 0.00160911) 2500
(0.0217629 0.00660666 0.00158496) 6763
(0.0114163 0.00642429 0.00287674) 13522
(0.0118949 0.00641746 0.00288131) 13523
(0.0123812 0.00640778 0.00288626) 13524
(0.0101422 0.00635594 0.00256547) 13580
(0.0105232 0.00636554 0.00256978) 13581
(0.0102438 0.0058337 0.00187778) 13760
(0.0107192 0.00582788 0.0018738) 13761
(0.0111958 0.00582249 0.00187215) 13762
(0.0101606 0.00559032 0.00172055) 13820
(0.0105729 0.00559085 0.00171625) 13821
(0.00994104 0.0043958 0.00171274) 14059
(0.00994104 0.0043958 0.00171274) 14059
(0.00994104 0.0043958 0.00171274) 14059
(0.0108286 0.0043963 0.00170633) 14061
(0.0113076 0.00439827 0.00171025) 14062
(0.0118123 0.00440298 0.00171844) 14063
(0.0122919 0.00440849 0.00172702) 14064
(0.0104352 0.00417254 0.0018351) 14120
(0.0108706 0.00417105 0.00183514) 14121
(0.0113522 0.00417505 0.00183889) 14122
(0.0118572 0.00418331 0.00184556) 14123
(0.0123407 0.00419203 0.00185228) 14124
(0.0102097 0.00395974 0.00204793) 14180
(0.010607 0.00395656 0.0020441) 14181
(0.0104529 0.00362534 0.00344969) 14480
(0.0109359 0.00362843 0.00345231) 14481
(0.0114153 0.00363384 0.00345695) 14482
(0.0118948 0.00364315 0.00346113) 14483
(0.0123829 0.00365651 0.00346305) 14484
(0.0104712 0.00373351 0.00369118) 14540
(0.0109596 0.00373607 0.00369077) 14541
(0.0114411 0.00374043 0.00369025) 14542
(0.011921 0.00374811 0.00368893) 14543
(0.0123992 0.00375785 0.0036854) 14544
(0.0102586 0.00392492 0.00392196) 14600
(0.0107141 0.00392428 0.00392197) 14601
(0.0103104 0.00499837 0.00442459) 14840
(0.0107881 0.00499946 0.00442397) 14841
(0.0112715 0.00500225 0.00442021) 14842
(0.0117561 0.00500409 0.00441529) 14843
(0.00971501 0.00527351 0.00438769) 14899
(0.0101936 0.00527837 0.00439181) 14900
(0.010678 0.00527939 0.0043892) 14901
(0.0111766 0.00527861 0.00438412) 14902
(0.00980977 0.00635565 0.00340521) 15199
(0.0109785 0.00642111 0.00313255) 15261
(0.0114485 0.00641972 0.00313404) 15262
(0.011929 0.00641538 0.0031346) 15263
(0.0124121 0.00640841 0.00313332) 15264
(0.00483863 0.0064234 0.00277127) 13509
(0.00446864 0.00643935 0.00264146) 13568
(0.00642075 0.00641256 0.00283888) 13512
(0.00779701 0.00643825 0.00284073) 13515
(0.00852988 0.00642918 0.00291657) 13517
(0.00924783 0.00641337 0.00290121) 13518
(0.00484127 0.00444996 0.00156857) 5709
(0.00833937 0.00440972 0.00168208) 14056
(0.00931836 0.00443391 0.0017248) 14058
(0.00703558 0.00413406 0.0018752) 14114
(0.00707233 0.00411757 0.00185662) 14114
(0.00731539 0.00412345 0.00183438) 14114
(0.00544444 0.00361414 0.00340529) 14470
(0.00574471 0.00365673 0.00352656) 14471
(0.00754797 0.00366448 0.00346789) 14475
(0.00513242 0.00384353 0.00379158) 14590
(0.00665226 0.00376121 0.00369826) 14533
(0.00584043 0.00508646 0.00444966) 14831
(0.006468 0.00507489 0.00445549) 14832
(0.00910064 0.00636109 0.00338569) 15198
(0.00532008 0.00642558 0.00309372) 15250
(0.00879595 0.00639932 0.00310903) 15257
(0.00931627 0.00637426 0.0031172) 15258
(0.0209543 0.00631053 0.00195834) 13481
(0.0231538 0.00643253 0.00215186) 13426
(0.0183431 0.00670192 0.0041751) 1896
(0.017231 0.00369775 0.00474599) 10534
(0.0187695 0.00373873 0.00478819) 10537
(0.0172428 0.00330068 0.00163487) 394
(0.0179246 0.00593388 0.00506328) 12575
(0.0179246 0.00593388 0.00506328) 12575
(0.0179246 0.00593388 0.00506328) 12575
(0.0199053 0.00597209 0.00500505) 12339
(0.0199053 0.00597209 0.00500505) 12339
(0.0199053 0.00597209 0.00500505) 12339
(0.0174534 0.00370571 0.00141515) 9214
(0.0180094 0.0041016 0.00125892) 11496
(0.0181176 0.00473809 0.000892483) 11616
(0.0198011 0.00462245 0.000925074) 11559
(0.0169079 0.00588754 0.000929077) 12153
(0.0181388 0.00529474 0.000720061) 11916
(0.0201596 0.00522803 0.000724143) 11920
(0.0190459 0.00535604 0.0052477) 11438
(0.0199239 0.00301252 0.00325626) 819
(0.0229437 0.00302181 0.00327204) 825
(0.0174402 0.00671507 0.00152744) 2494
(0.0199384 0.00664497 0.00160976) 2499
(0.0216979 0.00660939 0.0015855) 6763
(0.00994493 0.00642717 0.00287207) 13519
(0.00994493 0.00642717 0.00287207) 13519
(0.00994493 0.00642717 0.00287207) 13519
(0.0113933 0.00642453 0.00287652) 13522
(0.0118719 0.00641787 0.00288109) 13523
(0.0123577 0.00640832 0.00288605) 13524
(0.0101195 0.00635606 0.00256573) 13580
(0.0104986 0.00636571 0.0025696) 13580
(0.0102214 0.00583386 0.00187772) 13760
(0.0106965 0.00582806 0.00187373) 13761
(0.0111727 0.00582275 0.00187206) 13762
(0.0101377 0.00559032 0.00172036) 13820
(0.0105496 0.00559088 0.00171607) 13821
(0.00968673 0.00467162 0.00163049) 13999
(0.00991802 0.00439577 0.00171263) 14059
(0.00991802 0.00439577 0.00171263) 14059
(0.00991802 0.00439577 0.00171263) 14059
(0.0108027 0.00439614 0.00170591) 14061
(0.0112817 0.00439807 0.00170979) 14062
(0.0117879 0.0044027 0.00171797) 14063
(0.012269 0.00440826 0.00172652) 14064
(0.0108452 0.00417072 0.00183482) 14121
(0.0113267 0.00417461 0.00183855) 14122
(0.0118329 0.00418286 0.00184515) 14123
(0.0123178 0.00419155 0.00185192) 14124
(0.0101866 0.00395971 0.00204779) 14180
(0.0105811 0.00395623 0.00204387) 14181
(0.0104299 0.00362518 0.0034498) 14480
(0.0109126 0.0036282 0.00345227) 14481
(0.0113924 0.00363353 0.00345681) 14482
(0.0118718 0.00364261 0.00346103) 14483
(0.0123593 0.00365579 0.00346304) 14484
(0.0104483 0.00373335 0.00369131) 14540
(0.0109362 0.00373588 0.0036909) 14541
(0.0114181 0.00374016 0.00369036) 14542
(0.0118982 0.00374766 0.00368909) 14543
(0.0123765 0.00375733 0.00368566) 14544
(0.0102357 0.00392481 0.00392207) 14600
(0.0106897 0.00392406 0.00392217) 14601
(0.0102873 0.00499834 0.00442473) 14840
(0.0107639 0.00499937 0.00442427) 14841
(0.0112477 0.00500213 0.00442049) 14842
(0.0117328 0.00500404 0.00441564) 14843
(0.0101701 0.00527829 0.00439207) 14900
(0.0106528 0.00527939 0.00438963) 14901
(0.0111522 0.00527865 0.00438441) 14902
(0.00978667 0.00635575 0.00340506) 15199
(0.0109555 0.00642124 0.00313252) 15261
(0.0114256 0.00641988 0.003134) 15262
(0.0119061 0.00641565 0.00313461) 15263
(0.0123891 0.0064088 0.00313342) 15264
(0.00486189 0.00642134 0.00278156) 13509
(0.00459621 0.00644615 0.00266907) 13569
(0.00637582 0.00641522 0.0028398) 13512
(0.0078056 0.00643711 0.00283929) 13515
(0.00850604 0.00642967 0.00291611) 13517
(0.00922496 0.00641361 0.00290109) 13518
(0.00484723 0.00442952 0.00156689) 5709
(0.00831211 0.00440746 0.0016825) 14056
(0.00929484 0.00443328 0.00172382) 14058
(0.00705264 0.00413678 0.00187706) 14114
(0.00705643 0.004118 0.00185749) 14114
(0.00733514 0.00412241 0.0018363) 14114
(0.00827853 0.0041805 0.00180816) 14116
(0.00546601 0.0036441 0.00342901) 14470
(0.00573347 0.00365449 0.00352253) 14471
(0.00738807 0.00366642 0.00347252) 14474
(0.00523262 0.00385984 0.00381012) 14590
(0.00645983 0.00377427 0.0037169) 14532
(0.00585738 0.00508724 0.00444855) 14831
(0.00644815 0.00507584 0.0044554) 14832
(0.00907806 0.00636128 0.00338574) 15198
(0.00518914 0.0064368 0.00307792) 15250
(0.00876879 0.00640074 0.00310967) 15257
(0.00929231 0.00637548 0.00311638) 15258
(0.0207673 0.00631996 0.00195949) 13481
(0.0231082 0.00642322 0.0021428) 13426
(0.0241161 0.00664392 0.00225435) 6108
(0.0182339 0.00670574 0.00417952) 1896
(0.0208139 0.00668119 0.00410135) 1961
(0.0171778 0.0036952 0.00474544) 10534
(0.0187352 0.00373478 0.00478328) 10537
(0.0171772 0.00330386 0.00162943) 394
(0.0178561 0.00593131 0.00506692) 12575
(0.0178561 0.00593131 0.00506692) 12575
(0.0178561 0.00593131 0.00506692) 12575
(0.0198568 0.00596817 0.00500714) 12339
(0.0198568 0.00596817 0.00500714) 12339
(0.0198568 0.00596817 0.00500714) 12339
(0.0173684 0.00370845 0.00141045) 9214
(0.0179111 0.00410503 0.00125483) 11495
(0.0180563 0.0047427 0.000890499) 11616
(0.0197666 0.00463 0.000924427) 11559
(0.0180669 0.00529961 0.000719941) 11916
(0.0201172 0.00523238 0.000726898) 11920
(0.018999 0.00535246 0.00524835) 11437
(0.0198057 0.00300795 0.00325455) 819
(0.0228676 0.00302564 0.00327073) 825
(0.017332 0.00672247 0.00152162) 2494
(0.0198743 0.00664739 0.00161028) 2499
(0.0216205 0.00661237 0.00158468) 6763
(0.00992153 0.00642726 0.00287208) 13519
(0.00992153 0.00642726 0.00287208) 13519
(0.00992153 0.00642726 0.00287208) 13519
(0.0113703 0.00642477 0.00287629) 13522
(0.011849 0.00641828 0.00288087) 13523
(0.0123342 0.00640886 0.00288584) 13524
(0.0100968 0.00635618 0.00256599) 13580
(0.0104741 0.00636588 0.00256943) 13580
(0.010199 0.005834 0.00187766) 13760
(0.0106737 0.00582823 0.00187364) 13761
(0.0111496 0.005823 0.00187197) 13762
(0.0101148 0.00559033 0.00172018) 13820
(0.0105264 0.00559091 0.00171589) 13821
(0.00966395 0.00467142 0.00163046) 13999
(0.00989504 0.00439574 0.00171252) 14059
(0.00989504 0.00439574 0.00171252) 14059
(0.00989504 0.00439574 0.00171252) 14059
(0.0107768 0.00439599 0.00170549) 14061
(0.0112557 0.00439787 0.00170934) 14062
(0.0117636 0.00440243 0.0017175) 14063
(0.012246 0.00440803 0.00172601) 14064
(0.0108198 0.0041704 0.00183451) 14121
(0.0113011 0.00417418 0.00183822) 14122
(0.0118085 0.0041824 0.00184475) 14123
(0.0122949 0.00419106 0.00185156) 14124
(0.0101636 0.00395968 0.00204766) 14180
(0.0105553 0.00395591 0.00204366) 14181
(0.0104069 0.00362502 0.00344992) 14480
(0.0108892 0.00362796 0.00345223) 14481
(0.0113694 0.00363322 0.00345666) 14482
(0.0118489 0.00364209 0.00346092) 14483
(0.0123357 0.00365507 0.00346304) 14484
(0.0104253 0.0037332 0.00369144) 14540
(0.0109129 0.0037357 0.00369104) 14541
(0.011395 0.00373991 0.00369046) 14542
(0.0118753 0.00374723 0.00368925) 14543
(0.0123537 0.00375681 0.00368592) 14544
(0.0102128 0.00392469 0.00392219) 14600
(0.0106653 0.00392383 0.00392237) 14601
(0.0102643 0.00499832 0.00442486) 14840
(0.0107396 0.00499928 0.00442456) 14841
(0.0112238 0.00500201 0.00442078) 14842
(0.0117095 0.00500398 0.00441598) 14843
(0.0101467 0.00527819 0.00439232) 14900
(0.0106275 0.00527942 0.00439007) 14901
(0.0111276 0.00527868 0.0043847) 14902
(0.00976358 0.00635586 0.00340492) 15199
(0.0109325 0.00642138 0.00313248) 15261
(0.0114027 0.00642003 0.00313395) 15262
(0.0118831 0.00641592 0.00313462) 15263
(0.012366 0.00640919 0.00313352) 15264
(0.00489854 0.00641946 0.00279802) 13509
(0.00466685 0.00644586 0.002696) 13569
(0.00631402 0.00641819 0.00284108) 13512
(0.00779463 0.00643537 0.00283766) 13515
(0.00848065 0.00643072 0.00291502) 13516
(0.00920247 0.00641365 0.00290112) 13518
(0.00484125 0.00441255 0.00157076) 5709
(0.00828809 0.00440555 0.00168309) 14056
(0.00927134 0.0044326 0.0017228) 14058
(0.00709104 0.00414009 0.00187992) 14114
(0.00706627 0.00411832 0.00185831) 14114
(0.00735441 0.00412164 0.00183809) 14114
(0.00820355 0.00417419 0.00180857) 14116
(0.00547984 0.00366628 0.00345533) 14470
(0.00572259 0.00365227 0.00351842) 14471
(0.00723427 0.00366912 0.00347839) 14474
(0.00533731 0.00387445 0.00382497) 14590
(0.00623421 0.00379192 0.00374481) 14532
(0.00587845 0.00508808 0.00444734) 14831
(0.00642904 0.00507665 0.00445526) 14832
(0.00740713 0.0049908 0.00444081) 14834
(0.00905637 0.00636142 0.00338548) 15198
(0.00478723 0.00645536 0.00293961) 13509
(0.00873868 0.00640298 0.00310924) 15257
(0.00926552 0.0063802 0.00311607) 15258
(0.0205671 0.00633181 0.00196155) 13481
(0.0230606 0.00641396 0.00213338) 13426
(0.0240793 0.00663864 0.0022563) 6108
(0.0181364 0.00670647 0.0041855) 1896
(0.0207577 0.0066744 0.00410732) 1961
(0.0171229 0.00369242 0.00474501) 10534
(0.0186992 0.00373105 0.0047787) 10537
(0.0171109 0.00330683 0.00162387) 394
(0.0177878 0.00592873 0.00507062) 12575
(0.0177878 0.00592873 0.00507062) 12575
(0.0177878 0.00592873 0.00507062) 12575
(0.0198064 0.00596448 0.0050092) 12339
(0.0198064 0.00596448 0.0050092) 12339
(0.0198064 0.00596448 0.0050092) 12339
(0.0172859 0.00371112 0.00140553) 9214
(0.017814 0.00410819 0.00125043) 11495
(0.0179951 0.0047474 0.000888436) 11615
(0.0197305 0.00463734 0.000923763) 11559
(0.0179974 0.0053047 0.000719876) 11855
(0.0200724 0.00523648 0.000729425) 11920
(0.0189513 0.00534921 0.00524907) 11437
(0.019686 0.00300332 0.00325276) 819
(0.022786 0.00302924 0.00326952) 825
(0.0172565 0.00672789 0.00151823) 2494
(0.0198092 0.00664991 0.00161063) 2499
(0.0215455 0.00661484 0.00158447) 6763
(0.00989814 0.00642735 0.00287209) 13519
(0.00989814 0.00642735 0.00287209) 13519
(0.00989814 0.00642735 0.00287209) 13519
(0.0113472 0.00642501 0.00287607) 13522
(0.0118261 0.00641867 0.00288065) 13523
(0.0123108 0.0064094 0.00288563) 13524
(0.010074 0.00635631 0.00256627) 13580
(0.0104496 0.00636605 0.00256928) 13580
(0.0101765 0.00583414 0.00187759) 13760
(0.0106509 0.0058284 0.00187356) 13761
(0.0111266 0.00582324 0.00187189) 13762
(0.0100919 0.00559034 0.00172) 13820
(0.0105031 0.00559094 0.0017157) 13821
(0.00964117 0.00467122 0.00163043) 13999
(0.00987207 0.0043957 0.00171241) 14059
(0.00987207 0.0043957 0.00171241) 14059
(0.00987207 0.0043957 0.00171241) 14059
(0.0107509 0.00439584 0.00170508) 14061
(0.0112297 0.00439768 0.00170889) 14062
(0.0117391 0.00440215 0.00171703) 14063
(0.012223 0.00440779 0.00172551) 14064
(0.0107944 0.00417008 0.00183421) 14121
(0.0112755 0.00417376 0.00183789) 14122
(0.0117841 0.00418196 0.00184434) 14123
(0.0122719 0.00419058 0.0018512) 14124
(0.0101405 0.00395966 0.00204753) 14180
(0.0105296 0.0039556 0.00204344) 14181
(0.0103838 0.00362486 0.00345004) 14480
(0.0108658 0.00362772 0.00345221) 14481
(0.0113464 0.00363293 0.00345652) 14482
(0.0118259 0.00364157 0.0034608) 14483
(0.0123122 0.00365436 0.00346302) 14484
(0.0104023 0.00373305 0.00369158) 14540
(0.0108895 0.00373552 0.00369119) 14541
(0.0113718 0.00373966 0.00369057) 14542
(0.0118524 0.0037468 0.0036894) 14543
(0.0123309 0.00375629 0.00368618) 14544
(0.0101899 0.00392457 0.00392231) 14600
(0.0106409 0.00392361 0.00392257) 14601
(0.00959844 0.00470683 0.00437718) 14779
(0.0102413 0.00499831 0.00442499) 14840
(0.0107153 0.00499918 0.00442486) 14841
(0.0111999 0.00500189 0.00442106) 14842
(0.0116862 0.00500393 0.00441631) 14843
(0.0101232 0.00527808 0.00439257) 14900
(0.0106022 0.00527947 0.00439052) 14901
(0.011103 0.0052787 0.00438501) 14902
(0.00974044 0.00635598 0.00340477) 15199
(0.00992686 0.00642145 0.00312439) 15259
(0.00992686 0.00642145 0.00312439) 15259
(0.00992686 0.00642145 0.00312439) 15259
(0.0109095 0.00642152 0.00313245) 15261
(0.0113798 0.00642018 0.0031339) 15262
(0.0118602 0.00641618 0.00313463) 15263
(0.0123429 0.00640957 0.00313362) 15264
(0.00491587 0.00641842 0.00280528) 13509
(0.00471234 0.00644352 0.00271598) 13569
(0.00625199 0.00642055 0.00284104) 13512
(0.00781181 0.00643291 0.0028356) 13515
(0.0084488 0.00643334 0.00291209) 13516
(0.00918073 0.00641329 0.00290145) 13518
(0.00482329 0.00440379 0.00157581) 5709
(0.00826977 0.00440388 0.00168396) 14056
(0.00924725 0.00443166 0.00172148) 14058
(0.00711685 0.00414388 0.00188319) 14114
(0.00704994 0.00411874 0.00185911) 14114
(0.00737431 0.00412108 0.00184) 14114
(0.00813109 0.00416861 0.00180955) 14116
(0.00548815 0.00368648 0.00348809) 14470
(0.00571087 0.00364984 0.00351391) 14471
(0.00708711 0.00367218 0.00348575) 14474
(0.00546546 0.00388717 0.00383395) 14590
(0.00604365 0.00380717 0.00377419) 14532
(0.00590558 0.00508896 0.004446) 14831
(0.0064109 0.00507734 0.00445509) 14832
(0.00731463 0.00500127 0.00444464) 14834
(0.00903698 0.00636148 0.00338473) 15198
(0.00446643 0.00639121 0.0028269) 13508
(0.0061705 0.00637736 0.00310495) 15252
(0.00872197 0.00640178 0.00310618) 15257
(0.0092324 0.00639683 0.00312181) 15258
(0.018017 0.00693654 0.00354669) 2016
(0.0203514 0.0063466 0.00196453) 13480
(0.0230119 0.00640484 0.00212369) 13426
(0.0240419 0.00663305 0.00225795) 6108
(0.0180527 0.00670513 0.00419241) 1896
(0.0206984 0.00666818 0.00411294) 1961
(0.0170659 0.00368929 0.0047447) 10534
(0.0186618 0.00372754 0.00477438) 10537
(0.0170492 0.00331019 0.00161806) 394
(0.0177198 0.00592612 0.00507438) 12575
(0.0177198 0.00592612 0.00507438) 12575
(0.0177198 0.00592612 0.00507438) 12575
(0.0197542 0.005961 0.00501123) 12339
(0.0197542 0.005961 0.00501123) 12339
(0.0197542 0.005961 0.00501123) 12339
(0.0172057 0.00371364 0.00140047) 9214
(0.0177175 0.00411086 0.00124573) 11495
(0.0179341 0.00475218 0.00088629) 11615
(0.0196923 0.00464445 0.000923083) 11559
(0.0179288 0.00530992 0.000719794) 11855
(0.0200248 0.00524034 0.000731715) 11920
(0.0189026 0.00534629 0.00524984) 11437
(0.019563 0.00299879 0.00325087) 32689
(0.0226997 0.0030326 0.00326839) 825
(0.0171957 0.00673208 0.00151574) 2494
(0.0197431 0.00665252 0.00161081) 2499
(0.0214758 0.00661692 0.00158517) 6762
(0.00987476 0.00642744 0.0028721) 13519
(0.00987476 0.00642744 0.0028721) 13519
(0.00987476 0.00642744 0.0028721) 13519
(0.0113241 0.00642523 0.00287585) 13522
(0.0118032 0.00641906 0.00288043) 13523
(0.0122874 0.00640993 0.00288541) 13524
(0.0100512 0.00635644 0.00256657) 13580
(0.0104251 0.00636623 0.00256914) 13580
(0.010154 0.00583428 0.0018775) 13760
(0.0106281 0.00582858 0.00187348) 13761
(0.0111035 0.00582347 0.0018718) 13762
(0.0100689 0.00559037 0.00171981) 13820
(0.0104798 0.00559097 0.00171551) 13820
(0.00961837 0.00467104 0.0016304) 13999
(0.00984912 0.00439566 0.00171231) 14059
(0.00984912 0.00439566 0.00171231) 14059
(0.00984912 0.00439566 0.00171231) 14059
(0.0107251 0.00439569 0.00170467) 14061
(0.0112036 0.00439749 0.00170844) 14062
(0.0117146 0.00440189 0.00171656) 14063
(0.0121999 0.00440755 0.00172501) 14064
(0.0107691 0.00416977 0.0018339) 14121
(0.0112498 0.00417335 0.00183756) 14122
(0.0117596 0.0041815 0.00184395) 14123
(0.0122488 0.0041901 0.00185083) 14124
(0.0101175 0.00395965 0.0020474) 14180
(0.010504 0.0039553 0.00204323) 14181
(0.0103607 0.0036247 0.00345015) 14480
(0.0108423 0.00362747 0.00345219) 14481
(0.0113233 0.00363263 0.00345638) 14482
(0.011803 0.00364107 0.00346068) 14483
(0.0122886 0.00365365 0.003463) 14484
(0.0103793 0.0037329 0.00369172) 14540
(0.0108661 0.00373533 0.00369133) 14541
(0.0113486 0.00373941 0.00369068) 14542
(0.0118295 0.00374638 0.00368954) 14543
(0.0123082 0.00375578 0.00368643) 14544
(0.0101669 0.00392446 0.00392242) 14600
(0.0106166 0.00392338 0.00392277) 14601
(0.00957558 0.00470664 0.00437718) 14779
(0.0102183 0.0049983 0.00442511) 14840
(0.010691 0.00499908 0.00442517) 14841
(0.0111759 0.00500177 0.00442135) 14842
(0.0116628 0.00500386 0.00441664) 14843
(0.0100999 0.00527797 0.00439281) 14900
(0.0105768 0.00527953 0.00439097) 14901
(0.0110784 0.00527873 0.00438533) 14902
(0.00971732 0.0063561 0.00340462) 15199
(0.00990353 0.00642156 0.00312432) 15259
(0.00990353 0.00642156 0.00312432) 15259
(0.00990353 0.00642156 0.00312432) 15259
(0.0108864 0.00642165 0.00313241) 15261
(0.0113569 0.00642033 0.00313386) 15262
(0.0118373 0.00641643 0.00313464) 15263
(0.0123199 0.00640995 0.00313372) 15264
(0.00492308 0.00641688 0.00280781) 13509
(0.00477617 0.00644235 0.00274548) 13509
(0.00618583 0.00642345 0.0028409) 13512
(0.00783293 0.00642983 0.00283424) 13515
(0.00841048 0.00643537 0.00290822) 13516
(0.00915771 0.00641349 0.00290133) 13518
(0.00481026 0.00440005 0.00157906) 5709
(0.00542337 0.00452003 0.00168365) 14050
(0.00825424 0.00440229 0.00168499) 14056
(0.00922258 0.00443046 0.00171995) 14058
(0.00715075 0.00414736 0.00188612) 14114
(0.00706018 0.00411918 0.00185994) 14114
(0.00735843 0.00412092 0.00184191) 14114
(0.00809121 0.00416373 0.00181089) 14116
(0.00549744 0.00370415 0.00352392) 14470
(0.00569451 0.00364644 0.00350804) 14471
(0.00696991 0.00367505 0.00349312) 14473
(0.00490444 0.00368032 0.00373066) 5289
(0.00593388 0.00381485 0.00379339) 14531
(0.00593641 0.00508978 0.00444454) 14831
(0.0063941 0.00507796 0.00445487) 14832
(0.00723717 0.00501055 0.00444752) 14834
(0.00901542 0.00636169 0.00338516) 15198
(0.0040298 0.00635392 0.00285656) 13508
(0.00606907 0.00638365 0.00310921) 15252
(0.00866665 0.00640989 0.00310407) 15257
(0.00921044 0.00639597 0.00312242) 15258
(0.0179657 0.0069348 0.00355097) 2015
(0.0201226 0.00636497 0.00196843) 13480
(0.0229617 0.00639579 0.00211376) 13425
(0.0240039 0.00662711 0.00225923) 6108
(0.01797 0.00670358 0.00419974) 1895
(0.0206364 0.0066626 0.00411821) 1961
(0.0186229 0.00372422 0.00477034) 10537
(0.0169948 0.00331436 0.00161196) 393
(0.018898 0.00322805 0.00172355) 457
(0.0176521 0.00592347 0.00507822) 12575
(0.0176521 0.00592347 0.00507822) 12575
(0.0176521 0.00592347 0.00507822) 12575
(0.0197002 0.00595776 0.00501323) 12339
(0.0197002 0.00595776 0.00501323) 12339
(0.0197002 0.00595776 0.00501323) 12339
(0.0211064 0.00606426 0.00496079) 12342
(0.0171274 0.003716 0.00139532) 9214
(0.0176209 0.0041128 0.0012408) 11495
(0.0178732 0.00475704 0.000884057) 11615
(0.0196521 0.00465135 0.000922383) 11559
(0.0178599 0.00531522 0.00071965) 11855
(0.0199747 0.00524399 0.000733777) 11919
(0.0208371 0.00508732 0.000643455) 11921
(0.0188531 0.00534369 0.00525066) 11437
(0.0194326 0.00299414 0.00324892) 32544
(0.0226083 0.00303565 0.00326733) 825
(0.0196758 0.00665522 0.00161083) 2499
(0.0214126 0.00661874 0.00158682) 2502
(0.00985137 0.00642752 0.00287211) 13519
(0.00985137 0.00642752 0.00287211) 13519
(0.00985137 0.00642752 0.00287211) 13519
(0.0113009 0.00642546 0.00287564) 13522
(0.0117803 0.00641944 0.00288022) 13523
(0.012264 0.00641046 0.0028852) 13524
(0.0100283 0.00635657 0.00256684) 13580
(0.0104007 0.00636642 0.00256906) 13580
(0.0101314 0.0058344 0.0018774) 13760
(0.0106054 0.00582875 0.00187339) 13761
(0.0110804 0.00582369 0.00187173) 13762
(0.0104564 0.005591 0.00171532) 13820
(0.00959558 0.00467084 0.00163037) 13999
(0.00982619 0.00439562 0.00171222) 14059
(0.00982619 0.00439562 0.00171222) 14059
(0.00982619 0.00439562 0.00171222) 14059
(0.0106993 0.00439555 0.00170425) 14061
(0.0111776 0.00439729 0.001708) 14062
(0.0116899 0.00440167 0.00171608) 14063
(0.0121768 0.00440729 0.00172452) 14064
(0.0107438 0.00416946 0.00183361) 14121
(0.0112242 0.00417295 0.00183723) 14122
(0.011735 0.00418102 0.00184358) 14123
(0.0122257 0.00418964 0.00185046) 14124
(0.0100944 0.00395964 0.00204727) 14180
(0.0104785 0.00395502 0.00204303) 14180
(0.0103375 0.00362454 0.00345027) 14480
(0.0108187 0.00362722 0.00345219) 14481
(0.0113002 0.00363235 0.00345625) 14482
(0.0117801 0.00364058 0.00346056) 14483
(0.0122651 0.00365294 0.00346298) 14484
(0.0103562 0.00373275 0.00369187) 14540
(0.0108426 0.00373514 0.00369149) 14541
(0.0113254 0.00373917 0.00369078) 14542
(0.0118066 0.00374596 0.00368968) 14543
(0.0122854 0.00375526 0.00368668) 14544
(0.010144 0.00392434 0.00392253) 14600
(0.0105922 0.00392316 0.00392296) 14601
(0.00955274 0.00470645 0.00437718) 14779
(0.0101953 0.00499829 0.00442523) 14840
(0.0106666 0.00499898 0.00442549) 14841
(0.0111519 0.00500165 0.00442164) 14842
(0.0116394 0.0050038 0.00441696) 14843
(0.0100765 0.00527786 0.00439304) 14900
(0.0105514 0.0052796 0.00439142) 14901
(0.0110537 0.00527875 0.00438565) 14902
(0.00969424 0.00635622 0.00340448) 15199
(0.0098802 0.00642168 0.00312425) 15259
(0.0098802 0.00642168 0.00312425) 15259
(0.0098802 0.00642168 0.00312425) 15259
(0.0103859 0.00642272 0.00312982) 15260
(0.0108632 0.0064218 0.00313238) 15261
(0.011334 0.00642047 0.00313381) 15262
(0.0118144 0.00641667 0.00313464) 15263
(0.0122968 0.00641033 0.00313382) 15264
(0.00494013 0.00641583 0.00281446) 13509
(0.00481337 0.00643949 0.0027634) 13509
(0.00609868 0.00642679 0.00284064) 13512
(0.0078561 0.00642623 0.00283339) 13515
(0.00836003 0.00643844 0.00290086) 13516
(0.00913447 0.00641374 0.00290116) 13518
(0.00479237 0.00439637 0.00158269) 5709
(0.00526245 0.0045338 0.00166637) 14050
(0.00823823 0.00440042 0.00168616) 14056
(0.00919699 0.00442882 0.00171806) 14058
(0.00716681 0.00415049 0.00188868) 14114
(0.00707776 0.00412002 0.00186165) 14114
(0.00738036 0.00412083 0.00184365) 14114
(0.00802416 0.00415958 0.00181244) 14116
(0.00553045 0.00372031 0.00356724) 14531
(0.00568876 0.00364539 0.00350535) 14471
(0.00688324 0.00367698 0.00349866) 14473
(0.00492424 0.00370017 0.00373739) 14529
(0.0058322 0.00381968 0.00381022) 14531
(0.00597042 0.00509053 0.004443) 14831
(0.00637531 0.00507844 0.00445471) 14832
(0.00717393 0.0050195 0.0044496) 14834
(0.00899416 0.00636184 0.00338548) 15197
(0.00279917 0.00647365 0.00302351) 15245
(0.00592866 0.00639275 0.00311396) 15251
(0.00862114 0.00641438 0.0031019) 15257
(0.00918772 0.00639605 0.00312147) 15258
(0.0179124 0.00693321 0.00355526) 2015
(0.0198744 0.0063888 0.00197417) 13479
(0.0229092 0.00638687 0.00210372) 13425
(0.0239657 0.0066208 0.00226) 6107
(0.0178871 0.00670194 0.00420742) 1895
(0.0205712 0.0066577 0.00412311) 1961
(0.0185827 0.00372108 0.00476655) 10537
(0.0188448 0.00323357 0.00171904) 457
(0.0175847 0.00592072 0.00508213) 12575
(0.0175847 0.00592072 0.00508213) 12575
(0.0175847 0.00592072 0.00508213) 12575
(0.0196443 0.00595474 0.00501521) 12339
(0.0196443 0.00595474 0.00501521) 12339
(0.0196443 0.00595474 0.00501521) 12339
(0.0210768 0.00605576 0.00496511) 12342
(0.0170506 0.00371817 0.00139011) 9214
(0.0175241 0.00411394 0.0012357) 11495
(0.0202432 0.0040285 0.00128654) 12760
(0.0178122 0.00476192 0.000881743) 11615
(0.0196095 0.00465808 0.000921639) 11559
(0.0183058 0.00587246 0.000920224) 12156
(0.0177907 0.00532062 0.000719456) 11855
(0.019922 0.00524742 0.000735593) 11919
(0.0208582 0.00510085 0.000651732) 11921
(0.0188027 0.00534142 0.00525152) 11077
(0.0201561 0.00545427 0.00524674) 12520
(0.019289 0.00298884 0.00324705) 32544
(0.0225118 0.00303834 0.00326635) 825
(0.0196079 0.00665804 0.00161072) 2499
(0.0213489 0.00662045 0.0015885) 2502
(0.00982797 0.0064276 0.00287211) 13519
(0.00982797 0.0064276 0.00287211) 13519
(0.00982797 0.0064276 0.00287211) 13519
(0.0112778 0.00642567 0.00287542) 13522
(0.0117575 0.0064198 0.00288001) 13523
(0.0122407 0.00641098 0.00288498) 13524
(0.0103764 0.0063666 0.00256899) 13580
(0.0101087 0.00583449 0.00187728) 13760
(0.0105826 0.00582892 0.0018733) 13761
(0.0110573 0.00582391 0.00187165) 13762
(0.0104331 0.00559102 0.00171512) 13820
(0.00957279 0.00467067 0.00163033) 13999
(0.00980328 0.00439557 0.00171212) 14059
(0.00980328 0.00439557 0.00171212) 14059
(0.00980328 0.00439557 0.00171212) 14059
(0.0106735 0.00439541 0.00170385) 14061
(0.0111515 0.0043971 0.00170757) 14062
(0.0116652 0.00440144 0.0017156) 14063
(0.0121537 0.00440703 0.00172403) 14064
(0.0107186 0.00416916 0.00183331) 14121
(0.0111985 0.00417255 0.00183691) 14122
(0.0117104 0.00418055 0.00184321) 14123
(0.0122026 0.00418917 0.00185008) 14124
(0.0100714 0.00395964 0.00204714) 14180
(0.0104531 0.00395474 0.00204283) 14180
(0.0107951 0.00362696 0.00345219) 14481
(0.0112771 0.00363207 0.00345612) 14482
(0.0117572 0.0036401 0.00346043) 14483
(0.0122416 0.00365224 0.00346295) 14484
(0.010333 0.00373259 0.00369201) 14540
(0.0108191 0.00373495 0.00369165) 14541
(0.0113022 0.00373894 0.00369089) 14542
(0.0117837 0.00374556 0.00368982) 14543
(0.0122626 0.00375474 0.00368693) 14544
(0.010121 0.00392422 0.00392263) 14600
(0.0105679 0.00392294 0.00392316) 14601
(0.00952991 0.00470626 0.00437719) 14779
(0.0101723 0.00499829 0.00442535) 14840
(0.0106422 0.00499888 0.00442581) 14841
(0.0111278 0.00500153 0.00442194) 14842
(0.011616 0.00500373 0.00441728) 14843
(0.0100532 0.00527773 0.00439327) 14900
(0.010526 0.00527967 0.00439187) 14901
(0.0110289 0.00527878 0.00438598) 14902
(0.00967117 0.00635635 0.00340434) 15199
(0.00985689 0.00642179 0.00312418) 15259
(0.00985689 0.00642179 0.00312418) 15259
(0.00985689 0.00642179 0.00312418) 15259
(0.0103625 0.00642287 0.00312978) 15260
(0.0108401 0.00642194 0.00313235) 15261
(0.0113111 0.00642061 0.00313376) 15262
(0.0117916 0.00641691 0.00313464) 15263
(0.0122738 0.0064107 0.00313391) 15264
(0.00491236 0.0064156 0.00280026) 13509
(0.00485105 0.0064372 0.00278153) 13509
(0.0031098 0.00646999 0.00282729) 13506
(0.00602332 0.00643115 0.00283983) 13512
(0.00785027 0.00642338 0.0028326) 13515
(0.00832098 0.00643952 0.00289237) 13516
(0.00911134 0.00641409 0.00290094) 13518
(0.00476781 0.00439257 0.00158713) 5709
(0.00516063 0.00454229 0.00165515) 13990
(0.0082234 0.00439856 0.00168743) 14056
(0.00917136 0.00442701 0.00171618) 14058
(0.00718316 0.00415384 0.00189133) 14114
(0.00711939 0.00412099 0.00186338) 14114
(0.00740096 0.00412089 0.00184526) 14114
(0.00799341 0.00415618 0.00181406) 14115
(0.0055803 0.0037323 0.00359153) 14531
(0.00568063 0.00364373 0.00350184) 14471
(0.00679564 0.00367895 0.0035049) 14473
(0.00492854 0.0037139 0.00374043) 14529
(0.00568323 0.00382083 0.00382787) 14591
(0.00600818 0.00509112 0.00444131) 14832
(0.00635921 0.0050789 0.00445447) 14832
(0.00712676 0.00502755 0.00445084) 14834
(0.00897334 0.00636193 0.00338581) 15197
(0.00575085 0.00640429 0.0031163) 15251
(0.0085827 0.00641714 0.00310037) 15257
(0.00916511 0.00639615 0.00312021) 15258
(0.0178572 0.00693178 0.00355956) 2015
(0.0228539 0.00637802 0.00209364) 13425
(0.023927 0.00661413 0.00226028) 6107
(0.0178036 0.00670031 0.00421538) 1895
(0.0205033 0.00665349 0.00412766) 1961
(0.0185414 0.00371811 0.00476298) 10537
(0.0187906 0.0032389 0.00171457) 457
(0.0175177 0.00591788 0.00508616) 12575
(0.0175177 0.00591788 0.00508616) 12575
(0.0175177 0.00591788 0.00508616) 12575
(0.0195865 0.00595195 0.00501719) 12339
(0.0195865 0.00595195 0.00501719) 12339
(0.0195865 0.00595195 0.00501719) 12339
(0.0210458 0.00604764 0.00496913) 12342
(0.0174375 0.00405065 0.00494676) 10834
(0.0169749 0.0037201 0.0013849) 9213
(0.0174274 0.00411422 0.00123051) 11494
(0.0201627 0.00403432 0.00128672) 12760
(0.0177509 0.00476681 0.000879348) 11615
(0.0195649 0.00466467 0.000920854) 11559
(0.0182575 0.00587393 0.000921834) 12156
(0.0177212 0.00532612 0.000719225) 11855
(0.0198669 0.00525065 0.00073719) 11919
(0.020876 0.00511354 0.000659664) 11921
(0.0187517 0.00533946 0.00525239) 11077
(0.0201375 0.00544332 0.00524579) 12520
(0.0191261 0.00298243 0.00324547) 32544
(0.0224112 0.00304066 0.00326542) 824
(0.0239043 0.00294058 0.00328934) 33841
(0.0195396 0.00666091 0.00161057) 2499
(0.0212907 0.00662219 0.00159085) 2502
(0.0224335 0.00607976 0.00162251) 6044
(0.00980458 0.00642768 0.0028721) 13519
(0.00980458 0.00642768 0.0028721) 13519
(0.00980458 0.00642768 0.0028721) 13519
(0.0112545 0.00642588 0.00287521) 13522
(0.0117346 0.00642016 0.0028798) 13523
(0.0122174 0.0064115 0.00288477) 13524
(0.010352 0.00636679 0.00256894) 13580
(0.0105597 0.00582909 0.00187322) 13761
(0.0110343 0.00582413 0.00187158) 13762
(0.0104097 0.00559104 0.00171491) 13820
(0.00955 0.0046705 0.0016303) 13999
(0.00978038 0.00439551 0.00171203) 14059
(0.00978038 0.00439551 0.00171203) 14059
(0.00978038 0.00439551 0.00171203) 14059
(0.010235 0.00439558 0.00170685) 14060
(0.0106478 0.00439528 0.00170344) 14061
(0.0111255 0.00439692 0.00170715) 14062
(0.0116404 0.00440122 0.00171513) 14063
(0.0121305 0.00440678 0.00172354) 14064
(0.0106934 0.00416887 0.00183302) 14121
(0.0111728 0.00417217 0.00183658) 14122
(0.0116857 0.00418008 0.00184284) 14123
(0.0121793 0.0041887 0.0018497) 14124
(0.0100484 0.00395965 0.00204701) 14180
(0.0104277 0.00395448 0.00204264) 14180
(0.0107714 0.00362669 0.0034522) 14481
(0.0112539 0.00363179 0.00345599) 14482
(0.0117343 0.00363964 0.0034603) 14483
(0.0122182 0.00365155 0.00346291) 14484
(0.0103098 0.00373244 0.00369215) 14540
(0.0107955 0.00373476 0.00369183) 14541
(0.0112789 0.00373871 0.003691) 14542
(0.0117608 0.00374516 0.00368995) 14543
(0.0122397 0.00375423 0.00368718) 14544
(0.0100979 0.00392411 0.00392274) 14600
(0.0105436 0.00392272 0.00392336) 14601
(0.00950712 0.00470608 0.0043772) 14779
(0.0101494 0.00499829 0.00442546) 14840
(0.0106177 0.00499878 0.00442613) 14841
(0.0111037 0.0050014 0.00442223) 14842
(0.0115925 0.00500366 0.00441758) 14843
(0.01003 0.00527759 0.00439348) 14900
(0.0105005 0.00527975 0.00439233) 14901
(0.011004 0.00527881 0.00438632) 14902
(0.00964812 0.00635648 0.0034042) 15199
(0.0098336 0.00642191 0.0031241) 15259
(0.0098336 0.00642191 0.0031241) 15259
(0.0098336 0.00642191 0.0031241) 15259
(0.0103391 0.00642301 0.00312974) 15260
(0.0108168 0.00642209 0.00313231) 15261
(0.0112882 0.00642075 0.00313371) 15262
(0.0117687 0.00641713 0.00313463) 15263
(0.0122508 0.00641106 0.00313401) 15264
(0.0048975 0.00641542 0.00279157) 13509
(0.00486916 0.00643634 0.00278993) 13509
(0.00388349 0.00642618 0.00271601) 13567
(0.00587099 0.00643561 0.0028378) 13511
(0.00829329 0.0064388 0.00288268) 13516
(0.00908818 0.00641454 0.00290065) 13518
(0.00473517 0.00438953 0.00159179) 5709
(0.00506726 0.00454841 0.00164389) 13990
(0.00821137 0.00439725 0.00168868) 14056
(0.00914508 0.00442474 0.00171411) 14058
(0.00713904 0.00412227 0.00186524) 14114
(0.00742138 0.00412108 0.00184695) 14114
(0.00796312 0.00415315 0.00181557) 14115
(0.00567106 0.00364185 0.00349788) 14471
(0.00672121 0.00368075 0.00351057) 14473
(0.00494462 0.00373693 0.00374959) 14529
(0.00559227 0.00381828 0.00383582) 14591
(0.00605119 0.00509152 0.00443946) 14832
(0.006345 0.00507934 0.00445413) 14832
(0.00709428 0.0050344 0.00445139) 14834
(0.00895279 0.00636197 0.00338626) 15197
(0.00567185 0.00640902 0.00311573) 15251
(0.00854962 0.00641889 0.00309889) 15257
(0.00914262 0.00639624 0.0031183) 15258
(0.0178008 0.00693054 0.0035639) 2015
(0.0227962 0.0063692 0.00208335) 13425
(0.0238879 0.00660706 0.0022599) 6107
(0.0177187 0.00669873 0.00422364) 1895
(0.0204322 0.00665005 0.00413185) 1960
(0.018499 0.00371529 0.00475962) 10536
(0.0187356 0.00324405 0.00171014) 457
(0.0174511 0.0059149 0.00509031) 12574
(0.0174511 0.0059149 0.00509031) 12574
(0.0174511 0.0059149 0.00509031) 12574
(0.019527 0.00594938 0.00501917) 12579
(0.019527 0.00594938 0.00501917) 12579
(0.019527 0.00594938 0.00501917) 12579
(0.0210175 0.00603946 0.00497277) 12342
(0.0173895 0.00404785 0.00494361) 10834
(0.0169005 0.00372188 0.00137977) 9213
(0.0173309 0.00411376 0.00122519) 11494
(0.0200812 0.00404009 0.00128683) 12760
(0.017689 0.00477163 0.000876859) 11615
(0.0195182 0.00467108 0.00092002) 11559
(0.0182088 0.00587536 0.000923368) 12156
(0.0176503 0.00533169 0.000718879) 11855
(0.0198094 0.00525375 0.000738584) 11919
(0.0208891 0.00512534 0.000667167) 11921
(0.0186998 0.00533771 0.00525334) 11077
(0.0201168 0.00543304 0.00524488) 12520
(0.0189417 0.00297456 0.0032443) 32400
(0.0223061 0.00304256 0.00326454) 824
(0.0239062 0.00294315 0.0032851) 33841
(0.0194712 0.00666381 0.00161033) 2498
(0.0212374 0.00662402 0.00159374) 2502
(0.022394 0.0060732 0.00161892) 6044
(0.00978118 0.00642776 0.00287209) 13519
(0.00978118 0.00642776 0.00287209) 13519
(0.00978118 0.00642776 0.00287209) 13519
(0.0112312 0.00642609 0.002875) 13522
(0.0117118 0.00642052 0.00287959) 13523
(0.0121942 0.00641201 0.00288455) 13524
(0.0103277 0.00636698 0.00256891) 13580
(0.0105369 0.00582926 0.00187313) 13761
(0.0110112 0.00582434 0.00187152) 13762
(0.0103863 0.00559107 0.00171471) 13820
(0.00952723 0.00467032 0.00163026) 13999
(0.0097575 0.00439545 0.00171195) 14059
(0.0097575 0.00439545 0.00171195) 14059
(0.0097575 0.00439545 0.00171195) 14059
(0.0102111 0.00439551 0.00170663) 14060
(0.0106221 0.00439516 0.00170304) 14061
(0.0110994 0.00439674 0.00170672) 14062
(0.0116155 0.004401 0.00171467) 14063
(0.0121072 0.00440652 0.00172305) 14064
(0.0106683 0.00416858 0.00183273) 14121
(0.0111471 0.00417178 0.00183626) 14122
(0.011661 0.00417962 0.00184248) 14123
(0.0121561 0.00418823 0.00184933) 14124
(0.0104025 0.00395423 0.00204245) 14180
(0.0107476 0.00362642 0.00345222) 14481
(0.0112307 0.00363152 0.00345587) 14482
(0.0117115 0.00363919 0.00346016) 14483
(0.0121947 0.00365087 0.00346287) 14484
(0.0107719 0.00373457 0.00369201) 14541
(0.0112556 0.00373848 0.00369111) 14542
(0.0117378 0.00374478 0.00369008) 14543
(0.0122169 0.00375372 0.00368742) 14544
(0.0100749 0.00392399 0.00392284) 14600
(0.0105193 0.00392251 0.00392356) 14601
(0.00948435 0.00470591 0.00437721) 14778
(0.0101264 0.00499829 0.00442556) 14840
(0.0105932 0.00499869 0.00442646) 14841
(0.0110795 0.00500128 0.00442253) 14842
(0.0115691 0.00500359 0.00441789) 14843
(0.0100068 0.00527744 0.00439369) 14900
(0.010475 0.00527982 0.00439279) 14900
(0.0109791 0.00527885 0.00438666) 14901
(0.00962509 0.00635661 0.00340407) 15199
(0.00981033 0.00642203 0.00312402) 15259
(0.00981033 0.00642203 0.00312402) 15259
(0.00981033 0.00642203 0.00312402) 15259
(0.0103156 0.00642316 0.0031297) 15260
(0.0107936 0.00642224 0.00313228) 15261
(0.0112653 0.00642088 0.00313367) 15262
(0.0117458 0.00641735 0.00313462) 15263
(0.0122278 0.00641142 0.0031341) 15264
(0.00487486 0.00641418 0.00277934) 13509
(0.00485827 0.00643526 0.00278481) 13509
(0.00435139 0.00644498 0.00263585) 13568
(0.00561884 0.00644075 0.00282964) 13511
(0.00829036 0.00643764 0.00287221) 13516
(0.00906482 0.00641497 0.00290036) 13518
(0.00462108 0.00438487 0.00160352) 5709
(0.00498979 0.00455167 0.00163407) 13989
(0.00820001 0.00439578 0.00169005) 14056
(0.00911898 0.00442201 0.00171195) 14058
(0.00715773 0.00412365 0.00186707) 14114
(0.00740947 0.00412145 0.00184846) 14114
(0.00793528 0.00415 0.00181753) 14115
(0.00529795 0.00348611 0.00336711) 5350
(0.00566198 0.00363999 0.00349393) 14471
(0.00665961 0.00368239 0.00351564) 14473
(0.00845826 0.00368892 0.00343812) 14476
(0.004962 0.00375977 0.00376022) 14529
(0.00548178 0.00381151 0.00383876) 14590
(0.00818906 0.00372783 0.00364695) 14536
(0.00614129 0.00509228 0.00443602) 14832
(0.00633248 0.00507977 0.00445366) 14832
(0.00707427 0.00504062 0.00445131) 14834
(0.00893189 0.00636198 0.00338723) 15197
(0.00564632 0.00640971 0.00311552) 15251
(0.00852157 0.0064199 0.00309663) 15257
(0.00912017 0.00639643 0.00311574) 15258
(0.0177479 0.00692929 0.0035687) 2015
(0.0227355 0.00636067 0.00207333) 13485
(0.0238488 0.00659956 0.00225885) 6107
(0.0176324 0.0066973 0.00423202) 1895
(0.0203575 0.00664747 0.0041357) 1960
(0.0184556 0.0037126 0.00475646) 10536
(0.0186796 0.00324902 0.00170572) 457
(0.0173847 0.00591178 0.0050946) 12574
(0.0173847 0.00591178 0.0050946) 12574
(0.0173847 0.00591178 0.0050946) 12574
(0.0194657 0.00594702 0.00502115) 12578
(0.0194657 0.00594702 0.00502115) 12578
(0.0194657 0.00594702 0.00502115) 12578
(0.0209914 0.00603128 0.00497609) 12341
(0.0173397 0.00404493 0.00494049) 10834
(0.016828 0.00372356 0.00137482) 9213
(0.0172343 0.00411247 0.00121988) 11494
(0.0199977 0.00404576 0.00128683) 12759
(0.0176257 0.00477626 0.000874272) 11615
(0.0194694 0.00467733 0.000919141) 11558
(0.0181597 0.00587677 0.000924835) 12156
(0.0175777 0.00533725 0.000718386) 11855
(0.0197494 0.00525675 0.000739799) 11919
(0.0208971 0.00513622 0.000674144) 11921
(0.0186472 0.00533611 0.00525436) 11077
(0.0200941 0.00542337 0.00524401) 12520
(0.0187302 0.00296433 0.00324382) 32400
(0.0221977 0.00304405 0.0032637) 824
(0.0239048 0.0029459 0.00328117) 33841
(0.0194028 0.00666667 0.00161001) 2498
(0.0211868 0.00662587 0.00159691) 2502
(0.0223485 0.00606659 0.00161512) 6044
(0.00975781 0.00642784 0.00287208) 13519
(0.00975781 0.00642784 0.00287208) 13519
(0.00975781 0.00642784 0.00287208) 13519
(0.0112079 0.0064263 0.00287479) 13522
(0.0116889 0.00642086 0.00287938) 13523
(0.012171 0.00641251 0.00288433) 13524
(0.0103035 0.00636716 0.0025689) 13580
(0.0105141 0.00582942 0.00187303) 13761
(0.0109882 0.00582455 0.00187146) 13761
(0.0103628 0.00559109 0.0017145) 13820
(0.00950447 0.00467016 0.00163022) 13999
(0.00973464 0.00439538 0.00171186) 14059
(0.00973464 0.00439538 0.00171186) 14059
(0.00973464 0.00439538 0.00171186) 14059
(0.0101872 0.00439543 0.00170642) 14060
(0.0105965 0.00439504 0.00170265) 14061
(0.0110733 0.00439657 0.0017063) 14062
(0.0115906 0.00440078 0.0017142) 14063
(0.012084 0.00440626 0.00172257) 14064
(0.0106432 0.0041683 0.00183244) 14121
(0.0111214 0.00417141 0.00183594) 14122
(0.0116362 0.00417916 0.00184212) 14123
(0.0121328 0.00418777 0.00184895) 14124
(0.0103774 0.00395399 0.00204226) 14180
(0.0107237 0.00362614 0.00345224) 14481
(0.0112074 0.00363125 0.00345576) 14482
(0.0116886 0.00363875 0.00346002) 14483
(0.0121713 0.00365019 0.00346282) 14484
(0.0107483 0.00373438 0.00369219) 14541
(0.0112322 0.00373826 0.00369123) 14542
(0.0117148 0.0037444 0.0036902) 14543
(0.0121941 0.00375321 0.00368765) 14544
(0.0100518 0.00392388 0.00392294) 14600
(0.0104951 0.0039223 0.00392376) 14600
(0.00946161 0.00470573 0.00437723) 14778
(0.0101035 0.00499829 0.00442566) 14840
(0.0105687 0.0049986 0.00442679) 14841
(0.0110552 0.00500115 0.00442283) 14842
(0.0115456 0.00500352 0.00441818) 14843
(0.00998373 0.00527729 0.0043939) 14899
(0.0104495 0.00527989 0.00439326) 14900
(0.0109541 0.00527889 0.00438702) 14901
(0.00960208 0.00635675 0.00340394) 15199
(0.0100728 0.0063611 0.00340883) 15200
(0.00978707 0.00642215 0.00312392) 15259
(0.00978707 0.00642215 0.00312392) 15259
(0.00978707 0.00642215 0.00312392) 15259
(0.0102921 0.0064233 0.00312966) 15260
(0.0107702 0.00642239 0.00313225) 15261
(0.0112423 0.00642102 0.00313362) 15262
(0.011723 0.00641757 0.00313461) 15263
(0.0122048 0.00641177 0.00313419) 15264
(0.00486266 0.00643424 0.00278633) 13509
(0.00460242 0.00646368 0.00266746) 6189
(0.00524656 0.00645082 0.00279112) 13510
(0.00826895 0.00643616 0.00286357) 13516
(0.00904218 0.00641504 0.00290035) 13518
(0.00434294 0.00438058 0.00162455) 5708
(0.00491351 0.00455185 0.00162365) 13989
(0.00818988 0.00439417 0.0016916) 14056
(0.00909265 0.00441902 0.0017103) 14058
(0.00717289 0.00412508 0.00186893) 14114
(0.00742571 0.00412167 0.00184971) 14114
(0.0079102 0.00414697 0.0018198) 14115
(0.00536195 0.00353864 0.00338676) 5350
(0.00565314 0.00363822 0.00349003) 14471
(0.00660757 0.00368386 0.00352009) 14473
(0.00841089 0.00368296 0.00344041) 14476
(0.00498423 0.00378282 0.00377213) 14529
(0.00541517 0.00380619 0.00383901) 14530
(0.00811767 0.00372504 0.00364912) 14536
(0.00623531 0.0050928 0.00443174) 14832
(0.0063248 0.00508029 0.00445302) 14832
(0.00706339 0.00504578 0.00445082) 14834
(0.00891155 0.00636185 0.00338823) 15197
(0.00562569 0.0064101 0.00311505) 15251
(0.00849612 0.00642047 0.00309461) 15256
(0.00909744 0.00639677 0.00311528) 15258
(0.0177029 0.00692789 0.00357423) 2015
(0.0226709 0.00635242 0.00206386) 13485
(0.0238098 0.00659168 0.00225712) 6107
(0.0175444 0.00669603 0.00424052) 1895
(0.0202797 0.00664574 0.00413923) 6700
(0.0184114 0.00371004 0.00475346) 10536
(0.0186229 0.00325383 0.00170133) 457
(0.0194026 0.00594477 0.00502321) 12578
(0.0194026 0.00594477 0.00502321) 12578
(0.0194026 0.00594477 0.00502321) 12578
(0.0209642 0.00602348 0.00497917) 12341
(0.0209642 0.00602348 0.00497917) 12341
(0.0209642 0.00602348 0.00497917) 12341
(0.0172879 0.00404179 0.00493736) 10534
(0.0194279 0.00367667 0.00145547) 9218
(0.0171352 0.00410995 0.00121484) 11494
(0.0199121 0.00405131 0.00128669) 12759
(0.0175603 0.00478059 0.000871604) 11615
(0.0194187 0.00468341 0.00091821) 11558
(0.0181101 0.00587816 0.00092623) 12156
(0.0175033 0.00534278 0.000717741) 11855
(0.0196874 0.00525968 0.000740858) 11919
(0.0209017 0.00514644 0.00068084) 11921
(0.018594 0.00533459 0.00525543) 11077
(0.0200694 0.00541431 0.0052432) 12520
(0.0184927 0.00295109 0.00324419) 32256
(0.022086 0.00304511 0.00326289) 824
(0.0239003 0.00294886 0.00327753) 33841
(0.0193354 0.00666936 0.00160964) 2498
(0.0211334 0.00662764 0.00159972) 2502
(0.0222949 0.00606013 0.00161134) 6044
(0.00973445 0.00642792 0.00287207) 13519
(0.00973445 0.00642792 0.00287207) 13519
(0.00973445 0.00642792 0.00287207) 13519
(0.0111845 0.0064265 0.00287459) 13522
(0.011666 0.00642119 0.00287917) 13523
(0.0121478 0.00641301 0.00288411) 13524
(0.0102792 0.00636736 0.00256891) 13580
(0.0104912 0.00582959 0.00187294) 13760
(0.0109651 0.00582475 0.00187139) 13761
(0.0103394 0.00559111 0.00171429) 13820
(0.00948172 0.00467 0.00163017) 13998
(0.00971179 0.00439531 0.00171178) 14059
(0.00971179 0.00439531 0.00171178) 14059
(0.00971179 0.00439531 0.00171178) 14059
(0.0101633 0.00439534 0.00170622) 14060
(0.010571 0.00439492 0.00170226) 14061
(0.0110471 0.0043964 0.00170588) 14062
(0.0115656 0.00440057 0.00171375) 14063
(0.0120606 0.00440601 0.00172208) 14064
(0.0106181 0.00416803 0.00183217) 14121
(0.0110957 0.00417104 0.00183563) 14122
(0.0116113 0.00417871 0.00184176) 14123
(0.0121094 0.0041873 0.00184857) 14124
(0.0103523 0.00395376 0.00204208) 14180
(0.0106998 0.00362585 0.00345227) 14481
(0.0111841 0.00363098 0.00345564) 14482
(0.0116657 0.00363832 0.00345988) 14483
(0.012148 0.00364952 0.00346277) 14484
(0.0107246 0.00373419 0.00369239) 14541
(0.0112089 0.00373804 0.00369135) 14542
(0.0116919 0.00374402 0.00369032) 14543
(0.0121712 0.0037527 0.00368788) 14544
(0.0100287 0.00392377 0.00392303) 14600
(0.0104709 0.00392209 0.00392396) 14600
(0.00943891 0.00470557 0.00437725) 14778
(0.0100806 0.0049983 0.00442575) 14840
(0.0105442 0.00499851 0.00442712) 14841
(0.011031 0.00500103 0.00442313) 14842
(0.0115221 0.00500343 0.00441847) 14843
(0.00996066 0.00527713 0.00439409) 14899
(0.010424 0.00527995 0.00439372) 14900
(0.010929 0.00527893 0.00438738) 14901
(0.00957909 0.00635688 0.00340381) 15199
(0.0100495 0.00636118 0.00340866) 15200
(0.00976383 0.00642227 0.00312383) 15259
(0.00976383 0.00642227 0.00312383) 15259
(0.00976383 0.00642227 0.00312383) 15259
(0.0102686 0.00642345 0.00312962) 15260
(0.0107469 0.00642255 0.00313221) 15261
(0.0112194 0.00642115 0.00313358) 15262
(0.0117001 0.00641778 0.0031346) 15263
(0.0121818 0.00641212 0.00313428) 15264
(0.00488049 0.00643355 0.00279387) 13509
(0.00478076 0.00646153 0.00273951) 13509
(0.00471665 0.00646344 0.00263385) 6189
(0.00681704 0.00639731 0.00283572) 13513
(0.00825152 0.00643435 0.00285679) 13516
(0.00901952 0.00641512 0.00290034) 13518
(0.00406801 0.00437692 0.00163824) 5708
(0.00484616 0.00454763 0.00161345) 13989
(0.00817994 0.00439246 0.00169324) 14056
(0.00906647 0.00441623 0.00170905) 14058
(0.00718564 0.00412669 0.00187078) 14114
(0.0074121 0.00412204 0.00185093) 14114
(0.00788767 0.00414408 0.00182238) 14115
(0.00542955 0.00358698 0.00341319) 14470
(0.00564262 0.00363603 0.00348547) 14471
(0.00656342 0.00368517 0.00352404) 14473
(0.00835648 0.00367623 0.00344297) 14476
(0.00502259 0.00380128 0.00378522) 14530
(0.00802101 0.00372302 0.00365148) 14536
(0.00629635 0.00509305 0.00442736) 14832
(0.00632181 0.0050809 0.00445224) 14832
(0.00705805 0.00505003 0.00445006) 14834
(0.00889194 0.00636157 0.00338928) 15197
(0.00560571 0.00641047 0.00311449) 15251
(0.00847287 0.00642072 0.00309236) 15256
(0.00907477 0.00639734 0.00311438) 15258
(0.0176556 0.00692678 0.00357963) 2015
(0.0226024 0.00634426 0.00205399) 13485
(0.0237709 0.00658339 0.00225469) 6107
(0.0174544 0.006695 0.00424908) 1894
(0.0201985 0.00664492 0.00414241) 6700
(0.0183666 0.00370758 0.00475063) 10536
(0.0185654 0.00325848 0.00169695) 457
(0.019338 0.00594261 0.00502533) 12578
(0.019338 0.00594261 0.00502533) 12578
(0.019338 0.00594261 0.00502533) 12578
(0.020935 0.00601613 0.00498203) 12341
(0.020935 0.00601613 0.00498203) 12341
(0.020935 0.00601613 0.00498203) 12341
(0.0172336 0.00403834 0.00493416) 10534
(0.0193261 0.0036793 0.00145381) 9218
(0.0198244 0.00405674 0.00128639) 12759
(0.0174924 0.00478455 0.000868861) 11614
(0.0193659 0.00468931 0.000917223) 11618
(0.0180606 0.00587952 0.000927603) 12156
(0.0174276 0.00534827 0.000716959) 11854
(0.0196228 0.00526254 0.000741741) 11919
(0.0209032 0.00515613 0.000687302) 11921
(0.0185404 0.00533315 0.00525656) 11077
(0.0200424 0.00540588 0.00524243) 11440
(0.0182353 0.00293452 0.00324555) 32256
(0.0219708 0.00304566 0.00326213) 823
(0.0238926 0.00295197 0.00327418) 33841
(0.0192675 0.0066719 0.00160911) 2498
(0.0210796 0.00662942 0.00160245) 2502
(0.0222344 0.00605393 0.00160764) 6044
(0.0097111 0.006428 0.00287207) 13519
(0.0097111 0.006428 0.00287207) 13519
(0.0097111 0.006428 0.00287207) 13519
(0.011161 0.0064267 0.00287439) 13522
(0.0116432 0.00642152 0.00287896) 13523
(0.0121247 0.0064135 0.0028839) 13524
(0.010255 0.00636755 0.00256894) 13580
(0.0104683 0.00582975 0.00187284) 13760
(0.0109421 0.00582495 0.00187134) 13761
(0.0103159 0.00559114 0.00171408) 13820
(0.00945899 0.00466986 0.00163012) 13998
(0.00968895 0.00439523 0.0017117) 14059
(0.00968895 0.00439523 0.0017117) 14059
(0.00968895 0.00439523 0.0017117) 14059
(0.0101395 0.00439525 0.00170603) 14060
(0.0105455 0.00439481 0.00170187) 14061
(0.011021 0.00439624 0.00170547) 14062
(0.0115406 0.00440036 0.0017133) 14063
(0.0120372 0.00440575 0.0017216) 14064
(0.0105931 0.00416777 0.00183189) 14121
(0.0110699 0.00417067 0.00183531) 14122
(0.0115864 0.00417826 0.00184141) 14123
(0.0120859 0.00418684 0.00184819) 14124
(0.0103273 0.00395354 0.0020419) 14180
(0.0106757 0.00362556 0.00345233) 14481
(0.0111608 0.00363072 0.00345553) 14482
(0.0116428 0.0036379 0.00345974) 14483
(0.0121246 0.00364887 0.00346271) 14484
(0.0107009 0.00373398 0.00369257) 14541
(0.0111854 0.00373783 0.00369148) 14542
(0.0116689 0.00374366 0.00369044) 14543
(0.0121483 0.0037522 0.00368811) 14544
(0.0100055 0.00392365 0.00392312) 14600
(0.0104467 0.0039219 0.00392416) 14600
(0.00941625 0.00470542 0.00437728) 14778
(0.0100576 0.0049983 0.00442584) 14840
(0.0105197 0.00499843 0.00442745) 14841
(0.0110067 0.00500091 0.00442343) 14842
(0.0114985 0.00500335 0.00441876) 14842
(0.00993763 0.00527697 0.00439428) 14899
(0.0103985 0.00528001 0.00439417) 14900
(0.0109038 0.00527897 0.00438775) 14901
(0.00955614 0.00635701 0.00340369) 15199
(0.0100262 0.00636127 0.0034085) 15200
(0.0104524 0.00636495 0.0034112) 15200
(0.0097406 0.0064224 0.00312372) 15259
(0.0097406 0.0064224 0.00312372) 15259
(0.0097406 0.0064224 0.00312372) 15259
(0.010245 0.0064236 0.00312958) 15260
(0.0107234 0.00642271 0.00313218) 15261
(0.0111964 0.00642129 0.00313354) 15262
(0.0116773 0.00641798 0.00313459) 15263
(0.0121588 0.00641246 0.00313436) 15264
(0.00488635 0.00643227 0.00279578) 13509
(0.00490789 0.00645681 0.00279808) 13509
(0.00384384 0.00642634 0.00265265) 13567
(0.0067788 0.00639876 0.00283563) 13513
(0.00823165 0.0064332 0.00285246) 13516
(0.00899686 0.0064152 0.00290033) 13517
(0.00377123 0.0043733 0.00164548) 5707
(0.00481946 0.00454089 0.00160573) 13989
(0.0081709 0.00439065 0.00169499) 14056
(0.00904137 0.00441388 0.00170818) 14058
(0.00719836 0.0041286 0.00187252) 14114
(0.00742523 0.00412225 0.00185196) 14114
(0.00790158 0.00414134 0.00182507) 14115
(0.0054717 0.00362511 0.00344236) 14470
(0.00562668 0.00363241 0.00347876) 14471
(0.00652569 0.00368634 0.00352752) 14473
(0.00829395 0.00366911 0.00344588) 14476
(0.00505474 0.00381163 0.00379335) 14530
(0.00542724 0.00381237 0.00384723) 14590
(0.00791708 0.00372186 0.00365414) 14535
(0.00635344 0.00509277 0.00442308) 14832
(0.00632295 0.0050816 0.0044513) 14832
(0.00705606 0.00505352 0.00444913) 14834
(0.00887342 0.00636107 0.00339032) 15197
(0.0055835 0.00641106 0.00311379) 15251
(0.00845046 0.00642078 0.00308987) 15256
(0.00918165 0.00639839 0.00311174) 15258
(0.0225305 0.00633635 0.00204411) 13485
(0.023732 0.00657472 0.00225148) 6107
(0.0173613 0.00669467 0.00425743) 1894
(0.0201139 0.00664504 0.00414525) 6700
(0.0183213 0.00370523 0.00474794) 10536
(0.0185071 0.00326299 0.00169258) 457
(0.0192719 0.00594054 0.00502752) 12578
(0.0192719 0.00594054 0.00502752) 12578
(0.0192719 0.00594054 0.00502752) 12578
(0.0209037 0.0060092 0.0049847) 12341
(0.0209037 0.0060092 0.0049847) 12341
(0.0209037 0.0060092 0.0049847) 12341
(0.0171767 0.00403448 0.00493085) 10534
(0.0192218 0.00368176 0.00145193) 9218
(0.0197345 0.00406197 0.00128589) 12759
(0.0174218 0.00478804 0.000866048) 11614
(0.0193114 0.00469505 0.000916186) 11618
(0.0180114 0.00588088 0.000928973) 12156
(0.0173515 0.00535376 0.000716096) 11854
(0.0195559 0.00526537 0.00074246) 11919
(0.0209011 0.00516527 0.000693488) 11921
(0.0184864 0.00533175 0.00525773) 11076
(0.0200133 0.00539802 0.00524172) 11440
(0.0179707 0.00291459 0.0032478) 32112
(0.0218534 0.00304582 0.0032614) 823
(0.0238816 0.00295522 0.00327107) 33841
(0.0191968 0.00667443 0.00160824) 2498
(0.0210284 0.00663134 0.00160538) 2502
(0.0221646 0.00604818 0.00160418) 6044
(0.00968776 0.00642808 0.00287206) 13519
(0.00968776 0.00642808 0.00287206) 13519
(0.00968776 0.00642808 0.00287206) 13519
(0.0111374 0.0064269 0.00287419) 13522
(0.0116203 0.00642184 0.00287875) 13523
(0.0121016 0.00641399 0.00288368) 13524
(0.0102308 0.00636775 0.002569) 13580
(0.0104454 0.00582991 0.00187274) 13760
(0.010919 0.00582515 0.00187128) 13761
(0.0102924 0.00559116 0.00171387) 13820
(0.00943626 0.00466975 0.00163006) 13998
(0.00981496 0.00466979 0.00161796) 13999
(0.00966613 0.00439517 0.00171161) 14059
(0.00966613 0.00439517 0.00171161) 14059
(0.00966613 0.00439517 0.00171161) 14059
(0.0101158 0.00439516 0.00170584) 14060
(0.01052 0.00439469 0.00170149) 14061
(0.0109948 0.00439608 0.00170505) 14061
(0.0115154 0.00440015 0.00171285) 14063
(0.0120138 0.0044055 0.00172112) 14064
(0.0105681 0.00416751 0.00183162) 14121
(0.0110441 0.00417031 0.001835) 14122
(0.0115615 0.00417782 0.00184106) 14123
(0.0120625 0.00418638 0.00184781) 14124
(0.0103024 0.00395333 0.00204173) 14180
(0.0106517 0.00362527 0.00345239) 14481
(0.0111374 0.00363046 0.00345543) 14482
(0.0116199 0.0036375 0.0034596) 14483
(0.0121013 0.00364822 0.00346265) 14484
(0.0106772 0.00373378 0.00369277) 14541
(0.011162 0.00373762 0.00369161) 14542
(0.0116459 0.0037433 0.00369055) 14543
(0.0121255 0.0037517 0.00368833) 14544
(0.00998232 0.00392355 0.00392321) 14599
(0.0104226 0.00392171 0.00392436) 14600
(0.00939363 0.00470528 0.00437732) 14778
(0.0100347 0.0049983 0.00442593) 14840
(0.0104952 0.00499835 0.00442779) 14840
(0.0109823 0.00500079 0.00442373) 14841
(0.011475 0.00500326 0.00441904) 14842
(0.00991464 0.0052768 0.00439445) 14899
(0.0103731 0.00528005 0.00439463) 14900
(0.0108786 0.00527902 0.00438813) 14901
(0.00953321 0.00635714 0.00340356) 15199
(0.0100029 0.00636135 0.00340834) 15200
(0.010429 0.00636506 0.0034111) 15200
(0.0097174 0.00642252 0.00312362) 15259
(0.0097174 0.00642252 0.00312362) 15259
(0.0097174 0.00642252 0.00312362) 15259
(0.0102215 0.00642374 0.00312954) 15260
(0.0106999 0.00642287 0.00313215) 15261
(0.0111733 0.00642142 0.00313349) 15262
(0.0116545 0.00641818 0.00313457) 15263
(0.0121359 0.0064128 0.00313444) 15264
(0.00489262 0.00643096 0.00279787) 13509
(0.00498514 0.00645276 0.00283112) 13509
(0.00672218 0.00640128 0.00283603) 13513
(0.00821092 0.00643233 0.00284928) 13516
(0.00897418 0.00641527 0.00290033) 13517
(0.00333888 0.0043696 0.00164506) 5706
(0.0048203 0.00453016 0.00159713) 14049
(0.00816312 0.00438868 0.00169694) 14056
(0.00901731 0.00441192 0.00170759) 14058
(0.00721059 0.00413075 0.00187407) 14114
(0.00741079 0.00412262 0.00185302) 14114
(0.00788592 0.00413906 0.00182803) 14115
(0.00549925 0.00365058 0.00347251) 14470
(0.0056058 0.0036274 0.00346986) 14471
(0.00649258 0.00368742 0.00353062) 14472
(0.00821897 0.00366231 0.00344918) 14476
(0.0051156 0.00382562 0.00380651) 14530
(0.00543532 0.00381603 0.00385086) 14590
(0.00780501 0.0037218 0.00365717) 14535
(0.00640467 0.00509209 0.00441899) 14832
(0.00632794 0.00508236 0.00445022) 14832
(0.0070551 0.00505645 0.00444813) 14834
(0.00885539 0.00636039 0.00339134) 15197
(0.00556123 0.0064117 0.00311305) 15251
(0.00635803 0.00637572 0.00310038) 15252
(0.00842725 0.00642067 0.00308755) 15256
(0.00916081 0.00639642 0.00311571) 15258
(0.0224534 0.00632883 0.00203472) 13484
(0.023693 0.00656574 0.00224752) 6107
(0.0172641 0.00669548 0.00426528) 1894
(0.020026 0.00664605 0.00414779) 6700
(0.0182755 0.00370298 0.0047454) 10536
(0.0184476 0.00326738 0.00168816) 456
(0.0192045 0.00593854 0.00502981) 12578
(0.0192045 0.00593854 0.00502981) 12578
(0.0192045 0.00593854 0.00502981) 12578
(0.0208704 0.00600264 0.00498722) 12341
(0.0208704 0.00600264 0.00498722) 12341
(0.0208704 0.00600264 0.00498722) 12341
(0.0191157 0.00368413 0.00144983) 9218
(0.0196425 0.00406696 0.00128519) 12759
(0.0173481 0.00479102 0.000863164) 11614
(0.0192553 0.00470064 0.000915098) 11618
(0.0179622 0.00588227 0.000930306) 12155
(0.0194867 0.00526817 0.000743011) 11918
(0.0208954 0.00517393 0.000699406) 11921
(0.0184323 0.00533039 0.00525894) 11076
(0.0199821 0.00539065 0.00524108) 11439
(0.0177276 0.00289393 0.00325012) 32113
(0.021734 0.00304558 0.00326067) 823
(0.0238678 0.00295862 0.00326821) 33841
(0.019123 0.00667696 0.00160695) 2498
(0.0209797 0.00663337 0.00160853) 2501
(0.0220863 0.00604291 0.0016009) 6044
(0.00966442 0.00642815 0.00287205) 13519
(0.00966442 0.00642815 0.00287205) 13519
(0.00966442 0.00642815 0.00287205) 13519
(0.0111138 0.0064271 0.00287399) 13522
(0.0115974 0.00642215 0.00287854) 13523
(0.0120785 0.00641446 0.00288346) 13524
(0.0102067 0.00636794 0.00256907) 13580
(0.0104225 0.00583008 0.00187264) 13760
(0.010896 0.00582534 0.00187122) 13761
(0.0102688 0.00559118 0.00171366) 13820
(0.00941353 0.00466967 0.00162999) 13998
(0.00979198 0.00466951 0.00161796) 13999
(0.0096433 0.0043951 0.00171152) 14059
(0.0096433 0.0043951 0.00171152) 14059
(0.0096433 0.0043951 0.00171152) 14059
(0.010092 0.00439506 0.00170567) 14060
(0.0104946 0.00439458 0.00170113) 14060
(0.0109687 0.00439593 0.00170463) 14061
(0.0114902 0.00439993 0.00171241) 14062
(0.0119903 0.00440525 0.00172063) 14063
(0.0105432 0.00416726 0.00183135) 14121
(0.0110183 0.00416995 0.00183469) 14122
(0.0115365 0.00417739 0.0018407) 14123
(0.0120389 0.00418591 0.00184743) 14124
(0.0102776 0.00395314 0.00204156) 14180
(0.0106275 0.00362498 0.00345246) 14481
(0.0111139 0.0036302 0.00345533) 14482
(0.011597 0.00363711 0.00345945) 14483
(0.0120781 0.00364758 0.00346258) 14484
(0.0106534 0.00373357 0.00369297) 14541
(0.0111385 0.00373741 0.00369174) 14542
(0.0116228 0.00374296 0.00369065) 14543
(0.0121026 0.00375121 0.00368855) 14544
(0.00995911 0.00392344 0.0039233) 14599
(0.0103985 0.00392152 0.00392455) 14600
(0.00937105 0.00470515 0.00437737) 14778
(0.0100119 0.0049983 0.00442601) 14840
(0.0104706 0.00499828 0.00442812) 14840
(0.0109579 0.00500067 0.00442404) 14841
(0.0114514 0.00500317 0.00441931) 14842
(0.00989169 0.00527665 0.00439462) 14899
(0.0103476 0.00528008 0.00439508) 14900
(0.0108534 0.00527907 0.00438851) 14901
(0.00951032 0.00635727 0.00340344) 15199
(0.00997961 0.00636143 0.00340819) 15199
(0.0104055 0.00636518 0.00341098) 15200
(0.00969421 0.00642265 0.00312351) 15259
(0.00969421 0.00642265 0.00312351) 15259
(0.00969421 0.00642265 0.00312351) 15259
(0.0101979 0.00642389 0.0031295) 15260
(0.0106764 0.00642304 0.00313212) 15261
(0.0111503 0.00642156 0.00313346) 15262
(0.0116316 0.00641837 0.00313455) 15263
(0.0121129 0.00641313 0.00313452) 15264
(0.00491159 0.00642996 0.00280554) 13509
(0.0050297 0.00644932 0.00284874) 13510
(0.00665672 0.00640478 0.00283622) 13513
(0.00818814 0.0064319 0.00284716) 13516
(0.00895153 0.00641534 0.00290033) 13517
(0.00291643 0.00436745 0.00163657) 5705
(0.00483925 0.00451564 0.00158792) 5709
(0.00815681 0.00438656 0.00169913) 14056
(0.00899407 0.00441029 0.0017072) 14057
(0.00720376 0.00413298 0.00187498) 14114
(0.00739571 0.00412297 0.00185402) 14114
(0.00790292 0.00413701 0.00183095) 14115
(0.00551104 0.00366769 0.00350095) 14471
(0.00558124 0.00362099 0.00345901) 14471
(0.00646417 0.00368834 0.00353341) 14472
(0.00812973 0.00365684 0.00345257) 14476
(0.00518647 0.00383871 0.00381809) 14590
(0.00542886 0.00381825 0.00385332) 14590
(0.00771794 0.00372239 0.00366052) 14535
(0.00644981 0.00509125 0.00441502) 14832
(0.0063373 0.0050832 0.00444899) 14832
(0.00704821 0.00505856 0.00444745) 14834
(0.00883731 0.00635957 0.00339243) 15197
(0.00555128 0.00641135 0.00311215) 15251
(0.0062704 0.00638146 0.00310388) 15252
(0.00840369 0.00642054 0.00308555) 15256
(0.00913849 0.00639632 0.00311609) 15258
(0.0223725 0.00632156 0.00202445) 13484
(0.0236544 0.00655649 0.00224294) 6107
(0.019935 0.00664785 0.00415009) 6699
(0.0182294 0.00370084 0.00474302) 10536
(0.0196014 0.00376756 0.00482706) 10539
(0.0183871 0.00327166 0.0016837) 396
(0.0191358 0.0059366 0.00503217) 12578
(0.0191358 0.0059366 0.00503217) 12578
(0.0191358 0.0059366 0.00503217) 12578
(0.0208349 0.00599644 0.0049896) 12341
(0.0208349 0.00599644 0.0049896) 12341
(0.0208349 0.00599644 0.0049896) 12341
(0.0190123 0.00368732 0.00144758) 9218
(0.0195485 0.00407169 0.00128428) 12759
(0.0172712 0.00479346 0.000860196) 11614
(0.0191977 0.00470607 0.000913954) 11618
(0.0179128 0.00588369 0.000931587) 12155
(0.0194147 0.00527093 0.000743368) 11918
(0.0208862 0.00518212 0.000705044) 11921
(0.0183781 0.00532904 0.00526019) 11076
(0.0199489 0.00538374 0.00524051) 11439
(0.0175424 0.0028777 0.00325081) 32113
(0.0216121 0.00304494 0.00325993) 823
(0.0238512 0.00296218 0.00326555) 33841
(0.0190451 0.00667946 0.00160516) 2498
(0.0209322 0.00663548 0.00161172) 2501
(0.0222344 0.00658455 0.00152521) 6764
(0.022 0.00603826 0.00159787) 6043
(0.0096411 0.00642823 0.00287205) 13519
(0.0096411 0.00642823 0.00287205) 13519
(0.0096411 0.00642823 0.00287205) 13519
(0.0110901 0.00642731 0.00287379) 13522
(0.0115745 0.00642246 0.00287832) 13523
(0.0120555 0.00641493 0.00288324) 13524
(0.0101825 0.00636814 0.00256917) 13580
(0.0103995 0.00583024 0.00187253) 13760
(0.010873 0.00582553 0.00187116) 13761
(0.0102452 0.0055912 0.00171344) 13820
(0.00939081 0.00466959 0.00162991) 13998
(0.00976906 0.00466922 0.00161796) 13999
(0.00962049 0.00439504 0.00171142) 14059
(0.00962049 0.00439504 0.00171142) 14059
(0.00962049 0.00439504 0.00171142) 14059
(0.0100684 0.00439497 0.0017055) 14060
(0.0104694 0.00439447 0.00170077) 14060
(0.0109425 0.00439578 0.00170421) 14061
(0.011465 0.00439971 0.00171198) 14062
(0.0119667 0.004405 0.00172015) 14063
(0.0105184 0.00416704 0.00183109) 14121
(0.0109926 0.0041696 0.00183438) 14121
(0.0115114 0.00417697 0.00184035) 14123
(0.0120153 0.00418544 0.00184705) 14124
(0.0102529 0.00395296 0.00204137) 14180
(0.0106033 0.00362467 0.00345253) 14481
(0.0110904 0.00362995 0.00345523) 14482
(0.0115741 0.00363674 0.00345931) 14483
(0.0120548 0.00364695 0.00346251) 14484
(0.0106296 0.00373336 0.00369317) 14541
(0.011115 0.00373721 0.00369188) 14542
(0.0115998 0.00374262 0.00369076) 14543
(0.0120797 0.00375072 0.00368876) 14544
(0.00993586 0.00392334 0.00392338) 14599
(0.0103744 0.00392134 0.00392475) 14600
(0.00934851 0.00470505 0.00437742) 14778
(0.00998896 0.0049983 0.00442608) 14839
(0.0104461 0.00499821 0.00442844) 14840
(0.0109335 0.00500056 0.00442435) 14841
(0.0114277 0.00500307 0.00441959) 14842
(0.00986877 0.00527649 0.00439478) 14899
(0.0103222 0.0052801 0.00439553) 14900
(0.0108281 0.00527912 0.00438889) 14901
(0.00948747 0.0063574 0.00340332) 15198
(0.00995633 0.00636151 0.00340805) 15199
(0.010382 0.00636531 0.00341086) 15200
(0.00967104 0.00642278 0.0031234) 15259
(0.00967104 0.00642278 0.0031234) 15259
(0.00967104 0.00642278 0.0031234) 15259
(0.0101743 0.00642403 0.00312945) 15260
(0.0106528 0.00642321 0.00313209) 15261
(0.0111272 0.0064217 0.00313342) 15262
(0.0116088 0.00641856 0.00313453) 15263
(0.01209 0.00641346 0.00313459) 15264
(0.00491859 0.00642861 0.00280766) 13509
(0.00507488 0.00644614 0.00286477) 13510
(0.00659045 0.0064083 0.00283644) 13513
(0.00816496 0.00643162 0.00284567) 13516
(0.00892892 0.00641548 0.00290028) 13517
(0.00247068 0.0043664 0.0016239) 5704
(0.00483703 0.0045018 0.00158) 5709
(0.00591834 0.00448331 0.00171513) 14051
(0.00815267 0.00438422 0.00170162) 14056
(0.00897162 0.00440893 0.00170697) 14057
(0.00721455 0.00413535 0.00187607) 14114
(0.00740595 0.00412318 0.00185487) 14114
(0.00788442 0.004136 0.00183254) 14115
(0.00552039 0.0036814 0.00352657) 14471
(0.00555473 0.00361347 0.00344679) 14471
(0.00643886 0.0036892 0.00353591) 14472
(0.00803349 0.00365307 0.0034558) 14476
(0.00529559 0.0038551 0.00383185) 14590
(0.005497 0.00382791 0.00385882) 14590
(0.00759125 0.00372486 0.00366438) 14535
(0.00649686 0.00509024 0.00441073) 14832
(0.00634909 0.00508405 0.00444768) 14832
(0.00703074 0.00505987 0.00444735) 14834
(0.00794846 0.00496861 0.00442743) 14835
(0.00881928 0.00635864 0.0033935) 15197
(0.00553786 0.00641127 0.00311121) 15251
(0.00617327 0.00638787 0.00310809) 15252
(0.00838043 0.0064204 0.0030839) 15256
(0.00911561 0.00639674 0.00311632) 15258
(0.0222859 0.00631504 0.00201435) 13484
(0.0236161 0.00654701 0.00223768) 6107
(0.0198405 0.00665039 0.0041522) 6639
(0.0181831 0.00369881 0.00474078) 10536
(0.0195807 0.00376087 0.0048188) 10539
(0.0183255 0.00327585 0.00167917) 396
(0.0190662 0.0059347 0.00503463) 12578
(0.0190662 0.0059347 0.00503463) 12578
(0.0190662 0.0059347 0.00503463) 12578
(0.0207973 0.00599058 0.00499185) 12341
(0.0207973 0.00599058 0.00499185) 12341
(0.0207973 0.00599058 0.00499185) 12341
(0.0189081 0.00369052 0.00144509) 9217
(0.0194523 0.00407618 0.00128313) 11498
(0.0191387 0.00471135 0.000912754) 11618
(0.0178633 0.00588516 0.000932817) 12155
(0.0193404 0.00527369 0.000743549) 11918
(0.0208737 0.00518987 0.00071042) 11921
(0.0183238 0.00532768 0.0052615) 11076
(0.0199138 0.00537727 0.00524002) 11439
(0.0174323 0.00287032 0.00324823) 31968
(0.0214901 0.00304396 0.00325913) 822
(0.0238313 0.00296589 0.0032631) 33841
(0.0189627 0.00668192 0.00160279) 2497
(0.0208834 0.0066376 0.00161469) 2501
(0.0222424 0.00659106 0.0015376) 6764
(0.0219033 0.00603458 0.00159534) 6043
(0.00961779 0.0064283 0.00287204) 13519
(0.00961779 0.0064283 0.00287204) 13519
(0.00961779 0.0064283 0.00287204) 13519
(0.0101102 0.00643072 0.00287058) 13520
(0.0110663 0.00642751 0.00287359) 13522
(0.0115515 0.00642276 0.00287811) 13523
(0.0120324 0.0064154 0.00288303) 13524
(0.0101584 0.00636834 0.00256928) 13580
(0.0103765 0.0058304 0.00187243) 13760
(0.01085 0.00582572 0.00187109) 13761
(0.0102216 0.00559122 0.00171322) 13820
(0.00936812 0.00466951 0.00162984) 13998
(0.00974617 0.00466898 0.00161795) 13999
(0.00959768 0.00439498 0.00171133) 14059
(0.00959768 0.00439498 0.00171133) 14059
(0.00959768 0.00439498 0.00171133) 14059
(0.0100447 0.00439492 0.00170532) 14060
(0.0104442 0.00439433 0.00170044) 14060
(0.0109163 0.00439563 0.00170379) 14061
(0.0114397 0.0043995 0.00171155) 14062
(0.011943 0.00440476 0.00171967) 14063
(0.0104935 0.00416684 0.0018308) 14120
(0.0109668 0.00416925 0.00183407) 14121
(0.0114863 0.00417655 0.00184) 14122
(0.0119917 0.00418498 0.00184668) 14123
(0.0102283 0.00395281 0.00204118) 14180
(0.010579 0.00362437 0.00345262) 14481
(0.0110669 0.00362969 0.00345514) 14482
(0.0115512 0.00363637 0.00345916) 14483
(0.0120316 0.00364634 0.00346243) 14484
(0.0106057 0.00373315 0.00369338) 14541
(0.0110915 0.00373702 0.00369202) 14542
(0.0115767 0.00374229 0.00369086) 14543
(0.0120568 0.00375023 0.00368897) 14544
(0.00991259 0.00392323 0.00392346) 14599
(0.0103504 0.00392117 0.00392493) 14600
(0.00932602 0.00470496 0.00437749) 14778
(0.00996607 0.00499827 0.00442616) 14839
(0.0104216 0.00499815 0.00442877) 14840
(0.010909 0.00500045 0.00442466) 14841
(0.011404 0.00500298 0.00441986) 14842
(0.00984586 0.00527638 0.00439492) 14899
(0.0102969 0.00528009 0.00439598) 14900
(0.0108027 0.00527918 0.00438929) 14901
(0.00946468 0.00635752 0.0034032) 15198
(0.00993305 0.00636158 0.00340791) 15199
(0.0103585 0.00636544 0.00341073) 15200
(0.0096479 0.00642291 0.00312328) 15259
(0.0096479 0.00642291 0.00312328) 15259
(0.0096479 0.00642291 0.00312328) 15259
(0.0101507 0.00642418 0.0031294) 15260
(0.0106292 0.00642339 0.00313207) 15261
(0.0111041 0.00642184 0.00313339) 15262
(0.0115859 0.00641875 0.00313451) 15263
(0.0120671 0.00641378 0.00313465) 15264
(0.00493773 0.00642751 0.00281511) 13509
(0.00510212 0.00644334 0.00287397) 13510
(0.00651574 0.00641325 0.00283771) 13513
(0.00814438 0.00643098 0.00284429) 13516
(0.00890609 0.00641586 0.00290004) 13517
(0.00482649 0.00448948 0.0015751) 5709
(0.00580932 0.00449011 0.00170727) 14051
(0.00814993 0.00438148 0.00170449) 14056
(0.00894985 0.00440777 0.00170687) 14057
(0.00723129 0.00413832 0.00187819) 14114
(0.00739042 0.00412351 0.00185579) 14114
(0.00786515 0.00413524 0.00183385) 14115
(0.00553418 0.00369176 0.00354895) 14471
(0.00552793 0.00360461 0.00343455) 14471
(0.00641457 0.00369011 0.00353831) 14472
(0.00794984 0.00365063 0.00345684) 14475
(0.00538406 0.00386637 0.00383749) 14590
(0.00556377 0.00383585 0.00386157) 14591
(0.00745834 0.00372862 0.00366878) 14534
(0.00654255 0.0050892 0.00440626) 14833
(0.0063641 0.00508496 0.00444624) 14832
(0.00701387 0.00506103 0.00444723) 14834
(0.00789178 0.00497434 0.004431) 14835
(0.00880144 0.00635762 0.00339442) 15197
(0.0055555 0.00640838 0.00311071) 15251
(0.00605371 0.00639533 0.00311279) 15252
(0.00909132 0.00639842 0.00311594) 15258
(0.0221942 0.00630941 0.00200477) 13484
(0.0235776 0.00653729 0.00223173) 6107
(0.0197423 0.00665358 0.0041542) 1899
(0.0181365 0.00369689 0.0047387) 10536
(0.0195586 0.00375452 0.00481094) 10539
(0.0182627 0.0032799 0.00167458) 396
(0.0189958 0.00593283 0.00503718) 12577
(0.0189958 0.00593283 0.00503718) 12577
(0.0189958 0.00593283 0.00503718) 12577
(0.0207574 0.00598504 0.004994) 12341
(0.0207574 0.00598504 0.004994) 12341
(0.0207574 0.00598504 0.004994) 12341
(0.018803 0.00369369 0.00144235) 9217
(0.0193544 0.00408047 0.00128173) 11498
(0.0190785 0.00471645 0.000911488) 11618
(0.0178137 0.00588667 0.000934005) 12155
(0.0192642 0.00527645 0.000743577) 11918
(0.0208577 0.00519719 0.000715533) 11921
(0.0182694 0.00532632 0.00526288) 11076
(0.0198774 0.00537118 0.00523962) 11439
(0.0173329 0.00286404 0.00324505) 31968
(0.0213659 0.00304257 0.00325831) 822
(0.0238078 0.00296976 0.00326086) 33841
(0.0188744 0.00668438 0.0015997) 2497
(0.0208334 0.00663967 0.00161748) 2501
(0.0222466 0.00659688 0.00154924) 6764
(0.021796 0.00603225 0.0015935) 6043
(0.00959448 0.00642838 0.00287202) 13519
(0.00959448 0.00642838 0.00287202) 13519
(0.00959448 0.00642838 0.00287202) 13519
(0.0100862 0.0064309 0.00287057) 13520
(0.0110425 0.00642772 0.00287339) 13522
(0.0115285 0.00642305 0.00287789) 13523
(0.0120095 0.00641585 0.00288281) 13524
(0.0101343 0.00636854 0.00256941) 13580
(0.0103534 0.00583056 0.00187232) 13760
(0.0108269 0.00582591 0.00187103) 13761
(0.010198 0.00559124 0.00171299) 13820
(0.00934543 0.00466944 0.00162976) 13998
(0.00972332 0.00466874 0.00161795) 13999
(0.00957488 0.00439491 0.00171123) 14059
(0.00957488 0.00439491 0.00171123) 14059
(0.00957488 0.00439491 0.00171123) 14059
(0.0100211 0.00439487 0.00170515) 14060
(0.0104191 0.00439419 0.00170011) 14060
(0.0108902 0.00439549 0.00170338) 14061
(0.0114143 0.00439929 0.00171112) 14062
(0.0119193 0.00440451 0.00171919) 14063
(0.0104688 0.00416666 0.00183053) 14120
(0.010941 0.00416891 0.00183377) 14121
(0.0114611 0.00417614 0.00183965) 14122
(0.0119679 0.00418451 0.0018463) 14123
(0.0102038 0.00395266 0.00204098) 14180
(0.0105546 0.00362406 0.00345271) 14481
(0.0110433 0.00362944 0.00345506) 14482
(0.0115283 0.00363602 0.00345901) 14483
(0.0120085 0.00364574 0.00346235) 14484
(0.0105818 0.00373293 0.00369359) 14541
(0.0110679 0.00373682 0.00369216) 14542
(0.0115536 0.00374197 0.00369095) 14543
(0.0120339 0.00374976 0.00368917) 14544
(0.0103264 0.00392099 0.00392512) 14600
(0.00930357 0.00470488 0.00437756) 14778
(0.00973871 0.00470617 0.00438988) 14779
(0.00994318 0.00499821 0.00442623) 14839
(0.010397 0.00499811 0.00442909) 14840
(0.0108844 0.00500034 0.00442497) 14841
(0.0113803 0.00500288 0.00442012) 14842
(0.00982293 0.00527634 0.00439505) 14899
(0.0102716 0.00528005 0.00439642) 14900
(0.0107773 0.00527923 0.00438969) 14901
(0.00944195 0.00635765 0.00340309) 15198
(0.0099098 0.00636166 0.00340777) 15199
(0.0103349 0.00636556 0.00341062) 15200
(0.00962478 0.00642304 0.00312316) 15259
(0.00962478 0.00642304 0.00312316) 15259
(0.00962478 0.00642304 0.00312316) 15259
(0.0101271 0.00642432 0.00312936) 15260
(0.0106055 0.00642356 0.00313204) 15261
(0.0110809 0.00642199 0.00313336) 15262
(0.0115631 0.00641893 0.00313449) 15263
(0.0120442 0.00641409 0.00313471) 15264
(0.00494303 0.00642637 0.00281642) 13509
(0.00512703 0.00644102 0.00288177) 13510
(0.00379115 0.00643839 0.00271737) 13507
(0.00644125 0.00641817 0.00283914) 13512
(0.00812566 0.00643008 0.002843) 13516
(0.00888291 0.00641655 0.00289953) 13517
(0.00482286 0.00447929 0.00157117) 5709
(0.00569418 0.00449841 0.0016983) 14051
(0.00892868 0.00440677 0.00170687) 14057
(0.00726286 0.00414148 0.00188072) 14114
(0.00739881 0.0041237 0.00185663) 14114
(0.00784695 0.00413458 0.00183524) 14115
(0.00881225 0.00418576 0.00183008) 14117
(0.00555328 0.00369984 0.00356537) 14471
(0.00550269 0.00359506 0.00342381) 14471
(0.00638926 0.00369105 0.00354103) 14472
(0.00787807 0.00364936 0.00345732) 14475
(0.00552893 0.00387934 0.00383937) 14591
(0.00554339 0.00383467 0.00386185) 14591
(0.00731255 0.00373448 0.00367528) 14534
(0.0065871 0.00508807 0.00440153) 14833
(0.00638202 0.00508587 0.0044447) 14832
(0.00699728 0.00506206 0.00444707) 14833
(0.0078354 0.00498074 0.0044342) 14835
(0.00878341 0.00635658 0.00339519) 15197
(0.00593226 0.00640263 0.00311656) 15251
(0.0090661 0.00640063 0.00311505) 15258
(0.0220959 0.00630454 0.00199423) 13484
(0.0235391 0.00652747 0.00222522) 6107
(0.019641 0.0066572 0.0041562) 1899
(0.0180896 0.00369506 0.00473678) 10536
(0.0195355 0.00374848 0.00480348) 10539
(0.0181991 0.00328387 0.0016699) 396
(0.0189249 0.00593097 0.00503982) 12577
(0.0189249 0.00593097 0.00503982) 12577
(0.0189249 0.00593097 0.00503982) 12577
(0.0207154 0.0059798 0.00499605) 12341
(0.0207154 0.0059798 0.00499605) 12341
(0.0207154 0.0059798 0.00499605) 12341
(0.0186969 0.00369696 0.00143934) 9217
(0.0192552 0.00408456 0.00128008) 11498
(0.0190173 0.00472137 0.000910157) 11618
(0.0205009 0.00458808 0.000929581) 11561
(0.0177638 0.00588823 0.000935141) 12155
(0.0191863 0.00527924 0.000743476) 11918
(0.0208371 0.00520391 0.000720275) 11921
(0.0182146 0.00532494 0.00526433) 11076
(0.0198401 0.00536543 0.00523931) 11439
(0.0172357 0.00285786 0.00324182) 31968
(0.0212407 0.00304081 0.00325744) 822
(0.023781 0.00297378 0.00325883) 33841
(0.018779 0.00668693 0.00159577) 2497
(0.0207818 0.0066417 0.00162001) 2501
(0.0222456 0.00660201 0.00155994) 6764
(0.021677 0.00603152 0.0015924) 6043
(0.00957119 0.00642845 0.00287201) 13519
(0.00957119 0.00642845 0.00287201) 13519
(0.00957119 0.00642845 0.00287201) 13519
(0.0100621 0.00643107 0.00287055) 13520
(0.0110185 0.00642793 0.00287319) 13522
(0.0115055 0.00642334 0.00287767) 13523
(0.0119865 0.0064163 0.0028826) 13523
(0.0101102 0.00636874 0.00256956) 13580
(0.0103304 0.00583072 0.00187221) 13760
(0.0108039 0.00582609 0.00187096) 13761
(0.0101743 0.00559127 0.00171277) 13820
(0.00932275 0.00466937 0.00162968) 13998
(0.00970053 0.00466851 0.00161795) 13999
(0.00955207 0.00439485 0.00171113) 14059
(0.00955207 0.00439485 0.00171113) 14059
(0.00955207 0.00439485 0.00171113) 14059
(0.0099976 0.00439482 0.00170499) 14059
(0.010394 0.00439406 0.0016998) 14060
(0.010864 0.00439534 0.00170296) 14061
(0.0113888 0.00439908 0.00171069) 14062
(0.0118956 0.00440426 0.00171872) 14063
(0.0104441 0.00416649 0.00183025) 14120
(0.0109152 0.00416857 0.00183346) 14121
(0.0114359 0.00417573 0.0018393) 14122
(0.0119442 0.00418405 0.00184592) 14123
(0.0101793 0.00395253 0.00204079) 14180
(0.0105302 0.00362376 0.00345281) 14481
(0.0110197 0.00362919 0.00345498) 14482
(0.0115053 0.00363567 0.00345887) 14483
(0.0119853 0.00364514 0.00346227) 14483
(0.0105579 0.00373271 0.00369381) 14541
(0.0110443 0.00373662 0.0036923) 14542
(0.0115305 0.00374166 0.00369104) 14543
(0.012011 0.00374928 0.00368936) 14544
(0.0103025 0.00392083 0.00392529) 14600
(0.00928117 0.00470482 0.00437764) 14778
(0.0097154 0.004706 0.00438991) 14779
(0.00992027 0.00499815 0.0044263) 14839
(0.0103725 0.00499808 0.00442941) 14840
(0.0108598 0.00500024 0.00442528) 14841
(0.0113566 0.00500278 0.00442039) 14842
(0.00980003 0.00527631 0.00439518) 14899
(0.0102463 0.00528001 0.00439686) 14900
(0.0107518 0.00527928 0.0043901) 14901
(0.00941929 0.00635776 0.00340298) 15198
(0.00988656 0.00636174 0.00340763) 15199
(0.0103113 0.0063657 0.00341049) 15200
(0.00960169 0.00642318 0.00312304) 15259
(0.00960169 0.00642318 0.00312304) 15259
(0.00960169 0.00642318 0.00312304) 15259
(0.0101034 0.00642446 0.00312931) 15260
(0.0105817 0.00642375 0.003132) 15261
(0.0110577 0.00642214 0.00313333) 15262
(0.0115402 0.0064191 0.00313446) 15263
(0.0120213 0.00641439 0.00313477) 15264
(0.00494775 0.00642532 0.00281738) 13509
(0.00511136 0.0064405 0.0028776) 13510
(0.00438612 0.00646851 0.00262763) 6188
(0.00637977 0.00642108 0.00284011) 13512
(0.00810911 0.00642886 0.00284174) 13516
(0.00887285 0.00641758 0.00289861) 13517
(0.00482354 0.00447211 0.00156884) 5709
(0.00558357 0.00450801 0.00168888) 14051
(0.00890857 0.00440593 0.00170702) 14057
(0.00728193 0.00414512 0.00188364) 14114
(0.00738398 0.00412409 0.00185761) 14114
(0.0078598 0.00413386 0.00183676) 14115
(0.00878457 0.00418313 0.00183029) 14117
(0.00558856 0.0037097 0.00358505) 14531
(0.00636545 0.00369189 0.00354342) 14472
(0.00781036 0.00364883 0.00345795) 14475
(0.0056907 0.00388513 0.00382919) 14591
(0.00547019 0.00382809 0.00386004) 14590
(0.00721595 0.00373965 0.00368195) 14534
(0.00663211 0.00508684 0.00439655) 14833
(0.00640175 0.00508674 0.00444306) 14832
(0.00698064 0.00506299 0.00444689) 14833
(0.00778136 0.00498762 0.00443688) 14835
(0.00876525 0.00635551 0.00339581) 15197
(0.00591289 0.00640252 0.00311705) 15251
(0.00904037 0.00640293 0.003114) 15258
(0.0219905 0.00630107 0.00198503) 13483
(0.0235003 0.00651756 0.00221822) 6107
(0.0195367 0.00666115 0.00415827) 1899
(0.0180422 0.00369331 0.004735) 10536
(0.0195114 0.00374277 0.0047964) 10539
(0.0181348 0.00328784 0.00166509) 396
(0.0188536 0.0059291 0.00504255) 12577
(0.0188536 0.0059291 0.00504255) 12577
(0.0188536 0.0059291 0.00504255) 12577
(0.0206719 0.00597478 0.00499802) 12341
(0.0206719 0.00597478 0.00499802) 12341
(0.0206719 0.00597478 0.00499802) 12341
(0.0185911 0.00370018 0.00143615) 9217
(0.0191549 0.00408851 0.00127818) 11498
(0.0189551 0.00472607 0.000908769) 11617
(0.0204729 0.00459638 0.000929437) 11560
(0.0177137 0.00588985 0.000936233) 12155
(0.0191069 0.00528211 0.000743261) 11918
(0.0208126 0.00521013 0.000724693) 11921
(0.0181597 0.00532355 0.00526587) 11076
(0.0198016 0.00536003 0.00523911) 11439
(0.0171404 0.00285175 0.00323874) 31968
(0.0211146 0.00303865 0.00325654) 822
(0.0237499 0.00297796 0.00325698) 33841
(0.0186744 0.00668974 0.00159096) 2497
(0.0186744 0.00668974 0.00159096) 2497
(0.0186744 0.00668974 0.00159096) 2497
(0.0207291 0.00664353 0.00162218) 2501
(0.0222386 0.00660654 0.0015696) 6764
(0.0215475 0.00603265 0.00159211) 6043
(0.0095479 0.00642853 0.00287198) 13519
(0.0095479 0.00642853 0.00287198) 13519
(0.0095479 0.00642853 0.00287198) 13519
(0.0100381 0.00643124 0.00287054) 13520
(0.0109945 0.00642814 0.002873) 13521
(0.0114825 0.00642362 0.00287746) 13522
(0.0119636 0.00641674 0.00288238) 13523
(0.0100862 0.00636894 0.00256973) 13580
(0.0103072 0.00583088 0.0018721) 13760
(0.0107809 0.00582626 0.00187088) 13761
(0.0101506 0.00559129 0.00171254) 13820
(0.00930007 0.00466931 0.0016296) 13998
(0.00967778 0.0046683 0.00161796) 13999
(0.00952926 0.00439479 0.00171102) 14059
(0.00952926 0.00439479 0.00171102) 14059
(0.00952926 0.00439479 0.00171102) 14059
(0.00997414 0.00439477 0.00170484) 14059
(0.0103691 0.00439393 0.0016995) 14060
(0.0108379 0.0043952 0.00170255) 14061
(0.0113633 0.00439887 0.00171026) 14062
(0.0118718 0.00440401 0.00171825) 14063
(0.0104195 0.00416633 0.00182998) 14120
(0.0108894 0.00416823 0.00183315) 14121
(0.0114107 0.00417532 0.00183895) 14122
(0.0119203 0.00418359 0.00184554) 14123
(0.0101549 0.00395241 0.00204058) 14180
(0.0105057 0.00362344 0.00345292) 14481
(0.010996 0.00362894 0.00345491) 14481
(0.0114823 0.00363534 0.00345872) 14482
(0.0119622 0.00364456 0.00346218) 14483
(0.0105339 0.00373249 0.00369403) 14541
(0.0110206 0.00373643 0.00369245) 14542
(0.0115074 0.00374136 0.00369113) 14543
(0.0119881 0.00374882 0.00368955) 14543
(0.0102786 0.00392066 0.00392547) 14600
(0.0092588 0.00470477 0.00437773) 14778
(0.00969211 0.00470581 0.00438994) 14779
(0.00989737 0.00499808 0.00442636) 14839
(0.0103479 0.00499804 0.00442972) 14840
(0.0108352 0.00500014 0.0044256) 14841
(0.0113329 0.00500268 0.00442066) 14842
(0.00977715 0.00527629 0.00439529) 14899
(0.010221 0.00527996 0.00439729) 14900
(0.0107263 0.00527933 0.00439052) 14901
(0.00939669 0.00635788 0.00340287) 15198
(0.00986335 0.00636181 0.0034075) 15199
(0.0102876 0.00636583 0.00341036) 15200
(0.00957863 0.0064233 0.00312291) 15259
(0.00957863 0.0064233 0.00312291) 15259
(0.00957863 0.0064233 0.00312291) 15259
(0.0100798 0.0064246 0.00312926) 15260
(0.0105579 0.00642393 0.00313197) 15261
(0.0110345 0.00642229 0.00313329) 15262
(0.0115174 0.00641928 0.00313443) 15263
(0.0119985 0.00641469 0.00313482) 15263
(0.00495212 0.00642427 0.00281841) 13509
(0.00509619 0.00643991 0.00287339) 13510
(0.00471512 0.00648011 0.00270647) 6129
(0.0063171 0.00642393 0.00284072) 13512
(0.00809379 0.00642744 0.00284065) 13516
(0.00884773 0.00641909 0.00289699) 13517
(0.00482485 0.00446937 0.0015683) 5709
(0.00547693 0.00451888 0.00167911) 14050
(0.00888931 0.00440532 0.0017073) 14057
(0.00729786 0.00414858 0.00188638) 14114
(0.00737022 0.00412452 0.00185871) 14114
(0.00784568 0.00413338 0.00183853) 14115
(0.00877514 0.00418102 0.00183071) 14117
(0.00563958 0.00372187 0.00360328) 14531
(0.00634097 0.0036927 0.00354588) 14472
(0.00774649 0.0036489 0.00345872) 14475
(0.00546483 0.0038271 0.00385961) 14590
(0.00706531 0.00374812 0.00369127) 14534
(0.00667599 0.0050855 0.00439133) 14833
(0.00642358 0.00508753 0.00444129) 14832
(0.00696445 0.00506383 0.00444668) 14833
(0.00773191 0.00499464 0.00443902) 14835
(0.00874723 0.00635439 0.00339626) 15197
(0.00589093 0.00640263 0.00311741) 15251
(0.00901393 0.00640531 0.00311292) 15258
(0.0218762 0.00629887 0.00197613) 13483
(0.0234614 0.00650762 0.00221084) 6106
(0.0194298 0.00666543 0.00416043) 1898
(0.0179942 0.00369161 0.00473337) 10535
(0.0194857 0.00373742 0.00478972) 10538
(0.0180698 0.00329175 0.00166016) 396
(0.0187823 0.00592723 0.00504536) 12577
(0.0187823 0.00592723 0.00504536) 12577
(0.0187823 0.00592723 0.00504536) 12577
(0.0206303 0.0059698 0.00499995) 12341
(0.0206303 0.0059698 0.00499995) 12341
(0.0206303 0.0059698 0.00499995) 12341
(0.0184871 0.00370336 0.00143282) 9216
(0.0190534 0.00409234 0.00127603) 11498
(0.0188922 0.00473058 0.000907324) 11617
(0.0204436 0.00460453 0.000929278) 11560
(0.0176634 0.00589153 0.000937279) 12155
(0.0190265 0.00528509 0.000742937) 11918
(0.0207849 0.00521599 0.000728851) 11921
(0.0181045 0.00532223 0.00526752) 11076
(0.0197619 0.00535495 0.00523899) 11439
(0.0209888 0.0030362 0.00325565) 821
(0.0237143 0.00298229 0.00325527) 33841
(0.0185598 0.00669293 0.00158523) 2497
(0.0185598 0.00669293 0.00158523) 2497
(0.0185598 0.00669293 0.00158523) 2497
(0.0206748 0.00664521 0.00162393) 2501
(0.0222246 0.00661049 0.00157803) 6764
(0.0214044 0.00603603 0.0015929) 6042
(0.00952462 0.0064286 0.00287195) 13519
(0.00952462 0.0064286 0.00287195) 13519
(0.00952462 0.0064286 0.00287195) 13519
(0.010014 0.00643141 0.00287053) 13520
(0.0109704 0.00642836 0.0028728) 13521
(0.0114594 0.00642389 0.00287724) 13522
(0.0119406 0.00641717 0.00288216) 13523
(0.0100622 0.00636914 0.00256991) 13580
(0.0102841 0.00583105 0.00187198) 13760
(0.0107578 0.00582644 0.0018708) 13761
(0.0101268 0.00559132 0.0017123) 13820
(0.00927741 0.00466925 0.00162952) 13998
(0.00965508 0.00466809 0.00161796) 13999
(0.00950646 0.00439474 0.00171091) 14059
(0.00950646 0.00439474 0.00171091) 14059
(0.00950646 0.00439474 0.00171091) 14059
(0.00995075 0.00439471 0.00170471) 14059
(0.0103443 0.0043938 0.0016992) 14060
(0.0108118 0.00439506 0.00170214) 14061
(0.0113377 0.00439867 0.00170984) 14062
(0.0118479 0.00440376 0.00171778) 14063
(0.0103949 0.00416618 0.00182971) 14120
(0.0108637 0.00416791 0.00183285) 14121
(0.0113853 0.00417493 0.00183861) 14122
(0.0118964 0.00418314 0.00184517) 14123
(0.0101305 0.00395231 0.00204038) 14180
(0.0104811 0.00362313 0.00345303) 14480
(0.0109722 0.00362869 0.00345484) 14481
(0.0114594 0.00363501 0.00345857) 14482
(0.0119392 0.00364399 0.00346209) 14483
(0.0105098 0.00373227 0.00369425) 14541
(0.0109969 0.00373623 0.00369259) 14541
(0.0114843 0.00374106 0.00369122) 14542
(0.0119652 0.00374835 0.00368974) 14543
(0.0102547 0.00392051 0.00392566) 14600
(0.00923648 0.00470473 0.00437782) 14778
(0.00966885 0.00470562 0.00438996) 14779
(0.0103234 0.00499801 0.00443003) 14840
(0.0108105 0.00500004 0.00442592) 14841
(0.0113091 0.00500257 0.00442092) 14842
(0.00975428 0.00527628 0.00439539) 14899
(0.0101958 0.00527992 0.00439772) 14900
(0.0107007 0.00527938 0.00439095) 14901
(0.00937413 0.00635799 0.00340276) 15198
(0.00984016 0.00636189 0.00340738) 15199
(0.010264 0.00636597 0.00341021) 15200
(0.0095556 0.00642343 0.00312279) 15259
(0.0095556 0.00642343 0.00312279) 15259
(0.0095556 0.00642343 0.00312279) 15259
(0.0100562 0.00642473 0.0031292) 15260
(0.010534 0.00642411 0.00313194) 15261
(0.0110111 0.00642244 0.00313326) 15262
(0.0114945 0.00641945 0.0031344) 15262
(0.0119756 0.00641498 0.00313486) 15263
(0.00495709 0.00642303 0.00281995) 13509
(0.00508152 0.00643927 0.00286916) 13510
(0.00495063 0.00647295 0.00280431) 13509
(0.00627067 0.006427 0.0028409) 13512
(0.00809858 0.00642583 0.00283956) 13516
(0.00882001 0.00642104 0.00289447) 13517
(0.00482672 0.00446638 0.00156756) 5709
(0.00537993 0.00452842 0.00166962) 14050
(0.00887056 0.00440469 0.00170769) 14057
(0.00730681 0.00415127 0.0018885) 14114
(0.0073853 0.00412511 0.00186041) 14114
(0.00783251 0.00413298 0.00184039) 14115
(0.00874972 0.00417918 0.001831) 14117
(0.00569545 0.00373254 0.00361409) 14531
(0.00631659 0.00369344 0.00354826) 14472
(0.00768973 0.00364943 0.0034596) 14475
(0.00497704 0.00372686 0.00377314) 14529
(0.00539221 0.00381894 0.00385496) 14590
(0.00691664 0.00375758 0.00370192) 14533
(0.00671452 0.00508405 0.00438627) 14833
(0.00645406 0.00508834 0.00443911) 14832
(0.00694899 0.00506463 0.00444642) 14833
(0.00768934 0.00500154 0.00444054) 14835
(0.00872941 0.00635319 0.00339656) 15197
(0.00586674 0.00640289 0.00311795) 15251
(0.00898697 0.00640762 0.00311192) 15257
(0.0187197 0.00695012 0.00352728) 2017
(0.0217538 0.00629786 0.00196777) 13483
(0.023422 0.00649769 0.00220308) 6106
(0.0193204 0.00667002 0.0041627) 1898
(0.0179456 0.00368997 0.00473188) 10535
(0.0194582 0.00373243 0.00478344) 10538
(0.0180042 0.00329557 0.00165513) 396
(0.0187109 0.00592534 0.00504826) 12577
(0.0187109 0.00592534 0.00504826) 12577
(0.0187109 0.00592534 0.00504826) 12577
(0.0205884 0.005965 0.0050019) 12341
(0.0205884 0.005965 0.0050019) 12341
(0.0205884 0.005965 0.0050019) 12341
(0.0183844 0.00370631 0.00142946) 9216
(0.0189511 0.0040961 0.00127368) 11497
(0.0188284 0.00473493 0.000905817) 11617
(0.0204137 0.00461259 0.000929094) 11560
(0.0176132 0.00589326 0.000938283) 12155
(0.0189447 0.00528818 0.000742495) 11917
(0.020755 0.00522155 0.000732806) 11921
(0.0180487 0.00532101 0.00526928) 11076
(0.0197211 0.00535018 0.00523897) 11439
(0.0208618 0.00303329 0.00325472) 821
(0.0236739 0.00298676 0.00325376) 33841
(0.0184345 0.00669668 0.00157837) 2496
(0.0184345 0.00669668 0.00157837) 2496
(0.0184345 0.00669668 0.00157837) 2496
(0.0206187 0.0066469 0.00162544) 2501
(0.0222007 0.00661379 0.00158468) 6764
(0.0212511 0.00604142 0.00159454) 6042
(0.00950135 0.00642868 0.00287191) 13519
(0.00950135 0.00642868 0.00287191) 13519
(0.00950135 0.00642868 0.00287191) 13519
(0.00998999 0.00643157 0.00287053) 13519
(0.0104588 0.00643154 0.00287006) 13520
(0.0109462 0.00642858 0.00287261) 13521
(0.0114363 0.00642416 0.00287703) 13522
(0.0119177 0.00641759 0.00288195) 13523
(0.0102609 0.00583121 0.00187186) 13760
(0.0107348 0.00582661 0.00187072) 13761
(0.0101031 0.00559135 0.00171207) 13820
(0.0092548 0.00466919 0.00162943) 13998
(0.00963241 0.00466789 0.00161797) 13999
(0.00948366 0.00439468 0.0017108) 14058
(0.00948366 0.00439468 0.0017108) 14058
(0.00948366 0.00439468 0.0017108) 14058
(0.00992745 0.00439466 0.00170458) 14059
(0.0103195 0.00439369 0.00169891) 14060
(0.0107858 0.00439492 0.00170173) 14061
(0.011312 0.00439847 0.00170941) 14062
(0.0118239 0.00440351 0.00171731) 14063
(0.0103704 0.00416605 0.00182944) 14120
(0.010838 0.00416758 0.00183255) 14121
(0.01136 0.00417453 0.00183826) 14122
(0.0118724 0.00418268 0.00184479) 14123
(0.0101063 0.00395222 0.00204017) 14180
(0.0104565 0.00362282 0.00345316) 14480
(0.0109484 0.00362843 0.00345478) 14481
(0.0114364 0.00363469 0.00345842) 14482
(0.0119161 0.00364344 0.00346199) 14483
(0.0104857 0.00373205 0.00369447) 14540
(0.0109732 0.00373604 0.00369274) 14541
(0.0114611 0.00374077 0.00369131) 14542
(0.0119423 0.0037479 0.00368992) 14543
(0.0102308 0.00392037 0.00392584) 14600
(0.0092142 0.0047047 0.00437792) 14778
(0.00964563 0.00470542 0.00438998) 14779
(0.0102989 0.00499798 0.00443034) 14840
(0.0107858 0.00499994 0.00442625) 14841
(0.0112852 0.00500246 0.00442119) 14842
(0.00973142 0.00527628 0.00439548) 14899
(0.0101706 0.00527987 0.00439814) 14900
(0.0106751 0.00527944 0.00439137) 14901
(0.00935162 0.00635809 0.00340266) 15198
(0.00981701 0.00636197 0.00340726) 15199
(0.0102403 0.00636611 0.00341005) 15200
(0.0095326 0.00642356 0.00312267) 15259
(0.0095326 0.00642356 0.00312267) 15259
(0.0095326 0.00642356 0.00312267) 15259
(0.0100325 0.00642487 0.00312914) 15260
(0.0105101 0.0064243 0.00313192) 15261
(0.0109878 0.0064226 0.00313324) 15261
(0.0114716 0.00641961 0.00313437) 15262
(0.0119528 0.00641526 0.0031349) 15263
(0.00494144 0.00642301 0.00281205) 13509
(0.00506781 0.00643847 0.00286498) 13510
(0.00511689 0.00646559 0.002865) 13510
(0.00620374 0.00643061 0.00284123) 13512
(0.00808438 0.0064241 0.00283868) 13516
(0.00879135 0.00642289 0.00289126) 13517
(0.00482808 0.00446333 0.00156684) 5709
(0.00529627 0.00453635 0.00166106) 13990
(0.00885173 0.00440384 0.00170817) 14057
(0.00730559 0.00415431 0.00189081) 14114
(0.00740015 0.00412586 0.00186216) 14114
(0.00784613 0.00413256 0.00184211) 14115
(0.0087249 0.00417761 0.00183129) 14117
(0.00577109 0.00374297 0.00362039) 14531
(0.00548476 0.00359657 0.00343376) 14470
(0.00628557 0.00369436 0.0035517) 14472
(0.00763965 0.00365048 0.00346088) 14475
(0.00499564 0.00374531 0.00378212) 14529
(0.0053896 0.00381834 0.00385464) 14590
(0.00685029 0.00376291 0.00370862) 14533
(0.0067369 0.00508272 0.00438244) 14833
(0.00651203 0.0050894 0.00443546) 14833
(0.00693469 0.0050654 0.0044461) 14833
(0.00765387 0.00500815 0.00444147) 14835
(0.00771773 0.00530415 0.00437297) 14895
(0.00871185 0.00635187 0.00339673) 15197
(0.00584569 0.00640296 0.00311826) 15251
(0.0089607 0.00640939 0.00311087) 15257
(0.0186782 0.00694755 0.00353157) 2017
(0.0216208 0.00629859 0.00196173) 13483
(0.0233815 0.00648778 0.002195) 6106
(0.0192086 0.00667493 0.00416509) 1898
(0.0178964 0.00368838 0.00473057) 10535
(0.019429 0.00372782 0.00477759) 10538
(0.017938 0.00329924 0.00165006) 395
(0.0186395 0.00592339 0.00505124) 12577
(0.0186395 0.00592339 0.00505124) 12577
(0.0186395 0.00592339 0.00505124) 12577
(0.0205457 0.00596046 0.00500381) 12341
(0.0205457 0.00596046 0.00500381) 12341
(0.0205457 0.00596046 0.00500381) 12341
(0.0182834 0.00370911 0.00142601) 9216
(0.0188481 0.00409989 0.00127109) 11497
(0.0187641 0.00473919 0.000904251) 11617
(0.020383 0.00462053 0.000928883) 11560
(0.0175637 0.00589508 0.000939272) 12155
(0.0188618 0.00529144 0.000741966) 11917
(0.020723 0.00522683 0.000736545) 11921
(0.0179922 0.0053199 0.00527116) 11075
(0.0196792 0.0053457 0.00523904) 11439
(0.0207363 0.00303013 0.00325369) 821
(0.0236284 0.00299136 0.00325242) 33841
(0.0183008 0.00670119 0.00157056) 2496
(0.0183008 0.00670119 0.00157056) 2496
(0.0183008 0.00670119 0.00157056) 2496
(0.0205603 0.00664861 0.00162667) 2501
(0.0221648 0.0066166 0.00158928) 6764
(0.0210867 0.00604885 0.00159702) 6042
(0.00947807 0.00642875 0.00287185) 13518
(0.00947807 0.00642875 0.00287185) 13518
(0.00947807 0.00642875 0.00287185) 13518
(0.00996595 0.00643174 0.00287053) 13519
(0.010434 0.00643179 0.00286998) 13520
(0.0109218 0.00642881 0.00287242) 13521
(0.0114132 0.00642442 0.00287681) 13522
(0.0118949 0.00641801 0.00288173) 13523
(0.0102376 0.00583138 0.00187174) 13760
(0.0107117 0.00582677 0.00187063) 13761
(0.0100792 0.00559138 0.00171183) 13820
(0.00923224 0.00466915 0.00162934) 13998
(0.00960979 0.00466769 0.00161797) 13999
(0.00946089 0.00439463 0.00171068) 14058
(0.00946089 0.00439463 0.00171068) 14058
(0.00946089 0.00439463 0.00171068) 14058
(0.00990421 0.0043946 0.00170447) 14059
(0.0102949 0.00439358 0.00169863) 14060
(0.0107597 0.00439479 0.00170132) 14061
(0.0112863 0.00439828 0.00170899) 14062
(0.0117998 0.00440326 0.00171685) 14063
(0.010346 0.00416591 0.00182918) 14120
(0.0108123 0.00416727 0.00183225) 14121
(0.0113346 0.00417414 0.00183793) 14122
(0.0118484 0.00418223 0.00184441) 14123
(0.0100821 0.00395214 0.00203996) 14180
(0.0104319 0.00362251 0.00345329) 14480
(0.0109246 0.00362818 0.00345473) 14481
(0.0114133 0.00363439 0.00345827) 14482
(0.0118931 0.00364289 0.00346189) 14483
(0.0104616 0.00373183 0.00369469) 14540
(0.0109494 0.00373584 0.00369289) 14541
(0.0114379 0.00374049 0.0036914) 14542
(0.0119194 0.00374745 0.00369009) 14543
(0.010207 0.00392023 0.00392602) 14600
(0.00919191 0.00470469 0.00437802) 14778
(0.00962245 0.00470521 0.00438999) 14779
(0.0102743 0.00499796 0.00443064) 14840
(0.010761 0.00499984 0.00442658) 14841
(0.0112614 0.00500235 0.00442145) 14842
(0.00970857 0.00527629 0.00439556) 14899
(0.0101454 0.00527981 0.00439856) 14900
(0.0106494 0.00527949 0.00439181) 14901
(0.00932916 0.00635819 0.00340256) 15198
(0.00979388 0.00636205 0.00340715) 15199
(0.0102165 0.00636626 0.00340989) 15200
(0.00950963 0.00642368 0.00312256) 15259
(0.00950963 0.00642368 0.00312256) 15259
(0.00950963 0.00642368 0.00312256) 15259
(0.0100089 0.006425 0.00312907) 15260
(0.0104862 0.00642449 0.00313189) 15260
(0.0109643 0.00642276 0.00313321) 15261
(0.0114487 0.00641977 0.00313433) 15262
(0.01193 0.00641554 0.00313494) 15263
(0.00492936 0.00642234 0.00280581) 13509
(0.0050685 0.00643772 0.00286533) 13510
(0.00524408 0.00645849 0.00289911) 13510
(0.00610597 0.00643487 0.00284168) 13512
(0.00807052 0.00642226 0.00283783) 13516
(0.00876441 0.00642403 0.00288792) 13517
(0.00843331 0.00558172 0.00178129) 13816
(0.00483036 0.00446047 0.00156616) 5709
(0.00521313 0.00454168 0.00165091) 13990
(0.00883291 0.00440279 0.00170873) 14057
(0.00731497 0.0041574 0.00189322) 14114
(0.00741448 0.00412674 0.00186394) 14114
(0.00783369 0.00413237 0.00184393) 14115
(0.00870055 0.00417627 0.00183157) 14117
(0.00550762 0.00361217 0.00345388) 14471
(0.00626767 0.00369479 0.00355304) 14472
(0.0075946 0.0036514 0.00346164) 14475
(0.005021 0.00376429 0.00379187) 14530
(0.00538981 0.00381783 0.00385443) 14590
(0.00678902 0.00376825 0.00371532) 14533
(0.00676179 0.00508131 0.00437818) 14833
(0.00656009 0.00509031 0.00443141) 14833
(0.00692134 0.00506614 0.00444571) 14833
(0.0076269 0.00501488 0.00444179) 14835
(0.00767693 0.00530409 0.00437632) 14895
(0.00869458 0.0063504 0.00339678) 15197
(0.00582065 0.00640333 0.00311871) 15251
(0.00893612 0.00641043 0.00310965) 15257
(0.0186358 0.00694505 0.00353583) 2017
(0.0214788 0.00630075 0.00195631) 13482
(0.0233401 0.00647792 0.00218673) 6106
(0.0190951 0.0066801 0.0041676) 1898
(0.0214726 0.00671388 0.00408456) 1962
(0.0178464 0.00368678 0.00472949) 10535
(0.019398 0.00372353 0.00477211) 10538
(0.0178714 0.00330273 0.00164492) 395
(0.0185678 0.00592137 0.00505429) 12577
(0.0185678 0.00592137 0.00505429) 12577
(0.0185678 0.00592137 0.00505429) 12577
(0.020502 0.00595617 0.00500567) 12341
(0.020502 0.00595617 0.00500567) 12341
(0.020502 0.00595617 0.00500567) 12341
(0.0182782 0.00405863 0.00495935) 10836
(0.0181844 0.00371177 0.00142245) 9216
(0.0187451 0.00410372 0.0012683) 11497
(0.0186994 0.00474336 0.000902627) 11617
(0.0203512 0.00462831 0.000928647) 11560
(0.0175151 0.00589699 0.000940262) 12155
(0.0187784 0.00529489 0.000741384) 11917
(0.0206889 0.00523182 0.000740067) 11921
(0.0179352 0.00531889 0.00527315) 11075
(0.019636 0.00534152 0.00523921) 11439
(0.0206114 0.00302658 0.0032526) 821
(0.0235778 0.00299607 0.00325129) 33841
(0.0181616 0.00670673 0.00156217) 2496
(0.0205 0.00665039 0.00162767) 2500
(0.022116 0.00661908 0.00159176) 2504
(0.00945481 0.00642883 0.00287178) 13518
(0.00945481 0.00642883 0.00287178) 13518
(0.00945481 0.00642883 0.00287178) 13518
(0.00994192 0.00643189 0.00287052) 13519
(0.0104092 0.00643204 0.00286991) 13520
(0.0108974 0.00642904 0.00287223) 13521
(0.01139 0.00642468 0.0028766) 13522
(0.011872 0.00641842 0.00288151) 13523
(0.0102143 0.00583154 0.00187161) 13760
(0.0106887 0.00582693 0.00187054) 13761
(0.0100554 0.00559142 0.00171158) 13820
(0.00920973 0.0046691 0.00162924) 13998
(0.00958719 0.0046675 0.00161797) 13999
(0.00943815 0.00439458 0.00171056) 14058
(0.00943815 0.00439458 0.00171056) 14058
(0.00943815 0.00439458 0.00171056) 14058
(0.00988104 0.00439454 0.00170436) 14059
(0.0102704 0.00439348 0.00169837) 14060
(0.0107337 0.00439465 0.00170091) 14061
(0.0112605 0.00439809 0.00170857) 14062
(0.0117757 0.00440301 0.00171639) 14063
(0.0103216 0.00416579 0.00182893) 14120
(0.0107866 0.00416696 0.00183195) 14121
(0.0113091 0.00417376 0.00183759) 14122
(0.0118243 0.00418178 0.00184403) 14123
(0.0100579 0.00395208 0.00203974) 14180
(0.0104072 0.0036222 0.00345343) 14480
(0.0109006 0.00362791 0.00345469) 14481
(0.0113903 0.00363408 0.00345813) 14482
(0.0118701 0.00364236 0.00346179) 14483
(0.0104374 0.0037316 0.00369492) 14540
(0.0109256 0.00373564 0.00369305) 14541
(0.0114147 0.00374021 0.00369149) 14542
(0.0118964 0.003747 0.00369026) 14543
(0.0101832 0.00392008 0.00392619) 14600
(0.00916969 0.00470468 0.00437812) 14778
(0.0095993 0.004705 0.00439) 14779
(0.0102498 0.00499794 0.00443093) 14840
(0.0107362 0.00499974 0.00442691) 14841
(0.0112375 0.00500224 0.00442172) 14842
(0.00968573 0.00527631 0.00439563) 14899
(0.0101203 0.00527975 0.00439896) 14900
(0.0106237 0.00527955 0.00439225) 14901
(0.00930672 0.00635829 0.00340247) 15198
(0.00977078 0.00636213 0.00340703) 15199
(0.0101928 0.0063664 0.00340974) 15200
(0.00948671 0.0064238 0.00312245) 15258
(0.00948671 0.0064238 0.00312245) 15258
(0.00948671 0.0064238 0.00312245) 15258
(0.00998532 0.00642513 0.003129) 15259
(0.0104622 0.00642469 0.00313186) 15260
(0.0109408 0.00642293 0.00313318) 15261
(0.0114258 0.00641993 0.00313429) 15262
(0.0119072 0.00641581 0.00313497) 15263
(0.00495079 0.00642043 0.0028153) 13509
(0.00505683 0.00643679 0.00286145) 13510
(0.00532515 0.00645263 0.00291553) 13510
(0.00591261 0.00644035 0.00284102) 13511
(0.00805609 0.00642035 0.00283708) 13516
(0.00875413 0.00642467 0.00288374) 13517
(0.00841245 0.00558268 0.0017771) 13816
(0.00483195 0.00445832 0.00156586) 5709
(0.00513972 0.00454613 0.00164179) 13990
(0.00881424 0.00440165 0.00170939) 14057
(0.00742762 0.00412775 0.00186573) 14114
(0.00782098 0.0041323 0.0018456) 14115
(0.00867654 0.00417505 0.00183188) 14117
(0.00553152 0.00362702 0.00347508) 14471
(0.00624575 0.00369529 0.00355498) 14472
(0.00755065 0.0036525 0.00346264) 14475
(0.0050356 0.00377464 0.00379634) 14530
(0.00533073 0.00380986 0.00384856) 14590
(0.00673416 0.00377348 0.0037219) 14533
(0.00659853 0.00509089 0.0044272) 14833
(0.00690914 0.00506694 0.00444515) 14833
(0.0076076 0.00502118 0.00444158) 14835
(0.00763941 0.00530507 0.00437878) 14895
(0.00867738 0.00634868 0.00339687) 15197
(0.00579634 0.0064037 0.0031189) 15251
(0.00651585 0.00637415 0.00309603) 15253
(0.00891246 0.00641109 0.00310845) 15257
(0.0185924 0.00694263 0.00354006) 2017
(0.0213246 0.00630493 0.00195298) 13482
(0.0232978 0.00646812 0.00217832) 13426
(0.0243141 0.00666684 0.00224394) 6108
(0.0189804 0.00668533 0.00417036) 1897
(0.0214235 0.0067058 0.00409114) 1962
(0.0177953 0.00368516 0.00472863) 10535
(0.0193652 0.00371952 0.00476698) 10538
(0.0178044 0.00330605 0.0016397) 395
(0.0184963 0.00591929 0.00505742) 12576
(0.0184963 0.00591929 0.00505742) 12576
(0.0184963 0.00591929 0.00505742) 12576
(0.0204566 0.00595213 0.00500747) 12340
(0.0204566 0.00595213 0.00500747) 12340
(0.0204566 0.00595213 0.00500747) 12340
(0.0182334 0.00405601 0.00495562) 10836
(0.0180875 0.00371429 0.00141875) 9216
(0.0186425 0.00410755 0.00126538) 11497
(0.0186347 0.00474749 0.000900947) 11617
(0.0203185 0.00463591 0.000928382) 11560
(0.0174672 0.00589897 0.000941263) 12154
(0.0186948 0.00529855 0.000740758) 11917
(0.0206526 0.00523655 0.000743375) 11921
(0.0178774 0.00531797 0.00527526) 11075
(0.0195918 0.00533764 0.00523945) 11439
(0.0204862 0.00302261 0.00325147) 820
(0.0235214 0.00300086 0.0032503) 827
(0.0180247 0.00671322 0.00155397) 2496
(0.0204387 0.00665228 0.0016285) 2500
(0.0220547 0.00662148 0.00159248) 2504
(0.00943155 0.0064289 0.0028717) 13518
(0.00943155 0.0064289 0.0028717) 13518
(0.00943155 0.0064289 0.0028717) 13518
(0.00991791 0.00643205 0.00287052) 13519
(0.0103844 0.00643229 0.00286985) 13520
(0.010873 0.00642928 0.00287204) 13521
(0.0113667 0.00642493 0.00287639) 13522
(0.0118491 0.00641881 0.0028813) 13523
(0.0101909 0.00583171 0.00187147) 13760
(0.0106656 0.00582709 0.00187044) 13761
(0.0100315 0.00559146 0.00171134) 13820
(0.00918727 0.00466906 0.00162914) 13998
(0.00956462 0.00466733 0.00161797) 13999
(0.00941545 0.00439452 0.00171044) 14058
(0.00941545 0.00439452 0.00171044) 14058
(0.00941545 0.00439452 0.00171044) 14058
(0.00985793 0.00439449 0.00170427) 14059
(0.010246 0.00439338 0.00169811) 14060
(0.0107077 0.00439452 0.00170049) 14061
(0.0112346 0.0043979 0.00170814) 14062
(0.0117515 0.00440276 0.00171594) 14063
(0.0102972 0.00416569 0.00182867) 14120
(0.010761 0.00416665 0.00183165) 14121
(0.0112837 0.00417337 0.00183726) 14122
(0.0118001 0.00418134 0.00184366) 14123
(0.0100338 0.00395202 0.00203952) 14180
(0.0103824 0.00362189 0.00345357) 14480
(0.0108767 0.00362765 0.00345466) 14481
(0.0113672 0.00363379 0.00345798) 14482
(0.0118472 0.00364184 0.00346168) 14483
(0.0104132 0.00373137 0.00369514) 14540
(0.0109018 0.00373544 0.00369321) 14541
(0.0113914 0.00373995 0.00369157) 14542
(0.0118735 0.00374657 0.00369042) 14543
(0.0101594 0.00391994 0.00392635) 14600
(0.00914755 0.00470466 0.00437823) 14778
(0.00957619 0.0047048 0.00439001) 14779
(0.0102253 0.00499792 0.00443123) 14840
(0.0107113 0.00499965 0.00442726) 14841
(0.0112135 0.00500212 0.00442199) 14842
(0.00966289 0.00527632 0.0043957) 14899
(0.0100952 0.00527968 0.00439936) 14900
(0.010598 0.0052796 0.0043927) 14901
(0.00928432 0.00635839 0.00340238) 15198
(0.00974771 0.00636221 0.00340692) 15199
(0.010169 0.00636655 0.00340958) 15200
(0.00946385 0.00642392 0.00312235) 15258
(0.00946385 0.00642392 0.00312235) 15258
(0.00946385 0.00642392 0.00312235) 15258
(0.00996175 0.00642525 0.00312892) 15259
(0.0104382 0.00642488 0.00313184) 15260
(0.0109173 0.0064231 0.00313315) 15261
(0.0114028 0.00642009 0.00313426) 15262
(0.0118844 0.00641607 0.003135) 15263
(0.00499311 0.00641744 0.00283291) 13509
(0.00507894 0.00643517 0.00286797) 13510
(0.00528729 0.00645314 0.00290919) 13510
(0.00564469 0.00644741 0.00284078) 13511
(0.00804147 0.00641836 0.00283633) 13516
(0.00873013 0.00642459 0.00287908) 13517
(0.00838933 0.00558348 0.00177214) 13816
(0.00483432 0.00445425 0.00156505) 5709
(0.00506799 0.0045498 0.00163295) 13990
(0.00879545 0.00440047 0.00171011) 14057
(0.00741976 0.00412907 0.00186762) 14114
(0.00783065 0.00413214 0.001847) 14115
(0.00865271 0.00417374 0.00183232) 14117
(0.00556241 0.00364388 0.00350353) 14471
(0.00622295 0.00369572 0.00355703) 14472
(0.00750877 0.00365373 0.00346381) 14475
(0.00507755 0.00379375 0.00380765) 14530
(0.00527065 0.0038001 0.00384078) 14530
(0.00668576 0.0037784 0.00372798) 14533
(0.00860449 0.00373923 0.00365288) 14537
(0.00663462 0.00509105 0.00442305) 14833
(0.00689915 0.00506782 0.00444445) 14833
(0.00759301 0.00502657 0.00444107) 14835
(0.00760311 0.00530597 0.00438094) 14895
(0.00866048 0.00634657 0.00339722) 15197
(0.00578398 0.00640313 0.00311912) 15251
(0.00649696 0.00637364 0.0030961) 15252
(0.00889057 0.00641113 0.00310705) 15257
(0.0185482 0.00694024 0.0035443) 2017
(0.0211591 0.00631133 0.00195174) 13482
(0.0232544 0.00645839 0.00216979) 13426
(0.024278 0.00666268 0.00224661) 6108
(0.0188658 0.00669025 0.00417356) 1897
(0.0213722 0.0066979 0.0040976) 1962
(0.0177431 0.00368346 0.004728) 10535
(0.0193305 0.00371579 0.0047622) 10538
(0.017737 0.0033092 0.00163439) 395
(0.018425 0.00591719 0.00506062) 12576
(0.018425 0.00591719 0.00506062) 12576
(0.018425 0.00591719 0.00506062) 12576
(0.0204095 0.00594831 0.00500921) 12580
(0.0204095 0.00594831 0.00500921) 12580
(0.0204095 0.00594831 0.00500921) 12580
(0.0181888 0.0040534 0.00495194) 10836
(0.0179933 0.00371665 0.00141488) 9215
(0.0185405 0.00411132 0.00126229) 11497
(0.0185701 0.00475162 0.000899206) 11617
(0.0202845 0.00464332 0.000928092) 11560
(0.0174202 0.00590103 0.000942289) 12154
(0.0186113 0.00530239 0.000740083) 11917
(0.0206138 0.00524102 0.000746444) 11921
(0.0178188 0.00531714 0.00527749) 11075
(0.0195464 0.00533407 0.00523978) 11439
(0.020362 0.00301839 0.00325028) 820
(0.0234591 0.00300568 0.00324949) 826
(0.017901 0.00672035 0.00154692) 2495
(0.020376 0.00665429 0.00162915) 2500
(0.0219927 0.00662367 0.00159341) 2503
(0.00940831 0.00642898 0.00287162) 13518
(0.00940831 0.00642898 0.00287162) 13518
(0.00940831 0.00642898 0.00287162) 13518
(0.00989392 0.0064322 0.00287052) 13519
(0.0103595 0.00643255 0.0028698) 13520
(0.0108484 0.00642952 0.00287186) 13521
(0.0113434 0.00642518 0.00287617) 13522
(0.0118263 0.0064192 0.00288108) 13523
(0.0101674 0.00583187 0.00187133) 13760
(0.0106425 0.00582725 0.00187034) 13761
(0.0100076 0.0055915 0.00171109) 13820
(0.00916484 0.00466903 0.00162904) 13998
(0.00954207 0.00466716 0.00161797) 13999
(0.00939279 0.00439447 0.00171032) 14058
(0.00939279 0.00439447 0.00171032) 14058
(0.00939279 0.00439447 0.00171032) 14058
(0.00983488 0.00439442 0.00170418) 14059
(0.0102217 0.00439329 0.00169786) 14060
(0.0106817 0.0043944 0.00170008) 14061
(0.0112087 0.00439772 0.00170772) 14062
(0.0117273 0.00440251 0.00171549) 14063
(0.0102729 0.00416559 0.00182842) 14120
(0.0107354 0.00416634 0.00183134) 14121
(0.0112581 0.004173 0.00183693) 14122
(0.0117759 0.0041809 0.00184329) 14123
(0.0100098 0.00395197 0.0020393) 14180
(0.0103576 0.00362158 0.00345372) 14480
(0.0108526 0.00362738 0.00345464) 14481
(0.0113441 0.0036335 0.00345784) 14482
(0.0118242 0.00364133 0.00346157) 14483
(0.0103889 0.00373114 0.00369536) 14540
(0.0108779 0.00373524 0.00369338) 14541
(0.0113681 0.00373968 0.00369167) 14542
(0.0118505 0.00374614 0.00369058) 14543
(0.0101357 0.00391979 0.0039265) 14600
(0.00912549 0.00470464 0.00437834) 14778
(0.00955314 0.00470461 0.00439002) 14779
(0.0102008 0.0049979 0.00443152) 14840
(0.0106864 0.00499955 0.0044276) 14841
(0.0111896 0.005002 0.00442226) 14842
(0.00964006 0.00527633 0.00439576) 14899
(0.0100701 0.00527962 0.00439975) 14900
(0.0105722 0.00527966 0.00439315) 14901
(0.00926194 0.00635848 0.00340229) 15198
(0.00972466 0.0063623 0.00340681) 15199
(0.0101452 0.0063667 0.00340942) 15200
(0.00944105 0.00642403 0.00312225) 15258
(0.00944105 0.00642403 0.00312225) 15258
(0.00944105 0.00642403 0.00312225) 15258
(0.0099382 0.00642538 0.00312885) 15259
(0.0104141 0.00642508 0.00313181) 15260
(0.0108936 0.00642328 0.00313312) 15261
(0.0113799 0.00642025 0.00313422) 15262
(0.0118616 0.00641632 0.00313502) 15263
(0.00508375 0.00643387 0.00286909) 13510
(0.00531709 0.00644982 0.00291518) 13510
(0.0052628 0.00646133 0.00280777) 13510
(0.00804318 0.00641628 0.00283548) 13516
(0.00870783 0.00642378 0.00287412) 13517
(0.00850614 0.00577275 0.00187577) 13757
(0.00836397 0.00558433 0.00176658) 13816
(0.004837 0.00444908 0.00156411) 5709
(0.00499993 0.00455195 0.00162448) 13989
(0.00877677 0.00439923 0.00171094) 14057
(0.00742927 0.00413043 0.00186943) 14114
(0.00781602 0.00413218 0.00184835) 14115
(0.00862916 0.00417239 0.00183287) 14117
(0.00558174 0.00365897 0.00353277) 14471
(0.00620039 0.0036961 0.00355889) 14472
(0.00746923 0.00365502 0.00346504) 14474
(0.00510035 0.00380015 0.00381035) 14530
(0.00528146 0.00380184 0.00384246) 14530
(0.00664263 0.003783 0.00373358) 14533
(0.0085655 0.0037366 0.0036552) 14537
(0.00666746 0.00509083 0.00441903) 14833
(0.00689153 0.00506879 0.00444361) 14833
(0.00758146 0.00503108 0.00444033) 14835
(0.0075685 0.00530679 0.00438284) 14895
(0.0057572 0.00640372 0.00311947) 15251
(0.00642818 0.0063786 0.00309851) 15252
(0.00886956 0.00641082 0.00310561) 15257
(0.0185028 0.00693794 0.00354853) 2017
(0.0209817 0.00632 0.00195166) 13481
(0.0232099 0.00644872 0.00216104) 13426
(0.0242408 0.0066583 0.00224917) 6108
(0.0187529 0.00669431 0.00417751) 1897
(0.0213184 0.00669024 0.00410387) 1962
(0.0176896 0.00368164 0.00472761) 10535
(0.0192941 0.00371232 0.00475775) 10538
(0.0176692 0.00331217 0.00162897) 395
(0.0195996 0.00323205 0.00173353) 459
(0.0183539 0.00591507 0.00506389) 12576
(0.0183539 0.00591507 0.00506389) 12576
(0.0183539 0.00591507 0.00506389) 12576
(0.0203606 0.00594468 0.00501092) 12580
(0.0203606 0.00594468 0.00501092) 12580
(0.0203606 0.00594468 0.00501092) 12580
(0.0215986 0.00606348 0.00495674) 12343
(0.0181442 0.00405079 0.00494834) 10836
(0.0179019 0.00371892 0.00141082) 9215
(0.0184393 0.00411505 0.001259) 11496
(0.0185057 0.00475578 0.000897395) 11617
(0.0202488 0.00465052 0.000927777) 11560
(0.0173738 0.00590317 0.000943334) 12154
(0.018534 0.00530668 0.000739623) 11857
(0.0205723 0.00524524 0.000749275) 11921
(0.0195 0.00533079 0.00524018) 11438
(0.0202396 0.00301407 0.00324897) 820
(0.0233909 0.0030105 0.00324881) 826
(0.0178018 0.00672705 0.00154191) 2495
(0.0203121 0.00665637 0.00162961) 2500
(0.0219344 0.00662565 0.00159509) 2503
(0.0226232 0.00614506 0.00165833) 13485
(0.00938508 0.00642905 0.00287155) 13518
(0.00938508 0.00642905 0.00287155) 13518
(0.00938508 0.00642905 0.00287155) 13518
(0.00986995 0.00643235 0.0028705) 13519
(0.0103347 0.0064328 0.00286975) 13520
(0.0108237 0.00642978 0.00287168) 13521
(0.01132 0.00642542 0.00287596) 13522
(0.0118034 0.00641959 0.00288087) 13523
(0.0101439 0.00583203 0.00187118) 13760
(0.0106194 0.00582742 0.00187024) 13761
(0.00998368 0.00559155 0.00171084) 13819
(0.00914245 0.004669 0.00162894) 13998
(0.00951955 0.004667 0.00161797) 13999
(0.00937018 0.00439441 0.00171019) 14058
(0.00937018 0.00439441 0.00171019) 14058
(0.00937018 0.00439441 0.00171019) 14058
(0.0098119 0.00439436 0.0017041) 14059
(0.0101975 0.00439319 0.00169762) 14060
(0.0106557 0.00439428 0.00169967) 14061
(0.0111827 0.00439754 0.0017073) 14062
(0.0117029 0.00440226 0.00171504) 14063
(0.0107098 0.00416604 0.00183105) 14121
(0.0112326 0.00417262 0.0018366) 14122
(0.0117516 0.00418047 0.00184291) 14123
(0.00998578 0.00395194 0.00203907) 14179
(0.0103327 0.00362127 0.00345387) 14480
(0.0108285 0.0036271 0.00345463) 14481
(0.0113209 0.00363321 0.00345771) 14482
(0.0118013 0.00364083 0.00346146) 14483
(0.0103646 0.0037309 0.00369557) 14540
(0.0108539 0.00373504 0.00369356) 14541
(0.0113448 0.00373942 0.00369176) 14542
(0.0118276 0.00374572 0.00369073) 14543
(0.0101119 0.00391964 0.00392664) 14600
(0.0091035 0.00470463 0.00437845) 14778
(0.00953012 0.00470445 0.00439004) 14779
(0.0101763 0.00499788 0.0044318) 14840
(0.0106615 0.00499945 0.00442796) 14841
(0.0111656 0.00500188 0.00442253) 14842
(0.00961722 0.00527636 0.00439581) 14899
(0.0100451 0.00527955 0.00440014) 14900
(0.0105464 0.00527972 0.00439361) 14901
(0.00923959 0.00635857 0.0034022) 15198
(0.00970163 0.00636239 0.00340671) 15199
(0.0101214 0.00636685 0.00340925) 15200
(0.00941831 0.00642415 0.00312212) 15258
(0.00941831 0.00642415 0.00312212) 15258
(0.00941831 0.00642415 0.00312212) 15258
(0.00991468 0.0064255 0.00312877) 15259
(0.01039 0.00642528 0.00313179) 15260
(0.0108699 0.00642346 0.0031331) 15261
(0.0113568 0.0064204 0.00313419) 15262
(0.0118388 0.00641657 0.00313503) 15263
(0.00508966 0.00643243 0.00287035) 13510
(0.00534737 0.00644658 0.00292073) 13510
(0.00477119 0.00648053 0.00267291) 6189
(0.00699179 0.00639084 0.00283554) 13513
(0.00868436 0.00642288 0.00286897) 13517
(0.00848128 0.0057749 0.00187382) 13756
(0.00833582 0.00558519 0.00176057) 13816
(0.00483941 0.00444255 0.00156302) 5709
(0.00493961 0.00455234 0.00161658) 13989
(0.00614648 0.00447265 0.00172148) 14052
(0.00875835 0.00439795 0.00171187) 14057
(0.0074216 0.00413213 0.00187122) 14114
(0.00780068 0.00413227 0.00184958) 14115
(0.00860593 0.00417101 0.00183356) 14117
(0.00560078 0.00367239 0.0035576) 14471
(0.00617493 0.00369645 0.00356103) 14472
(0.00743147 0.00365637 0.00346636) 14474
(0.00868228 0.00368336 0.00343873) 14477
(0.00517579 0.00381652 0.00382279) 14530
(0.00522885 0.00379135 0.00383408) 14530
(0.00660344 0.00378731 0.00373876) 14533
(0.00852447 0.00373424 0.00365768) 14537
(0.00669675 0.00509027 0.00441522) 14833
(0.006886 0.00506983 0.00444263) 14833
(0.00757108 0.00503483 0.00443949) 14835
(0.00753483 0.00530754 0.00438454) 14895
(0.00573328 0.00640419 0.00311928) 15251
(0.0063472 0.00638446 0.00310167) 15252
(0.0088471 0.00641098 0.00310446) 15257
(0.0184565 0.00693573 0.00355278) 2016
(0.0207904 0.00633126 0.00195339) 13481
(0.0231641 0.00643912 0.002152) 13426
(0.0242024 0.0066537 0.00225157) 6108
(0.0186458 0.00669649 0.00418257) 1897
(0.0212619 0.00668285 0.00410994) 1962
(0.0176346 0.00367964 0.00472739) 10535
(0.0192559 0.00370908 0.0047536) 10538
(0.0176016 0.00331497 0.00162341) 395
(0.0195479 0.00323749 0.00172934) 459
(0.0182832 0.00591293 0.00506722) 12576
(0.0182832 0.00591293 0.00506722) 12576
(0.0182832 0.00591293 0.00506722) 12576
(0.0203099 0.00594127 0.00501259) 12580
(0.0203099 0.00594127 0.00501259) 12580
(0.0203099 0.00594127 0.00501259) 12580
(0.0215719 0.00605483 0.00496171) 12343
(0.0180997 0.00404824 0.00494484) 10836
(0.0178136 0.00372119 0.00140647) 9215
(0.0183394 0.00411866 0.00125543) 11496
(0.0184417 0.00475999 0.000895507) 11616
(0.0202111 0.00465752 0.000927445) 11560
(0.0173281 0.00590538 0.000944418) 12154
(0.018462 0.00531133 0.000739359) 11856
(0.0205285 0.00524921 0.000751887) 11921
(0.0194525 0.00532781 0.00524066) 11438
(0.0206507 0.00546212 0.0052457) 12521
(0.0201169 0.00300968 0.00324754) 820
(0.0233165 0.00301523 0.00324828) 826
(0.017733 0.00673181 0.0015392) 2495
(0.0202462 0.00665852 0.00162983) 2500
(0.0218807 0.00662752 0.00159756) 2503
(0.0226095 0.00613795 0.00165482) 6045
(0.00936185 0.00642913 0.00287149) 13518
(0.00936185 0.00642913 0.00287149) 13518
(0.00936185 0.00642913 0.00287149) 13518
(0.00984601 0.00643249 0.00287048) 13519
(0.0103099 0.00643305 0.00286971) 13520
(0.010799 0.00643003 0.0028715) 13521
(0.0112966 0.00642567 0.00287574) 13522
(0.0117806 0.00641996 0.00288066) 13523
(0.0101204 0.00583219 0.00187101) 13760
(0.0105963 0.00582758 0.00187013) 13761
(0.00995971 0.00559161 0.00171059) 13819
(0.0091201 0.00466898 0.00162883) 13998
(0.00949705 0.00466685 0.00161795) 13998
(0.00934762 0.00439436 0.00171007) 14058
(0.00934762 0.00439436 0.00171007) 14058
(0.00934762 0.00439436 0.00171007) 14058
(0.00978897 0.00439431 0.00170402) 14059
(0.0101734 0.0043931 0.0016974) 14060
(0.0106299 0.00439416 0.00169927) 14061
(0.0111567 0.00439737 0.00170688) 14062
(0.0116785 0.004402 0.00171461) 14063
(0.0106842 0.00416575 0.00183075) 14121
(0.011207 0.00417225 0.00183628) 14122
(0.0117272 0.00418004 0.00184254) 14123
(0.00996185 0.00395192 0.00203883) 14179
(0.0103078 0.00362096 0.00345403) 14480
(0.0108043 0.00362681 0.00345463) 14481
(0.0112977 0.00363293 0.00345757) 14482
(0.0117784 0.00364035 0.00346134) 14483
(0.0103403 0.00373066 0.00369578) 14540
(0.0108299 0.00373483 0.00369374) 14541
(0.0113215 0.00373917 0.00369185) 14542
(0.0118046 0.0037453 0.00369088) 14543
(0.0100882 0.00391949 0.00392678) 14600
(0.0090816 0.00470461 0.00437855) 14778
(0.00950714 0.00470429 0.00439006) 14779
(0.0101517 0.00499787 0.00443208) 14840
(0.0106365 0.00499935 0.00442832) 14841
(0.0111415 0.00500176 0.0044228) 14842
(0.00959437 0.00527638 0.00439586) 14899
(0.0100201 0.00527949 0.00440051) 14900
(0.0105206 0.00527978 0.00439407) 14901
(0.00921727 0.00635866 0.00340212) 15198
(0.00967862 0.00636249 0.00340661) 15199
(0.0100976 0.00636699 0.00340909) 15200
(0.00939562 0.00642426 0.00312199) 15258
(0.00939562 0.00642426 0.00312199) 15258
(0.00939562 0.00642426 0.00312199) 15258
(0.00989118 0.00642562 0.00312869) 15259
(0.0103658 0.00642548 0.00313176) 15260
(0.0108462 0.00642365 0.00313307) 15261
(0.0113338 0.00642055 0.00313415) 15262
(0.011816 0.00641681 0.00313505) 15263
(0.00509632 0.00643089 0.00287182) 13510
(0.00537553 0.00644387 0.00292525) 13510
(0.00441727 0.00647841 0.00259973) 6188
(0.00694453 0.00639241 0.00283575) 13513
(0.00866187 0.00642177 0.00286508) 13517
(0.00845593 0.00577719 0.001872) 13756
(0.0083095 0.00558584 0.00175435) 13816
(0.00484321 0.00443207 0.00156241) 5709
(0.00489689 0.00455136 0.00161064) 13989
(0.00605795 0.00447692 0.00171513) 14052
(0.0087402 0.00439662 0.00171294) 14057
(0.00743028 0.00413394 0.00187276) 14114
(0.00778483 0.00413239 0.00185071) 14115
(0.00858307 0.00416962 0.00183437) 14117
(0.00562326 0.00368346 0.00357679) 14471
(0.00614348 0.00369671 0.00356386) 14472
(0.00739534 0.00365776 0.00346773) 14474
(0.00865603 0.00367789 0.00343838) 14477
(0.00526112 0.0038311 0.00383294) 14590
(0.00523601 0.00379318 0.00383571) 14530
(0.00656693 0.00379142 0.00374364) 14533
(0.00848256 0.00373224 0.00366026) 14536
(0.00672162 0.00508948 0.00441167) 14833
(0.00688249 0.00507092 0.0044415) 14833
(0.00756143 0.00503795 0.00443862) 14835
(0.00750207 0.00530825 0.00438607) 14895
(0.00573018 0.00640295 0.00311869) 15251
(0.00625611 0.006391 0.0031055) 15252
(0.00882494 0.00641099 0.0031032) 15257
(0.0184095 0.00693362 0.00355708) 2016
(0.020585 0.00634553 0.00195668) 13481
(0.023117 0.00642956 0.00214266) 13426
(0.024163 0.00664886 0.00225379) 6108
(0.0185537 0.006696 0.00418878) 1897
(0.021203 0.00667585 0.00411574) 1962
(0.0175778 0.00367738 0.00472733) 10535
(0.019216 0.00370604 0.00474976) 10538
(0.0175444 0.00331907 0.00161742) 395
(0.019495 0.00324276 0.00172518) 458
(0.0182129 0.00591077 0.00507063) 12576
(0.0182129 0.00591077 0.00507063) 12576
(0.0182129 0.00591077 0.00507063) 12576
(0.0202572 0.00593806 0.00501424) 12580
(0.0202572 0.00593806 0.00501424) 12580
(0.0202572 0.00593806 0.00501424) 12580
(0.0215479 0.00604591 0.00496619) 12343
(0.018055 0.00404574 0.00494143) 10836
(0.0177283 0.00372339 0.00140188) 9215
(0.0182406 0.00412199 0.00125155) 11496
(0.0209388 0.00402541 0.00127661) 12761
(0.0183781 0.00476429 0.000893541) 11616
(0.0201712 0.00466432 0.000927089) 11560
(0.017283 0.00590765 0.000945566) 12154
(0.0189196 0.00589401 0.000934887) 12157
(0.0183917 0.00531613 0.000739114) 11856
(0.0204822 0.00525297 0.000754279) 11920
(0.019404 0.00532513 0.00524121) 11438
(0.0206395 0.00544988 0.00524453) 12521
(0.0199914 0.00300522 0.00324604) 759
(0.023236 0.00301984 0.00324788) 826
(0.0242045 0.00292348 0.00327716) 33985
(0.0176706 0.00673608 0.00153682) 2495
(0.0201791 0.00666077 0.0016299) 2500
(0.0218278 0.00662926 0.00160021) 2503
(0.0225912 0.00613089 0.00165116) 6045
(0.00933863 0.00642921 0.00287142) 13518
(0.00933863 0.00642921 0.00287142) 13518
(0.00933863 0.00642921 0.00287142) 13518
(0.00982209 0.00643263 0.00287046) 13519
(0.010285 0.0064333 0.00286967) 13520
(0.0107741 0.00643029 0.00287133) 13521
(0.0112731 0.0064259 0.00287553) 13522
(0.0117578 0.00642033 0.00288044) 13523
(0.0100967 0.00583234 0.00187084) 13760
(0.0105731 0.00582775 0.00187003) 13761
(0.00993572 0.00559166 0.00171034) 13819
(0.00909776 0.00466896 0.00162873) 13998
(0.00947455 0.00466671 0.00161793) 13998
(0.00932512 0.00439429 0.00170995) 14058
(0.00932512 0.00439429 0.00170995) 14058
(0.00932512 0.00439429 0.00170995) 14058
(0.00976609 0.00439425 0.00170394) 14059
(0.0101494 0.004393 0.00169718) 14060
(0.0106041 0.00439405 0.00169887) 14061
(0.0111306 0.0043972 0.00170646) 14062
(0.011654 0.00440175 0.00171417) 14063
(0.0106587 0.00416545 0.00183045) 14121
(0.0111813 0.00417188 0.00183596) 14122
(0.0117027 0.00417962 0.00184217) 14123
(0.00993796 0.00395191 0.00203859) 14179
(0.0102829 0.00362065 0.00345419) 14480
(0.01078 0.00362652 0.00345464) 14481
(0.0112745 0.00363265 0.00345745) 14482
(0.0117555 0.00363987 0.00346122) 14483
(0.0103159 0.00373042 0.00369599) 14540
(0.0108059 0.00373463 0.00369393) 14541
(0.0112981 0.00373892 0.00369195) 14542
(0.0117816 0.0037449 0.00369103) 14543
(0.0100645 0.00391934 0.0039269) 14600
(0.00905976 0.0047046 0.00437866) 14778
(0.00948417 0.00470411 0.00439007) 14778
(0.0101272 0.00499786 0.00443236) 14840
(0.0106114 0.00499925 0.00442868) 14841
(0.0111174 0.00500164 0.00442308) 14842
(0.00999526 0.00527941 0.00440087) 14899
(0.0104948 0.00527984 0.00439454) 14900
(0.00919495 0.00635874 0.00340205) 15198
(0.00965563 0.00636259 0.00340651) 15199
(0.0100737 0.00636714 0.00340892) 15200
(0.00937299 0.00642437 0.00312186) 15258
(0.00937299 0.00642437 0.00312186) 15258
(0.00937299 0.00642437 0.00312186) 15258
(0.00986771 0.00642575 0.00312861) 15259
(0.0103416 0.00642568 0.00313174) 15260
(0.0108223 0.00642384 0.00313304) 15261
(0.0113107 0.00642071 0.00313411) 15262
(0.0117932 0.00641704 0.00313506) 15263
(0.00510269 0.00642939 0.00287309) 13510
(0.00538552 0.00644147 0.00292716) 13510
(0.00441867 0.00648206 0.00261327) 6188
(0.00690757 0.0063939 0.00283572) 13513
(0.00863982 0.00642074 0.00286246) 13517
(0.00842875 0.00577977 0.0018705) 13756
(0.0082841 0.00558526 0.00174794) 13816
(0.00483971 0.00441346 0.00156516) 5709
(0.00485452 0.00454663 0.00160297) 13989
(0.00598503 0.00448049 0.00171021) 14051
(0.00872228 0.00439525 0.00171415) 14057
(0.0074197 0.00413576 0.00187367) 14114
(0.0077681 0.00413251 0.00185174) 14115
(0.00856062 0.00416826 0.00183528) 14117
(0.00564998 0.00369257 0.00359199) 14531
(0.0061078 0.00369673 0.00356701) 14472
(0.00736041 0.00365917 0.00346917) 14474
(0.00862718 0.00367178 0.00343824) 14477
(0.00535372 0.00384455 0.00384006) 14590
(0.0051851 0.00377782 0.00382437) 14530
(0.00659723 0.00379064 0.00374279) 14533
(0.00844341 0.00373087 0.00366292) 14536
(0.00674487 0.00508854 0.0044081) 14833
(0.00688121 0.00507205 0.00444025) 14833
(0.00754628 0.00503992 0.00443817) 14835
(0.0074726 0.00530923 0.00438713) 14894
(0.00294572 0.00646707 0.00301324) 15245
(0.00588853 0.00638756 0.0031136) 15251
(0.00614012 0.00639849 0.00311023) 15252
(0.00880296 0.00641083 0.003102) 15257
(0.0183638 0.00693145 0.00356161) 2016
(0.0203644 0.00636315 0.00196098) 13480
(0.0230687 0.00642008 0.00213294) 13426
(0.024123 0.00664374 0.0022558) 6108
(0.0184668 0.00669496 0.00419547) 1896
(0.021141 0.00666933 0.00412121) 1962
(0.017519 0.00367476 0.0047274) 10535
(0.0191745 0.00370318 0.00474618) 10538
(0.0174884 0.00332312 0.00161131) 394
(0.0194409 0.00324785 0.00172104) 458
(0.0181432 0.00590858 0.00507411) 12576
(0.0181432 0.00590858 0.00507411) 12576
(0.0181432 0.00590858 0.00507411) 12576
(0.0202027 0.00593507 0.00501587) 12580
(0.0202027 0.00593507 0.00501587) 12580
(0.0202027 0.00593507 0.00501587) 12580
(0.0215228 0.00603732 0.00497031) 12343
(0.0180099 0.00404329 0.00493813) 10836
(0.0176456 0.00372544 0.00139713) 9215
(0.0181428 0.00412487 0.00124737) 11496
(0.0208604 0.00403108 0.00127745) 12761
(0.0183149 0.0047687 0.000891491) 11616
(0.0201292 0.0046709 0.000926706) 11560
(0.0172386 0.00591 0.000946796) 12154
(0.018872 0.00589548 0.000936784) 12157
(0.0183218 0.00532103 0.000738825) 11856
(0.0204332 0.0052565 0.00075644) 11920
(0.0212666 0.00510644 0.000668218) 11922
(0.0193546 0.00532275 0.00524181) 11438
(0.0206257 0.00543836 0.00524337) 12521
(0.0198612 0.00300081 0.0032444) 759
(0.0231488 0.00302424 0.0032476) 826
(0.0242146 0.00292554 0.0032723) 33985
(0.0176095 0.00674026 0.00153434) 2495
(0.020111 0.00666311 0.00162983) 2500
(0.0217767 0.00663098 0.00160313) 2503
(0.0225696 0.00612374 0.00164722) 6045
(0.00931543 0.00642928 0.00287135) 13518
(0.00931543 0.00642928 0.00287135) 13518
(0.00931543 0.00642928 0.00287135) 13518
(0.0097982 0.00643277 0.00287044) 13519
(0.0102602 0.00643355 0.00286964) 13520
(0.0107492 0.00643056 0.00287116) 13521
(0.0112495 0.00642614 0.00287532) 13522
(0.0117349 0.00642069 0.00288023) 13523
(0.010073 0.00583249 0.00187065) 13760
(0.0105499 0.00582791 0.00186992) 13761
(0.0099117 0.00559172 0.00171008) 13819
(0.00907545 0.00466894 0.00162862) 13998
(0.00945207 0.00466659 0.00161791) 13998
(0.00930266 0.00439422 0.00170982) 14058
(0.00930266 0.00439422 0.00170982) 14058
(0.00930266 0.00439422 0.00170982) 14058
(0.00974327 0.0043942 0.00170387) 14059
(0.0101254 0.00439291 0.00169698) 14060
(0.0105783 0.00439394 0.00169846) 14061
(0.0111044 0.00439704 0.00170604) 14062
(0.0116294 0.00440149 0.00171374) 14063
(0.0106331 0.00416517 0.00183015) 14121
(0.0111556 0.00417151 0.00183564) 14122
(0.0116782 0.0041792 0.0018418) 14123
(0.00991413 0.00395192 0.00203833) 14179
(0.010258 0.00362034 0.00345434) 14480
(0.0107556 0.00362621 0.00345466) 14481
(0.0112512 0.00363238 0.00345732) 14482
(0.0117326 0.00363942 0.0034611) 14483
(0.0102914 0.00373018 0.0036962) 14540
(0.0107818 0.00373441 0.00369412) 14541
(0.0112747 0.00373868 0.00369205) 14542
(0.0117586 0.0037445 0.00369117) 14543
(0.0100408 0.00391919 0.00392703) 14600
(0.00903799 0.00470459 0.00437877) 14778
(0.00946123 0.00470394 0.0043901) 14778
(0.0101027 0.00499784 0.00443263) 14840
(0.0105864 0.00499914 0.00442905) 14841
(0.0110933 0.00500153 0.00442336) 14842
(0.00997043 0.00527933 0.00440123) 14899
(0.010469 0.00527992 0.004395) 14900
(0.00917262 0.00635882 0.00340198) 15198
(0.00963265 0.0063627 0.00340641) 15199
(0.0100499 0.00636728 0.00340877) 15200
(0.00935041 0.00642448 0.00312172) 15258
(0.00935041 0.00642448 0.00312172) 15258
(0.00935041 0.00642448 0.00312172) 15258
(0.00984427 0.00642587 0.00312852) 15259
(0.0103174 0.00642588 0.00313171) 15260
(0.0107984 0.00642403 0.00313301) 15261
(0.0112875 0.00642086 0.00313408) 15262
(0.0117704 0.00641727 0.00313506) 15263
(0.00510938 0.00642788 0.00287428) 13510
(0.00537 0.00644079 0.00292537) 13510
(0.00476344 0.00649152 0.00271296) 6129
(0.00685446 0.00639628 0.00283598) 13513
(0.00861786 0.00641988 0.00286071) 13517
(0.0083995 0.0057833 0.00186892) 13756
(0.00826033 0.00558573 0.00174199) 13816
(0.00481848 0.00440031 0.00157187) 5709
(0.00483799 0.00454156 0.00159786) 13989
(0.00589093 0.00448559 0.00170314) 14051
(0.00870447 0.00439385 0.00171552) 14057
(0.00742835 0.00413801 0.00187508) 14114
(0.00777253 0.0041325 0.00185262) 14115
(0.00853856 0.00416696 0.00183627) 14117
(0.00567594 0.00370142 0.00360351) 14531
(0.00606929 0.00369643 0.00357022) 14472
(0.00732646 0.00366059 0.00347067) 14474
(0.0085961 0.00366545 0.00343848) 14477
(0.00545335 0.00385665 0.00384304) 14590
(0.00518206 0.00377743 0.00382385) 14530
(0.00656601 0.00379416 0.0037468) 14533
(0.00840428 0.00373002 0.00366552) 14536
(0.00676908 0.0050876 0.0044043) 14833
(0.00688106 0.00507319 0.00443891) 14833
(0.00752913 0.00504139 0.00443788) 14835
(0.00744456 0.00531024 0.00438797) 14894
(0.00300214 0.00646228 0.00300413) 15246
(0.00611842 0.00636791 0.00311955) 15252
(0.00610403 0.00639949 0.00311155) 15252
(0.00878112 0.00641056 0.0031009) 15257
(0.0183216 0.0069292 0.00356658) 2016
(0.0201275 0.00638528 0.00196662) 13480
(0.0230194 0.00641072 0.00212288) 13426
(0.0240827 0.0066383 0.00225754) 6108
(0.0183809 0.0066937 0.00420259) 1896
(0.0210759 0.00666339 0.00412632) 1962
(0.017458 0.00367166 0.00472753) 10534
(0.0191315 0.00370048 0.00474284) 10538
(0.0174326 0.00332696 0.00160513) 394
(0.0193857 0.00325275 0.00171692) 458
(0.018074 0.00590634 0.00507766) 12576
(0.018074 0.00590634 0.00507766) 12576
(0.018074 0.00590634 0.00507766) 12576
(0.0201462 0.00593229 0.00501748) 12580
(0.0201462 0.00593229 0.00501748) 12580
(0.0201462 0.00593229 0.00501748) 12580
(0.0214965 0.00602907 0.00497413) 12342
(0.017964 0.00404088 0.00493493) 10535
(0.0175653 0.00372733 0.00139228) 9215
(0.0180452 0.00412699 0.00124292) 11496
(0.0207802 0.00403673 0.00127821) 12761
(0.0182518 0.00477319 0.00088935) 11616
(0.020085 0.0046773 0.000926291) 11560
(0.0188242 0.00589678 0.000938525) 12157
(0.0182516 0.005326 0.00073848) 11856
(0.0203817 0.00525984 0.000758389) 11920
(0.0212865 0.00511916 0.000675998) 11922
(0.0193042 0.00532067 0.00524246) 11438
(0.0206101 0.00542745 0.00524224) 12521
(0.0197194 0.00299577 0.0032428) 32688
(0.0230565 0.0030284 0.0032474) 826
(0.0242223 0.00292778 0.00326779) 33985
(0.017549 0.00674442 0.00153181) 2495
(0.0200418 0.00666555 0.00162961) 2500
(0.0217289 0.00663275 0.0016065) 2503
(0.0225435 0.00611646 0.00164299) 6045
(0.00929225 0.00642936 0.00287127) 13518
(0.00929225 0.00642936 0.00287127) 13518
(0.00929225 0.00642936 0.00287127) 13518
(0.00977434 0.0064329 0.00287042) 13519
(0.0102354 0.00643379 0.00286962) 13520
(0.0107242 0.00643083 0.00287099) 13521
(0.0112259 0.00642637 0.00287512) 13522
(0.0117121 0.00642104 0.00288002) 13523
(0.0100492 0.00583264 0.00187046) 13760
(0.0105267 0.00582808 0.00186981) 13761
(0.00905314 0.00466892 0.00162852) 13998
(0.00942959 0.00466647 0.00161787) 13998
(0.00928024 0.00439416 0.0017097) 14058
(0.00928024 0.00439416 0.0017097) 14058
(0.00928024 0.00439416 0.0017097) 14058
(0.0097205 0.00439415 0.0017038) 14059
(0.0101016 0.00439281 0.00169679) 14060
(0.0105526 0.00439383 0.00169807) 14061
(0.0110782 0.00439689 0.00170562) 14062
(0.0116047 0.00440124 0.00171332) 14063
(0.0106076 0.00416489 0.00182986) 14121
(0.0111298 0.00417114 0.00183533) 14122
(0.0116536 0.00417879 0.00184143) 14123
(0.00989033 0.00395193 0.00203808) 14179
(0.0107312 0.0036259 0.00345469) 14481
(0.0112279 0.00363211 0.00345721) 14482
(0.0117097 0.00363897 0.00346097) 14483
(0.010267 0.00372994 0.00369641) 14540
(0.0107577 0.0037342 0.00369432) 14541
(0.0112512 0.00373844 0.00369216) 14542
(0.0117355 0.00374411 0.0036913) 14543
(0.0100172 0.00391904 0.00392714) 14600
(0.00901629 0.00470459 0.00437887) 14778
(0.00943832 0.00470378 0.00439013) 14778
(0.0100783 0.00499784 0.0044329) 14840
(0.0105613 0.00499903 0.00442943) 14841
(0.0110691 0.00500141 0.00442364) 14842
(0.00994566 0.00527925 0.00440157) 14899
(0.0104431 0.00527999 0.00439547) 14900
(0.00915027 0.0063589 0.00340192) 15198
(0.00960968 0.00636281 0.00340631) 15199
(0.0100261 0.00636742 0.00340861) 15200
(0.00932789 0.00642458 0.00312157) 15258
(0.00932789 0.00642458 0.00312157) 15258
(0.00932789 0.00642458 0.00312157) 15258
(0.00982087 0.00642599 0.00312842) 15259
(0.0102932 0.00642608 0.00313168) 15260
(0.0107744 0.00642423 0.00313298) 15261
(0.0112644 0.00642101 0.00313404) 15262
(0.0117476 0.00641749 0.00313507) 15263
(0.00511561 0.00642645 0.00287531) 13510
(0.00535366 0.00644026 0.00292331) 13510
(0.00505072 0.00648124 0.00282681) 13510
(0.00680502 0.00639964 0.00283601) 13513
(0.00859611 0.00641909 0.00285945) 13517
(0.00836928 0.0057874 0.00186729) 13756
(0.00823809 0.00558518 0.00173636) 13816
(0.00476452 0.00439007 0.00158286) 5709
(0.00483412 0.00453562 0.0015932) 13989
(0.00579177 0.00449178 0.00169525) 14051
(0.00868693 0.00439242 0.00171705) 14057
(0.00743759 0.00414048 0.00187682) 14114
(0.00775551 0.00413267 0.00185357) 14115
(0.00851698 0.00416569 0.00183739) 14117
(0.00570454 0.00370998 0.0036124) 14531
(0.00602967 0.00369575 0.00357326) 14472
(0.0072921 0.00366198 0.00347225) 14474
(0.00856171 0.00365834 0.00343958) 14477
(0.005563 0.00386654 0.00384123) 14591
(0.00521529 0.00378991 0.00383239) 14530
(0.0065361 0.00379757 0.00375066) 14533
(0.0083661 0.00372955 0.00366775) 14536
(0.00679213 0.00508667 0.00440036) 14833
(0.00688299 0.00507433 0.00443745) 14833
(0.00751182 0.00504268 0.00443758) 14835
(0.00741719 0.00531119 0.00438874) 14894
(0.00304494 0.00645867 0.00299731) 13506
(0.00560995 0.00641396 0.00313254) 15251
(0.00608068 0.00639952 0.00311233) 15252
(0.00875952 0.00641018 0.00309995) 15257
(0.0182807 0.00692703 0.00357178) 2016
(0.0229683 0.00640139 0.00211252) 13425
(0.0240416 0.00663254 0.00225891) 6108
(0.0182949 0.00669239 0.00421005) 1896
(0.0210078 0.00665808 0.00413104) 1962
(0.0173945 0.00366795 0.00472765) 10534
(0.019087 0.00369793 0.00473975) 10538
(0.0173769 0.00333058 0.0015989) 394
(0.0193294 0.00325749 0.0017128) 458
(0.0180052 0.00590402 0.00508128) 12576
(0.0180052 0.00590402 0.00508128) 12576
(0.0180052 0.00590402 0.00508128) 12576
(0.0200879 0.00592971 0.0050191) 12580
(0.0200879 0.00592971 0.0050191) 12580
(0.0200879 0.00592971 0.0050191) 12580
(0.0214727 0.00602079 0.00497762) 12342
(0.0179172 0.00403849 0.00493183) 10535
(0.017487 0.00372904 0.00138738) 9214
(0.0179475 0.00412816 0.00123825) 11495
(0.0206981 0.00404232 0.00127887) 12761
(0.0181887 0.00477776 0.000887115) 11616
(0.0200386 0.00468348 0.000925837) 11560
(0.0187759 0.00589788 0.000940088) 12157
(0.0181813 0.00533106 0.000738098) 11856
(0.0203273 0.00526296 0.0007601) 11920
(0.0213019 0.00513098 0.000683392) 11922
(0.0192531 0.00531889 0.00524315) 11078
(0.0205924 0.00541716 0.00524114) 12521
(0.0195604 0.00298972 0.00324137) 32688
(0.0229577 0.00303223 0.0032473) 825
(0.0242272 0.00293017 0.00326361) 33985
(0.0199725 0.00666809 0.00162935) 2499
(0.0216844 0.00663452 0.00161023) 2503
(0.022512 0.00610911 0.00163858) 6045
(0.0092691 0.00642944 0.00287118) 13518
(0.0092691 0.00642944 0.00287118) 13518
(0.0092691 0.00642944 0.00287118) 13518
(0.00975052 0.00643303 0.0028704) 13519
(0.0102107 0.00643404 0.00286959) 13520
(0.0106992 0.0064311 0.00287083) 13521
(0.0112021 0.0064266 0.00287492) 13522
(0.0116892 0.00642139 0.00287981) 13523
(0.0100253 0.00583278 0.00187025) 13760
(0.0105035 0.00582826 0.0018697) 13761
(0.00903083 0.00466892 0.00162841) 13998
(0.00940712 0.00466637 0.00161783) 13998
(0.00925787 0.00439408 0.00170958) 14058
(0.00925787 0.00439408 0.00170958) 14058
(0.00925787 0.00439408 0.00170958) 14058
(0.00969778 0.00439409 0.00170373) 14059
(0.0100779 0.00439272 0.00169661) 14060
(0.0105269 0.00439373 0.00169768) 14061
(0.011052 0.00439674 0.0017052) 14062
(0.0115799 0.00440098 0.0017129) 14063
(0.0105822 0.00416461 0.00182957) 14121
(0.0111041 0.00417078 0.00183502) 14122
(0.0116289 0.00417839 0.00184106) 14123
(0.00986659 0.00395195 0.00203782) 14179
(0.0107067 0.00362558 0.00345473) 14481
(0.0112045 0.00363184 0.0034571) 14482
(0.0116868 0.00363853 0.00346084) 14483
(0.0102424 0.00372969 0.00369661) 14540
(0.0107336 0.00373398 0.00369453) 14541
(0.0112277 0.0037382 0.00369226) 14542
(0.0117125 0.00374374 0.00369144) 14543
(0.00999346 0.00391889 0.00392725) 14599
(0.00899463 0.0047046 0.00437898) 14777
(0.00941545 0.00470363 0.00439017) 14778
(0.0100538 0.00499783 0.00443316) 14840
(0.0105361 0.00499892 0.00442981) 14841
(0.0110449 0.00500129 0.00442392) 14842
(0.00992097 0.00527916 0.00440191) 14899
(0.0104173 0.00528006 0.00439594) 14900
(0.0091279 0.00635899 0.00340187) 15198
(0.00958671 0.00636293 0.00340621) 15199
(0.0100023 0.00636756 0.00340845) 15200
(0.0093054 0.00642469 0.00312143) 15258
(0.0093054 0.00642469 0.00312143) 15258
(0.0093054 0.00642469 0.00312143) 15258
(0.00979749 0.00642612 0.00312832) 15259
(0.010269 0.00642628 0.00313166) 15260
(0.0107503 0.00642444 0.00313295) 15261
(0.0112411 0.00642117 0.00313401) 15262
(0.0117249 0.00641771 0.00313507) 15263
(0.0051212 0.00642508 0.00287618) 13510
(0.00533709 0.00643978 0.00292108) 13510
(0.00524496 0.00647151 0.00288414) 13510
(0.00673953 0.00640396 0.00283695) 13513
(0.00857454 0.00641828 0.00285843) 13517
(0.0083396 0.00579139 0.00186604) 13756
(0.00821766 0.00558437 0.00173215) 13816
(0.0046474 0.0043833 0.00159903) 5709
(0.00483911 0.00452878 0.00158896) 14049
(0.00573048 0.00449804 0.00169108) 14051
(0.00743577 0.00414347 0.00187898) 14114
(0.00773873 0.00413286 0.00185452) 14115
(0.00849612 0.00416437 0.00183879) 14116
(0.00573647 0.00371756 0.00361799) 14531
(0.00599041 0.00369475 0.00357599) 14471
(0.00725855 0.00366341 0.00347394) 14474
(0.00853028 0.00365299 0.00344125) 14477
(0.00568861 0.00387376 0.00383315) 14591
(0.00518004 0.00377915 0.00382326) 14530
(0.00649615 0.00380068 0.00375451) 14532
(0.00832657 0.00372955 0.00367036) 14536
(0.00681532 0.00508565 0.00439623) 14833
(0.00688564 0.00507546 0.0044359) 14833
(0.00749449 0.00504383 0.00443729) 14834
(0.00841245 0.00498199 0.00441745) 14836
(0.00739037 0.00531207 0.00438945) 14894
(0.00309015 0.00645462 0.00299018) 13506
(0.00392798 0.00639291 0.00288092) 13507
(0.00605539 0.00639972 0.00311309) 15252
(0.00873808 0.00640975 0.0030992) 15257
(0.018238 0.00692514 0.00357691) 2016
(0.0229149 0.00639214 0.00210192) 13425
(0.0240004 0.00662642 0.00225984) 6108
(0.0182084 0.00669108 0.00421782) 1896
(0.0209367 0.00665348 0.00413536) 1961
(0.0190413 0.0036955 0.00473686) 10538
(0.0192721 0.0032621 0.00170867) 458
(0.0179371 0.00590161 0.005085) 12575
(0.0179371 0.00590161 0.005085) 12575
(0.0179371 0.00590161 0.005085) 12575
(0.0200276 0.00592734 0.00502072) 12580
(0.0200276 0.00592734 0.00502072) 12580
(0.0200276 0.00592734 0.00502072) 12580
(0.0214503 0.00601261 0.00498081) 12342
(0.0178691 0.00403609 0.00492881) 10535
(0.01741 0.0037305 0.0013825) 9214
(0.0201927 0.00368355 0.00145073) 9220
(0.0178499 0.00412829 0.00123349) 11495
(0.0206143 0.00404786 0.00127943) 12761
(0.0181255 0.00478237 0.000884785) 11616
(0.0199903 0.0046895 0.000925343) 11619
(0.0187272 0.00589887 0.000941529) 12157
(0.0181104 0.00533618 0.000737652) 11856
(0.0202705 0.00526594 0.000761611) 11920
(0.0213131 0.00514195 0.000690382) 11922
(0.0192012 0.0053174 0.00524387) 11078
(0.0205725 0.00540751 0.00524005) 11441
(0.0193802 0.00298226 0.00324028) 32544
(0.0228535 0.00303569 0.00324727) 825
(0.0242299 0.00293273 0.00325974) 33985
(0.0199029 0.00667066 0.00162904) 2499
(0.0216387 0.0066362 0.00161377) 2503
(0.022474 0.00610177 0.0016341) 6044
(0.009246 0.00642952 0.00287108) 13518
(0.009246 0.00642952 0.00287108) 13518
(0.009246 0.00642952 0.00287108) 13518
(0.00972673 0.00643316 0.00287038) 13519
(0.0101859 0.00643428 0.00286957) 13520
(0.0106741 0.00643138 0.00287068) 13521
(0.0111784 0.00642683 0.00287472) 13522
(0.0116663 0.00642172 0.0028796) 13523
(0.0104803 0.00582844 0.0018696) 13760
(0.00900853 0.00466892 0.00162829) 13998
(0.00938466 0.00466627 0.00161778) 13998
(0.00923554 0.00439401 0.00170946) 14058
(0.00923554 0.00439401 0.00170946) 14058
(0.00923554 0.00439401 0.00170946) 14058
(0.00967511 0.00439403 0.00170367) 14059
(0.0100543 0.00439262 0.00169644) 14060
(0.0105013 0.00439363 0.00169729) 14061
(0.0110258 0.00439659 0.00170478) 14062
(0.011555 0.00440072 0.00171249) 14063
(0.0105567 0.00416434 0.00182928) 14121
(0.0110782 0.00417041 0.00183471) 14122
(0.0116042 0.00417799 0.0018407) 14123
(0.00984289 0.00395197 0.00203758) 14179
(0.0106821 0.00362525 0.00345477) 14481
(0.0111811 0.00363158 0.003457) 14482
(0.011664 0.00363811 0.00346071) 14483
(0.0102179 0.00372945 0.0036968) 14540
(0.0107093 0.00373376 0.00369475) 14541
(0.0112042 0.00373797 0.00369238) 14542
(0.0116894 0.00374337 0.00369157) 14543
(0.00996976 0.00391873 0.00392735) 14599
(0.00897301 0.00470463 0.00437908) 14777
(0.00939261 0.00470349 0.00439021) 14778
(0.0100294 0.00499782 0.00443341) 14840
(0.0105109 0.00499881 0.0044302) 14841
(0.0110207 0.00500116 0.00442421) 14842
(0.00989636 0.00527906 0.00440223) 14899
(0.0103914 0.00528012 0.00439641) 14900
(0.00910549 0.00635907 0.00340182) 15198
(0.00956374 0.00636306 0.00340612) 15199
(0.00997848 0.0063677 0.0034083) 15199
(0.00928296 0.00642479 0.00312129) 15258
(0.00928296 0.00642479 0.00312129) 15258
(0.00928296 0.00642479 0.00312129) 15258
(0.00977415 0.00642625 0.00312821) 15259
(0.0102447 0.00642649 0.00313163) 15260
(0.0107262 0.00642465 0.00313293) 15261
(0.0112179 0.00642133 0.00313397) 15262
(0.0117021 0.00641792 0.00313507) 15263
(0.00512603 0.0064238 0.00287688) 13510
(0.00532084 0.00643928 0.00291881) 13510
(0.00536197 0.00646466 0.00290907) 13510
(0.00666936 0.00640901 0.00283856) 13513
(0.00855316 0.00641741 0.00285755) 13517
(0.00831101 0.00579499 0.00186525) 13756
(0.00819822 0.00558272 0.001729) 13816
(0.00428195 0.00437848 0.00162847) 5708
(0.00484518 0.00452316 0.00158568) 5709
(0.00566531 0.00450474 0.00168621) 14051
(0.00744765 0.00414656 0.00188149) 14114
(0.00772201 0.00413307 0.00185551) 14115
(0.0084756 0.00416322 0.00184015) 14116
(0.00578748 0.00372722 0.00362387) 14531
(0.00595459 0.00369367 0.00357836) 14531
(0.00722583 0.00366481 0.00347563) 14474
(0.00850122 0.00364969 0.00344298) 14477
(0.00584905 0.00387445 0.00381579) 14591
(0.00523153 0.00379558 0.00383406) 14530
(0.00645784 0.00380375 0.00375843) 14532
(0.00828845 0.00372975 0.00367257) 14536
(0.00683826 0.00508459 0.00439193) 14833
(0.00689017 0.00507653 0.00443425) 14833
(0.007477 0.00504487 0.00443699) 14834
(0.00838398 0.00498563 0.00441941) 14836
(0.00736423 0.00531287 0.00439008) 14894
(0.00312259 0.00645181 0.00298506) 13506
(0.00384742 0.00639121 0.00289398) 13507
(0.00603183 0.00639981 0.00311381) 15252
(0.0181933 0.0069235 0.00358202) 2016
(0.0228586 0.00638288 0.0020912) 13425
(0.0239591 0.00661991 0.00226025) 6107
(0.0181208 0.00668978 0.00422595) 1896
(0.0208623 0.00664965 0.00413925) 1961
(0.0189945 0.00369318 0.00473416) 10537
(0.019214 0.00326658 0.00170454) 458
(0.0178694 0.00589908 0.00508884) 12575
(0.0178694 0.00589908 0.00508884) 12575
(0.0178694 0.00589908 0.00508884) 12575
(0.0199656 0.00592516 0.00502236) 12579
(0.0199656 0.00592516 0.00502236) 12579
(0.0199656 0.00592516 0.00502236) 12579
(0.0214268 0.00600482 0.00498376) 12342
(0.0214268 0.00600482 0.00498376) 12342
(0.0214268 0.00600482 0.00498376) 12342
(0.0178193 0.00403363 0.00492587) 10535
(0.0173348 0.00373184 0.00137773) 9214
(0.0200973 0.00368657 0.00145004) 9220
(0.0177521 0.00412738 0.00122867) 11495
(0.0205288 0.00405331 0.00127989) 12761
(0.0180615 0.00478692 0.000882351) 11616
(0.0199398 0.00469532 0.000924811) 11619
(0.018678 0.00589983 0.000942911) 12157
(0.018038 0.00534136 0.000737089) 11856
(0.020211 0.00526877 0.000762915) 11920
(0.0213213 0.00515231 0.00069716) 11922
(0.0191484 0.00531608 0.00524467) 11078
(0.0205504 0.0053985 0.005239) 11441
(0.0191756 0.0029727 0.0032397) 32544
(0.0227437 0.00303868 0.00324731) 825
(0.0242299 0.00293542 0.00325616) 33985
(0.0198339 0.0066732 0.00162869) 2499
(0.021591 0.00663778 0.00161703) 2503
(0.0224316 0.00609441 0.00162951) 6044
(0.00922293 0.0064296 0.00287098) 13518
(0.00922293 0.0064296 0.00287098) 13518
(0.00922293 0.0064296 0.00287098) 13518
(0.00970298 0.00643329 0.00287036) 13519
(0.0101612 0.00643451 0.00286955) 13520
(0.0106489 0.00643167 0.00287053) 13521
(0.0111545 0.00642706 0.00287452) 13522
(0.0116434 0.00642205 0.00287939) 13523
(0.0104569 0.00582862 0.00186949) 13760
(0.0089862 0.00466894 0.00162817) 13997
(0.00936219 0.00466617 0.00161772) 13998
(0.00921324 0.00439393 0.00170935) 14058
(0.00921324 0.00439393 0.00170935) 14058
(0.00921324 0.00439393 0.00170935) 14058
(0.00965249 0.00439397 0.0017036) 14059
(0.0100308 0.00439253 0.00169628) 14060
(0.0104758 0.00439354 0.00169691) 14060
(0.0109995 0.00439644 0.00170436) 14061
(0.01153 0.00440052 0.00171205) 14063
(0.0105313 0.00416407 0.00182899) 14121
(0.0110524 0.00417006 0.0018344) 14122
(0.0115794 0.00417755 0.00184036) 14123
(0.0106574 0.00362491 0.00345483) 14481
(0.0111577 0.00363131 0.0034569) 14482
(0.0116411 0.0036377 0.00346058) 14483
(0.0101933 0.0037292 0.00369699) 14540
(0.0106851 0.00373353 0.00369498) 14541
(0.0111807 0.00373774 0.00369249) 14542
(0.0116663 0.003743 0.00369169) 14543
(0.00994606 0.00391857 0.00392745) 14599
(0.00895142 0.00470466 0.00437919) 14777
(0.0093698 0.00470336 0.00439027) 14778
(0.010005 0.00499782 0.00443366) 14840
(0.0104857 0.0049987 0.00443058) 14840
(0.0109964 0.00500103 0.00442449) 14841
(0.00987183 0.00527895 0.00440254) 14899
(0.0103656 0.00528019 0.00439688) 14900
(0.00908305 0.00635915 0.00340179) 15198
(0.00954077 0.00636319 0.00340603) 15199
(0.0099547 0.00636783 0.00340815) 15199
(0.00926055 0.00642489 0.00312115) 15258
(0.00926055 0.00642489 0.00312115) 15258
(0.00926055 0.00642489 0.00312115) 15258
(0.00975084 0.00642638 0.00312809) 15259
(0.0102205 0.00642669 0.0031316) 15260
(0.010702 0.00642486 0.0031329) 15261
(0.0111945 0.00642149 0.00313394) 15262
(0.0116793 0.00641813 0.00313506) 15263
(0.00513104 0.00642243 0.00287777) 13510
(0.00530497 0.00643876 0.00291646) 13510
(0.00545463 0.00645963 0.00292367) 13510
(0.00659552 0.00641461 0.00284081) 13513
(0.00853194 0.00641649 0.00285677) 13517
(0.00828319 0.00579819 0.00186478) 13756
(0.00817884 0.00558134 0.00172684) 13816
(0.00333696 0.0043684 0.00164615) 5706
(0.00484762 0.00451851 0.00158308) 5709
(0.00559772 0.00451144 0.00168065) 14051
(0.00745692 0.00414956 0.00188378) 14114
(0.00770665 0.00413334 0.00185668) 14115
(0.00845531 0.00416224 0.00184146) 14116
(0.00585737 0.00373649 0.00362623) 14531
(0.00592518 0.00369291 0.0035808) 14531
(0.00719361 0.00366623 0.00347741) 14474
(0.00847374 0.00364769 0.00344447) 14476
(0.00596909 0.00387099 0.00379699) 14591
(0.00522721 0.00379581 0.00383204) 14530
(0.00642104 0.0038068 0.00376238) 14532
(0.00825137 0.0037301 0.00367445) 14536
(0.00684721 0.00508356 0.00438893) 14833
(0.00691129 0.00507807 0.00443134) 14833
(0.00745974 0.00504585 0.00443668) 14834
(0.00835656 0.00498961 0.00442102) 14836
(0.00733761 0.00531379 0.00439083) 14894
(0.0031455 0.00644974 0.00298133) 13506
(0.00389373 0.00638818 0.00288914) 13507
(0.00600837 0.00639992 0.00311449) 15252
(0.0181464 0.00692213 0.00358706) 2016
(0.0146825 0.00644199 0.00416947) 6689
(0.0227992 0.00637366 0.00208024) 13425
(0.0239177 0.006613 0.00226002) 6107
(0.0180317 0.00668854 0.00423438) 1896
(0.0207846 0.00664668 0.0041427) 6701
(0.0189467 0.00369097 0.00473166) 10537
(0.0191548 0.00327087 0.00170041) 458
(0.0181631 0.00615394 0.00480703) 12216
(0.017802 0.00589648 0.0050928) 12575
(0.017802 0.00589648 0.0050928) 12575
(0.017802 0.00589648 0.0050928) 12575
(0.0199017 0.00592318 0.00502403) 12579
(0.0199017 0.00592318 0.00502403) 12579
(0.0199017 0.00592318 0.00502403) 12579
(0.0214013 0.00599755 0.00498645) 12342
(0.0214013 0.00599755 0.00498645) 12342
(0.0214013 0.00599755 0.00498645) 12342
(0.0177674 0.00403106 0.00492298) 10535
(0.0172617 0.00373309 0.00137316) 9214
(0.02 0.0036896 0.00144922) 9219
(0.0176542 0.00412551 0.00122381) 11495
(0.0204413 0.00405866 0.00128024) 12760
(0.0179958 0.00479124 0.000879832) 11615
(0.0198873 0.00470092 0.000924231) 11619
(0.0186284 0.00590072 0.000944192) 12157
(0.0179636 0.00534655 0.000736389) 11855
(0.0201489 0.00527142 0.000763993) 11920
(0.0213262 0.005162 0.000703657) 11922
(0.0190948 0.00531495 0.00524553) 11078
(0.0205264 0.00539013 0.005238) 11441
(0.0189434 0.0029601 0.00323993) 32400
(0.0226294 0.00304122 0.00324736) 825
(0.0242273 0.00293827 0.00325291) 33985
(0.0197648 0.00667563 0.0016282) 2499
(0.0215432 0.00663934 0.00162019) 2503
(0.0223813 0.00608695 0.00162469) 6044
(0.0091999 0.00642969 0.00287088) 13518
(0.0091999 0.00642969 0.00287088) 13518
(0.0091999 0.00642969 0.00287088) 13518
(0.00967928 0.00643342 0.00287034) 13519
(0.0101366 0.00643475 0.00286954) 13520
(0.0106237 0.00643195 0.00287039) 13521
(0.0111305 0.00642729 0.00287433) 13522
(0.0116205 0.00642238 0.00287918) 13523
(0.0104336 0.00582881 0.00186938) 13760
(0.00896382 0.00466899 0.00162805) 13997
(0.00933971 0.00466609 0.00161766) 13998
(0.00919097 0.00439386 0.00170923) 14058
(0.00919097 0.00439386 0.00170923) 14058
(0.00919097 0.00439386 0.00170923) 14058
(0.0096299 0.00439392 0.00170354) 14059
(0.0100073 0.00439243 0.00169613) 14060
(0.0104503 0.00439345 0.00169653) 14060
(0.0109732 0.0043963 0.00170394) 14061
(0.011505 0.00440031 0.00171162) 14063
(0.010506 0.00416381 0.00182871) 14121
(0.0110265 0.00416972 0.00183408) 14122
(0.0115545 0.00417712 0.00184003) 14123
(0.00891978 0.00359849 0.00316292) 14417
(0.0106326 0.00362456 0.00345489) 14481
(0.0111342 0.00363105 0.00345681) 14482
(0.0116182 0.00363731 0.00346045) 14483
(0.0106607 0.00373331 0.00369522) 14541
(0.0111571 0.00373751 0.00369261) 14542
(0.0116432 0.00374265 0.00369182) 14543
(0.00992234 0.00391841 0.00392754) 14599
(0.00892985 0.00470469 0.0043793) 14777
(0.00934702 0.00470323 0.00439033) 14778
(0.00998066 0.00499782 0.0044339) 14839
(0.0104605 0.0049986 0.00443097) 14840
(0.010972 0.0050009 0.00442478) 14841
(0.00984739 0.00527884 0.00440284) 14899
(0.0103397 0.00528025 0.00439735) 14900
(0.00906053 0.00635923 0.0034018) 15198
(0.00951778 0.00636333 0.00340595) 15199
(0.00993092 0.00636796 0.00340801) 15199
(0.00923817 0.00642498 0.00312102) 15258
(0.00923817 0.00642498 0.00312102) 15258
(0.00923817 0.00642498 0.00312102) 15258
(0.00972757 0.00642651 0.00312798) 15259
(0.0101962 0.00642689 0.00313157) 15260
(0.0106777 0.00642508 0.00313288) 15261
(0.0111712 0.00642165 0.00313391) 15262
(0.0116565 0.00641833 0.00313504) 15263
(0.0051355 0.00642109 0.00287866) 13510
(0.00528976 0.00643814 0.00291407) 13510
(0.00552246 0.0064558 0.00293177) 13511
(0.00651827 0.00642069 0.00284357) 13513
(0.00851086 0.00641548 0.00285602) 13517
(0.00825764 0.00580103 0.00186468) 13756
(0.0081593 0.00558018 0.00172533) 13816
(0.00484685 0.0045137 0.00158039) 5709
(0.00553475 0.00451739 0.00167506) 14051
(0.00744917 0.00415193 0.00188549) 14114
(0.00771502 0.00413362 0.00185835) 14115
(0.00843519 0.00416141 0.00184268) 14116
(0.00592624 0.00374276 0.00362439) 14531
(0.00590525 0.00369296 0.00358408) 14531
(0.00716198 0.00366764 0.00347924) 14474
(0.00844693 0.0036465 0.00344589) 14476
(0.00527189 0.00380551 0.00383801) 14530
(0.00638555 0.00380978 0.00376637) 14532
(0.00821516 0.00373055 0.00367604) 14536
(0.00685669 0.00508257 0.00438578) 14833
(0.00693249 0.00507938 0.00442812) 14833
(0.00744311 0.00504684 0.0044363) 14834
(0.00833088 0.00499348 0.0044222) 14836
(0.00731165 0.00531462 0.0043915) 14894
(0.00316067 0.00644841 0.00297867) 13506
(0.00393777 0.00638495 0.00288446) 13507
(0.00598418 0.00640011 0.0031153) 15251
(0.00668636 0.00636801 0.00308984) 15253
(0.0180972 0.00692109 0.00359201) 2016
(0.0146662 0.00644195 0.00416918) 6689
(0.0227361 0.00636458 0.00206926) 13485
(0.0238764 0.00660568 0.0022591) 6107
(0.0179408 0.00668738 0.00424309) 1895
(0.0207041 0.00664458 0.00414571) 6701
(0.0188982 0.00368886 0.00472931) 10537
(0.0190948 0.00327501 0.00169626) 458
(0.0181091 0.00615059 0.00481101) 12216
(0.0177349 0.00589384 0.00509685) 12575
(0.0177349 0.00589384 0.00509685) 12575
(0.0177349 0.00589384 0.00509685) 12575
(0.0198361 0.0059213 0.00502579) 12579
(0.0198361 0.0059213 0.00502579) 12579
(0.0198361 0.0059213 0.00502579) 12579
(0.0213738 0.0059907 0.00498893) 12342
(0.0213738 0.0059907 0.00498893) 12342
(0.0213738 0.0059907 0.00498893) 12342
(0.0177133 0.00402831 0.0049201) 10535
(0.0171916 0.00373432 0.00136885) 9214
(0.0199007 0.0036926 0.00144822) 9219
(0.0175537 0.00412231 0.0012192) 11495
(0.020352 0.00406392 0.00128045) 12760
(0.0179279 0.00479524 0.000877229) 11615
(0.0198329 0.00470636 0.000923593) 11619
(0.0185785 0.0059016 0.000945405) 12157
(0.0178878 0.00535178 0.000735577) 11855
(0.0200843 0.00527398 0.000764879) 11920
(0.0213274 0.00517111 0.000709869) 11922
(0.0190405 0.00531393 0.00524646) 11078
(0.0205003 0.0053823 0.00523705) 11441
(0.0186889 0.00294415 0.00324101) 32400
(0.0225107 0.00304325 0.00324743) 825
(0.0242222 0.00294124 0.00324993) 33984
(0.0196945 0.00667805 0.00162748) 2499
(0.0214967 0.00664096 0.00162345) 2502
(0.0223232 0.00607967 0.00161987) 6044
(0.00917691 0.00642977 0.00287077) 13518
(0.00917691 0.00642977 0.00287077) 13518
(0.00917691 0.00642977 0.00287077) 13518
(0.00965561 0.00643354 0.00287032) 13519
(0.010112 0.00643497 0.00286953) 13520
(0.0105984 0.00643225 0.00287025) 13521
(0.0111065 0.00642752 0.00287414) 13522
(0.0115976 0.00642269 0.00287898) 13523
(0.0104102 0.00582899 0.00186926) 13760
(0.0089414 0.00466906 0.00162791) 13997
(0.00931722 0.00466601 0.00161758) 13998
(0.00916873 0.00439379 0.00170912) 14058
(0.00916873 0.00439379 0.00170912) 14058
(0.00916873 0.00439379 0.00170912) 14058
(0.00960736 0.00439386 0.00170348) 14059
(0.009984 0.00439234 0.001696) 14059
(0.0104249 0.00439336 0.00169616) 14060
(0.0109468 0.00439615 0.00170352) 14061
(0.0114798 0.00440011 0.00171119) 14062
(0.00917589 0.00417409 0.00183448) 14118
(0.00917589 0.00417409 0.00183448) 14118
(0.00917589 0.00417409 0.00183448) 14118
(0.0104807 0.00416356 0.00182843) 14120
(0.0110006 0.00416937 0.00183377) 14122
(0.0115296 0.00417669 0.0018397) 14123
(0.00889671 0.00359836 0.00316315) 14417
(0.0106077 0.0036242 0.00345494) 14481
(0.0111106 0.00363079 0.00345672) 14482
(0.0115954 0.00363693 0.00346032) 14483
(0.0106364 0.00373308 0.00369547) 14541
(0.0111334 0.00373729 0.00369274) 14542
(0.0116201 0.0037423 0.00369193) 14543
(0.00989861 0.00391825 0.00392762) 14599
(0.00890829 0.00470473 0.00437941) 14777
(0.00932427 0.00470312 0.00439041) 14778
(0.00995637 0.00499781 0.00443413) 14839
(0.0104353 0.0049985 0.00443135) 14840
(0.0109476 0.00500076 0.00442507) 14841
(0.00982303 0.00527873 0.00440312) 14899
(0.0103139 0.0052803 0.00439782) 14900
(0.0088088 0.00622688 0.00365511) 15137
(0.00903798 0.0063593 0.00340182) 15198
(0.00949476 0.00636347 0.00340588) 15198
(0.00990717 0.00636809 0.00340788) 15199
(0.00921583 0.00642508 0.00312089) 15258
(0.00921583 0.00642508 0.00312089) 15258
(0.00921583 0.00642508 0.00312089) 15258
(0.00970432 0.00642664 0.00312786) 15259
(0.0101719 0.00642709 0.00313153) 15260
(0.0106534 0.0064253 0.00313286) 15261
(0.0111477 0.00642181 0.00313387) 15262
(0.0116337 0.00641853 0.00313503) 15263
(0.00513688 0.00642015 0.00287871) 13510
(0.00529006 0.00643735 0.00291424) 13510
(0.00556647 0.00645266 0.00293612) 13511
(0.00647364 0.00642408 0.00284529) 13512
(0.00848978 0.00641443 0.00285537) 13516
(0.00823391 0.00580357 0.00186485) 13756
(0.00813967 0.00557917 0.00172421) 13816
(0.0048418 0.0045074 0.00157717) 5709
(0.00547582 0.00452292 0.00166958) 14050
(0.00745281 0.00415435 0.0018874) 14114
(0.00770416 0.00413417 0.00186012) 14115
(0.00841501 0.00416071 0.00184383) 14116
(0.00603279 0.00374833 0.00361704) 14532
(0.00589328 0.00369422 0.0035879) 14531
(0.00713084 0.00366903 0.00348112) 14474
(0.00842049 0.0036459 0.00344715) 14476
(0.00526127 0.00380501 0.0038346) 14530
(0.00635132 0.0038127 0.00377035) 14532
(0.00817984 0.00373105 0.00367732) 14536
(0.00686648 0.00508151 0.00438237) 14833
(0.00694562 0.00508055 0.00442473) 14833
(0.00742702 0.00504785 0.00443587) 14834
(0.00830677 0.00499712 0.00442298) 14836
(0.00728611 0.00531539 0.00439209) 14894
(0.00319007 0.0064457 0.00297413) 13506
(0.00390762 0.00638491 0.00288742) 13507
(0.00596049 0.00640029 0.00311592) 15251
(0.00663265 0.00637231 0.00309125) 15253
(0.0180455 0.00692039 0.00359681) 2016
(0.0146498 0.00644189 0.00416891) 6689
(0.0226686 0.00635579 0.00205893) 13485
(0.0238355 0.00659794 0.00225749) 6107
(0.0178473 0.00668655 0.00425195) 6635
(0.0206202 0.0066435 0.00414825) 6701
(0.0188491 0.00368679 0.00472705) 10537
(0.0201802 0.00375571 0.00481657) 10540
(0.0190339 0.00327902 0.00169209) 458
(0.0180539 0.00614729 0.00481516) 12216
(0.0176681 0.00589117 0.005101) 12575
(0.0176681 0.00589117 0.005101) 12575
(0.0176681 0.00589117 0.005101) 12575
(0.019769 0.0059195 0.00502762) 12579
(0.019769 0.0059195 0.00502762) 12579
(0.019769 0.0059195 0.00502762) 12579
(0.0213443 0.00598423 0.00499124) 12342
(0.0213443 0.00598423 0.00499124) 12342
(0.0213443 0.00598423 0.00499124) 12342
(0.0176566 0.00402527 0.00491716) 10535
(0.0198005 0.00369569 0.00144705) 9219
(0.017451 0.00411786 0.00121505) 11494
(0.020261 0.00406914 0.00128051) 12760
(0.0178574 0.00479885 0.000874542) 11615
(0.0197767 0.00471164 0.000922891) 11619
(0.0185282 0.00590249 0.000946565) 12157
(0.017811 0.00535705 0.000734681) 11855
(0.0200174 0.00527646 0.000765593) 11920
(0.0213253 0.00517972 0.000715857) 11922
(0.0189859 0.00531297 0.00524743) 11077
(0.0204723 0.00537496 0.00523617) 11440
(0.0184247 0.00292474 0.00324289) 32256
(0.0223886 0.00304475 0.00324745) 824
(0.0242148 0.00294434 0.00324716) 33984
(0.0196222 0.0066805 0.0016265) 2499
(0.0214517 0.00664269 0.00162683) 2502
(0.0222558 0.00607266 0.00161519) 6044
(0.00915395 0.00642986 0.00287065) 13518
(0.00915395 0.00642986 0.00287065) 13518
(0.00915395 0.00642986 0.00287065) 13518
(0.009632 0.00643366 0.00287031) 13519
(0.0100874 0.00643519 0.00286951) 13520
(0.0105731 0.00643254 0.00287012) 13521
(0.0110824 0.00642776 0.00287395) 13522
(0.0115746 0.006423 0.00287877) 13523
(0.0103867 0.00582918 0.00186914) 13760
(0.00891895 0.00466914 0.00162777) 13997
(0.00929472 0.00466593 0.0016175) 13998
(0.00914651 0.00439371 0.001709) 14058
(0.00914651 0.00439371 0.001709) 14058
(0.00914651 0.00439371 0.001709) 14058
(0.00958485 0.0043938 0.00170341) 14059
(0.00996077 0.00439224 0.00169588) 14059
(0.0103995 0.00439328 0.0016958) 14060
(0.0109205 0.00439602 0.00170311) 14061
(0.0114546 0.0043999 0.00171077) 14062
(0.00915263 0.00417391 0.00183437) 14118
(0.00915263 0.00417391 0.00183437) 14118
(0.00915263 0.00417391 0.00183437) 14118
(0.0104554 0.00416331 0.00182815) 14120
(0.0109746 0.00416903 0.00183347) 14121
(0.0115046 0.00417628 0.00183937) 14123
(0.00887372 0.00359823 0.00316339) 14417
(0.0105827 0.00362382 0.003455) 14481
(0.0110869 0.00363053 0.00345664) 14482
(0.0115725 0.00363656 0.00346019) 14483
(0.0106119 0.00373284 0.00369574) 14541
(0.0111098 0.00373707 0.00369287) 14542
(0.0115969 0.00374197 0.00369205) 14543
(0.00987486 0.00391808 0.0039277) 14599
(0.00888673 0.00470479 0.00437953) 14777
(0.00930157 0.00470303 0.0043905) 14778
(0.00993211 0.0049978 0.00443435) 14839
(0.0104101 0.0049984 0.00443174) 14840
(0.0109232 0.00500063 0.00442537) 14841
(0.00979876 0.00527862 0.00440339) 14899
(0.0102881 0.00528035 0.00439829) 14900
(0.00878513 0.00622703 0.00365536) 15137
(0.00901539 0.00635938 0.00340184) 15198
(0.00947173 0.00636361 0.00340581) 15198
(0.00988346 0.00636821 0.00340774) 15199
(0.0091935 0.00642517 0.00312076) 15258
(0.0091935 0.00642517 0.00312076) 15258
(0.0091935 0.00642517 0.00312076) 15258
(0.00968111 0.00642678 0.00312773) 15259
(0.0101477 0.00642728 0.0031315) 15260
(0.010629 0.00642553 0.00313285) 15261
(0.0111242 0.00642198 0.00313385) 15262
(0.0116109 0.00641873 0.00313501) 15263
(0.00512021 0.00642016 0.00287353) 13510
(0.00527589 0.00643664 0.00291181) 13510
(0.005611 0.00644947 0.00293989) 13511
(0.00641114 0.00642785 0.00284751) 13512
(0.00846864 0.00641336 0.00285482) 13516
(0.00821047 0.00580582 0.00186506) 13756
(0.00811998 0.00557833 0.00172334) 13816
(0.00483462 0.0045017 0.00157481) 5709
(0.00541201 0.00452835 0.00166301) 14050
(0.00645399 0.00446279 0.00173542) 14052
(0.00744624 0.00415709 0.00188945) 14114
(0.00771111 0.00413463 0.00186179) 14115
(0.00839491 0.0041601 0.00184495) 14116
(0.00615704 0.00375153 0.00360422) 14532
(0.00588948 0.00369653 0.0035927) 14531
(0.00710005 0.00367043 0.00348305) 14474
(0.00839454 0.00364559 0.0034482) 14476
(0.00530459 0.00381341 0.00383889) 14590
(0.00631829 0.0038156 0.00377438) 14532
(0.00814483 0.00373161 0.00367849) 14536
(0.00687723 0.00508035 0.00437874) 14833
(0.0069606 0.00508146 0.00442116) 14833
(0.0074115 0.0050489 0.00443535) 14834
(0.00828398 0.00500045 0.00442342) 14836
(0.00726118 0.00531608 0.00439263) 14894
(0.00326094 0.00643929 0.00296415) 13506
(0.0037882 0.00638871 0.0029024) 13507
(0.00593633 0.00640054 0.00311653) 15251
(0.00657831 0.00637616 0.00309323) 15253
(0.0146334 0.00644185 0.00416864) 6689
(0.0225968 0.00634695 0.00204779) 13485
(0.0237946 0.00658979 0.0022551) 6107
(0.0177495 0.00668674 0.00426055) 6635
(0.020533 0.00664345 0.00415035) 6701
(0.0187997 0.00368478 0.0047249) 10537
(0.0201625 0.00374874 0.00480794) 10540
(0.0189719 0.00328288 0.00168787) 457
(0.017997 0.00614408 0.00481949) 12215
(0.0197004 0.00591777 0.00502955) 12579
(0.0197004 0.00591777 0.00502955) 12579
(0.0197004 0.00591777 0.00502955) 12579
(0.0213126 0.00597812 0.00499339) 12342
(0.0213126 0.00597812 0.00499339) 12342
(0.0213126 0.00597812 0.00499339) 12342
(0.0175971 0.00402187 0.00491413) 10535
(0.0196986 0.00369875 0.00144564) 9219
(0.0201683 0.00407424 0.00128039) 11500
(0.0177842 0.00480201 0.000871776) 11615
(0.0197187 0.00471675 0.000922124) 11619
(0.0184777 0.00590339 0.000947669) 12156
(0.017735 0.0053624 0.00073378) 11855
(0.0199484 0.00527891 0.000766141) 11919
(0.0213199 0.00518786 0.000721607) 11922
(0.018931 0.00531205 0.00524846) 11077
(0.0204425 0.00536811 0.00523535) 11440
(0.0181786 0.00290422 0.00324492) 32256
(0.0222619 0.00304566 0.00324746) 824
(0.0242047 0.00294753 0.00324462) 33984
(0.0195469 0.00668296 0.00162515) 2499
(0.0195469 0.00668296 0.00162515) 2499
(0.0195469 0.00668296 0.00162515) 2499
(0.0214065 0.00664446 0.00163013) 2502
(0.0225608 0.00659371 0.00153121) 6765
(0.0221792 0.00606606 0.00161073) 6044
(0.00913103 0.00642994 0.00287053) 13518
(0.00913103 0.00642994 0.00287053) 13518
(0.00913103 0.00642994 0.00287053) 13518
(0.00960843 0.00643378 0.00287029) 13519
(0.0100629 0.00643541 0.00286948) 13520
(0.0105478 0.00643284 0.00287) 13521
(0.0110582 0.00642799 0.00287376) 13522
(0.0115516 0.0064233 0.00287857) 13523
(0.0103632 0.00582936 0.00186901) 13760
(0.00889645 0.00466923 0.00162762) 13997
(0.00927218 0.00466585 0.00161741) 13998
(0.00912431 0.00439363 0.0017089) 14058
(0.00912431 0.00439363 0.0017089) 14058
(0.00912431 0.00439363 0.0017089) 14058
(0.00956236 0.00439375 0.00170334) 14059
(0.00993765 0.00439215 0.00169577) 14059
(0.0103743 0.00439319 0.00169544) 14060
(0.0108941 0.00439588 0.00170269) 14061
(0.0114293 0.0043997 0.00171035) 14062
(0.00912938 0.00417373 0.00183426) 14118
(0.00912938 0.00417373 0.00183426) 14118
(0.00912938 0.00417373 0.00183426) 14118
(0.0104302 0.00416308 0.00182787) 14120
(0.0109486 0.00416869 0.00183317) 14121
(0.0114795 0.00417588 0.00183903) 14122
(0.0088508 0.00359809 0.00316365) 14417
(0.0105576 0.00362345 0.00345507) 14481
(0.0110632 0.00363027 0.00345656) 14482
(0.0115496 0.0036362 0.00346005) 14483
(0.0105874 0.0037326 0.00369601) 14541
(0.011086 0.00373685 0.00369301) 14542
(0.0115737 0.00374164 0.00369216) 14543
(0.00985108 0.00391792 0.00392777) 14599
(0.00886518 0.00470487 0.00437965) 14777
(0.00927889 0.00470296 0.00439061) 14778
(0.00990791 0.00499778 0.00443456) 14839
(0.0103849 0.00499831 0.00443211) 14840
(0.0108987 0.0050005 0.00442566) 14841
(0.00977456 0.00527851 0.00440365) 14899
(0.0102622 0.00528038 0.00439876) 14900
(0.00876146 0.00622718 0.00365563) 15137
(0.00899277 0.00635946 0.00340187) 15197
(0.00944867 0.00636376 0.00340576) 15198
(0.00985978 0.00636833 0.00340761) 15199
(0.0091712 0.00642526 0.00312063) 15258
(0.0091712 0.00642526 0.00312063) 15258
(0.0091712 0.00642526 0.00312063) 15258
(0.00965794 0.00642692 0.0031276) 15259
(0.0101234 0.00642747 0.00313147) 15260
(0.0106045 0.00642576 0.00313284) 15261
(0.0111007 0.00642215 0.00313382) 15262
(0.011588 0.00641892 0.00313499) 15263
(0.00512425 0.00641888 0.00287418) 13510
(0.00528005 0.00643537 0.00291236) 13510
(0.0055929 0.00644913 0.00293896) 13511
(0.00635839 0.00643259 0.00285182) 13512
(0.00844745 0.00641227 0.00285434) 13516
(0.00818743 0.00580777 0.00186528) 13756
(0.00810009 0.00557761 0.00172263) 13816
(0.00482877 0.00449603 0.00157272) 5709
(0.00534799 0.00453321 0.00165578) 14050
(0.0063828 0.00446449 0.00172943) 14052
(0.00489194 0.0041755 0.00170495) 5649
(0.00744967 0.00415983 0.00189164) 14114
(0.00769976 0.00413542 0.00186356) 14115
(0.0083748 0.00415958 0.001846) 14116
(0.00589262 0.00369997 0.00359789) 14531
(0.00706954 0.00367181 0.00348505) 14474
(0.00836913 0.00364545 0.00344911) 14476
(0.00534858 0.00382094 0.00384211) 14590
(0.00628634 0.00381844 0.00377842) 14532
(0.0081098 0.00373227 0.00367967) 14536
(0.00688775 0.00507905 0.00437489) 14833
(0.00697445 0.00508204 0.00441764) 14833
(0.00739685 0.00505001 0.00443475) 14834
(0.00826227 0.00500343 0.0044236) 14836
(0.00723685 0.00531671 0.00439309) 14894
(0.00808363 0.00529965 0.00436643) 14896
(0.00334488 0.00643122 0.0029527) 13506
(0.00366446 0.00639913 0.00291902) 13507
(0.00592346 0.00639984 0.00311675) 15251
(0.00654434 0.00637754 0.00309371) 15253
(0.014617 0.00644181 0.00416839) 6689
(0.0225205 0.00633848 0.00203687) 13485
(0.0237538 0.00658124 0.00225193) 6107
(0.0176476 0.00668826 0.00426859) 6635
(0.0204422 0.00664454 0.004152) 6700
(0.0187499 0.00368283 0.00472284) 10537
(0.0201434 0.00374216 0.00479972) 10540
(0.0189087 0.00328662 0.00168359) 457
(0.0179375 0.00614104 0.00482398) 12215
(0.0196306 0.00591611 0.00503157) 12579
(0.0196306 0.00591611 0.00503157) 12579
(0.0196306 0.00591611 0.00503157) 12579
(0.0212788 0.00597236 0.00499539) 12342
(0.0212788 0.00597236 0.00499539) 12342
(0.0212788 0.00597236 0.00499539) 12342
(0.0175345 0.00401804 0.00491097) 10535
(0.0195949 0.00370174 0.00144397) 9219
(0.0200738 0.00407917 0.00128007) 11500
(0.0177077 0.00480458 0.000868937) 11615
(0.0196592 0.00472176 0.000921285) 11619
(0.018427 0.00590432 0.00094872) 12156
(0.017662 0.00536782 0.000732968) 11855
(0.0198774 0.00528137 0.000766545) 11919
(0.0213114 0.00519556 0.000727121) 11922
(0.0188759 0.00531115 0.00524953) 11077
(0.0204107 0.0053617 0.0052346) 11440
(0.0179907 0.00288813 0.00324546) 32112
(0.0221332 0.00304609 0.00324738) 824
(0.0241921 0.00295083 0.00324228) 33984
(0.019468 0.00668544 0.00162336) 2498
(0.019468 0.00668544 0.00162336) 2498
(0.019468 0.00668544 0.00162336) 2498
(0.0213602 0.00664622 0.00163322) 2502
(0.0225729 0.00660063 0.00154395) 6765
(0.0220934 0.00606006 0.00160661) 6044
(0.00910813 0.00643002 0.00287041) 13518
(0.00910813 0.00643002 0.00287041) 13518
(0.00910813 0.00643002 0.00287041) 13518
(0.00958491 0.00643389 0.00287028) 13519
(0.0100385 0.00643561 0.00286946) 13520
(0.0105224 0.00643314 0.00286988) 13521
(0.0110339 0.00642823 0.00287358) 13522
(0.0115286 0.0064236 0.00287836) 13523
(0.00884388 0.00634508 0.00256294) 13577
(0.0103396 0.00582954 0.00186887) 13760
(0.00887388 0.00466934 0.00162746) 13997
(0.0092496 0.00466579 0.00161731) 13998
(0.00910212 0.00439354 0.00170879) 14058
(0.00910212 0.00439354 0.00170879) 14058
(0.00910212 0.00439354 0.00170879) 14058
(0.0095399 0.0043937 0.00170326) 14059
(0.00991462 0.00439205 0.00169567) 14059
(0.0103491 0.00439311 0.0016951) 14060
(0.0108678 0.00439576 0.00170227) 14061
(0.0114039 0.00439949 0.00170994) 14062
(0.00910614 0.00417353 0.00183414) 14118
(0.00910614 0.00417353 0.00183414) 14118
(0.00910614 0.00417353 0.00183414) 14118
(0.010405 0.00416286 0.00182759) 14120
(0.0109227 0.00416835 0.00183287) 14121
(0.0114544 0.00417547 0.0018387) 14122
(0.00882794 0.00359795 0.00316391) 14417
(0.0105324 0.00362308 0.00345519) 14481
(0.0110394 0.00363001 0.00345647) 14482
(0.0115267 0.00363586 0.00345992) 14483
(0.0105629 0.00373234 0.00369625) 14541
(0.0110623 0.00373664 0.00369316) 14542
(0.0115505 0.00374132 0.00369226) 14543
(0.00982728 0.00391775 0.00392784) 14599
(0.00884361 0.00470495 0.00437978) 14777
(0.00925624 0.00470291 0.00439072) 14778
(0.00988375 0.00499776 0.00443477) 14839
(0.0103596 0.00499823 0.00443249) 14840
(0.0108742 0.00500036 0.00442596) 14841
(0.00975046 0.0052784 0.00440389) 14899
(0.0102364 0.00528041 0.00439922) 14900
(0.00873782 0.00622733 0.00365592) 15137
(0.00897009 0.00635954 0.0034019) 15197
(0.00942559 0.00636391 0.00340571) 15198
(0.00983614 0.00636845 0.00340748) 15199
(0.0091489 0.00642535 0.00312051) 15258
(0.0091489 0.00642535 0.00312051) 15258
(0.0091489 0.00642535 0.00312051) 15258
(0.0096348 0.00642706 0.00312746) 15259
(0.0100992 0.00642766 0.00313144) 15260
(0.0105799 0.00642599 0.00313282) 15261
(0.0110771 0.00642233 0.00313379) 15262
(0.0115652 0.00641911 0.00313497) 15263
(0.0051379 0.00641618 0.00287834) 13510
(0.00526869 0.00643438 0.00291) 13510
(0.00560206 0.00644699 0.00294009) 13511
(0.00619672 0.0064384 0.00285589) 13512
(0.00842618 0.0064112 0.00285394) 13516
(0.00816472 0.0058095 0.00186551) 13756
(0.00808018 0.00557702 0.00172205) 13816
(0.00482407 0.00448961 0.00157036) 5709
(0.00529146 0.00453707 0.0016491) 13990
(0.00630905 0.00446651 0.00172343) 14052
(0.00477617 0.00422029 0.00169419) 5649
(0.0074436 0.00416295 0.00189376) 14114
(0.0076878 0.00413639 0.00186533) 14115
(0.00835461 0.00415915 0.00184697) 14116
(0.00590278 0.0037043 0.00360316) 14531
(0.00703932 0.00367317 0.00348709) 14474
(0.00834402 0.0036455 0.00344988) 14476
(0.00539428 0.00382801 0.00384449) 14590
(0.00625536 0.00382123 0.00378247) 14532
(0.00810021 0.00373281 0.00368087) 14536
(0.00698773 0.00508225 0.00441421) 14833
(0.00738286 0.00505115 0.00443408) 14834
(0.00824136 0.0050061 0.00442358) 14836
(0.00721301 0.00531728 0.0043935) 14894
(0.00806197 0.0052995 0.00436801) 14896
(0.00336601 0.00642913 0.00294949) 13506
(0.00385496 0.00638267 0.00289371) 13507
(0.00589021 0.00640086 0.00311799) 15251
(0.00647982 0.00638272 0.00309607) 15252
(0.0146005 0.00644176 0.00416815) 6689
(0.0224385 0.00633046 0.00202631) 13484
(0.0237135 0.00657237 0.00224805) 6107
(0.0175423 0.0066912 0.00427599) 6635
(0.020348 0.00664627 0.00415354) 6640
(0.0187001 0.00368096 0.00472088) 10537
(0.0201229 0.00373591 0.0047919) 10540
(0.0188444 0.00329025 0.00167923) 397
(0.0178749 0.00613823 0.00482865) 12215
(0.0195596 0.00591451 0.00503369) 12579
(0.0195596 0.00591451 0.00503369) 12579
(0.0195596 0.00591451 0.00503369) 12579
(0.0212429 0.00596691 0.00499727) 12342
(0.0212429 0.00596691 0.00499727) 12342
(0.0212429 0.00596691 0.00499727) 12342
(0.0194895 0.00370467 0.00144203) 9218
(0.0199776 0.0040839 0.00127954) 11499
(0.0176283 0.00480648 0.000866043) 11615
(0.0195983 0.00472668 0.000920362) 11619
(0.0183761 0.00590529 0.00094972) 12156
(0.0198042 0.00528386 0.000766799) 11919
(0.0212981 0.00520269 0.000732295) 11922
(0.0188208 0.00531025 0.00525066) 11077
(0.0203769 0.00535571 0.00523392) 11440
(0.0178784 0.00288122 0.00324286) 32112
(0.0220025 0.00304605 0.00324722) 824
(0.0241768 0.00295421 0.00324013) 33984
(0.019385 0.00668792 0.00162105) 2498
(0.019385 0.00668792 0.00162105) 2498
(0.019385 0.00668792 0.00162105) 2498
(0.0213124 0.00664796 0.00163611) 2502
(0.0225787 0.00660671 0.00155546) 6765
(0.0219967 0.00605493 0.00160296) 6043
(0.00908526 0.00643009 0.00287027) 13518
(0.00908526 0.00643009 0.00287027) 13518
(0.00908526 0.00643009 0.00287027) 13518
(0.00956144 0.006434 0.00287025) 13519
(0.0100141 0.00643581 0.00286945) 13520
(0.010497 0.00643344 0.00286977) 13520
(0.0110095 0.00642847 0.00287339) 13522
(0.0115055 0.00642389 0.00287814) 13523
(0.00882026 0.00634518 0.00256275) 13577
(0.0103159 0.00582972 0.00186872) 13760
(0.00885126 0.00466945 0.00162729) 13997
(0.00922698 0.00466574 0.00161719) 13998
(0.00907994 0.00439344 0.00170869) 14058
(0.00907994 0.00439344 0.00170869) 14058
(0.00907994 0.00439344 0.00170869) 14058
(0.00951745 0.00439365 0.00170318) 14059
(0.00989168 0.00439199 0.00169557) 14059
(0.010324 0.00439301 0.00169477) 14060
(0.0108414 0.00439563 0.00170184) 14061
(0.0113784 0.00439929 0.00170952) 14062
(0.00908292 0.00417334 0.00183402) 14118
(0.00908292 0.00417334 0.00183402) 14118
(0.00908292 0.00417334 0.00183402) 14118
(0.0103799 0.00416268 0.0018273) 14120
(0.0108967 0.00416801 0.00183257) 14121
(0.0114292 0.00417508 0.00183837) 14122
(0.00880514 0.00359781 0.0031642) 14417
(0.0105072 0.0036227 0.00345531) 14481
(0.0110156 0.00362974 0.0034564) 14482
(0.0115038 0.00363552 0.00345979) 14483
(0.00903111 0.00373293 0.00368661) 14538
(0.00903111 0.00373293 0.00368661) 14538
(0.00903111 0.00373293 0.00368661) 14538
(0.0105383 0.00373207 0.00369649) 14541
(0.0110384 0.00373644 0.00369331) 14542
(0.0115273 0.00374101 0.00369237) 14543
(0.00980343 0.00391759 0.00392791) 14599
(0.00882203 0.00470504 0.00437992) 14777
(0.00923361 0.00470287 0.00439085) 14778
(0.00985965 0.00499774 0.00443496) 14839
(0.0103344 0.00499815 0.00443286) 14840
(0.0108496 0.00500023 0.00442626) 14841
(0.00972645 0.00527829 0.00440412) 14899
(0.0102107 0.00528044 0.00439968) 14900
(0.00871419 0.00622747 0.00365623) 15137
(0.00894735 0.00635962 0.00340194) 15197
(0.00940248 0.00636407 0.00340568) 15198
(0.00981254 0.00636857 0.00340734) 15199
(0.00912661 0.00642544 0.00312039) 15258
(0.00912661 0.00642544 0.00312039) 15258
(0.00912661 0.00642544 0.00312039) 15258
(0.00961169 0.0064272 0.00312733) 15259
(0.0100751 0.00642785 0.00313139) 15260
(0.0105553 0.00642623 0.00313281) 15261
(0.0110534 0.00642251 0.00313377) 15262
(0.0115423 0.0064193 0.00313494) 15263
(0.00516225 0.00641359 0.0028849) 13510
(0.0052726 0.00643304 0.00291038) 13510
(0.00561119 0.00644491 0.00294114) 13511
(0.00598638 0.00644598 0.00286102) 13511
(0.00840546 0.00641016 0.00285353) 13516
(0.00814228 0.00581108 0.00186575) 13756
(0.00806022 0.00557653 0.00172157) 13816
(0.00203425 0.00429 0.00164396) 5704
(0.00482109 0.00448269 0.00156805) 5709
(0.00523684 0.00454034 0.00164249) 13990
(0.00623506 0.00446879 0.00171756) 14052
(0.00447015 0.00425464 0.00169329) 5708
(0.00769228 0.00413727 0.00186701) 14115
(0.00833434 0.00415878 0.00184786) 14116
(0.00591863 0.00370938 0.00360853) 14531
(0.00700941 0.00367451 0.00348919) 14474
(0.00831908 0.00364572 0.00345054) 14476
(0.00544248 0.00383466 0.00384588) 14590
(0.00622537 0.00382397 0.00378654) 14532
(0.0080665 0.00373348 0.00368169) 14536
(0.00699942 0.00508217 0.00441093) 14833
(0.00736949 0.00505233 0.00443331) 14834
(0.00822092 0.00500845 0.00442343) 14836
(0.00718953 0.00531779 0.00439386) 14894
(0.00804022 0.00529909 0.00436962) 14896
(0.00337488 0.00642834 0.00294776) 13506
(0.00394347 0.00637838 0.00288272) 13507
(0.00586512 0.00640125 0.00311861) 15251
(0.00640854 0.00638857 0.00309892) 15252
(0.0192896 0.00695799 0.00352281) 2018
(0.014584 0.00644172 0.00416792) 6689
(0.0223513 0.00632285 0.00201465) 13484
(0.0236736 0.00656318 0.00224344) 6107
(0.0202503 0.0066484 0.00415515) 6640
(0.0186502 0.00367917 0.00471901) 10537
(0.0201008 0.00373 0.00478447) 10540
(0.018779 0.00329378 0.00167478) 397
(0.017809 0.00613562 0.00483341) 12215
(0.0194876 0.00591294 0.0050359) 12578
(0.0194876 0.00591294 0.0050359) 12578
(0.0194876 0.00591294 0.0050359) 12578
(0.0212048 0.00596175 0.00499904) 12342
(0.0212048 0.00596175 0.00499904) 12342
(0.0212048 0.00596175 0.00499904) 12342
(0.0193826 0.00370754 0.00143981) 9218
(0.01988 0.0040884 0.00127877) 11499
(0.0195362 0.00473147 0.000919356) 11619
(0.0183251 0.00590629 0.000950674) 12156
(0.0197286 0.00528638 0.000766871) 11919
(0.0212809 0.00520935 0.000737158) 11922
(0.0187656 0.00530933 0.00525183) 11077
(0.0203417 0.0053501 0.00523331) 11440
(0.0177764 0.00287537 0.00323967) 32112
(0.0218701 0.00304553 0.00324696) 823
(0.0241588 0.00295772 0.00323816) 33984
(0.0192967 0.00669039 0.0016181) 2498
(0.0192967 0.00669039 0.0016181) 2498
(0.0192967 0.00669039 0.0016181) 2498
(0.0212633 0.0066497 0.00163881) 2502
(0.0225802 0.00661207 0.00156617) 6765
(0.0218895 0.00605083 0.00159984) 6043
(0.00906242 0.00643017 0.00287014) 13518
(0.00906242 0.00643017 0.00287014) 13518
(0.00906242 0.00643017 0.00287014) 13518
(0.00953802 0.00643411 0.00287022) 13519
(0.00998977 0.006436 0.00286943) 13519
(0.0104716 0.00643374 0.00286967) 13520
(0.0109851 0.00642871 0.0028732) 13521
(0.0114824 0.00642417 0.00287793) 13522
(0.00879673 0.00634528 0.00256255) 13577
(0.0102921 0.0058299 0.00186857) 13760
(0.00880275 0.00559314 0.00172523) 13817
(0.00882856 0.00466959 0.00162711) 13997
(0.00920428 0.00466572 0.00161706) 13998
(0.00905775 0.00439334 0.00170859) 14058
(0.00905775 0.00439334 0.00170859) 14058
(0.00905775 0.00439334 0.00170859) 14058
(0.00949502 0.00439361 0.0017031) 14058
(0.00986881 0.00439196 0.00169547) 14059
(0.0102991 0.00439289 0.00169447) 14060
(0.010815 0.0043955 0.00170142) 14061
(0.0113529 0.00439908 0.00170911) 14062
(0.00905972 0.00417313 0.0018339) 14118
(0.00905972 0.00417313 0.0018339) 14118
(0.00905972 0.00417313 0.0018339) 14118
(0.0103549 0.00416251 0.001827) 14120
(0.0108707 0.00416767 0.00183227) 14121
(0.011404 0.00417468 0.00183804) 14122
(0.0087824 0.00359766 0.00316451) 14417
(0.0104819 0.00362232 0.00345544) 14480
(0.0109916 0.00362947 0.00345633) 14481
(0.0114808 0.0036352 0.00345966) 14482
(0.00900526 0.00373293 0.00368666) 14538
(0.00900526 0.00373293 0.00368666) 14538
(0.00900526 0.00373293 0.00368666) 14538
(0.0105136 0.00373179 0.00369674) 14541
(0.0110146 0.00373623 0.00369347) 14542
(0.011504 0.00374071 0.00369247) 14543
(0.00977955 0.00391743 0.00392797) 14599
(0.00880041 0.00470514 0.00438006) 14777
(0.00921102 0.00470286 0.00439099) 14778
(0.00983558 0.00499766 0.00443515) 14839
(0.0103092 0.00499811 0.00443322) 14840
(0.010825 0.0050001 0.00442657) 14841
(0.00970241 0.00527831 0.00440432) 14899
(0.010185 0.0052804 0.00440014) 14900
(0.00869058 0.0062276 0.00365656) 15137
(0.00892456 0.00635971 0.00340198) 15197
(0.00937937 0.00636423 0.00340563) 15198
(0.00978896 0.00636868 0.00340724) 15199
(0.00910433 0.00642553 0.00312028) 15258
(0.00910433 0.00642553 0.00312028) 15258
(0.00910433 0.00642553 0.00312028) 15258
(0.00958861 0.00642734 0.00312719) 15259
(0.0100509 0.00642803 0.00313134) 15260
(0.0105306 0.00642647 0.0031328) 15261
(0.0110296 0.0064227 0.00313374) 15262
(0.0115195 0.00641948 0.00313491) 15263
(0.00527755 0.00643151 0.00291081) 13510
(0.00561857 0.00644319 0.00294192) 13511
(0.00571251 0.00645526 0.00286487) 13511
(0.00838511 0.0064091 0.00285309) 13516
(0.00811979 0.00581271 0.00186608) 13756
(0.00803998 0.00557609 0.0017212) 13816
(0.00293984 0.00430635 0.00166027) 5705
(0.0048195 0.00447188 0.00156425) 5709
(0.00514673 0.00454476 0.00163194) 13990
(0.00619744 0.0044713 0.00171582) 14052
(0.00393878 0.00425727 0.00170203) 14047
(0.00767595 0.00413819 0.00186772) 14115
(0.00831391 0.00415847 0.00184868) 14116
(0.00594139 0.00371463 0.0036128) 14531
(0.00697989 0.00367584 0.00349134) 14473
(0.00829421 0.00364604 0.00345113) 14476
(0.00553226 0.00384326 0.00384747) 14591
(0.00619577 0.00382666 0.00379064) 14532
(0.00803288 0.00373414 0.00368235) 14536
(0.00700853 0.00508186 0.00440782) 14834
(0.00735748 0.00505358 0.00443243) 14834
(0.00820073 0.00501047 0.00442321) 14836
(0.00716632 0.00531826 0.00439418) 14894
(0.0080185 0.00529872 0.00437099) 14896
(0.00336524 0.00642924 0.00294846) 13506
(0.00397296 0.00637581 0.0028793) 13507
(0.00584336 0.00640117 0.00312095) 15251
(0.00632051 0.00639511 0.0031025) 15252
(0.0192491 0.00695496 0.00352744) 2018
(0.0145674 0.00644168 0.00416771) 6689
(0.0222573 0.00631642 0.00200394) 13484
(0.0236338 0.00655377 0.00223817) 6107
(0.0201491 0.00665095 0.00415682) 6640
(0.0186002 0.00367745 0.00471724) 10537
(0.0200774 0.00372441 0.00477742) 10540
(0.0187128 0.00329724 0.00167023) 397
(0.0177392 0.00613332 0.00483832) 12215
(0.019415 0.00591141 0.0050382) 12578
(0.019415 0.00591141 0.0050382) 12578
(0.019415 0.00591141 0.0050382) 12578
(0.0211645 0.00595686 0.00500072) 12342
(0.0211645 0.00595686 0.00500072) 12342
(0.0211645 0.00595686 0.00500072) 12342
(0.019274 0.00371034 0.00143733) 9218
(0.019781 0.00409283 0.00127775) 11499
(0.0194729 0.00473613 0.000918272) 11618
(0.0209628 0.00460946 0.000931148) 11561
(0.0182737 0.00590734 0.000951571) 12156
(0.0196506 0.00528896 0.00076677) 11919
(0.0212608 0.00521564 0.00074181) 11922
(0.0187101 0.00530839 0.00525308) 11077
(0.0203054 0.0053448 0.0052328) 11440
(0.0176766 0.00286967 0.00323639) 32112
(0.021737 0.00304457 0.00324661) 823
(0.0241379 0.00296134 0.00323637) 33984
(0.019202 0.00669293 0.00161441) 2498
(0.019202 0.00669293 0.00161441) 2498
(0.019202 0.00669293 0.00161441) 2498
(0.0212125 0.0066514 0.00164126) 2502
(0.0225763 0.00661675 0.00157589) 6765
(0.0217691 0.00604843 0.00159782) 6043
(0.0090396 0.00643024 0.00287001) 13518
(0.0090396 0.00643024 0.00287001) 13518
(0.0090396 0.00643024 0.00287001) 13518
(0.00951466 0.00643421 0.0028702) 13519
(0.00996552 0.00643618 0.00286942) 13519
(0.0104462 0.00643404 0.00286957) 13520
(0.0109605 0.00642896 0.00287302) 13521
(0.0114592 0.00642445 0.00287772) 13522
(0.00877328 0.00634537 0.00256237) 13577
(0.0102682 0.00583008 0.00186841) 13760
(0.00877953 0.00559309 0.00172502) 13817
(0.00880579 0.00466974 0.00162692) 13997
(0.00918155 0.00466568 0.00161692) 13998
(0.00903555 0.00439324 0.0017085) 14058
(0.00903555 0.00439324 0.0017085) 14058
(0.00903555 0.00439324 0.0017085) 14058
(0.00947259 0.00439357 0.00170301) 14058
(0.00984605 0.00439192 0.00169538) 14059
(0.0102742 0.00439278 0.00169417) 14060
(0.0107886 0.00439537 0.00170099) 14061
(0.0113272 0.00439888 0.0017087) 14062
(0.00903653 0.00417293 0.00183377) 14118
(0.00903653 0.00417293 0.00183377) 14118
(0.00903653 0.00417293 0.00183377) 14118
(0.0103299 0.00416236 0.0018267) 14120
(0.0108446 0.00416734 0.00183197) 14121
(0.0113786 0.00417429 0.00183772) 14122
(0.00875971 0.00359751 0.00316483) 14417
(0.0104564 0.00362193 0.00345558) 14480
(0.0109676 0.0036292 0.00345628) 14481
(0.0114579 0.00363488 0.00345953) 14482
(0.00897934 0.0037329 0.00368669) 14537
(0.00897934 0.0037329 0.00368669) 14537
(0.00897934 0.0037329 0.00368669) 14537
(0.0104889 0.00373151 0.00369699) 14540
(0.0109906 0.00373602 0.00369363) 14541
(0.0114808 0.00374042 0.00369257) 14542
(0.00975563 0.00391726 0.00392803) 14599
(0.00877877 0.00470524 0.0043802) 14777
(0.00918844 0.00470287 0.00439114) 14778
(0.00981157 0.00499757 0.00443533) 14839
(0.0102841 0.00499807 0.00443358) 14840
(0.0108003 0.00499997 0.00442688) 14841
(0.00967847 0.00527833 0.0044045) 14899
(0.0101593 0.00528037 0.00440059) 14900
(0.00866698 0.00622773 0.0036569) 15137
(0.0089017 0.0063598 0.00340203) 15197
(0.00935624 0.0063644 0.00340558) 15198
(0.00976541 0.00636879 0.00340714) 15199
(0.00908204 0.00642562 0.00312018) 15258
(0.00908204 0.00642562 0.00312018) 15258
(0.00908204 0.00642562 0.00312018) 15258
(0.00956556 0.00642748 0.00312706) 15259
(0.0100269 0.0064282 0.00313128) 15260
(0.0105059 0.00642671 0.00313279) 15261
(0.0110058 0.00642288 0.00313372) 15262
(0.0114965 0.00641966 0.00313488) 15262
(0.005283 0.00642987 0.00291118) 13510
(0.00560337 0.0064421 0.00294135) 13511
(0.00545548 0.00646597 0.00286442) 13510
(0.00717163 0.00638582 0.00283805) 13514
(0.00836465 0.00640808 0.00285266) 13516
(0.00809679 0.00581427 0.0018665) 13756
(0.00801954 0.00557573 0.0017209) 13816
(0.00422956 0.00431053 0.00165878) 5708
(0.00482189 0.00445962 0.00156004) 5709
(0.00504912 0.00454819 0.00162038) 13990
(0.00614307 0.00447361 0.00171227) 14052
(0.00309142 0.00423279 0.00170247) 5646
(0.00766335 0.00413951 0.00186894) 14115
(0.00829329 0.00415822 0.00184941) 14116
(0.00596826 0.00371937 0.00361543) 14531
(0.00695024 0.00367718 0.0034936) 14473
(0.00826941 0.00364644 0.00345165) 14476
(0.00558292 0.0038482 0.00384553) 14591
(0.00616648 0.00382931 0.00379479) 14532
(0.00799924 0.00373502 0.00368323) 14535
(0.00701532 0.00508138 0.00440491) 14834
(0.00734587 0.00505489 0.00443145) 14834
(0.00818064 0.00501223 0.00442294) 14836
(0.00714351 0.00531868 0.00439445) 14894
(0.00799682 0.00529838 0.00437214) 14895
(0.00336298 0.00642945 0.00294814) 13506
(0.00399354 0.00637352 0.00287687) 13507
(0.0055967 0.00641072 0.0031775) 15251
(0.0062601 0.0063984 0.00310486) 15252
(0.0192079 0.00695204 0.00353195) 2018
(0.0145508 0.00644164 0.00416751) 6689
(0.0221566 0.00631106 0.00199297) 13484
(0.0235939 0.00654413 0.00223223) 6107
(0.0200449 0.00665386 0.00415859) 6640
(0.0185498 0.00367579 0.00471557) 10537
(0.0200526 0.00371916 0.00477074) 10540
(0.0186455 0.00330059 0.00166559) 397
(0.0176657 0.00613137 0.00484335) 12215
(0.0193419 0.00590987 0.00504061) 12578
(0.0193419 0.00590987 0.00504061) 12578
(0.0193419 0.00590987 0.00504061) 12578
(0.0211245 0.00595207 0.00500231) 12342
(0.0211245 0.00595207 0.00500231) 12342
(0.0211245 0.00595207 0.00500231) 12342
(0.0189543 0.00405392 0.00495906) 10837
(0.019165 0.00371322 0.00143454) 9218
(0.0196808 0.00409709 0.00127649) 11499
(0.0194088 0.00474063 0.000917114) 11618
(0.0209349 0.00461725 0.000931361) 11561
(0.0182222 0.00590845 0.00095242) 12156
(0.019571 0.00529164 0.000766532) 11919
(0.0212377 0.0052216 0.000746255) 11922
(0.0186544 0.00530743 0.0052544) 11077
(0.0202681 0.00533982 0.00523236) 11440
(0.0175788 0.00286415 0.00323316) 32112
(0.0216025 0.00304311 0.00324619) 823
(0.0241136 0.0029651 0.00323477) 33984
(0.0190987 0.00669575 0.00160992) 2498
(0.0190987 0.00669575 0.00160992) 2498
(0.0190987 0.00669575 0.00160992) 2498
(0.0211602 0.00665295 0.00164333) 2502
(0.0225664 0.00662086 0.00158458) 2505
(0.0216362 0.00604799 0.00159684) 6043
(0.00901681 0.0064303 0.00286988) 13518
(0.00901681 0.0064303 0.00286988) 13518
(0.00901681 0.0064303 0.00286988) 13518
(0.00949135 0.00643431 0.00287016) 13518
(0.00994136 0.00643636 0.00286941) 13519
(0.0104208 0.00643434 0.00286949) 13520
(0.0109359 0.00642921 0.00287284) 13521
(0.011436 0.00642472 0.00287751) 13522
(0.00874991 0.00634546 0.00256218) 13577
(0.00877568 0.00583974 0.00188324) 13757
(0.0102443 0.00583026 0.00186824) 13760
(0.00875632 0.00559303 0.0017248) 13817
(0.00878294 0.00466988 0.00162673) 13997
(0.00915876 0.00466565 0.00161678) 13998
(0.00901334 0.00439312 0.0017084) 14058
(0.00901334 0.00439312 0.0017084) 14058
(0.00901334 0.00439312 0.0017084) 14058
(0.00945016 0.00439354 0.00170291) 14058
(0.00982337 0.00439189 0.0016953) 14059
(0.0102494 0.00439267 0.00169388) 14060
(0.0107622 0.00439525 0.00170057) 14061
(0.0113014 0.00439868 0.00170828) 14062
(0.00901335 0.00417273 0.00183362) 14118
(0.00901335 0.00417273 0.00183362) 14118
(0.00901335 0.00417273 0.00183362) 14118
(0.010305 0.00416221 0.00182641) 14120
(0.0108186 0.00416701 0.00183167) 14121
(0.0113532 0.00417391 0.00183739) 14122
(0.00873708 0.00359735 0.00316516) 14417
(0.0104309 0.00362153 0.00345573) 14480
(0.0109435 0.00362892 0.00345623) 14481
(0.0114349 0.00363458 0.0034594) 14482
(0.00895335 0.00373287 0.0036867) 14537
(0.00895335 0.00373287 0.0036867) 14537
(0.00895335 0.00373287 0.0036867) 14537
(0.0104641 0.00373122 0.00369724) 14540
(0.0109667 0.00373582 0.0036938) 14541
(0.0114574 0.00374013 0.00369267) 14542
(0.00875711 0.00470537 0.00438036) 14777
(0.00916585 0.00470287 0.0043913) 14778
(0.00978763 0.00499748 0.0044355) 14839
(0.0102589 0.00499803 0.00443394) 14840
(0.0107756 0.00499984 0.00442719) 14841
(0.00965463 0.00527835 0.00440467) 14899
(0.0101336 0.00528033 0.00440104) 14900
(0.00864338 0.00622785 0.00365726) 15137
(0.00887876 0.00635989 0.00340209) 15197
(0.00933307 0.00636456 0.00340555) 15198
(0.0097419 0.00636889 0.00340705) 15199
(0.00905975 0.0064257 0.00312008) 15258
(0.00905975 0.0064257 0.00312008) 15258
(0.00905975 0.0064257 0.00312008) 15258
(0.00954256 0.00642762 0.00312692) 15259
(0.0100028 0.00642838 0.00313122) 15260
(0.0104812 0.00642695 0.00313279) 15260
(0.010982 0.00642308 0.0031337) 15261
(0.0114736 0.00641984 0.00313485) 15262
(0.00527572 0.00642825 0.0029093) 13510
(0.00558564 0.00644159 0.00294043) 13511
(0.00540392 0.00647055 0.00287863) 13510
(0.00713578 0.00638754 0.00283804) 13514
(0.00834393 0.00640713 0.00285224) 13516
(0.00807349 0.0058153 0.00186687) 13756
(0.00799816 0.00557584 0.00172075) 13815
(0.00482144 0.00429736 0.00163353) 5709
(0.00482928 0.00444408 0.00155626) 5709
(0.00498187 0.00454851 0.00161178) 13989
(0.00607623 0.0044762 0.00170733) 14052
(0.00254163 0.00420724 0.00169982) 5645
(0.00765226 0.00414114 0.00187038) 14115
(0.00827252 0.00415801 0.00185007) 14116
(0.00599667 0.00372339 0.00361645) 14531
(0.00691817 0.00367868 0.00349635) 14473
(0.00824472 0.0036469 0.00345207) 14476
(0.00563743 0.00385276 0.00384226) 14591
(0.00613777 0.00383188 0.00379891) 14532
(0.00796572 0.00373593 0.00368405) 14535
(0.00702005 0.0050807 0.00440222) 14834
(0.00733513 0.00505623 0.00443037) 14834
(0.00816063 0.00501376 0.00442265) 14836
(0.00712087 0.00531906 0.00439468) 14894
(0.00797524 0.00529808 0.00437311) 14895
(0.00336447 0.00642927 0.00294741) 13506
(0.00400759 0.00637171 0.00287511) 13508
(0.00554764 0.00641441 0.00317487) 15251
(0.00623641 0.0063984 0.00310562) 15252
(0.0191659 0.00694918 0.0035364) 2018
(0.0145341 0.0064416 0.00416731) 6689
(0.0220487 0.00630702 0.00198214) 13484
(0.023554 0.00653431 0.00222571) 6107
(0.0199375 0.00665721 0.00416046) 1899
(0.0184992 0.00367421 0.00471404) 10536
(0.0200261 0.00371426 0.00476443) 10540
(0.0185778 0.00330396 0.00166081) 397
(0.0175886 0.00612983 0.00484845) 12215
(0.0192685 0.00590833 0.00504312) 12578
(0.0192685 0.00590833 0.00504312) 12578
(0.0192685 0.00590833 0.00504312) 12578
(0.0210851 0.00594738 0.0050039) 12582
(0.0210851 0.00594738 0.0050039) 12582
(0.0210851 0.00594738 0.0050039) 12582
(0.0189042 0.00405162 0.00495526) 10837
(0.0190567 0.00371609 0.00143155) 9218
(0.0195794 0.00410109 0.00127498) 11499
(0.0193438 0.00474495 0.000915877) 11618
(0.0209057 0.00462495 0.00093156) 11561
(0.0181709 0.00590963 0.000953239) 12156
(0.01949 0.00529441 0.000766178) 11918
(0.0212118 0.00522724 0.000750493) 11922
(0.0185987 0.00530648 0.0052558) 11077
(0.0202297 0.00533514 0.005232) 11440
(0.017483 0.00285876 0.00323008) 31968
(0.021468 0.00304125 0.00324576) 822
(0.0240855 0.00296897 0.00323328) 33984
(0.0189859 0.00669898 0.00160464) 2497
(0.0189859 0.00669898 0.00160464) 2497
(0.0189859 0.00669898 0.00160464) 2497
(0.0211064 0.00665436 0.001645) 2502
(0.0225479 0.0066243 0.00159176) 2505
(0.0214916 0.00604976 0.00159689) 6042
(0.00899403 0.00643037 0.00286975) 13517
(0.00899403 0.00643037 0.00286975) 13517
(0.00899403 0.00643037 0.00286975) 13517
(0.00946809 0.00643441 0.00287013) 13518
(0.00991728 0.00643652 0.0028694) 13519
(0.0103954 0.00643464 0.00286941) 13520
(0.0109112 0.00642947 0.00287266) 13521
(0.0114127 0.00642499 0.00287729) 13522
(0.00872663 0.00634554 0.00256201) 13577
(0.00875222 0.00583987 0.00188318) 13757
(0.0102202 0.00583044 0.00186806) 13760
(0.00873321 0.00559297 0.00172458) 13817
(0.00876 0.00467002 0.00162652) 13997
(0.00913589 0.00466563 0.00161662) 13998
(0.00899111 0.00439302 0.00170831) 14057
(0.00899111 0.00439302 0.00170831) 14057
(0.00899111 0.00439302 0.00170831) 14057
(0.00942773 0.00439351 0.00170281) 14058
(0.00980077 0.00439186 0.00169523) 14059
(0.0102248 0.00439257 0.00169359) 14060
(0.0107359 0.00439512 0.00170014) 14061
(0.0112756 0.00439848 0.00170787) 14062
(0.00899018 0.00417252 0.00183348) 14117
(0.00899018 0.00417252 0.00183348) 14117
(0.00899018 0.00417252 0.00183348) 14117
(0.0102801 0.00416207 0.00182611) 14120
(0.0107926 0.00416668 0.00183137) 14121
(0.0113278 0.00417353 0.00183707) 14122
(0.00871449 0.0035972 0.00316551) 14417
(0.00896262 0.00363564 0.00345544) 14477
(0.00896262 0.00363564 0.00345544) 14477
(0.00896262 0.00363564 0.00345544) 14477
(0.0104053 0.00362114 0.00345589) 14480
(0.0109193 0.00362864 0.00345619) 14481
(0.0114119 0.00363428 0.00345927) 14482
(0.00892727 0.00373284 0.00368672) 14537
(0.00892727 0.00373284 0.00368672) 14537
(0.00892727 0.00373284 0.00368672) 14537
(0.0104392 0.00373093 0.00369749) 14540
(0.0109426 0.00373561 0.00369398) 14541
(0.0114341 0.00373986 0.00369277) 14542
(0.00873541 0.0047055 0.00438052) 14777
(0.00914325 0.00470287 0.00439146) 14778
(0.00976376 0.00499739 0.00443565) 14839
(0.0102337 0.00499799 0.00443428) 14840
(0.0107509 0.00499971 0.00442751) 14841
(0.00963091 0.00527836 0.00440482) 14899
(0.010108 0.00528029 0.00440148) 14900
(0.00861981 0.00622798 0.0036576) 15137
(0.00885575 0.00635999 0.00340215) 15197
(0.00930987 0.00636473 0.00340552) 15198
(0.00971843 0.00636899 0.00340698) 15199
(0.00903745 0.00642579 0.00311999) 15258
(0.00903745 0.00642579 0.00311999) 15258
(0.00903745 0.00642579 0.00311999) 15258
(0.00951958 0.00642776 0.00312679) 15259
(0.00997883 0.00642854 0.00313115) 15259
(0.0104564 0.0064272 0.00313278) 15260
(0.010958 0.00642327 0.00313368) 15261
(0.0114506 0.00642001 0.00313481) 15262
(0.00528151 0.00642648 0.00290968) 13510
(0.00556813 0.00644106 0.00293944) 13511
(0.0055097 0.006467 0.00290565) 13511
(0.00710007 0.0063892 0.00283805) 13514
(0.00805013 0.00581712 0.00186754) 13756
(0.00797699 0.00557589 0.00172061) 13815
(0.0050119 0.00429445 0.00162426) 5710
(0.0048351 0.004426 0.00155482) 5709
(0.00493596 0.00454699 0.00160491) 13989
(0.00599886 0.00447954 0.00170129) 14051
(0.00200621 0.00418005 0.00170368) 5644
(0.00765656 0.00414284 0.00187186) 14115
(0.00825167 0.00415783 0.00185068) 14116
(0.00602713 0.0037267 0.0036161) 14532
(0.00688403 0.00368035 0.00349968) 14473
(0.0082199 0.00364741 0.00345251) 14476
(0.00569662 0.00385688 0.00383759) 14591
(0.00610958 0.00383434 0.00380295) 14592
(0.00793206 0.00373685 0.00368478) 14535
(0.0070241 0.00507998 0.00439948) 14834
(0.00732496 0.00505759 0.00442922) 14834
(0.00814065 0.00501512 0.00442235) 14836
(0.00709841 0.00531941 0.00439489) 14894
(0.00795373 0.00529782 0.00437393) 14895
(0.00336638 0.00642906 0.00294663) 13506
(0.00401659 0.00637012 0.00287387) 13508
(0.00551561 0.00641581 0.00317365) 15251
(0.00621273 0.00639841 0.00310639) 15252
(0.0191235 0.00694636 0.00354081) 2018
(0.0145174 0.00644157 0.00416712) 6689
(0.0219307 0.00630495 0.00197307) 13483
(0.0235139 0.00652439 0.0022187) 6107
(0.0198275 0.00666094 0.00416247) 1899
(0.0220259 0.00673884 0.00407224) 1964
(0.0184483 0.00367272 0.00471263) 10536
(0.019998 0.0037097 0.0047585) 10539
(0.0185094 0.00330728 0.0016559) 397
(0.017509 0.00612869 0.00485357) 12215
(0.0191952 0.00590677 0.00504573) 12578
(0.0191952 0.00590677 0.00504573) 12578
(0.0191952 0.00590677 0.00504573) 12578
(0.0210445 0.00594289 0.00500547) 12582
(0.0210445 0.00594289 0.00500547) 12582
(0.0210445 0.00594289 0.00500547) 12582
(0.0188546 0.00404924 0.00495148) 10837
(0.0189492 0.00371888 0.00142843) 9217
(0.0194769 0.00410503 0.00127322) 11498
(0.0192777 0.00474913 0.000914561) 11618
(0.0208756 0.00463254 0.000931736) 11561
(0.01812 0.00591089 0.000954037) 12156
(0.0194075 0.00529731 0.000765712) 11918
(0.0211833 0.00523259 0.000754518) 11922
(0.018543 0.00530555 0.0052573) 11077
(0.0201901 0.00533075 0.00523173) 11440
(0.0213332 0.00303892 0.00324526) 822
(0.0240535 0.002973 0.00323197) 33984
(0.0188631 0.00670279 0.00159838) 2497
(0.0188631 0.00670279 0.00159838) 2497
(0.0188631 0.00670279 0.00159838) 2497
(0.0210506 0.00665575 0.00164641) 2502
(0.0225187 0.00662712 0.00159702) 2505
(0.0213345 0.00605409 0.00159804) 6042
(0.00897127 0.00643043 0.00286962) 13517
(0.00897127 0.00643043 0.00286962) 13517
(0.00897127 0.00643043 0.00286962) 13517
(0.00944488 0.0064345 0.00287009) 13518
(0.00989328 0.00643668 0.0028694) 13519
(0.01037 0.00643494 0.00286934) 13520
(0.0108864 0.00642973 0.00287248) 13521
(0.0113894 0.00642525 0.00287708) 13522
(0.00870344 0.00634563 0.00256184) 13577
(0.0087288 0.00584002 0.00188314) 13757
(0.0101961 0.00583062 0.00186786) 13760
(0.00871017 0.00559291 0.00172435) 13817
(0.00873701 0.00467018 0.00162631) 13997
(0.00911295 0.00466563 0.00161645) 13998
(0.00896885 0.00439292 0.00170821) 14057
(0.00896885 0.00439292 0.00170821) 14057
(0.00896885 0.00439292 0.00170821) 14057
(0.0094053 0.00439347 0.00170271) 14058
(0.00977826 0.00439183 0.00169517) 14059
(0.0102002 0.00439248 0.00169332) 14060
(0.0107095 0.00439499 0.00169972) 14061
(0.0112496 0.00439829 0.00170746) 14062
(0.00896702 0.00417231 0.00183333) 14117
(0.00896702 0.00417231 0.00183333) 14117
(0.00896702 0.00417231 0.00183333) 14117
(0.0102553 0.00416194 0.00182583) 14120
(0.0107666 0.00416635 0.00183108) 14121
(0.0113022 0.00417315 0.00183674) 14122
(0.0087554 0.00396125 0.00205171) 14177
(0.00869194 0.00359704 0.00316586) 14417
(0.00893868 0.00363589 0.0034556) 14477
(0.00893868 0.00363589 0.0034556) 14477
(0.00893868 0.00363589 0.0034556) 14477
(0.0103796 0.00362074 0.00345605) 14480
(0.010895 0.00362835 0.00345616) 14481
(0.0113888 0.00363399 0.00345915) 14482
(0.00890111 0.00373281 0.00368675) 14537
(0.00890111 0.00373281 0.00368675) 14537
(0.00890111 0.00373281 0.00368675) 14537
(0.0104143 0.00373062 0.00369774) 14540
(0.0109185 0.0037354 0.00369416) 14541
(0.0114107 0.00373959 0.00369287) 14542
(0.00871368 0.00470566 0.00438068) 14777
(0.00912063 0.00470287 0.00439163) 14778
(0.00973996 0.0049973 0.0044358) 14839
(0.0102086 0.00499794 0.00443463) 14840
(0.0107261 0.00499958 0.00442783) 14841
(0.00960727 0.00527838 0.00440496) 14899
(0.0100824 0.00528026 0.00440192) 14900
(0.00859627 0.0062281 0.00365795) 15137
(0.00883265 0.00636008 0.00340222) 15197
(0.00928664 0.0063649 0.00340549) 15198
(0.009695 0.00636909 0.00340691) 15199
(0.00901513 0.00642587 0.00311991) 15258
(0.00901513 0.00642587 0.00311991) 15258
(0.00901513 0.00642587 0.00311991) 15258
(0.00949664 0.0064279 0.00312666) 15258
(0.00995491 0.0064287 0.00313107) 15259
(0.0104316 0.00642744 0.00313278) 15260
(0.0109341 0.00642347 0.00313366) 15261
(0.0114276 0.00642018 0.00313477) 15262
(0.00528753 0.00642467 0.00291003) 13510
(0.00555076 0.00644053 0.00293839) 13511
(0.00565654 0.00646212 0.00292487) 13511
(0.00705457 0.00639089 0.00283851) 13514
(0.00802667 0.00581997 0.00186868) 13756
(0.0079561 0.00557596 0.00172047) 13815
(0.00505479 0.00430367 0.00163005) 5710
(0.00482762 0.0044087 0.00155906) 5709
(0.00490423 0.00454404 0.00159908) 13989
(0.00594684 0.00448361 0.00169792) 14051
(0.00764662 0.00414491 0.00187325) 14115
(0.00823078 0.00415768 0.00185127) 14116
(0.00605853 0.00372947 0.00361489) 14532
(0.00684742 0.00368221 0.00350363) 14473
(0.00819516 0.00364796 0.00345289) 14476
(0.0057854 0.00385921 0.0038293) 14591
(0.00608197 0.0038367 0.0038069) 14592
(0.00789826 0.00373777 0.00368544) 14535
(0.00702886 0.00507924 0.00439652) 14834
(0.00731579 0.00505893 0.00442798) 14834
(0.00812067 0.00501633 0.00442203) 14836
(0.0070761 0.00531974 0.00439507) 14894
(0.0079323 0.0052976 0.00437461) 14895
(0.00336857 0.00642883 0.00294581) 13506
(0.00402158 0.0063687 0.00287313) 13508
(0.00547348 0.00641833 0.00317151) 15250
(0.00618912 0.00639842 0.00310716) 15252
(0.0190818 0.00694347 0.00354527) 2018
(0.0145007 0.00644154 0.00416692) 6689
(0.0218035 0.00630429 0.00196393) 13483
(0.0234731 0.00651439 0.0022112) 6106
(0.0244897 0.00668161 0.00223223) 6108
(0.0197151 0.00666501 0.00416463) 1899
(0.0219805 0.00673122 0.00407813) 1963
(0.0183971 0.00367129 0.00471137) 10536
(0.0199681 0.0037055 0.00475297) 10539
(0.0184405 0.00331055 0.00165087) 396
(0.0174282 0.00612803 0.00485855) 12214
(0.0191217 0.00590516 0.00504844) 12578
(0.0191217 0.00590516 0.00504844) 12578
(0.0191217 0.00590516 0.00504844) 12578
(0.0210026 0.00593867 0.005007) 12582
(0.0210026 0.00593867 0.005007) 12582
(0.0210026 0.00593867 0.005007) 12582
(0.0188057 0.00404678 0.00494773) 10837
(0.0188428 0.00372156 0.00142521) 9217
(0.0193736 0.00410893 0.00127121) 11498
(0.0192109 0.00475319 0.000913168) 11618
(0.0208444 0.00464004 0.000931892) 11561
(0.0180696 0.00591222 0.000954821) 12156
(0.0193238 0.00530038 0.000765163) 11918
(0.0211525 0.00523764 0.000758335) 11922
(0.018487 0.00530469 0.00525892) 11076
(0.0201493 0.00532663 0.00523153) 11440
(0.0211994 0.00303624 0.00324466) 822
(0.0240172 0.00297717 0.00323084) 33984
(0.0187322 0.00670737 0.00159124) 2497
(0.0187322 0.00670737 0.00159124) 2497
(0.0187322 0.00670737 0.00159124) 2497
(0.0209925 0.0066572 0.00164757) 2501
(0.022478 0.00662951 0.00160034) 2504
(0.0211652 0.00606103 0.00160035) 6042
(0.022753 0.00619953 0.0016824) 13485
(0.00894852 0.00643049 0.0028695) 13517
(0.00894852 0.00643049 0.0028695) 13517
(0.00894852 0.00643049 0.0028695) 13517
(0.00942172 0.0064346 0.00287005) 13518
(0.00986936 0.00643683 0.0028694) 13519
(0.0103446 0.00643524 0.00286927) 13520
(0.0108615 0.00643 0.00287231) 13521
(0.011366 0.00642551 0.00287686) 13522
(0.00868033 0.00634571 0.00256169) 13577
(0.00870543 0.00584019 0.00188311) 13757
(0.0101718 0.0058308 0.00186765) 13760
(0.00868714 0.00559284 0.00172413) 13817
(0.00871391 0.00467035 0.00162609) 13997
(0.00908993 0.00466564 0.00161627) 13998
(0.00894656 0.00439282 0.00170811) 14057
(0.00894656 0.00439282 0.00170811) 14057
(0.00894656 0.00439282 0.00170811) 14057
(0.00938287 0.00439344 0.0017026) 14058
(0.00975582 0.00439181 0.00169512) 14059
(0.0101758 0.00439239 0.00169305) 14060
(0.0106832 0.00439486 0.00169929) 14061
(0.0112236 0.00439809 0.00170704) 14062
(0.00894387 0.00417208 0.00183318) 14117
(0.00894387 0.00417208 0.00183318) 14117
(0.00894387 0.00417208 0.00183318) 14117
(0.0102306 0.00416182 0.00182554) 14120
(0.0107406 0.00416603 0.00183077) 14121
(0.0112767 0.00417277 0.00183642) 14122
(0.00873184 0.003961 0.00205158) 14177
(0.00866941 0.00359688 0.00316622) 14417
(0.00891474 0.00363614 0.00345577) 14477
(0.00891474 0.00363614 0.00345577) 14477
(0.00891474 0.00363614 0.00345577) 14477
(0.0103539 0.00362033 0.00345622) 14480
(0.0108706 0.00362806 0.00345614) 14481
(0.0113657 0.00363371 0.00345903) 14482
(0.00887484 0.00373278 0.00368678) 14537
(0.00887484 0.00373278 0.00368678) 14537
(0.00887484 0.00373278 0.00368678) 14537
(0.0103893 0.00373031 0.003698) 14540
(0.0108944 0.0037352 0.00369435) 14541
(0.0113873 0.00373932 0.00369297) 14542
(0.0086919 0.00470582 0.00438086) 14777
(0.00909801 0.00470287 0.0043918) 14778
(0.00971624 0.00499721 0.00443593) 14839
(0.0101834 0.0049979 0.00443497) 14840
(0.0107013 0.00499946 0.00442816) 14841
(0.00958374 0.0052784 0.00440509) 14899
(0.0100568 0.00528022 0.00440235) 14900
(0.00857273 0.00622822 0.00365829) 15137
(0.00880946 0.00636018 0.00340229) 15197
(0.00926336 0.00636507 0.00340548) 15198
(0.00967162 0.00636919 0.00340684) 15199
(0.00899279 0.00642596 0.00311983) 15257
(0.00899279 0.00642596 0.00311983) 15257
(0.00899279 0.00642596 0.00311983) 15257
(0.00947372 0.00642804 0.00312653) 15258
(0.00993104 0.00642885 0.00313099) 15259
(0.0104067 0.00642768 0.00313277) 15260
(0.01091 0.00642368 0.00313364) 15261
(0.0114046 0.00642035 0.00313474) 15262
(0.00529274 0.00642295 0.00291026) 13510
(0.00553351 0.00643999 0.00293727) 13511
(0.00573933 0.00645842 0.00293363) 13511
(0.00701078 0.00639386 0.0028385) 13514
(0.00800473 0.00582217 0.00186955) 13756
(0.00793668 0.0055762 0.00172025) 13815
(0.00478799 0.00439427 0.00157036) 5709
(0.00488607 0.00454056 0.00159474) 13989
(0.00589743 0.004488 0.00169476) 14051
(0.00764959 0.00414694 0.00187462) 14115
(0.00820992 0.00415756 0.00185186) 14116
(0.00609952 0.00373222 0.00361245) 14532
(0.00680783 0.00368436 0.00350842) 14473
(0.00817048 0.00364854 0.00345316) 14476
(0.00587549 0.00385928 0.00381778) 14591
(0.00609663 0.00383525 0.00380457) 14592
(0.0078643 0.0037387 0.00368606) 14535
(0.00703192 0.00507849 0.00439361) 14834
(0.00730852 0.00506037 0.00442651) 14834
(0.00810068 0.00501744 0.00442172) 14836
(0.00705394 0.00532004 0.00439521) 14894
(0.00791094 0.00529741 0.00437518) 14895
(0.00337258 0.00642842 0.00294477) 13506
(0.00402534 0.00636752 0.00287252) 13508
(0.00445119 0.0064289 0.00288184) 13508
(0.00616539 0.00639846 0.00310792) 15252
(0.01904 0.0069406 0.00354975) 2018
(0.0144839 0.00644151 0.00416674) 6688
(0.015101 0.00643174 0.00416179) 6690
(0.0216661 0.0063057 0.00195722) 13483
(0.0234316 0.00650438 0.00220331) 6106
(0.0244606 0.00667854 0.00223562) 6108
(0.0196008 0.0066693 0.00416698) 1899
(0.021933 0.00672364 0.00408403) 1963
(0.0183454 0.00366993 0.0047103) 10536
(0.0199362 0.00370161 0.0047478) 10539
(0.018371 0.00331374 0.0016457) 396
(0.0190483 0.00590347 0.00505124) 12578
(0.0190483 0.00590347 0.00505124) 12578
(0.0190483 0.00590347 0.00505124) 12578
(0.0209593 0.0059347 0.00500847) 12581
(0.0209593 0.0059347 0.00500847) 12581
(0.0209593 0.0059347 0.00500847) 12581
(0.0187573 0.00404423 0.00494399) 10837
(0.018738 0.00372412 0.0014219) 9217
(0.0192697 0.00411289 0.00126898) 11498
(0.0191438 0.00475717 0.000911705) 11618
(0.0208121 0.0046474 0.00093202) 11561
(0.0180197 0.00591362 0.000955596) 12156
(0.0192391 0.00530363 0.000764532) 11918
(0.0211198 0.00524245 0.000761974) 11922
(0.0184303 0.00530395 0.00526067) 11076
(0.0201073 0.00532278 0.00523141) 11440
(0.0210653 0.00303305 0.003244) 822
(0.0239762 0.0029815 0.00322989) 33840
(0.0185974 0.00671289 0.00158361) 2497
(0.0185974 0.00671289 0.00158361) 2497
(0.0185974 0.00671289 0.00158361) 2497
(0.0209332 0.00665873 0.00164859) 2501
(0.0224291 0.00663161 0.00160245) 2504
(0.0209857 0.00607021 0.00160356) 6041
(0.022744 0.00619353 0.00168149) 13485
(0.00892578 0.00643055 0.00286939) 13517
(0.00892578 0.00643055 0.00286939) 13517
(0.00892578 0.00643055 0.00286939) 13517
(0.0093986 0.00643469 0.00287001) 13518
(0.00984555 0.00643697 0.0028694) 13519
(0.0103192 0.00643554 0.00286921) 13520
(0.0108366 0.00643027 0.00287213) 13521
(0.0113426 0.00642576 0.00287665) 13522
(0.00865733 0.0063458 0.00256156) 13577
(0.00868219 0.00584037 0.00188309) 13757
(0.0101474 0.00583097 0.00186742) 13760
(0.00866423 0.00559278 0.00172389) 13817
(0.00869071 0.00467053 0.00162585) 13997
(0.00906683 0.00466565 0.00161608) 13998
(0.00892424 0.00439272 0.00170801) 14057
(0.00892424 0.00439272 0.00170801) 14057
(0.00892424 0.00439272 0.00170801) 14057
(0.00936042 0.00439339 0.00170249) 14058
(0.00973346 0.00439178 0.00169507) 14059
(0.0101514 0.00439231 0.0016928) 14060
(0.0106569 0.00439474 0.00169886) 14061
(0.0111975 0.0043979 0.00170663) 14062
(0.00892072 0.00417185 0.00183303) 14117
(0.00892072 0.00417185 0.00183303) 14117
(0.00892072 0.00417185 0.00183303) 14117
(0.0102059 0.00416171 0.00182526) 14120
(0.0107146 0.00416572 0.00183048) 14121
(0.011251 0.0041724 0.00183609) 14122
(0.00870833 0.00396075 0.00205145) 14177
(0.00864693 0.00359673 0.0031666) 14417
(0.00889079 0.00363639 0.00345594) 14477
(0.00889079 0.00363639 0.00345594) 14477
(0.00889079 0.00363639 0.00345594) 14477
(0.010328 0.00361992 0.0034564) 14480
(0.0108461 0.00362776 0.00345613) 14481
(0.0113426 0.00363343 0.00345891) 14482
(0.00884848 0.00373275 0.00368681) 14537
(0.00884848 0.00373275 0.00368681) 14537
(0.00884848 0.00373275 0.00368681) 14537
(0.0103642 0.00372999 0.00369824) 14540
(0.0108702 0.00373499 0.00369455) 14541
(0.0113638 0.00373907 0.00369307) 14542
(0.00867007 0.004706 0.00438104) 14777
(0.00907537 0.00470286 0.00439198) 14778
(0.0096926 0.00499712 0.00443605) 14839
(0.0101583 0.00499786 0.00443531) 14840
(0.0106764 0.00499934 0.0044285) 14841
(0.00956029 0.00527841 0.00440521) 14899
(0.0100313 0.00528019 0.00440277) 14900
(0.00854922 0.00622834 0.00365864) 15137
(0.00924003 0.00636524 0.00340547) 15198
(0.00964828 0.00636929 0.00340677) 15199
(0.00897042 0.00642604 0.00311977) 15257
(0.00897042 0.00642604 0.00311977) 15257
(0.00897042 0.00642604 0.00311977) 15257
(0.00945083 0.00642817 0.00312641) 15258
(0.00990724 0.006429 0.00313091) 15259
(0.0103819 0.00642792 0.00313277) 15260
(0.0108859 0.00642388 0.00313362) 15261
(0.0113815 0.00642052 0.0031347) 15262
(0.00529728 0.00642128 0.00291043) 13510
(0.0055163 0.00643947 0.00293608) 13511
(0.00581872 0.00645556 0.00293867) 13511
(0.00695379 0.00639743 0.00283903) 13513
(0.00798278 0.00582442 0.0018706) 13755
(0.0079176 0.00557556 0.00172004) 13815
(0.00468095 0.00438431 0.00158967) 5709
(0.00487637 0.00453674 0.00159126) 13989
(0.00584428 0.00449242 0.00169102) 14051
(0.00191516 0.00412514 0.0017427) 5643
(0.00764165 0.00414954 0.00187642) 14115
(0.00818888 0.00415746 0.00185231) 14116
(0.00615614 0.00373487 0.00360808) 14532
(0.00676892 0.00368657 0.00351339) 14473
(0.00814555 0.00364917 0.00345352) 14476
(0.00597343 0.0038563 0.00380166) 14591
(0.00607112 0.00383737 0.00380798) 14592
(0.00783008 0.00373966 0.00368665) 14535
(0.00702662 0.00507775 0.00439184) 14834
(0.00730937 0.00506236 0.0044241) 14834
(0.00808071 0.00501848 0.00442138) 14836
(0.00703182 0.00532028 0.0043953) 14894
(0.00788964 0.00529726 0.00437565) 14895
(0.00337031 0.00642855 0.00294446) 13506
(0.00402932 0.00636635 0.00287187) 13508
(0.00427391 0.00641658 0.00287955) 13508
(0.00614228 0.00639846 0.00310855) 15252
(0.0068241 0.00636361 0.00308879) 15253
(0.018999 0.00693768 0.00355437) 2017
(0.014467 0.00644147 0.00416658) 6688
(0.0150853 0.00643158 0.00416162) 6690
(0.021518 0.00630919 0.00195243) 13483
(0.0233896 0.00649443 0.00219522) 6106
(0.0244275 0.00667508 0.00223862) 6108
(0.0194852 0.00667364 0.00416965) 1898
(0.0218837 0.00671602 0.00408995) 1963
(0.0182931 0.00366858 0.00470943) 10536
(0.0199026 0.003698 0.00474296) 10539
(0.0183009 0.00331686 0.00164038) 396
(0.0202378 0.00324368 0.00173634) 460
(0.0189748 0.00590173 0.00505412) 12577
(0.0189748 0.00590173 0.00505412) 12577
(0.0189748 0.00590173 0.00505412) 12577
(0.0209144 0.00593094 0.00500989) 12581
(0.0209144 0.00593094 0.00500989) 12581
(0.0209144 0.00593094 0.00500989) 12581
(0.0220143 0.00605732 0.00495472) 12344
(0.0187093 0.00404161 0.00494026) 10837
(0.0186351 0.00372656 0.00141849) 9217
(0.0191656 0.00411692 0.00126656) 11498
(0.0190766 0.00476109 0.000910168) 11618
(0.0207784 0.0046546 0.000932124) 11561
(0.0179704 0.0059151 0.000956365) 12155
(0.0191541 0.00530707 0.000763844) 11918
(0.0210848 0.005247 0.00076541) 11922
(0.0183729 0.00530328 0.00526254) 11076
(0.0200641 0.0053192 0.00523137) 11440
(0.0210932 0.00547606 0.00524474) 12522
(0.0209337 0.00302955 0.00324321) 821
(0.0239305 0.002986 0.00322912) 33840
(0.0184665 0.00671925 0.00157626) 2496
(0.0184665 0.00671925 0.00157626) 2496
(0.0184665 0.00671925 0.00157626) 2496
(0.0208722 0.00666037 0.0016494) 2501
(0.0223818 0.00663358 0.001605) 2504
(0.0207958 0.00608138 0.00160744) 6041
(0.0227337 0.00618744 0.00168018) 13485
(0.00890305 0.0064306 0.00286929) 13517
(0.00890305 0.0064306 0.00286929) 13517
(0.00890305 0.0064306 0.00286929) 13517
(0.00937554 0.00643477 0.00286997) 13518
(0.00982183 0.0064371 0.00286939) 13519
(0.0102939 0.00643583 0.00286916) 13520
(0.0108115 0.00643054 0.00287196) 13521
(0.0113191 0.00642601 0.00287644) 13522
(0.00863442 0.0063459 0.00256146) 13577
(0.00865903 0.00584056 0.00188307) 13757
(0.0101229 0.00583113 0.00186718) 13760
(0.0086414 0.00559271 0.00172365) 13817
(0.00866741 0.0046707 0.00162561) 13997
(0.00904365 0.00466566 0.00161588) 13998
(0.00890188 0.00439263 0.0017079) 14057
(0.00890188 0.00439263 0.0017079) 14057
(0.00890188 0.00439263 0.0017079) 14057
(0.00933796 0.00439335 0.00170237) 14058
(0.00971115 0.00439176 0.00169504) 14059
(0.0101272 0.00439223 0.00169255) 14060
(0.0106307 0.00439462 0.00169843) 14061
(0.0111713 0.00439771 0.00170622) 14062
(0.00889759 0.00417162 0.00183288) 14117
(0.00889759 0.00417162 0.00183288) 14117
(0.00889759 0.00417162 0.00183288) 14117
(0.0101813 0.0041616 0.00182499) 14120
(0.0106886 0.0041654 0.00183018) 14121
(0.0112253 0.00417204 0.00183577) 14122
(0.00868486 0.00396051 0.00205131) 14177
(0.00862447 0.00359658 0.00316697) 14417
(0.00886682 0.00363665 0.00345611) 14477
(0.00886682 0.00363665 0.00345611) 14477
(0.00886682 0.00363665 0.00345611) 14477
(0.010302 0.00361951 0.00345659) 14480
(0.0108216 0.00362745 0.00345613) 14481
(0.0113194 0.00363315 0.0034588) 14482
(0.00882201 0.00373272 0.00368684) 14537
(0.00882201 0.00373272 0.00368684) 14537
(0.00882201 0.00373272 0.00368684) 14537
(0.010339 0.00372967 0.00369849) 14540
(0.0108459 0.00373477 0.00369475) 14541
(0.0113403 0.00373881 0.00369318) 14542
(0.00864818 0.00470619 0.00438122) 14777
(0.00905271 0.00470285 0.00439216) 14778
(0.00876555 0.00499773 0.00442204) 14837
(0.00966903 0.00499703 0.00443616) 14839
(0.0101332 0.00499782 0.00443564) 14840
(0.0106516 0.00499922 0.00442884) 14841
(0.00953695 0.00527843 0.00440531) 14899
(0.0100058 0.00528017 0.00440318) 14900
(0.00852571 0.00622845 0.00365899) 15137
(0.00921664 0.00636542 0.00340548) 15198
(0.00962498 0.00636939 0.0034067) 15199
(0.00894802 0.00642612 0.00311971) 15257
(0.00894802 0.00642612 0.00311971) 15257
(0.00894802 0.00642612 0.00311971) 15257
(0.00942797 0.0064283 0.00312629) 15258
(0.0098835 0.00642915 0.00313082) 15259
(0.010357 0.00642817 0.00313276) 15260
(0.0108617 0.0064241 0.0031336) 15261
(0.0113584 0.00642068 0.00313465) 15262
(0.00529005 0.00641962 0.00290871) 13510
(0.00549937 0.00643891 0.00293483) 13510
(0.00583913 0.00645304 0.00294118) 13511
(0.0069057 0.00640124 0.00283962) 13513
(0.00796127 0.00582664 0.00187172) 13755
(0.00789919 0.00557448 0.00171984) 13815
(0.00237823 0.0043054 0.00164577) 5704
(0.00443764 0.00437935 0.00161651) 5708
(0.00487229 0.00453268 0.00158818) 13989
(0.00578889 0.00449675 0.00168684) 14051
(0.00254569 0.00416082 0.0017357) 5645
(0.0076462 0.00415208 0.00187849) 14115
(0.00816796 0.0041574 0.00185278) 14116
(0.00621449 0.00373665 0.00360243) 14532
(0.00673081 0.00368891 0.00351868) 14473
(0.00812048 0.00364982 0.0034539) 14476
(0.00607206 0.00384999 0.00378272) 14592
(0.0060467 0.00383934 0.00381103) 14592
(0.00779547 0.00374061 0.00368718) 14535
(0.00702264 0.00507703 0.00438973) 14834
(0.00730936 0.00506408 0.00442163) 14834
(0.00806077 0.00501947 0.00442103) 14836
(0.00700977 0.00532052 0.00439539) 14894
(0.0078684 0.00529715 0.00437603) 14895
(0.00336127 0.00642943 0.00294507) 13506
(0.00403172 0.00636522 0.00287139) 13508
(0.00428539 0.00641559 0.00287887) 13508
(0.00611879 0.00639851 0.00310931) 15252
(0.00677873 0.00636763 0.00308955) 15253
(0.0189617 0.00693457 0.0035594) 2017
(0.0144502 0.00644143 0.00416642) 6688
(0.0150697 0.00643142 0.00416144) 6690
(0.0213574 0.00631483 0.00194899) 13482
(0.0233464 0.00648453 0.00218691) 6106
(0.0243924 0.00667145 0.00224148) 6108
(0.019369 0.00667791 0.00417266) 1898
(0.0218321 0.00670846 0.00409589) 1963
(0.01824 0.00366721 0.00470878) 10536
(0.019867 0.00369463 0.00473843) 10539
(0.0182305 0.00331987 0.00163493) 396
(0.0201888 0.00324884 0.00173272) 460
(0.0189017 0.00589996 0.00505707) 12577
(0.0189017 0.00589996 0.00505707) 12577
(0.0189017 0.00589996 0.00505707) 12577
(0.0208678 0.00592735 0.00501129) 12581
(0.0208678 0.00592735 0.00501129) 12581
(0.0208678 0.00592735 0.00501129) 12581
(0.021992 0.00604859 0.00496001) 12343
(0.018662 0.00403896 0.00493655) 10537
(0.0185346 0.00372889 0.00141494) 9217
(0.0190617 0.00412094 0.001264) 11498
(0.0190095 0.00476499 0.000908556) 11618
(0.0207431 0.00466165 0.0009322) 11561
(0.0179217 0.00591664 0.000957149) 12155
(0.0190691 0.00531071 0.000763098) 11858
(0.0210472 0.00525133 0.000768635) 11922
(0.0183148 0.00530268 0.00526452) 11076
(0.0200197 0.0053159 0.00523141) 11440
(0.0210897 0.00546262 0.00524354) 12522
(0.0208037 0.00302575 0.00324232) 821
(0.0238794 0.00299065 0.00322852) 33840
(0.0183514 0.00672598 0.00157021) 2496
(0.0183514 0.00672598 0.00157021) 2496
(0.0183514 0.00672598 0.00157021) 2496
(0.0208099 0.00666211 0.00165007) 2501
(0.0223371 0.00663546 0.0016081) 2504
(0.0205952 0.00609464 0.001612) 6041
(0.0227207 0.00618128 0.00167852) 13485
(0.00888032 0.00643066 0.0028692) 13517
(0.00888032 0.00643066 0.0028692) 13517
(0.00888032 0.00643066 0.0028692) 13517
(0.00935251 0.00643486 0.00286991) 13518
(0.00979819 0.00643723 0.00286939) 13519
(0.0102686 0.00643612 0.00286911) 13520
(0.0107864 0.00643082 0.00287179) 13521
(0.0112955 0.00642625 0.00287623) 13522
(0.00861159 0.00634598 0.00256135) 13577
(0.00863595 0.00584076 0.00188305) 13757
(0.0100983 0.00583129 0.00186691) 13760
(0.00861862 0.0055926 0.0017234) 13817
(0.00902038 0.00466567 0.00161567) 13998
(0.00887948 0.00439254 0.00170779) 14057
(0.00887948 0.00439254 0.00170779) 14057
(0.00887948 0.00439254 0.00170779) 14057
(0.00931548 0.0043933 0.00170225) 14058
(0.00968891 0.00439173 0.001695) 14059
(0.0101031 0.00439215 0.00169232) 14060
(0.0106045 0.00439449 0.00169801) 14061
(0.0111451 0.00439752 0.0017058) 14062
(0.00887446 0.00417138 0.00183272) 14117
(0.00887446 0.00417138 0.00183272) 14117
(0.00887446 0.00417138 0.00183272) 14117
(0.0101568 0.0041615 0.00182472) 14120
(0.0106626 0.00416509 0.00182988) 14121
(0.0111995 0.00417167 0.00183546) 14122
(0.00866142 0.00396026 0.00205116) 14177
(0.00860203 0.00359642 0.00316735) 14417
(0.00884285 0.00363692 0.00345629) 14477
(0.00884285 0.00363692 0.00345629) 14477
(0.00884285 0.00363692 0.00345629) 14477
(0.010276 0.00361909 0.00345678) 14480
(0.0107969 0.00362713 0.00345615) 14481
(0.0112962 0.00363288 0.00345869) 14482
(0.00879542 0.0037327 0.00368688) 14537
(0.00879542 0.0037327 0.00368688) 14537
(0.00879542 0.0037327 0.00368688) 14537
(0.0103137 0.00372933 0.00369874) 14540
(0.0108216 0.00373456 0.00369497) 14541
(0.0113168 0.00373857 0.00369329) 14542
(0.00862622 0.00470639 0.00438141) 14777
(0.00903004 0.00470285 0.00439235) 14778
(0.00874228 0.00499787 0.00442228) 14837
(0.00964555 0.00499695 0.00443626) 14839
(0.0101081 0.00499778 0.00443596) 14840
(0.0106266 0.00499912 0.00442919) 14841
(0.0095137 0.00527845 0.00440541) 14899
(0.00998034 0.00528014 0.00440358) 14899
(0.00850221 0.00622855 0.00365936) 15137
(0.0091932 0.0063656 0.00340549) 15198
(0.00960172 0.00636949 0.00340663) 15199
(0.00892559 0.0064262 0.00311966) 15257
(0.00892559 0.0064262 0.00311966) 15257
(0.00892559 0.0064262 0.00311966) 15257
(0.00940512 0.00642843 0.00312618) 15258
(0.00985982 0.00642929 0.00313072) 15259
(0.0103322 0.00642841 0.00313275) 15260
(0.0108375 0.00642432 0.00313358) 15261
(0.0113353 0.00642085 0.00313461) 15262
(0.00529452 0.00641787 0.00290904) 13510
(0.0054828 0.00643833 0.00293349) 13510
(0.00588249 0.00645123 0.00294285) 13511
(0.0068422 0.00640576 0.00284109) 13513
(0.00794048 0.00582874 0.00187286) 13755
(0.00788068 0.00557407 0.00171977) 13815
(0.00291689 0.00431338 0.00165748) 5705
(0.0036853 0.00437268 0.00164773) 5707
(0.00487145 0.00452918 0.00158598) 5709
(0.00573373 0.00450091 0.00168236) 14051
(0.00666368 0.00446081 0.00174446) 14053
(0.00325648 0.00419351 0.00174089) 5646
(0.00763711 0.00415475 0.00188036) 14115
(0.00814751 0.00415734 0.00185343) 14116
(0.00627682 0.00373813 0.00359581) 14532
(0.00669481 0.00369136 0.00352419) 14473
(0.00809528 0.00365051 0.0034543) 14476
(0.00613358 0.00384752 0.00376824) 14532
(0.00606179 0.00383793 0.00380819) 14592
(0.00776038 0.00374155 0.00368766) 14535
(0.0070204 0.00507631 0.00438729) 14834
(0.00730863 0.00506538 0.00441898) 14834
(0.00804083 0.00502043 0.00442066) 14836
(0.00698782 0.00532075 0.00439547) 14893
(0.00784726 0.00529706 0.00437635) 14895
(0.00335068 0.00643039 0.00294592) 13506
(0.00403399 0.00636411 0.00287089) 13508
(0.00429599 0.00641459 0.00287846) 13508
(0.00609543 0.00639856 0.00311005) 15252
(0.0067298 0.00637207 0.00309056) 15253
(0.0189241 0.00693153 0.00356446) 2017
(0.0144334 0.00644138 0.00416626) 6688
(0.0150541 0.00643127 0.00416126) 6690
(0.0211854 0.00632299 0.00194818) 13482
(0.0233021 0.00647468 0.00217844) 13426
(0.0243555 0.00666765 0.00224418) 6108
(0.0192542 0.00668141 0.00417639) 1898
(0.0217785 0.00670097 0.0041018) 1963
(0.018186 0.00366578 0.00470836) 10536
(0.0198296 0.0036915 0.00473422) 10539
(0.0181599 0.00332273 0.00162938) 396
(0.0201383 0.00325388 0.00172909) 460
(0.0188289 0.00589817 0.00506007) 12577
(0.0188289 0.00589817 0.00506007) 12577
(0.0188289 0.00589817 0.00506007) 12577
(0.0208194 0.00592394 0.00501265) 12581
(0.0208194 0.00592394 0.00501265) 12581
(0.0208194 0.00592394 0.00501265) 12581
(0.0219711 0.00603976 0.0049648) 12343
(0.018615 0.00403631 0.00493288) 10537
(0.0184369 0.00373112 0.00141124) 9216
(0.0189585 0.00412499 0.00126131) 11497
(0.0189426 0.00476891 0.000906874) 11617
(0.0207058 0.00466852 0.000932255) 11561
(0.0178736 0.00591825 0.000957944) 12155
(0.019521 0.00591399 0.000950023) 12159
(0.0189872 0.0053147 0.000762405) 11857
(0.0210072 0.00525543 0.000771655) 11922
(0.0182558 0.00530215 0.00526662) 11076
(0.0199742 0.00531286 0.00523154) 11439
(0.0210836 0.00544992 0.00524232) 12522
(0.0206746 0.00302166 0.00324133) 761
(0.0238223 0.00299545 0.00322811) 33840
(0.024447 0.00291657 0.00326298) 33985
(0.0182627 0.00673195 0.00156631) 2496
(0.0182627 0.00673195 0.00156631) 2496
(0.0182627 0.00673195 0.00156631) 2496
(0.0207454 0.00666393 0.0016505) 2501
(0.0222945 0.00663727 0.00161159) 2504
(0.0227067 0.00617482 0.00167625) 13485
(0.00885761 0.00643071 0.00286913) 13517
(0.00885761 0.00643071 0.00286913) 13517
(0.00885761 0.00643071 0.00286913) 13517
(0.00932951 0.00643494 0.00286982) 13518
(0.00977463 0.00643735 0.00286939) 13519
(0.0102433 0.0064364 0.00286906) 13520
(0.0107612 0.00643111 0.00287162) 13521
(0.0112719 0.00642649 0.00287602) 13522
(0.00858885 0.00634607 0.00256126) 13577
(0.00861293 0.00584094 0.00188303) 13757
(0.0100736 0.00583142 0.00186661) 13760
(0.00859589 0.0055925 0.00172314) 13817
(0.00899702 0.00466569 0.00161546) 13997
(0.00885705 0.00439245 0.00170768) 14057
(0.00885705 0.00439245 0.00170768) 14057
(0.00885705 0.00439245 0.00170768) 14057
(0.00929299 0.00439325 0.00170213) 14058
(0.00966673 0.00439171 0.00169497) 14059
(0.010079 0.00439207 0.00169209) 14060
(0.0105783 0.00439437 0.00169759) 14061
(0.0111188 0.00439734 0.00170539) 14062
(0.00885134 0.00417113 0.00183256) 14117
(0.00885134 0.00417113 0.00183256) 14117
(0.00885134 0.00417113 0.00183256) 14117
(0.0101324 0.00416141 0.00182445) 14120
(0.0106367 0.00416479 0.00182958) 14121
(0.0111737 0.00417131 0.00183514) 14122
(0.00863801 0.00396001 0.00205101) 14177
(0.00857964 0.00359627 0.00316776) 14417
(0.00881883 0.0036372 0.00345648) 14477
(0.00881883 0.0036372 0.00345648) 14477
(0.00881883 0.0036372 0.00345648) 14477
(0.0102498 0.00361867 0.00345697) 14480
(0.0107721 0.0036268 0.00345618) 14481
(0.011273 0.00363261 0.00345859) 14482
(0.00876871 0.00373267 0.00368691) 14537
(0.00876871 0.00373267 0.00368691) 14537
(0.00876871 0.00373267 0.00368691) 14537
(0.0102884 0.003729 0.00369898) 14540
(0.0107972 0.00373434 0.00369519) 14541
(0.0112932 0.00373832 0.0036934) 14542
(0.00860419 0.0047066 0.00438161) 14777
(0.00900735 0.00470285 0.00439253) 14778
(0.00871901 0.00499801 0.00442254) 14837
(0.0100831 0.00499774 0.00443628) 14840
(0.0106017 0.00499901 0.00442954) 14841
(0.00949055 0.00527847 0.00440549) 14898
(0.00995494 0.00528012 0.00440397) 14899
(0.00847873 0.00622864 0.00365974) 15136
(0.00916969 0.00636578 0.00340552) 15198
(0.00957848 0.0063696 0.00340657) 15199
(0.00890312 0.00642628 0.00311959) 15257
(0.00890312 0.00642628 0.00311959) 15257
(0.00890312 0.00642628 0.00311959) 15257
(0.0093823 0.00642856 0.0031261) 15258
(0.00983621 0.00642943 0.00313062) 15259
(0.0103074 0.00642865 0.00313274) 15260
(0.0108132 0.00642454 0.00313356) 15261
(0.0113121 0.00642101 0.00313457) 15262
(0.00529913 0.00641612 0.00290946) 13510
(0.00546665 0.00643772 0.00293207) 13510
(0.0058731 0.00644944 0.00294374) 13511
(0.00678485 0.0064115 0.00284344) 13513
(0.0079204 0.0058307 0.00187401) 13755
(0.00786242 0.0055739 0.00171978) 13815
(0.00324469 0.00431736 0.00166341) 5706
(0.00487174 0.00452518 0.00158336) 5709
(0.0056809 0.00450476 0.00167783) 14051
(0.00660816 0.0044616 0.0017391) 14053
(0.0036694 0.00420422 0.00174433) 14107
(0.0076247 0.00415682 0.0018817) 14115
(0.00814198 0.00415722 0.00185445) 14116
(0.00635269 0.00373976 0.00358747) 14532
(0.00666562 0.00369381 0.00352931) 14473
(0.00807016 0.00365121 0.00345471) 14476
(0.00618202 0.00384672 0.00375617) 14532
(0.00604093 0.00383963 0.0038104) 14592
(0.00772473 0.00374249 0.00368812) 14535
(0.00701961 0.00507549 0.00438453) 14834
(0.00730791 0.0050665 0.00441631) 14834
(0.00802091 0.00502136 0.00442026) 14836
(0.00696595 0.00532098 0.00439554) 14893
(0.00782618 0.00529699 0.00437662) 14895
(0.00333588 0.00643157 0.00294726) 13506
(0.00403611 0.00636307 0.00287049) 13508
(0.00429975 0.00641356 0.002878) 13508
(0.00607221 0.00639862 0.00311075) 15252
(0.00667783 0.00637676 0.00309182) 15253
(0.0188859 0.00692858 0.00356953) 2017
(0.0144166 0.00644133 0.00416611) 6688
(0.0150385 0.00643112 0.00416106) 6690
(0.0209996 0.00633396 0.00194936) 13481
(0.0232572 0.00646488 0.00216986) 13426
(0.0243168 0.00666369 0.00224676) 6108
(0.0191431 0.00668375 0.00418093) 1898
(0.0217224 0.00669362 0.00410763) 1963
(0.0181308 0.00366423 0.00470817) 10536
(0.0197903 0.0036886 0.00473032) 10539
(0.0180945 0.00332619 0.0016236) 396
(0.0200862 0.00325878 0.00172544) 460
(0.0190195 0.00616672 0.00477818) 12218
(0.0187566 0.00589635 0.00506315) 12577
(0.0187566 0.00589635 0.00506315) 12577
(0.0187566 0.00589635 0.00506315) 12577
(0.0207692 0.00592072 0.00501399) 12581
(0.0207692 0.00592072 0.00501399) 12581
(0.0207692 0.00592072 0.00501399) 12581
(0.0219523 0.00603075 0.00496912) 12343
(0.0185684 0.0040337 0.00492929) 10537
(0.0183424 0.00373324 0.00140736) 9216
(0.0188562 0.00412899 0.00125843) 11497
(0.0215524 0.00402933 0.00126695) 12763
(0.0188762 0.00477288 0.000905117) 11617
(0.0206664 0.0046752 0.000932285) 11561
(0.0178263 0.00591992 0.000958762) 12275
(0.0194749 0.00591561 0.000952228) 12158
(0.0189136 0.00531921 0.000762082) 11857
(0.0209643 0.00525927 0.000774447) 11921
(0.0181965 0.00530165 0.00526882) 11076
(0.0199275 0.00531011 0.00523173) 11439
(0.0210749 0.00543795 0.00524108) 12522
(0.0205456 0.00301736 0.00324021) 761
(0.0237592 0.00300035 0.00322789) 767
(0.0244593 0.00291828 0.00325782) 33985
(0.018197 0.00673641 0.00156408) 2496
(0.020679 0.00666584 0.00165074) 2501
(0.0222512 0.00663894 0.00161502) 2504
(0.0226902 0.00616831 0.00167366) 13485
(0.00883489 0.00643076 0.00286905) 13517
(0.00883489 0.00643076 0.00286905) 13517
(0.00883489 0.00643076 0.00286905) 13517
(0.00930656 0.00643503 0.00286975) 13518
(0.00975114 0.00643746 0.00286939) 13519
(0.0102181 0.00643668 0.00286902) 13520
(0.0107359 0.0064314 0.00287145) 13521
(0.0112482 0.00642673 0.00287581) 13522
(0.00856618 0.00634615 0.00256118) 13577
(0.00858995 0.00584105 0.00188296) 13757
(0.0100487 0.00583154 0.0018663) 13760
(0.00857322 0.00559239 0.00172289) 13817
(0.00897357 0.00466572 0.00161523) 13997
(0.00883456 0.00439236 0.00170757) 14057
(0.00883456 0.00439236 0.00170757) 14057
(0.00883456 0.00439236 0.00170757) 14057
(0.00927048 0.00439319 0.001702) 14058
(0.00964459 0.00439169 0.00169495) 14059
(0.0100551 0.00439199 0.00169187) 14060
(0.0105521 0.00439425 0.00169716) 14061
(0.0110924 0.00439715 0.00170497) 14062
(0.00882822 0.00417088 0.0018324) 14117
(0.00882822 0.00417088 0.0018324) 14117
(0.00882822 0.00417088 0.0018324) 14117
(0.00929338 0.00417029 0.00182859) 14118
(0.010108 0.00416133 0.00182419) 14120
(0.0106107 0.00416448 0.00182928) 14121
(0.0111477 0.00417095 0.00183482) 14122
(0.00861462 0.00395977 0.00205085) 14177
(0.00855726 0.00359613 0.00316817) 14417
(0.0089969 0.00357971 0.00317006) 14417
(0.0087948 0.00363749 0.00345667) 14477
(0.0087948 0.00363749 0.00345667) 14477
(0.0087948 0.00363749 0.00345667) 14477
(0.0102236 0.00361826 0.00345717) 14480
(0.0107472 0.00362645 0.00345622) 14481
(0.0112497 0.00363235 0.00345849) 14482
(0.00874188 0.00373265 0.00368694) 14537
(0.00874188 0.00373265 0.00368694) 14537
(0.00874188 0.00373265 0.00368694) 14537
(0.010263 0.00372865 0.00369923) 14540
(0.0107728 0.00373411 0.00369541) 14541
(0.0112696 0.00373808 0.00369351) 14542
(0.00858208 0.00470682 0.0043818) 14777
(0.00898465 0.00470286 0.00439272) 14777
(0.00869577 0.00499815 0.00442279) 14837
(0.0100581 0.00499769 0.0044366) 14840
(0.0105767 0.00499891 0.0044299) 14841
(0.00946749 0.00527849 0.00440556) 14898
(0.00992959 0.00528009 0.00440436) 14899
(0.00845526 0.00622873 0.00366011) 15136
(0.00914611 0.00636596 0.00340555) 15198
(0.00955527 0.0063697 0.00340651) 15199
(0.00888061 0.00642635 0.00311955) 15257
(0.00888061 0.00642635 0.00311955) 15257
(0.00888061 0.00642635 0.00311955) 15257
(0.00935949 0.00642869 0.00312599) 15258
(0.00981267 0.00642956 0.00313052) 15259
(0.0102826 0.00642888 0.00313273) 15260
(0.0107888 0.00642477 0.00313354) 15261
(0.0112888 0.00642118 0.00313453) 15262
(0.00528498 0.00641547 0.00290656) 13510
(0.005451 0.00643707 0.00293056) 13510
(0.00588508 0.00644794 0.0029445) 13511
(0.00671033 0.00641796 0.0028469) 13513
(0.00790092 0.00583363 0.00187594) 13755
(0.00784459 0.00557379 0.00171988) 13815
(0.0035577 0.00431991 0.00166622) 5707
(0.00487046 0.00452149 0.00158112) 5709
(0.00562427 0.00450862 0.00167245) 14051
(0.0065502 0.00446249 0.00173367) 14053
(0.00390351 0.00420785 0.00174525) 14107
(0.00495187 0.00413686 0.00167901) 5649
(0.00761306 0.00415906 0.00188328) 14115
(0.00812262 0.00415727 0.0018555) 14116
(0.00643238 0.00374133 0.00357816) 14532
(0.00664279 0.00369632 0.00353418) 14473
(0.00804494 0.00365194 0.00345515) 14476
(0.00602121 0.00384126 0.00381229) 14592
(0.00768845 0.00374345 0.00368856) 14535
(0.00701975 0.00507462 0.00438147) 14834
(0.00730744 0.00506746 0.00441352) 14834
(0.00800111 0.00502231 0.00441983) 14836
(0.00694419 0.0053212 0.00439561) 14893
(0.00780521 0.00529699 0.00437681) 14895
(0.00331706 0.00643323 0.00294917) 13506
(0.00405633 0.00636148 0.00286814) 13508
(0.00417433 0.00641297 0.00288042) 13508
(0.00604904 0.00639869 0.00311146) 15252
(0.00662276 0.00638187 0.00309347) 15253
(0.0188469 0.00692577 0.0035746) 2017
(0.0143998 0.00644127 0.00416595) 6688
(0.0150229 0.00643099 0.00416084) 6690
(0.0207987 0.0063479 0.00195208) 13481
(0.0232114 0.00645517 0.00216104) 13426
(0.0242766 0.00665955 0.00224921) 6108
(0.0190427 0.00668392 0.0041866) 1898
(0.0216637 0.00668643 0.00411338) 1963
(0.0180742 0.00366251 0.00470815) 10536
(0.0197491 0.0036859 0.00472671) 10539
(0.0180357 0.00333049 0.0016175) 396
(0.0200328 0.00326354 0.00172177) 460
(0.0189611 0.00616333 0.00478117) 12217
(0.0186849 0.0058945 0.0050663) 12577
(0.0186849 0.0058945 0.0050663) 12577
(0.0186849 0.0058945 0.0050663) 12577
(0.0207171 0.00591768 0.00501531) 12581
(0.0207171 0.00591768 0.00501531) 12581
(0.0207171 0.00591768 0.00501531) 12581
(0.0219323 0.00602207 0.0049731) 12343
(0.018522 0.00403114 0.00492578) 10537
(0.0182513 0.00373535 0.00140321) 9216
(0.0187551 0.00413292 0.00125532) 11497
(0.0214745 0.00403448 0.00126829) 12762
(0.0188104 0.00477696 0.000903276) 11617
(0.020625 0.00468172 0.000932286) 11561
(0.0177797 0.00592165 0.000959626) 12275
(0.019428 0.00591706 0.00095426) 12158
(0.0188417 0.00532388 0.00076177) 11857
(0.0209185 0.00526287 0.000777009) 11921
(0.0181374 0.00530111 0.00527113) 11076
(0.0198798 0.00530761 0.005232) 11439
(0.021064 0.0054266 0.00523986) 12522
(0.0204181 0.00301315 0.00323891) 760
(0.0236895 0.00300533 0.00322783) 767
(0.02447 0.0029202 0.00325299) 33985
(0.0181336 0.00674079 0.00156187) 2496
(0.0206109 0.00666783 0.00165078) 2501
(0.0222096 0.00664059 0.00161871) 2504
(0.0226704 0.00616162 0.00167061) 13485
(0.00881215 0.00643081 0.00286898) 13517
(0.00881215 0.00643081 0.00286898) 13517
(0.00881215 0.00643081 0.00286898) 13517
(0.00928365 0.00643511 0.00286967) 13518
(0.00972773 0.00643757 0.00286939) 13519
(0.010193 0.00643695 0.00286899) 13520
(0.0107106 0.00643169 0.00287129) 13521
(0.0112244 0.00642697 0.00287561) 13522
(0.00854357 0.00634624 0.00256111) 13577
(0.00856704 0.00584117 0.00188289) 13757
(0.0100237 0.00583166 0.00186597) 13760
(0.0085506 0.00559228 0.00172263) 13817
(0.00895003 0.00466575 0.001615) 13997
(0.00881204 0.00439227 0.00170745) 14057
(0.00881204 0.00439227 0.00170745) 14057
(0.00881204 0.00439227 0.00170745) 14057
(0.00924795 0.00439314 0.00170186) 14058
(0.0096225 0.00439166 0.00169493) 14059
(0.0100313 0.00439192 0.00169166) 14060
(0.010526 0.00439413 0.00169674) 14061
(0.0110659 0.00439697 0.00170455) 14062
(0.00880511 0.00417062 0.00183225) 14117
(0.00880511 0.00417062 0.00183225) 14117
(0.00880511 0.00417062 0.00183225) 14117
(0.00927011 0.00417013 0.00182846) 14118
(0.0100837 0.00416126 0.00182393) 14120
(0.0105848 0.00416418 0.00182898) 14121
(0.0111218 0.0041706 0.00183451) 14122
(0.00859123 0.00395953 0.0020507) 14177
(0.00853489 0.00359599 0.00316857) 14417
(0.00897369 0.00357962 0.00317027) 14417
(0.00877073 0.00363778 0.00345687) 14477
(0.00877073 0.00363778 0.00345687) 14477
(0.00877073 0.00363778 0.00345687) 14477
(0.0101973 0.00361784 0.00345736) 14480
(0.0107222 0.0036261 0.00345628) 14481
(0.0112263 0.00363208 0.00345839) 14482
(0.00871492 0.00373264 0.00368697) 14537
(0.00871492 0.00373264 0.00368697) 14537
(0.00871492 0.00373264 0.00368697) 14537
(0.0102375 0.00372831 0.00369947) 14540
(0.0107483 0.00373388 0.00369565) 14541
(0.0112459 0.00373785 0.00369363) 14542
(0.0085599 0.00470706 0.004382) 14777
(0.00896192 0.00470287 0.00439291) 14777
(0.00867254 0.0049983 0.00442304) 14837
(0.0100332 0.00499765 0.0044369) 14840
(0.0105517 0.00499882 0.00443027) 14841
(0.00944453 0.00527851 0.00440562) 14898
(0.00990434 0.00528007 0.00440474) 14899
(0.00843181 0.00622882 0.00366047) 15136
(0.00912247 0.00636615 0.00340559) 15198
(0.00953209 0.00636981 0.00340646) 15199
(0.00885807 0.00642643 0.00311952) 15257
(0.00885807 0.00642643 0.00311952) 15257
(0.00885807 0.00642643 0.00311952) 15257
(0.0093367 0.00642882 0.00312589) 15258
(0.00978919 0.00642969 0.00313041) 15259
(0.0102578 0.00642911 0.00313272) 15260
(0.0107643 0.006425 0.00313353) 15261
(0.0112655 0.00642134 0.00313448) 15262
(0.00528297 0.00641465 0.00290576) 13510
(0.00545198 0.0064363 0.00293056) 13510
(0.00589178 0.00644653 0.00294499) 13511
(0.0066387 0.00642398 0.00285106) 13513
(0.0078825 0.00583641 0.00187802) 13755
(0.00782719 0.00557367 0.00172008) 13815
(0.0038375 0.00432087 0.00166484) 5707
(0.00486708 0.00451739 0.00157876) 5709
(0.00556843 0.00451225 0.00166673) 14051
(0.00649157 0.00446348 0.00172831) 14052
(0.00412285 0.00420881 0.0017467) 14108
(0.0049049 0.00412821 0.00169646) 5649
(0.00761174 0.0041613 0.00188514) 14115
(0.00810354 0.0041574 0.00185659) 14116
(0.00650216 0.00374365 0.0035689) 14533
(0.00662729 0.00369881 0.00353853) 14473
(0.00801958 0.0036527 0.00345562) 14476
(0.00603963 0.00383967 0.00380851) 14592
(0.00765148 0.00374443 0.00368899) 14535
(0.00702002 0.0050736 0.00437812) 14834
(0.00730626 0.00506818 0.00441083) 14834
(0.00798145 0.00502332 0.00441933) 14835
(0.00692264 0.00532141 0.00439567) 14893
(0.00778425 0.00529702 0.00437695) 14895
(0.00329465 0.00643519 0.00295159) 13506
(0.00407436 0.00635984 0.00286602) 13508
(0.00412124 0.00641197 0.00288124) 13508
(0.00602595 0.00639878 0.00311217) 15252
(0.00656452 0.00638743 0.00309547) 15253
(0.0188069 0.00692313 0.00357968) 2017
(0.0143829 0.00644121 0.0041658) 6688
(0.0150073 0.00643087 0.00416061) 6690
(0.0205828 0.00636544 0.00195672) 13481
(0.0231644 0.00644547 0.00215187) 13426
(0.0242354 0.00665521 0.00225153) 6108
(0.0189511 0.00668305 0.00419284) 1897
(0.0216023 0.00667949 0.00411899) 1963
(0.018016 0.00366049 0.00470829) 10536
(0.0197062 0.00368337 0.00472337) 10539
(0.0179777 0.00333468 0.00161123) 395
(0.0199779 0.00326817 0.00171809) 459
(0.0189031 0.00616001 0.00478424) 12217
(0.0186137 0.00589262 0.00506953) 12577
(0.0186137 0.00589262 0.00506953) 12577
(0.0186137 0.00589262 0.00506953) 12577
(0.0206631 0.00591483 0.00501662) 12581
(0.0206631 0.00591483 0.00501662) 12581
(0.0206631 0.00591483 0.00501662) 12581
(0.021911 0.00601379 0.00497679) 12343
(0.0184754 0.00402863 0.00492238) 10536
(0.0181636 0.00373737 0.00139883) 9216
(0.0186553 0.00413662 0.0012519) 11497
(0.0213941 0.00403962 0.00126954) 12762
(0.0187451 0.00478115 0.000901349) 11617
(0.0205815 0.00468805 0.000932257) 11561
(0.017734 0.00592346 0.000960559) 12275
(0.0193803 0.00591834 0.000956117) 12158
(0.0187708 0.00532869 0.000761447) 11857
(0.0208703 0.00526628 0.000779371) 11921
(0.0198311 0.00530538 0.00523234) 11439
(0.0210512 0.00541585 0.00523864) 12522
(0.0202876 0.00300904 0.00323744) 760
(0.0236134 0.00301035 0.00322793) 767
(0.0244785 0.00292231 0.00324853) 33984
(0.0180716 0.00674505 0.0015596) 2496
(0.020542 0.00666991 0.00165073) 2501
(0.0221697 0.00664222 0.00162265) 2504
(0.0226484 0.00615465 0.00166701) 13485
(0.0087894 0.00643085 0.00286892) 13517
(0.0087894 0.00643085 0.00286892) 13517
(0.0087894 0.00643085 0.00286892) 13517
(0.00926078 0.00643519 0.00286959) 13518
(0.00970439 0.00643767 0.00286939) 13519
(0.0101679 0.00643722 0.00286896) 13520
(0.0106851 0.00643199 0.00287114) 13521
(0.0112005 0.0064272 0.00287541) 13522
(0.00852101 0.00634632 0.00256104) 13577
(0.00854419 0.0058413 0.00188284) 13757
(0.0099986 0.00583178 0.00186562) 13759
(0.00852804 0.00559217 0.00172238) 13817
(0.00892638 0.00466578 0.00161476) 13997
(0.0092254 0.00439307 0.00170173) 14058
(0.00960044 0.00439164 0.00169491) 14059
(0.0100076 0.00439184 0.00169147) 14060
(0.0105 0.00439401 0.00169632) 14061
(0.0110393 0.0043968 0.00170413) 14062
(0.00878201 0.00417035 0.0018321) 14117
(0.00878201 0.00417035 0.0018321) 14117
(0.00878201 0.00417035 0.0018321) 14117
(0.0092468 0.00416996 0.00182833) 14118
(0.0100595 0.00416119 0.00182367) 14120
(0.0105589 0.00416388 0.00182868) 14121
(0.0110958 0.00417024 0.0018342) 14122
(0.00856788 0.00395929 0.00205054) 14177
(0.00851252 0.00359586 0.00316897) 14417
(0.00895052 0.00357954 0.0031705) 14417
(0.00874664 0.00363809 0.00345707) 14477
(0.00874664 0.00363809 0.00345707) 14477
(0.00874664 0.00363809 0.00345707) 14477
(0.010171 0.00361742 0.00345755) 14480
(0.0106971 0.00362574 0.00345634) 14481
(0.0112029 0.00363182 0.00345831) 14482
(0.00868781 0.00373262 0.003687) 14537
(0.00868781 0.00373262 0.003687) 14537
(0.00868781 0.00373262 0.003687) 14537
(0.0102119 0.00372797 0.00369972) 14540
(0.0107237 0.00373364 0.00369589) 14541
(0.0112222 0.00373761 0.00369376) 14542
(0.00853762 0.00470729 0.0043822) 14777
(0.00893917 0.00470289 0.00439311) 14777
(0.00864934 0.00499845 0.0044233) 14837
(0.0100083 0.00499759 0.0044372) 14840
(0.0105266 0.00499873 0.00443064) 14841
(0.00855222 0.0052793 0.00438891) 14897
(0.00942166 0.00527854 0.00440568) 14898
(0.00987919 0.00528003 0.00440511) 14899
(0.00840838 0.0062289 0.00366081) 15136
(0.00909874 0.00636635 0.00340564) 15198
(0.00950891 0.00636993 0.00340641) 15199
(0.00883547 0.00642651 0.0031195) 15257
(0.00883547 0.00642651 0.0031195) 15257
(0.00883547 0.00642651 0.0031195) 15257
(0.00931392 0.00642896 0.00312578) 15258
(0.00976577 0.00642982 0.00313031) 15259
(0.0102331 0.00642934 0.0031327) 15260
(0.0107398 0.00642524 0.00313352) 15261
(0.0112422 0.00642151 0.00313444) 15262
(0.0052938 0.00641192 0.0029078) 13510
(0.00543889 0.00643536 0.00292893) 13510
(0.00587646 0.00644504 0.00294528) 13511
(0.00658638 0.00642915 0.00285535) 13513
(0.00786517 0.00583895 0.00188021) 13755
(0.0078102 0.00557355 0.00172038) 13815
(0.00410089 0.00432013 0.00165913) 5708
(0.00485873 0.00451213 0.00157586) 5709
(0.00551771 0.00451558 0.00166131) 14051
(0.0064325 0.00446457 0.00172307) 14052
(0.00433064 0.00420697 0.00175067) 14108
(0.00486508 0.00414335 0.00170781) 5649
(0.00760067 0.00416389 0.00188703) 14115
(0.00808499 0.00415765 0.00185782) 14116
(0.00656767 0.00374627 0.00355916) 14533
(0.00661765 0.00370132 0.00354239) 14473
(0.00799407 0.00365349 0.00345611) 14475
(0.00605691 0.00383811 0.00380472) 14592
(0.00761378 0.00374544 0.00368943) 14535
(0.00702073 0.00507244 0.00437452) 14834
(0.007304 0.0050687 0.00440824) 14834
(0.00796203 0.00502441 0.00441873) 14835
(0.00690133 0.00532162 0.00439574) 14893
(0.00776326 0.00529705 0.00437706) 14895
(0.00327065 0.00643722 0.00295426) 13506
(0.00406753 0.00635937 0.00286651) 13508
(0.00420124 0.00641029 0.00287836) 13508
(0.00600293 0.00639888 0.00311299) 15252
(0.00649786 0.00639341 0.00309791) 15252
(0.0187659 0.0069206 0.00358476) 2017
(0.0143659 0.00644115 0.00416568) 6688
(0.0149916 0.00643076 0.00416037) 6689
(0.0203481 0.00638777 0.00196317) 13480
(0.0231164 0.00643592 0.0021425) 13426
(0.0241935 0.00665061 0.00225368) 6108
(0.0188618 0.00668196 0.00419953) 1897
(0.0215379 0.00667286 0.00412441) 1963
(0.0179556 0.00365808 0.00470853) 10535
(0.0196616 0.003681 0.00472028) 10539
(0.0179203 0.0033387 0.00160485) 395
(0.0199216 0.00327263 0.00171437) 459
(0.0188455 0.00615677 0.00478739) 12217
(0.0185432 0.0058907 0.00507283) 12577
(0.0185432 0.0058907 0.00507283) 12577
(0.0185432 0.0058907 0.00507283) 12577
(0.0206072 0.00591217 0.00501792) 12581
(0.0206072 0.00591217 0.00501792) 12581
(0.0206072 0.00591217 0.00501792) 12581
(0.0218908 0.00600559 0.00498016) 12343
(0.0184284 0.00402618 0.0049191) 10536
(0.018079 0.00373928 0.00139426) 9216
(0.0209387 0.00369208 0.00144458) 9221
(0.0185568 0.00413986 0.00124812) 11497
(0.0213118 0.00404481 0.00127072) 12762
(0.0186801 0.00478546 0.000899327) 11617
(0.0205359 0.00469421 0.000932195) 11621
(0.017689 0.00592534 0.000961582) 12275
(0.019332 0.00591945 0.000957805) 12278
(0.0187 0.00533357 0.000761074) 11857
(0.020819 0.00526947 0.000781498) 11921
(0.02169 0.00513364 0.000698298) 11923
(0.0197815 0.00530341 0.00523275) 11439
(0.0210364 0.00540571 0.00523742) 11442
(0.0201476 0.00300438 0.00323592) 760
(0.0235301 0.0030153 0.00322817) 767
(0.0244848 0.0029246 0.00324439) 33984
(0.0180105 0.00674928 0.00155732) 2496
(0.0204719 0.0066721 0.00165052) 2500
(0.0221311 0.00664384 0.00162675) 2504
(0.0226215 0.00614764 0.00166315) 13485
(0.00876662 0.0064309 0.00286887) 13517
(0.00876662 0.0064309 0.00286887) 13517
(0.00876662 0.0064309 0.00286887) 13517
(0.00923793 0.00643527 0.0028695) 13518
(0.00968113 0.00643777 0.0028694) 13519
(0.0101429 0.00643748 0.00286893) 13520
(0.0106597 0.0064323 0.00287099) 13521
(0.0111765 0.00642743 0.00287521) 13522
(0.00849851 0.0063464 0.00256098) 13576
(0.00890712 0.00636311 0.00257257) 13577
(0.00852142 0.00584144 0.0018828) 13757
(0.00997337 0.0058319 0.00186527) 13759
(0.00850551 0.00559204 0.00172212) 13817
(0.00890262 0.00466583 0.0016145) 13997
(0.00920282 0.00439301 0.00170158) 14058
(0.00957842 0.00439161 0.00169489) 14059
(0.00998401 0.00439176 0.00169128) 14059
(0.0104741 0.0043939 0.0016959) 14060
(0.0110127 0.00439663 0.00170371) 14062
(0.00875892 0.00417009 0.00183195) 14117
(0.00875892 0.00417009 0.00183195) 14117
(0.00875892 0.00417009 0.00183195) 14117
(0.00922348 0.00416978 0.00182819) 14118
(0.0100353 0.00416113 0.00182342) 14120
(0.010533 0.00416359 0.00182838) 14121
(0.0110697 0.00416989 0.00183389) 14122
(0.00854456 0.00395906 0.00205037) 14177
(0.00849015 0.00359575 0.00316935) 14416
(0.0089274 0.00357947 0.00317072) 14417
(0.00872252 0.00363841 0.00345728) 14477
(0.00872252 0.00363841 0.00345728) 14477
(0.00872252 0.00363841 0.00345728) 14477
(0.0101446 0.003617 0.00345775) 14480
(0.0106718 0.00362536 0.00345642) 14481
(0.0111794 0.00363156 0.00345822) 14482
(0.00866055 0.00373261 0.00368703) 14537
(0.00866055 0.00373261 0.00368703) 14537
(0.00866055 0.00373261 0.00368703) 14537
(0.0101863 0.00372762 0.00369997) 14540
(0.010699 0.00373339 0.00369615) 14541
(0.0111984 0.00373738 0.00369388) 14542
(0.00891639 0.00470292 0.00439331) 14777
(0.00862615 0.0049986 0.00442355) 14837
(0.00998349 0.00499754 0.0044375) 14839
(0.0105016 0.00499864 0.00443102) 14841
(0.00852886 0.00527942 0.00438909) 14897
(0.00939888 0.00527858 0.00440572) 14898
(0.00985413 0.00527998 0.00440547) 14899
(0.00838497 0.00622899 0.00366115) 15136
(0.00907493 0.00636655 0.0034057) 15198
(0.00948574 0.00637004 0.00340637) 15198
(0.00929115 0.00642909 0.00312568) 15258
(0.00974242 0.00642995 0.00313021) 15259
(0.0102085 0.00642957 0.00313268) 15260
(0.0107153 0.00642548 0.0031335) 15261
(0.0112188 0.00642168 0.0031344) 15262
(0.00530533 0.00640914 0.00290966) 13510
(0.00544124 0.00643431 0.00292884) 13510
(0.00585909 0.00644401 0.00294533) 13511
(0.00647487 0.00643579 0.0028628) 13512
(0.00784876 0.00584119 0.00188246) 13755
(0.00779463 0.00557339 0.00172091) 13815
(0.00439004 0.00431657 0.00164715) 5708
(0.00484718 0.00450499 0.00157256) 5709
(0.00546671 0.00451893 0.00165609) 14050
(0.00638204 0.00446636 0.00171906) 14052
(0.00451442 0.00419884 0.00176394) 14109
(0.00479646 0.00417708 0.00170493) 5649
(0.00758944 0.00416669 0.00188904) 14115
(0.00806648 0.00415802 0.00185892) 14116
(0.00661427 0.00370384 0.00354578) 14473
(0.00796839 0.00365432 0.00345663) 14475
(0.00604338 0.00383939 0.00380523) 14592
(0.00757532 0.00374649 0.0036899) 14535
(0.00702212 0.00507115 0.00437047) 14834
(0.00730081 0.00506898 0.00440575) 14834
(0.00794273 0.00502552 0.00441809) 14835
(0.0068807 0.00532182 0.0043958) 14893
(0.00774229 0.00529708 0.00437715) 14895
(0.00323562 0.00644009 0.00295837) 13506
(0.00405652 0.00635852 0.00286761) 13508
(0.00424218 0.00640882 0.00287683) 13508
(0.0057655 0.00642535 0.00312055) 15251
(0.00643615 0.00639777 0.00310016) 15252
(0.0187235 0.00691827 0.00358983) 2017
(0.0143487 0.00644107 0.00416557) 6688
(0.0149759 0.00643066 0.00416013) 6689
(0.0230671 0.00642639 0.00213269) 13426
(0.0241508 0.00664576 0.0022556) 6108
(0.0187735 0.00668067 0.00420667) 1897
(0.021471 0.00666663 0.00412957) 1962
(0.017893 0.00365513 0.00470882) 10535
(0.0196154 0.00367877 0.00471743) 10539
(0.0178634 0.00334253 0.00159839) 395
(0.019864 0.00327696 0.00171063) 459
(0.0187886 0.00615359 0.00479065) 12217
(0.0184734 0.00588872 0.00507619) 12576
(0.0184734 0.00588872 0.00507619) 12576
(0.0184734 0.00588872 0.00507619) 12576
(0.0205494 0.00590969 0.00501922) 12581
(0.0205494 0.00590969 0.00501922) 12581
(0.0205494 0.00590969 0.00501922) 12581
(0.0218719 0.00599749 0.00498327) 12343
(0.0183807 0.00402378 0.00491595) 10536
(0.0179973 0.00374107 0.00138956) 9215
(0.0208483 0.00369519 0.00144448) 9221
(0.0184587 0.00414231 0.00124405) 11496
(0.0212276 0.00404997 0.00127179) 12762
(0.0186155 0.00478987 0.000897201) 11617
(0.0204883 0.00470019 0.000932096) 11620
(0.0176448 0.00592731 0.000962717) 12275
(0.019283 0.00592041 0.000959329) 12278
(0.0186293 0.00533853 0.000760658) 11857
(0.0207652 0.00527251 0.000783425) 11921
(0.0217038 0.00514462 0.000705122) 11923
(0.0197309 0.00530171 0.0052332) 11439
(0.0210193 0.00539618 0.00523622) 11442
(0.0199939 0.00299894 0.00323442) 32688
(0.0234403 0.00302014 0.00322853) 766
(0.0244892 0.00292703 0.00324057) 33984
(0.0179498 0.00675338 0.00155498) 2495
(0.0204013 0.0066744 0.00165026) 2500
(0.0220908 0.00664534 0.00163061) 2504
(0.0225907 0.0061404 0.0016588) 13485
(0.00874382 0.00643094 0.00286882) 13517
(0.00874382 0.00643094 0.00286882) 13517
(0.00874382 0.00643094 0.00286882) 13517
(0.00921511 0.00643534 0.00286941) 13518
(0.00965793 0.00643786 0.0028694) 13519
(0.010118 0.00643773 0.00286891) 13520
(0.0106342 0.00643261 0.00287084) 13521
(0.0111525 0.00642767 0.00287501) 13522
(0.00847605 0.00634648 0.00256095) 13576
(0.00888398 0.00636317 0.00257245) 13577
(0.00849871 0.00584158 0.00188276) 13756
(0.00994805 0.00583202 0.00186491) 13759
(0.00848304 0.00559191 0.00172186) 13816
(0.00887876 0.0046659 0.00161424) 13997
(0.00918023 0.00439294 0.00170144) 14058
(0.00955643 0.00439159 0.00169488) 14059
(0.0099605 0.00439168 0.0016911) 14059
(0.0104481 0.00439379 0.00169549) 14060
(0.010986 0.00439646 0.00170328) 14061
(0.00873584 0.00416982 0.0018318) 14117
(0.00873584 0.00416982 0.0018318) 14117
(0.00873584 0.00416982 0.0018318) 14117
(0.00920013 0.00416958 0.00182805) 14118
(0.0100112 0.00416108 0.00182317) 14120
(0.0105072 0.0041633 0.00182809) 14121
(0.0110436 0.00416953 0.00183359) 14122
(0.00852127 0.00395884 0.00205021) 14177
(0.00846778 0.00359564 0.00316973) 14416
(0.00890432 0.0035794 0.00317095) 14417
(0.00869835 0.00363874 0.00345749) 14477
(0.00869835 0.00363874 0.00345749) 14477
(0.00869835 0.00363874 0.00345749) 14477
(0.0101181 0.00361659 0.00345794) 14480
(0.0106465 0.00362497 0.0034565) 14481
(0.0111558 0.00363129 0.00345815) 14482
(0.00863312 0.00373261 0.00368705) 14537
(0.00863312 0.00373261 0.00368705) 14537
(0.00863312 0.00373261 0.00368705) 14537
(0.00919589 0.00372856 0.00369266) 14538
(0.0101606 0.00372728 0.00370022) 14540
(0.0106743 0.00373314 0.00369641) 14541
(0.0111746 0.00373715 0.00369401) 14542
(0.00889359 0.00470295 0.00439351) 14777
(0.00860298 0.00499877 0.00442379) 14837
(0.00995873 0.00499748 0.00443778) 14839
(0.0104765 0.00499856 0.0044314) 14840
(0.00850552 0.00527951 0.00438926) 14897
(0.00937619 0.00527861 0.00440576) 14898
(0.00982915 0.00527992 0.00440582) 14899
(0.00836159 0.00622908 0.00366147) 15136
(0.00905102 0.00636674 0.00340579) 15198
(0.00946257 0.00637016 0.00340634) 15198
(0.00926839 0.00642922 0.00312558) 15258
(0.00971912 0.00643008 0.0031301) 15259
(0.0101838 0.00642979 0.00313266) 15260
(0.0106907 0.00642572 0.00313349) 15261
(0.0111953 0.00642185 0.00313436) 15262
(0.00532484 0.00640667 0.00291231) 13510
(0.00542838 0.00643326 0.00292717) 13510
(0.00583817 0.00644372 0.00294502) 13511
(0.0063287 0.00644358 0.00287547) 13512
(0.00783332 0.00584307 0.00188471) 13755
(0.00777914 0.00557323 0.00172157) 13815
(0.00468898 0.00430879 0.00162906) 5709
(0.00483602 0.00449674 0.00156878) 5709
(0.00536295 0.0045261 0.00164575) 14050
(0.00635206 0.00446781 0.00171795) 14052
(0.0046072 0.00418617 0.00177897) 14109
(0.00467578 0.00421279 0.00170116) 5649
(0.00758942 0.00417041 0.0018918) 14115
(0.00804689 0.00415843 0.00185949) 14116
(0.00661656 0.00370639 0.00354859) 14473
(0.00794251 0.00365518 0.00345717) 14475
(0.00606222 0.00383766 0.00380086) 14592
(0.00753611 0.0037476 0.00369041) 14535
(0.00729715 0.00506902 0.00440337) 14834
(0.00792338 0.00502655 0.00441746) 14835
(0.00686121 0.005322 0.00439583) 14893
(0.00772141 0.00529712 0.00437724) 14895
(0.00318744 0.00644406 0.00296423) 13506
(0.00405549 0.00635754 0.00286751) 13508
(0.00424098 0.00640766 0.00287618) 13508
(0.00590382 0.00639751 0.00317445) 15251
(0.00641352 0.00639763 0.00310077) 15252
(0.0186794 0.00691618 0.00359488) 2017
(0.0143315 0.006441 0.00416548) 6688
(0.0149603 0.00643056 0.00415988) 6689
(0.0230162 0.00641682 0.00212231) 13426
(0.0241075 0.00664064 0.00225727) 6108
(0.0186854 0.00667938 0.00421416) 1897
(0.0214007 0.00666096 0.00413438) 1962
(0.0184705 0.00628785 0.0010588) 12456
(0.017828 0.00365151 0.00470906) 10535
(0.0195676 0.00367666 0.00471481) 10539
(0.0178066 0.00334615 0.00159189) 395
(0.0198051 0.00328112 0.00170686) 459
(0.0187324 0.00615044 0.00479404) 12217
(0.0184043 0.00588668 0.00507963) 12576
(0.0184043 0.00588668 0.00507963) 12576
(0.0184043 0.00588668 0.00507963) 12576
(0.0204896 0.00590741 0.00502053) 12580
(0.0204896 0.00590741 0.00502053) 12580
(0.0204896 0.00590741 0.00502053) 12580
(0.0218522 0.0059897 0.00498613) 12343
(0.0183318 0.00402142 0.00491291) 10536
(0.0179179 0.0037427 0.00138482) 9215
(0.0207559 0.0036982 0.00144429) 9221
(0.0183607 0.00414377 0.00123976) 11496
(0.0211417 0.00405517 0.00127275) 12762
(0.018551 0.00479435 0.000894969) 11617
(0.0204387 0.004706 0.000931953) 11620
(0.0192336 0.00592119 0.000960684) 12278
(0.0185586 0.00534356 0.000760213) 11857
(0.0207087 0.00527542 0.000785138) 11921
(0.021715 0.00515498 0.000711797) 11923
(0.0196795 0.00530027 0.00523371) 11439
(0.0210003 0.00538722 0.00523504) 11442
(0.0198214 0.00299231 0.00323308) 32688
(0.0233438 0.00302479 0.003229) 766
(0.0244913 0.00292961 0.00323706) 33984
(0.0203307 0.00667678 0.00164998) 2500
(0.0220486 0.0066467 0.00163419) 2504
(0.0225552 0.00613285 0.00165389) 6045
(0.00872098 0.00643099 0.00286878) 13517
(0.00872098 0.00643099 0.00286878) 13517
(0.00872098 0.00643099 0.00286878) 13517
(0.00919231 0.00643542 0.0028693) 13518
(0.0096348 0.00643795 0.00286941) 13519
(0.0100932 0.00643798 0.00286889) 13520
(0.0106086 0.00643292 0.0028707) 13521
(0.0111284 0.0064279 0.00287482) 13522
(0.00845363 0.00634656 0.00256093) 13576
(0.0088609 0.00636323 0.00257231) 13577
(0.00847606 0.00584172 0.00188273) 13756
(0.00992264 0.00583216 0.00186455) 13759
(0.0084606 0.00559179 0.0017216) 13816
(0.00885478 0.00466597 0.00161396) 13997
(0.0091576 0.00439287 0.00170129) 14058
(0.00953446 0.00439156 0.00169486) 14059
(0.0099371 0.00439159 0.00169094) 14059
(0.0104223 0.00439368 0.00169508) 14060
(0.0109592 0.00439629 0.00170285) 14061
(0.00871277 0.00416956 0.00183164) 14117
(0.00871277 0.00416956 0.00183164) 14117
(0.00871277 0.00416956 0.00183164) 14117
(0.00917677 0.00416938 0.00182791) 14118
(0.00998722 0.00416103 0.00182293) 14119
(0.0104814 0.00416301 0.00182779) 14120
(0.0110175 0.00416918 0.00183328) 14122
(0.00849802 0.00395864 0.00205004) 14176
(0.00844541 0.00359554 0.00317011) 14416
(0.00888129 0.00357933 0.00317119) 14417
(0.00867415 0.00363908 0.00345771) 14477
(0.00867415 0.00363908 0.00345771) 14477
(0.00867415 0.00363908 0.00345771) 14477
(0.0100916 0.00361618 0.00345815) 14480
(0.010621 0.00362457 0.00345659) 14481
(0.0111322 0.00363103 0.00345808) 14482
(0.00860552 0.00373261 0.00368707) 14537
(0.00860552 0.00373261 0.00368707) 14537
(0.00860552 0.00373261 0.00368707) 14537
(0.00917083 0.00372859 0.00369266) 14538
(0.0101348 0.00372693 0.00370045) 14540
(0.0106495 0.00373289 0.00369668) 14541
(0.0111508 0.00373692 0.00369415) 14542
(0.00887077 0.00470299 0.00439371) 14777
(0.00857982 0.00499895 0.00442403) 14837
(0.00993404 0.00499743 0.00443806) 14839
(0.0104514 0.00499848 0.00443178) 14840
(0.00848222 0.00527961 0.00438944) 14896
(0.00935359 0.00527865 0.0044058) 14898
(0.00980425 0.00527986 0.00440616) 14899
(0.00833823 0.00622917 0.00366177) 15136
(0.00902701 0.00636695 0.00340589) 15198
(0.0094394 0.00637029 0.00340631) 15198
(0.00924563 0.00642935 0.00312549) 15258
(0.00969589 0.0064302 0.00313) 15259
(0.0101593 0.00643001 0.00313264) 15260
(0.010666 0.00642597 0.00313349) 15261
(0.0111718 0.00642202 0.00313433) 15262
(0.005335 0.00640408 0.0029132) 13510
(0.00541628 0.00643211 0.00292547) 13510
(0.00581762 0.00644339 0.00294468) 13511
(0.0061816 0.00645047 0.0028912) 13512
(0.00781838 0.00584454 0.00188689) 13755
(0.00776372 0.00557306 0.00172234) 13815
(0.00488835 0.00430166 0.00161382) 5709
(0.0048254 0.00448572 0.00156405) 5709
(0.00527757 0.00453199 0.00163699) 14050
(0.00630368 0.00446909 0.00171438) 14052
(0.00465234 0.00416881 0.00179832) 14109
(0.00443481 0.00424083 0.00170233) 5648
(0.00757727 0.00417381 0.00189389) 14115
(0.00802874 0.00415905 0.00186049) 14116
(0.00662278 0.00370908 0.00355119) 14473
(0.00791639 0.00365608 0.00345776) 14475
(0.006081 0.00383589 0.00379635) 14532
(0.00749592 0.00374871 0.00369091) 14534
(0.00729232 0.00506888 0.00440113) 14834
(0.00790391 0.00502749 0.00441687) 14835
(0.00683936 0.00532217 0.00439582) 14893
(0.00770053 0.00529722 0.00437726) 14895
(0.0031495 0.00644698 0.00296884) 13506
(0.00405181 0.006357 0.0028676) 13508
(0.00423697 0.00640637 0.00287543) 13508
(0.0058077 0.00640742 0.00317215) 15251
(0.00638996 0.00639759 0.00310141) 15252
(0.0186333 0.00691438 0.00359986) 2017
(0.0143142 0.00644094 0.0041654) 6688
(0.0149446 0.00643046 0.00415963) 6689
(0.0229637 0.00640732 0.00211167) 13425
(0.0240642 0.0066352 0.00225862) 6108
(0.018597 0.00667805 0.004222) 1897
(0.0213274 0.00665594 0.00413879) 1962
(0.0184451 0.00629259 0.00106219) 12456
(0.017761 0.00364706 0.00470916) 7175
(0.0195186 0.00367463 0.00471237) 10539
(0.0177499 0.00334956 0.00158536) 395
(0.019745 0.00328512 0.00170305) 459
(0.0186764 0.00614734 0.00479757) 12217
(0.0183358 0.00588456 0.00508317) 12576
(0.0183358 0.00588456 0.00508317) 12576
(0.0183358 0.00588456 0.00508317) 12576
(0.020428 0.00590531 0.00502186) 12580
(0.020428 0.00590531 0.00502186) 12580
(0.020428 0.00590531 0.00502186) 12580
(0.0218307 0.00598235 0.00498875) 12343
(0.0218307 0.00598235 0.00498875) 12343
(0.0218307 0.00598235 0.00498875) 12343
(0.0182815 0.00401905 0.00490996) 10536
(0.0178402 0.00374411 0.00138007) 9215
(0.0206622 0.00370115 0.00144402) 9221
(0.0182626 0.00414407 0.00123531) 11496
(0.0210541 0.00406039 0.00127357) 12762
(0.0184863 0.00479884 0.000892658) 11616
(0.0203871 0.00471165 0.000931756) 11620
(0.0191837 0.00592188 0.000961929) 12278
(0.0184868 0.00534863 0.000759662) 11856
(0.0206497 0.00527822 0.000786656) 11921
(0.0217232 0.00516475 0.000718268) 11923
(0.0196274 0.00529908 0.00523425) 11079
(0.0209795 0.0053788 0.0052339) 11441
(0.0196251 0.00298375 0.00323211) 32688
(0.0232401 0.00302912 0.00322959) 766
(0.0244914 0.00293231 0.00323385) 33984
(0.0202601 0.00667917 0.00164966) 2500
(0.0220057 0.00664803 0.00163769) 2504
(0.0225135 0.00612523 0.00164879) 6045
(0.00869812 0.00643104 0.00286875) 13517
(0.00869812 0.00643104 0.00286875) 13517
(0.00869812 0.00643104 0.00286875) 13517
(0.00916952 0.00643549 0.00286919) 13518
(0.00961173 0.00643804 0.00286942) 13519
(0.0100685 0.00643821 0.00286888) 13520
(0.010583 0.00643323 0.00287057) 13521
(0.0111042 0.00642813 0.00287463) 13522
(0.00843126 0.00634664 0.00256093) 13576
(0.00883788 0.00636328 0.00257216) 13577
(0.00845347 0.00584185 0.0018827) 13756
(0.00989712 0.0058323 0.00186419) 13759
(0.0084382 0.00559167 0.00172135) 13816
(0.00887183 0.00559343 0.00171233) 13817
(0.00883068 0.00466607 0.00161368) 13997
(0.00913495 0.0043928 0.00170114) 14058
(0.0095125 0.00439154 0.00169484) 14059
(0.0099138 0.0043915 0.00169079) 14059
(0.0103964 0.00439358 0.00169467) 14060
(0.0109324 0.00439613 0.00170242) 14061
(0.00868972 0.0041693 0.00183148) 14117
(0.00868972 0.0041693 0.00183148) 14117
(0.00868972 0.0041693 0.00183148) 14117
(0.00915338 0.00416916 0.00182777) 14118
(0.00996327 0.00416099 0.00182269) 14119
(0.0104556 0.00416273 0.0018275) 14120
(0.0109913 0.00416883 0.00183298) 14121
(0.0084748 0.00395844 0.00204987) 14176
(0.00842303 0.00359546 0.00317047) 14416
(0.00885832 0.00357928 0.00317143) 14417
(0.00864989 0.00363944 0.00345794) 14477
(0.00864989 0.00363944 0.00345794) 14477
(0.00864989 0.00363944 0.00345794) 14477
(0.00914878 0.00362609 0.00345889) 14478
(0.0100651 0.00361579 0.00345836) 14480
(0.0105954 0.00362416 0.00345669) 14481
(0.0111085 0.00363077 0.00345801) 14482
(0.00857773 0.00373262 0.00368709) 14537
(0.00857773 0.00373262 0.00368709) 14537
(0.00857773 0.00373262 0.00368709) 14537
(0.00914571 0.00372863 0.00369266) 14538
(0.010109 0.00372657 0.00370068) 14540
(0.0106247 0.00373263 0.00369697) 14541
(0.0111268 0.00373669 0.00369429) 14542
(0.00846447 0.00392113 0.00391172) 14596
(0.00884792 0.00470305 0.00439392) 14777
(0.00855669 0.00499913 0.00442427) 14837
(0.00990941 0.00499737 0.00443833) 14839
(0.0104262 0.0049984 0.00443217) 14840
(0.00845894 0.00527971 0.00438961) 14896
(0.00933107 0.00527868 0.00440583) 14898
(0.00977946 0.00527979 0.00440648) 14899
(0.00831492 0.00622926 0.00366206) 15136
(0.00900291 0.00636716 0.00340599) 15198
(0.00941621 0.00637042 0.0034063) 15198
(0.00922288 0.00642949 0.0031254) 15258
(0.0096727 0.00643032 0.00312991) 15259
(0.0101347 0.00643022 0.00313262) 15260
(0.0106413 0.00642622 0.00313348) 15261
(0.0111482 0.0064222 0.00313429) 15262
(0.00542047 0.00643071 0.00292536) 13510
(0.00579735 0.00644303 0.0029443) 13511
(0.00610828 0.00645453 0.00290692) 13512
(0.0073771 0.00638103 0.00284094) 13514
(0.00780384 0.00584562 0.00188897) 13755
(0.00774832 0.00557289 0.00172322) 13815
(0.00499757 0.0043011 0.0016039) 5709
(0.00481855 0.00447251 0.00155874) 5709
(0.00520903 0.00453601 0.0016295) 13990
(0.00624576 0.0044706 0.00170967) 14052
(0.00466575 0.00415294 0.00181566) 14109
(0.00401982 0.00425083 0.00170842) 14108
(0.00801173 0.00415985 0.00186168) 14116
(0.00663223 0.00371144 0.00355278) 14473
(0.00788991 0.00365702 0.0034584) 14475
(0.00607425 0.00383683 0.00379539) 14532
(0.00745488 0.00374985 0.00369142) 14534
(0.00728562 0.00506864 0.00439907) 14834
(0.00788456 0.00502848 0.0044162) 14835
(0.00681707 0.00532232 0.00439582) 14893
(0.00767966 0.00529735 0.00437724) 14895
(0.00311349 0.00644978 0.00297324) 13506
(0.00404722 0.00635628 0.00286797) 13508
(0.00423606 0.00640515 0.00287468) 13508
(0.00577411 0.00640695 0.00317524) 15251
(0.00636643 0.00639754 0.00310208) 15252
(0.0185849 0.00691291 0.00360473) 2017
(0.0116447 0.00651811 0.00421023) 6683
(0.0142968 0.00644089 0.00416528) 6688
(0.0149289 0.00643037 0.00415935) 6689
(0.0154954 0.0064243 0.00415655) 6690
(0.0229076 0.00639777 0.00210051) 13425
(0.0240206 0.00662937 0.00225951) 6108
(0.0185077 0.00667669 0.00423021) 6637
(0.0212507 0.00665165 0.00414277) 1962
(0.0184191 0.00629717 0.00106542) 12456
(0.0194684 0.00367269 0.00471011) 10538
(0.0196837 0.00328898 0.00169921) 459
(0.0186207 0.00614427 0.00480125) 12217
(0.0182679 0.00588234 0.00508681) 12576
(0.0182679 0.00588234 0.00508681) 12576
(0.0182679 0.00588234 0.00508681) 12576
(0.0203646 0.00590337 0.00502323) 12580
(0.0203646 0.00590337 0.00502323) 12580
(0.0203646 0.00590337 0.00502323) 12580
(0.0218071 0.00597543 0.00499115) 12343
(0.0218071 0.00597543 0.00499115) 12343
(0.0218071 0.00597543 0.00499115) 12343
(0.0182294 0.00401663 0.0049071) 10536
(0.0177646 0.00374541 0.00137548) 12755
(0.0205675 0.0037041 0.00144365) 9221
(0.0181641 0.00414318 0.00123073) 11496
(0.0209648 0.00406555 0.00127426) 12761
(0.0184205 0.00480318 0.000890255) 11616
(0.0203336 0.00471715 0.000931501) 11620
(0.0191333 0.00592254 0.000963107) 12278
(0.0184131 0.0053537 0.00075897) 11856
(0.0205881 0.00528092 0.000787968) 11921
(0.0217279 0.00517392 0.000724492) 11923
(0.0195744 0.00529801 0.00523487) 11079
(0.0209568 0.00537092 0.0052328) 11441
(0.019402 0.00297249 0.00323171) 32544
(0.0231306 0.0030331 0.00323027) 766
(0.0244896 0.00293511 0.0032309) 33984
(0.0201892 0.00668154 0.00164922) 2500
(0.021963 0.00664937 0.00164121) 2503
(0.0224653 0.00611753 0.00164349) 6044
(0.00867521 0.00643109 0.00286873) 13517
(0.00867521 0.00643109 0.00286873) 13517
(0.00867521 0.00643109 0.00286873) 13517
(0.00914675 0.00643556 0.00286906) 13518
(0.00958872 0.00643812 0.00286942) 13519
(0.0100439 0.00643844 0.00286888) 13520
(0.0105574 0.00643355 0.00287044) 13521
(0.0110799 0.00642837 0.00287444) 13522
(0.00840891 0.00634672 0.00256094) 13576
(0.00881493 0.00636332 0.002572) 13577
(0.00843094 0.00584198 0.00188267) 13756
(0.00987153 0.00583243 0.00186381) 13759
(0.00841584 0.00559155 0.00172111) 13816
(0.00884836 0.00559345 0.0017121) 13817
(0.00880647 0.00466618 0.00161338) 13997
(0.00911228 0.00439273 0.00170099) 14058
(0.00949056 0.00439151 0.00169482) 14058
(0.0098906 0.00439141 0.00169064) 14059
(0.0103707 0.00439347 0.00169426) 14060
(0.0109056 0.00439598 0.00170199) 14061
(0.00866668 0.00416904 0.00183133) 14117
(0.00866668 0.00416904 0.00183133) 14117
(0.00866668 0.00416904 0.00183133) 14117
(0.00912998 0.00416893 0.00182763) 14118
(0.00993939 0.00416096 0.00182245) 14119
(0.0104298 0.00416246 0.0018272) 14120
(0.010965 0.00416848 0.00183268) 14121
(0.00845161 0.00395826 0.0020497) 14176
(0.00890152 0.00395857 0.00203935) 14177
(0.00840069 0.00359539 0.00317083) 14416
(0.00883542 0.00357922 0.00317168) 14417
(0.00862559 0.00363981 0.00345817) 14477
(0.00862559 0.00363981 0.00345817) 14477
(0.00862559 0.00363981 0.00345817) 14477
(0.00912531 0.00362636 0.00345903) 14478
(0.0100386 0.0036154 0.00345859) 14480
(0.0105697 0.00362374 0.00345679) 14481
(0.0110847 0.0036305 0.00345796) 14482
(0.00854974 0.00373264 0.0036871) 14537
(0.00854974 0.00373264 0.0036871) 14537
(0.00854974 0.00373264 0.0036871) 14537
(0.00912052 0.00372866 0.00369267) 14538
(0.0100831 0.00372621 0.00370088) 14540
(0.0105997 0.00373236 0.00369726) 14541
(0.0111029 0.00373647 0.00369444) 14542
(0.0084396 0.00392107 0.00391168) 14596
(0.00882505 0.00470311 0.00439413) 14777
(0.00853357 0.00499931 0.0044245) 14837
(0.00988487 0.00499732 0.00443859) 14839
(0.0104011 0.00499832 0.00443255) 14840
(0.00843569 0.0052798 0.00438977) 14896
(0.00930863 0.00527871 0.00440586) 14898
(0.00975478 0.00527971 0.00440681) 14899
(0.00829164 0.00622935 0.00366234) 15136
(0.00897871 0.00636737 0.0034061) 15197
(0.00939299 0.00637055 0.00340631) 15198
(0.00920011 0.00642962 0.00312532) 15258
(0.00964956 0.00643045 0.00312981) 15259
(0.0101103 0.00643043 0.00313259) 15260
(0.0106165 0.00642648 0.00313348) 15261
(0.0111245 0.00642238 0.00313425) 15262
(0.00542546 0.00642911 0.00292512) 13510
(0.00577736 0.00644264 0.00294388) 13511
(0.00611713 0.00645525 0.00291925) 13512
(0.00734472 0.00638243 0.00284087) 13514
(0.00779017 0.00584626 0.00189095) 13755
(0.00773286 0.00557272 0.00172419) 13815
(0.0050338 0.0043082 0.00160237) 5710
(0.00223993 0.00431526 0.00163897) 5704
(0.00481925 0.00445618 0.00155287) 5709
(0.00515208 0.00453863 0.001623) 13990
(0.00618917 0.00447253 0.00170512) 14052
(0.00463968 0.0041254 0.00184671) 14109
(0.00372457 0.00424674 0.00171115) 14107
(0.0079948 0.00416084 0.00186285) 14115
(0.00664069 0.00371343 0.00355367) 14473
(0.00786271 0.00365806 0.00345927) 14475
(0.00609851 0.00383486 0.00378982) 14532
(0.00741362 0.00375108 0.00369204) 14534
(0.00727784 0.00506826 0.00439717) 14834
(0.00786533 0.0050295 0.00441546) 14835
(0.00679542 0.00532251 0.00439576) 14893
(0.00765877 0.00529748 0.00437723) 14895
(0.00302598 0.00645647 0.00298454) 13506
(0.0040441 0.00635568 0.0028682) 13508
(0.0042399 0.00640388 0.00287372) 13508
(0.00575141 0.00640736 0.00317502) 15251
(0.00634296 0.0063975 0.00310276) 15252
(0.0185341 0.00691182 0.00360945) 2017
(0.0116086 0.00651945 0.00421085) 6683
(0.0142794 0.00644087 0.00416513) 6688
(0.0149133 0.00643029 0.00415904) 6689
(0.0154803 0.00642409 0.00415633) 6690
(0.0228493 0.00638818 0.00208918) 13425
(0.0239771 0.00662316 0.00225989) 6107
(0.0184168 0.00667537 0.00423874) 6636
(0.0211709 0.00664821 0.00414626) 6702
(0.0183927 0.00630161 0.00106849) 12456
(0.0194173 0.00367081 0.004708) 10538
(0.0207122 0.00374071 0.00480104) 10541
(0.0196215 0.00329275 0.00169529) 459
(0.0185647 0.00614123 0.00480509) 12217
(0.0182006 0.00588008 0.00509054) 12576
(0.0182006 0.00588008 0.00509054) 12576
(0.0182006 0.00588008 0.00509054) 12576
(0.0202994 0.00590153 0.00502467) 12580
(0.0202994 0.00590153 0.00502467) 12580
(0.0202994 0.00590153 0.00502467) 12580
(0.0217815 0.0059689 0.00499335) 12343
(0.0217815 0.0059689 0.00499335) 12343
(0.0217815 0.0059689 0.00499335) 12343
(0.0181751 0.00401413 0.00490429) 10536
(0.0176917 0.00374667 0.00137116) 12755
(0.0204706 0.00370704 0.0014431) 9220
(0.0180652 0.00414098 0.00122617) 11496
(0.0208738 0.00407068 0.00127483) 11501
(0.0183527 0.00480721 0.000887753) 11616
(0.0202783 0.0047225 0.000931183) 11620
(0.0190826 0.00592318 0.000964213) 12278
(0.0183379 0.00535878 0.000758171) 11856
(0.020524 0.00528352 0.000789082) 11921
(0.0217294 0.00518255 0.00073049) 11923
(0.0195206 0.00529707 0.00523555) 11079
(0.0209322 0.00536353 0.00523174) 11441
(0.0191547 0.00295792 0.00323202) 32544
(0.0230147 0.00303662 0.00323102) 766
(0.0244855 0.00293801 0.00322823) 33984
(0.0201169 0.006684 0.00164852) 2500
(0.0201169 0.006684 0.00164852) 2500
(0.0201169 0.006684 0.00164852) 2500
(0.0219208 0.00665075 0.00164478) 2503
(0.0224115 0.00610963 0.00163789) 6044
(0.00865227 0.00643114 0.00286871) 13517
(0.00865227 0.00643114 0.00286871) 13517
(0.00865227 0.00643114 0.00286871) 13517
(0.00912399 0.00643563 0.00286893) 13518
(0.00956575 0.00643819 0.00286942) 13519
(0.0100193 0.00643866 0.00286888) 13520
(0.0105318 0.00643386 0.00287032) 13521
(0.0110555 0.0064286 0.00287425) 13522
(0.0083866 0.00634681 0.00256098) 13576
(0.00879204 0.00636335 0.00257183) 13577
(0.00840847 0.0058421 0.00188265) 13756
(0.00889325 0.005837 0.00186801) 13757
(0.00984584 0.00583256 0.00186343) 13759
(0.00839351 0.00559144 0.00172087) 13816
(0.00882487 0.00559346 0.00171187) 13817
(0.00878213 0.0046663 0.00161306) 13997
(0.00908957 0.00439266 0.00170084) 14058
(0.00946862 0.00439148 0.0016948) 14058
(0.00986749 0.00439131 0.00169051) 14059
(0.010345 0.00439338 0.00169386) 14060
(0.0108787 0.00439584 0.00170155) 14061
(0.00864365 0.00416879 0.00183117) 14117
(0.00864365 0.00416879 0.00183117) 14117
(0.00864365 0.00416879 0.00183117) 14117
(0.00910655 0.00416869 0.00182749) 14118
(0.00991559 0.00416093 0.00182222) 14119
(0.0104041 0.00416219 0.00182691) 14120
(0.0109387 0.00416813 0.00183239) 14121
(0.00842845 0.00395809 0.00204952) 14176
(0.00887749 0.00395835 0.00203917) 14177
(0.00837837 0.00359533 0.00317118) 14416
(0.00881258 0.00357918 0.00317194) 14417
(0.00860123 0.00364019 0.00345841) 14477
(0.00860123 0.00364019 0.00345841) 14477
(0.00860123 0.00364019 0.00345841) 14477
(0.00910183 0.00362663 0.00345915) 14478
(0.0100121 0.00361503 0.00345883) 14480
(0.0105438 0.0036233 0.00345689) 14481
(0.0110608 0.00363023 0.0034579) 14482
(0.00852156 0.00373265 0.00368709) 14537
(0.00852156 0.00373265 0.00368709) 14537
(0.00852156 0.00373265 0.00368709) 14537
(0.00909527 0.0037287 0.00369268) 14538
(0.0100572 0.00372585 0.00370107) 14540
(0.0105747 0.00373209 0.00369757) 14541
(0.0110789 0.00373624 0.00369459) 14542
(0.0084147 0.00392103 0.00391165) 14596
(0.00880215 0.00470319 0.00439435) 14777
(0.00851047 0.00499949 0.00442472) 14837
(0.00986039 0.00499726 0.00443884) 14839
(0.0103759 0.00499825 0.00443293) 14840
(0.00841248 0.00527989 0.00438992) 14896
(0.00928624 0.00527876 0.00440589) 14898
(0.0097302 0.00527963 0.00440711) 14899
(0.00826841 0.00622943 0.00366261) 15136
(0.00895441 0.00636759 0.00340622) 15197
(0.00936973 0.00637069 0.00340632) 15198
(0.00917735 0.00642976 0.00312524) 15258
(0.00962646 0.00643057 0.00312972) 15259
(0.0100859 0.00643064 0.00313256) 15260
(0.0105917 0.00642673 0.00313347) 15261
(0.0111008 0.00642256 0.00313422) 15262
(0.00543097 0.0064274 0.00292484) 13510
(0.00575767 0.00644222 0.00294341) 13511
(0.00613733 0.00645396 0.00292747) 13512
(0.0073125 0.00638382 0.00284086) 13514
(0.00777647 0.00584651 0.00189277) 13755
(0.00771722 0.00557254 0.00172523) 13815
(0.00503043 0.00432202 0.00161046) 5710
(0.0028424 0.00432331 0.00165237) 5705
(0.00483218 0.00443366 0.00154735) 5709
(0.00510148 0.0045403 0.001617) 13990
(0.00615034 0.00447551 0.0017028) 14052
(0.00460681 0.00411324 0.00186211) 14109
(0.00162608 0.0041231 0.00174628) 5643
(0.00308778 0.00422734 0.00170883) 5646
(0.00798978 0.00416186 0.00186394) 14115
(0.00664874 0.00371521 0.00355411) 14473
(0.00783504 0.00365917 0.00346039) 14475
(0.00612621 0.00383281 0.00378367) 14532
(0.00737243 0.00375242 0.00369273) 14534
(0.00726945 0.00506779 0.00439534) 14834
(0.00784633 0.00503055 0.00441467) 14835
(0.00699677 0.00533967 0.00435589) 14893
(0.00763787 0.00529761 0.0043772) 14895
(0.00290939 0.00646471 0.00300019) 13505
(0.00404286 0.00635499 0.00286816) 13508
(0.00424182 0.00640262 0.00287276) 13508
(0.00572526 0.00640802 0.00317491) 15251
(0.00631954 0.00639745 0.00310346) 15252
(0.00698146 0.00635921 0.00309048) 15253
(0.0184811 0.00691114 0.003614) 2016
(0.011572 0.00652084 0.0042115) 6683
(0.0142621 0.00644085 0.00416496) 6688
(0.0148977 0.00643022 0.00415873) 6689
(0.0154652 0.00642388 0.00415611) 6690
(0.0227864 0.00637848 0.00207729) 13425
(0.023934 0.00661656 0.00225971) 6107
(0.0183242 0.00667413 0.00424754) 6636
(0.0210877 0.00664581 0.00414917) 6702
(0.0183657 0.00630598 0.00107144) 12456
(0.0193654 0.00366898 0.004706) 10538
(0.020697 0.00373379 0.00479252) 10541
(0.0195583 0.00329642 0.0016913) 459
(0.018508 0.00613823 0.00480911) 12217
(0.0181336 0.0058778 0.00509433) 12576
(0.0181336 0.0058778 0.00509433) 12576
(0.0181336 0.0058778 0.00509433) 12576
(0.0202326 0.00589979 0.00502619) 12580
(0.0202326 0.00589979 0.00502619) 12580
(0.0202326 0.00589979 0.00502619) 12580
(0.0217538 0.00596274 0.00499537) 12343
(0.0217538 0.00596274 0.00499537) 12343
(0.0217538 0.00596274 0.00499537) 12343
(0.0181184 0.00401145 0.00490149) 10536
(0.0176224 0.00374794 0.00136715) 12755
(0.0203714 0.00370995 0.00144235) 9220
(0.0179635 0.00413723 0.00122191) 11495
(0.0207813 0.00407577 0.00127526) 11501
(0.0182828 0.00481087 0.000885163) 11616
(0.0202211 0.00472769 0.000930788) 11620
(0.0190314 0.00592381 0.00096525) 12278
(0.0182613 0.00536388 0.000757265) 11856
(0.0204574 0.00528606 0.000790006) 11920
(0.0217277 0.00519069 0.000736269) 11923
(0.0194661 0.00529624 0.0052363) 11078
(0.0209057 0.00535659 0.00523072) 11441
(0.0188918 0.00293962 0.00323301) 32400
(0.0228936 0.00303965 0.0032318) 765
(0.0244792 0.002941 0.00322581) 33984
(0.0200423 0.00668651 0.00164755) 2500
(0.0200423 0.00668651 0.00164755) 2500
(0.0200423 0.00668651 0.00164755) 2500
(0.0218783 0.00665218 0.0016483) 2503
(0.0228679 0.00660041 0.00153702) 6765
(0.0223486 0.00610177 0.00163221) 6044
(0.00862927 0.00643119 0.00286871) 13517
(0.00862927 0.00643119 0.00286871) 13517
(0.00862927 0.00643119 0.00286871) 13517
(0.00910123 0.0064357 0.0028688) 13518
(0.00954283 0.00643827 0.00286941) 13519
(0.00999491 0.00643886 0.00286887) 13519
(0.0105061 0.00643418 0.00287021) 13521
(0.011031 0.00642884 0.00287407) 13522
(0.00836433 0.0063469 0.00256104) 13576
(0.0087692 0.00636337 0.00257164) 13577
(0.00838606 0.00584222 0.00188262) 13756
(0.00886915 0.00583715 0.00186787) 13757
(0.00982008 0.00583268 0.00186304) 13759
(0.00837122 0.00559133 0.00172064) 13816
(0.00880135 0.00559346 0.00171163) 13817
(0.00875766 0.00466643 0.00161274) 13997
(0.00906682 0.00439258 0.00170068) 14058
(0.00944669 0.00439145 0.00169477) 14058
(0.00984447 0.00439121 0.00169039) 14059
(0.0103194 0.00439328 0.00169346) 14060
(0.0108519 0.0043957 0.00170111) 14061
(0.00862065 0.00416854 0.00183102) 14117
(0.00862065 0.00416854 0.00183102) 14117
(0.00862065 0.00416854 0.00183102) 14117
(0.00908311 0.00416844 0.00182735) 14118
(0.00948038 0.004165 0.00182295) 14118
(0.00989186 0.00416091 0.00182199) 14119
(0.0103784 0.00416192 0.00182662) 14120
(0.0109124 0.00416778 0.0018321) 14121
(0.00840533 0.00395793 0.00204935) 14176
(0.00885344 0.00395814 0.002039) 14177
(0.00835608 0.00359528 0.00317152) 14416
(0.00878982 0.00357914 0.00317221) 14417
(0.00857681 0.00364059 0.00345866) 14477
(0.00857681 0.00364059 0.00345866) 14477
(0.00857681 0.00364059 0.00345866) 14477
(0.00907835 0.00362691 0.00345926) 14478
(0.00998565 0.00361468 0.00345908) 14479
(0.0105179 0.00362286 0.003457) 14481
(0.0110368 0.00362996 0.00345785) 14482
(0.00849317 0.00373269 0.00368709) 14536
(0.00849317 0.00373269 0.00368709) 14536
(0.00849317 0.00373269 0.00368709) 14536
(0.00906995 0.00372873 0.00369267) 14538
(0.0100313 0.00372549 0.00370125) 14540
(0.0105496 0.00373182 0.00369788) 14541
(0.0110548 0.00373602 0.00369475) 14542
(0.00838972 0.00392099 0.00391163) 14596
(0.00877922 0.00470327 0.00439458) 14777
(0.00848739 0.00499968 0.00442494) 14836
(0.00897086 0.0049962 0.00443001) 14837
(0.009836 0.00499721 0.00443908) 14839
(0.0103507 0.00499818 0.00443332) 14840
(0.0083893 0.00527998 0.00439007) 14896
(0.00926389 0.00527883 0.00440591) 14898
(0.00970571 0.00527954 0.00440741) 14899
(0.00824521 0.00622951 0.00366287) 15136
(0.00893 0.00636782 0.00340634) 15197
(0.00934644 0.00637083 0.00340634) 15198
(0.00915457 0.00642989 0.00312516) 15258
(0.00960339 0.0064307 0.00312963) 15259
(0.0100616 0.00643083 0.00313253) 15260
(0.0105669 0.00642699 0.00313347) 15261
(0.0110771 0.00642274 0.00313419) 15262
(0.0054232 0.00642563 0.00292311) 13510
(0.00573827 0.00644176 0.00294291) 13511
(0.00618585 0.00645221 0.00293208) 13512
(0.00726847 0.00638599 0.00284101) 13514
(0.00776263 0.00584644 0.00189441) 13755
(0.00770131 0.00557236 0.00172633) 13815
(0.00502223 0.00434405 0.00162449) 5710
(0.00341766 0.00432894 0.00166232) 5706
(0.00484276 0.0044079 0.0015482) 5709
(0.00506066 0.00454099 0.00161207) 13990
(0.00610741 0.00447844 0.00169995) 14052
(0.00457868 0.00410375 0.00187455) 14109
(0.00264322 0.00417267 0.00173109) 5645
(0.00237394 0.00419278 0.0017057) 5644
(0.00797248 0.00416316 0.00186492) 14115
(0.00666772 0.00371719 0.00355369) 14473
(0.0078071 0.00366037 0.00346175) 14475
(0.00616784 0.00382993 0.00377473) 14532
(0.00733101 0.00375382 0.00369351) 14534
(0.0072547 0.00506723 0.00439464) 14834
(0.00782916 0.00503219 0.00441328) 14835
(0.00705908 0.00533855 0.00433172) 14894
(0.00761633 0.00529769 0.00437712) 14895
(0.00260551 0.00648527 0.00304225) 15245
(0.00404201 0.00635457 0.00286811) 13508
(0.00424258 0.00640126 0.00287181) 13508
(0.00480432 0.00649451 0.00290535) 6129
(0.0062962 0.0063974 0.00310415) 15252
(0.0069447 0.00636254 0.00309103) 15253
(0.018426 0.00691087 0.0036184) 2016
(0.0198359 0.00696765 0.00352012) 2019
(0.0115349 0.00652229 0.00421217) 6683
(0.0142447 0.00644082 0.00416482) 6688
(0.014882 0.00643014 0.00415845) 6689
(0.0154501 0.00642366 0.0041559) 6690
(0.0227191 0.00636888 0.00206531) 13425
(0.023891 0.00660953 0.00225882) 6107
(0.0182281 0.00667361 0.00425624) 6636
(0.021001 0.00664467 0.00415141) 6702
(0.0183383 0.00631028 0.00107429) 12456
(0.0193131 0.00366717 0.00470409) 10538
(0.0206797 0.00372729 0.00478439) 10541
(0.0194942 0.00329996 0.00168723) 458
(0.0184501 0.00613527 0.00481331) 12216
(0.0180668 0.00587552 0.00509819) 12576
(0.0180668 0.00587552 0.00509819) 12576
(0.0180668 0.00587552 0.00509819) 12576
(0.0201643 0.00589812 0.0050278) 12580
(0.0201643 0.00589812 0.0050278) 12580
(0.0201643 0.00589812 0.0050278) 12580
(0.0217241 0.00595692 0.00499722) 12343
(0.0217241 0.00595692 0.00499722) 12343
(0.0217241 0.00595692 0.00499722) 12343
(0.0180589 0.00400852 0.00489864) 10536
(0.0175576 0.00374937 0.00136342) 12755
(0.02027 0.00371285 0.00144136) 9220
(0.0178597 0.00413216 0.00121817) 11495
(0.0206872 0.00408083 0.00127553) 11501
(0.0182101 0.00481407 0.000882492) 11616
(0.0201623 0.00473276 0.000930317) 11620
(0.01898 0.00592445 0.000966229) 12277
(0.0181847 0.00536902 0.000756329) 11856
(0.0203885 0.00528854 0.000790731) 11920
(0.0217225 0.00519837 0.000741821) 11923
(0.0194112 0.0052955 0.00523711) 11078
(0.0208774 0.00535008 0.00522974) 11441
(0.0186397 0.00291952 0.00323429) 32400
(0.0227666 0.00304208 0.00323258) 765
(0.0244706 0.00294405 0.00322362) 33984
(0.0199651 0.00668907 0.00164626) 2499
(0.0199651 0.00668907 0.00164626) 2499
(0.0199651 0.00668907 0.00164626) 2499
(0.0218345 0.00665363 0.00165164) 2503
(0.0228833 0.00660791 0.00154985) 6765
(0.0222753 0.00609418 0.00162666) 6044
(0.00860622 0.00643125 0.0028687) 13517
(0.00860622 0.00643125 0.0028687) 13517
(0.00860622 0.00643125 0.0028687) 13517
(0.00907849 0.00643577 0.00286866) 13518
(0.00951996 0.00643834 0.00286941) 13519
(0.00997057 0.00643907 0.00286887) 13519
(0.0104805 0.0064345 0.0028701) 13520
(0.0110064 0.00642908 0.00287388) 13522
(0.00834208 0.00634698 0.00256113) 13576
(0.00874642 0.00636338 0.00257144) 13577
(0.00836372 0.00584233 0.0018826) 13756
(0.00884507 0.0058373 0.00186773) 13757
(0.00979424 0.00583281 0.00186264) 13759
(0.00834897 0.00559122 0.00172042) 13816
(0.00877781 0.00559345 0.00171137) 13817
(0.00873308 0.00466657 0.0016124) 13997
(0.00904405 0.0043925 0.00170053) 14058
(0.00942475 0.00439143 0.00169474) 14058
(0.00982153 0.0043911 0.00169027) 14059
(0.0102938 0.00439319 0.00169306) 14060
(0.010825 0.00439556 0.00170067) 14061
(0.00859768 0.0041683 0.00183087) 14117
(0.00859768 0.0041683 0.00183087) 14117
(0.00859768 0.0041683 0.00183087) 14117
(0.00905965 0.00416819 0.0018272) 14118
(0.00945773 0.00416496 0.00182287) 14118
(0.0098682 0.0041609 0.00182176) 14119
(0.0103528 0.00416166 0.00182633) 14120
(0.010886 0.00416743 0.0018318) 14121
(0.00838224 0.00395779 0.00204918) 14176
(0.00882938 0.00395791 0.00203883) 14177
(0.00833382 0.00359524 0.00317186) 14416
(0.00876714 0.0035791 0.00317249) 14417
(0.00855233 0.00364101 0.00345891) 14477
(0.00855233 0.00364101 0.00345891) 14477
(0.00855233 0.00364101 0.00345891) 14477
(0.00905487 0.00362719 0.00345936) 14478
(0.00995919 0.00361433 0.00345931) 14479
(0.0104918 0.00362242 0.00345714) 14480
(0.0110128 0.00362968 0.00345781) 14482
(0.00846454 0.00373273 0.00368709) 14536
(0.00846454 0.00373273 0.00368709) 14536
(0.00846454 0.00373273 0.00368709) 14536
(0.00904456 0.00372876 0.00369267) 14538
(0.0100053 0.00372515 0.00370143) 14540
(0.0105244 0.00373153 0.00369818) 14541
(0.0110306 0.0037358 0.00369492) 14542
(0.00836469 0.00392097 0.00391161) 14596
(0.00875627 0.00470337 0.0043948) 14777
(0.00846434 0.00499987 0.00442514) 14836
(0.00894754 0.00499623 0.00443021) 14837
(0.00936994 0.00499617 0.00443676) 14838
(0.00981168 0.00499715 0.00443932) 14839
(0.0103255 0.00499811 0.0044337) 14840
(0.00836616 0.00528006 0.00439021) 14896
(0.00968133 0.00527945 0.0044077) 14899
(0.00822204 0.00622959 0.0036631) 15136
(0.00890549 0.00636806 0.00340646) 15197
(0.00932309 0.00637098 0.00340637) 15198
(0.00913177 0.00643003 0.00312508) 15258
(0.00958034 0.00643082 0.00312954) 15259
(0.0100374 0.00643102 0.00313249) 15260
(0.010542 0.00642725 0.00313347) 15261
(0.0110532 0.00642293 0.00313415) 15262
(0.0054276 0.00642403 0.00292259) 13510
(0.00571919 0.00644127 0.00294237) 13511
(0.00620679 0.00645016 0.00293516) 13512
(0.00722874 0.0063889 0.00284073) 13514
(0.00774854 0.00584609 0.00189588) 13755
(0.00768541 0.00557218 0.00172746) 13815
(0.00501831 0.00436657 0.00163809) 5710
(0.00387124 0.00433009 0.00166118) 5707
(0.00479869 0.00438496 0.0015644) 5709
(0.00502701 0.00454094 0.00160775) 13990
(0.00606163 0.00448124 0.00169669) 14052
(0.0045578 0.00409635 0.0018844) 14109
(0.00351137 0.00420626 0.0017395) 14107
(0.00173324 0.00416361 0.0017162) 5643
(0.0079556 0.00416463 0.00186604) 14115
(0.00668805 0.00371914 0.0035528) 14473
(0.00777891 0.00366169 0.00346336) 14475
(0.00621595 0.00382683 0.00376478) 14532
(0.00728994 0.00375531 0.00369433) 14534
(0.00724147 0.00506672 0.00439359) 14834
(0.00781228 0.00503375 0.00441184) 14835
(0.00703581 0.00533871 0.00433173) 14894
(0.00759478 0.00529778 0.00437704) 14895
(0.00404478 0.00635401 0.0028676) 13508
(0.0042497 0.00640002 0.00287073) 13508
(0.00627266 0.00639739 0.00310488) 15252
(0.00690686 0.00636599 0.00309137) 15253
(0.0183684 0.00691103 0.00362258) 2016
(0.0197973 0.00696363 0.00352558) 2019
(0.0114971 0.0065238 0.0042129) 6682
(0.0142272 0.00644079 0.00416469) 6688
(0.0148663 0.00643005 0.0041582) 6689
(0.0154351 0.00642344 0.00415568) 6690
(0.0226461 0.00635953 0.00205387) 13485
(0.0238485 0.00660209 0.00225721) 6107
(0.0181272 0.00667437 0.00426456) 6636
(0.0209108 0.0066449 0.00415295) 6641
(0.0183105 0.00631453 0.00107702) 12456
(0.0192603 0.00366537 0.00470226) 10538
(0.0206609 0.00372113 0.00477662) 10541
(0.0194287 0.00330339 0.00168306) 458
(0.0183902 0.00613239 0.0048177) 12216
(0.0180003 0.00587323 0.00510208) 12576
(0.0180003 0.00587323 0.00510208) 12576
(0.0180003 0.00587323 0.00510208) 12576
(0.0200946 0.00589653 0.00502951) 12580
(0.0200946 0.00589653 0.00502951) 12580
(0.0200946 0.00589653 0.00502951) 12580
(0.0216922 0.00595142 0.00499893) 12343
(0.0216922 0.00595142 0.00499893) 12343
(0.0216922 0.00595142 0.00499893) 12343
(0.0179962 0.00400522 0.00489569) 10535
(0.0196523 0.00404723 0.00495825) 10839
(0.0201667 0.0037157 0.00144015) 9220
(0.020592 0.00408584 0.00127564) 11501
(0.0181345 0.00481673 0.000879742) 11616
(0.0201017 0.00473769 0.000929763) 11620
(0.0189283 0.00592511 0.000967149) 12277
(0.01811 0.0053743 0.000755479) 11856
(0.0203174 0.00529099 0.000791274) 11920
(0.0217129 0.00520551 0.000747091) 11923
(0.0193562 0.0052948 0.00523797) 11078
(0.0208472 0.00534401 0.00522881) 11441
(0.0184387 0.00290265 0.00323459) 32256
(0.0226356 0.00304397 0.00323328) 765
(0.02446 0.00294716 0.00322162) 33984
(0.0198848 0.0066917 0.00164461) 2499
(0.0198848 0.0066917 0.00164461) 2499
(0.0198848 0.0066917 0.00164461) 2499
(0.0217891 0.0066551 0.00165478) 2503
(0.0228942 0.00661456 0.00156175) 6765
(0.0221924 0.00608704 0.00162135) 6044
(0.00858311 0.0064313 0.00286871) 13517
(0.00858311 0.0064313 0.00286871) 13517
(0.00858311 0.0064313 0.00286871) 13517
(0.00905574 0.00643583 0.00286852) 13518
(0.00949713 0.0064384 0.0028694) 13518
(0.00994633 0.00643926 0.00286888) 13519
(0.0104549 0.00643481 0.00287) 13520
(0.0109817 0.00642933 0.00287371) 13521
(0.00831988 0.00634707 0.00256124) 13576
(0.00872369 0.00636338 0.00257123) 13577
(0.00834139 0.00584242 0.00188258) 13756
(0.00882101 0.00583746 0.0018676) 13757
(0.00976835 0.00583293 0.00186225) 13759
(0.00832677 0.00559111 0.0017202) 13816
(0.00875426 0.00559343 0.0017111) 13817
(0.00870837 0.00466672 0.00161205) 13997
(0.00902123 0.00439241 0.00170037) 14058
(0.0094028 0.00439142 0.0016947) 14058
(0.00979867 0.00439099 0.00169017) 14059
(0.0102683 0.0043931 0.00169267) 14060
(0.0107981 0.00439542 0.00170023) 14061
(0.00857474 0.00416806 0.00183072) 14117
(0.00857474 0.00416806 0.00183072) 14117
(0.00857474 0.00416806 0.00183072) 14117
(0.00903618 0.00416793 0.00182706) 14118
(0.00943507 0.00416491 0.00182279) 14118
(0.00984462 0.0041609 0.00182154) 14119
(0.0103271 0.0041614 0.00182604) 14120
(0.0108596 0.00416709 0.00183151) 14121
(0.0083592 0.00395766 0.00204901) 14176
(0.00880532 0.00395768 0.00203867) 14177
(0.00831159 0.00359522 0.0031722) 14416
(0.00874454 0.00357908 0.00317278) 14417
(0.00852778 0.00364145 0.00345916) 14477
(0.00852778 0.00364145 0.00345916) 14477
(0.00852778 0.00364145 0.00345916) 14477
(0.0090314 0.00362748 0.00345946) 14478
(0.00993276 0.00361399 0.00345955) 14479
(0.0104657 0.00362197 0.0034573) 14480
(0.0109886 0.0036294 0.00345776) 14481
(0.00843569 0.00373278 0.00368706) 14536
(0.00843569 0.00373278 0.00368706) 14536
(0.00843569 0.00373278 0.00368706) 14536
(0.0090191 0.00372879 0.00369266) 14538
(0.00997936 0.00372482 0.00370161) 14539
(0.0104992 0.00373122 0.00369847) 14540
(0.0110064 0.00373559 0.0036951) 14542
(0.00833963 0.00392096 0.0039116) 14596
(0.0087333 0.00470348 0.00439504) 14777
(0.00844131 0.00500006 0.00442534) 14836
(0.00892421 0.00499627 0.00443042) 14837
(0.00934739 0.00499609 0.00443678) 14838
(0.00978745 0.00499709 0.00443955) 14839
(0.0103003 0.00499805 0.00443408) 14840
(0.00834306 0.00528014 0.00439034) 14896
(0.00965705 0.00527937 0.00440797) 14899
(0.00819892 0.00622967 0.00366332) 15136
(0.00888087 0.0063683 0.00340659) 15197
(0.00929968 0.00637114 0.0034064) 15198
(0.00910896 0.00643017 0.00312501) 15258
(0.00955731 0.00643095 0.00312946) 15259
(0.0100132 0.00643121 0.00313245) 15260
(0.0105172 0.00642751 0.00313348) 15261
(0.0110293 0.00642312 0.00313412) 15262
(0.00543254 0.00642223 0.00292198) 13510
(0.00570096 0.00644066 0.00294186) 13511
(0.00618664 0.00644965 0.00293618) 13512
(0.00719801 0.00638973 0.00284177) 13514
(0.00773447 0.00584545 0.00189721) 13755
(0.00766922 0.0055722 0.00172866) 13815
(0.00501993 0.00438588 0.0016514) 14050
(0.00417234 0.00432802 0.00165296) 5708
(0.00456143 0.00437558 0.00160279) 5709
(0.00499872 0.00454026 0.00160371) 13989
(0.00601397 0.0044838 0.00169315) 14052
(0.00684431 0.00445983 0.00175061) 14053
(0.00455331 0.00409457 0.001887) 14109
(0.00403778 0.00421306 0.0017427) 14108
(0.00509926 0.00422037 0.00166992) 5650
(0.00793891 0.00416627 0.00186744) 14115
(0.00670792 0.00372113 0.00355161) 14473
(0.0077506 0.00366313 0.0034652) 14475
(0.0062866 0.0038219 0.0037522) 14532
(0.00728226 0.00375564 0.00369444) 14534
(0.00722973 0.00506622 0.00439217) 14834
(0.00779556 0.00503518 0.0044104) 14835
(0.00701364 0.00533884 0.00433172) 14894
(0.00757322 0.00529788 0.00437697) 14895
(0.00405502 0.00635298 0.00286614) 13508
(0.00425533 0.00639889 0.00286973) 13508
(0.00412183 0.00643212 0.00287833) 13508
(0.0062462 0.00639784 0.00310326) 15252
(0.00687898 0.00636702 0.00309144) 15253
(0.0197594 0.00695952 0.00353108) 2019
(0.0114587 0.00652537 0.00421367) 6682
(0.0142096 0.00644076 0.00416458) 6688
(0.0148504 0.00642995 0.00415797) 6689
(0.0154202 0.00642322 0.00415547) 6690
(0.0225688 0.00635023 0.0020415) 13485
(0.0238061 0.00659423 0.00225484) 6107
(0.0180223 0.00667656 0.00427238) 6636
(0.0208178 0.00664549 0.00415447) 6641
(0.0182823 0.00631873 0.00107966) 12456
(0.0192074 0.00366358 0.00470047) 10538
(0.0206406 0.00371528 0.00476919) 10541
(0.019362 0.00330669 0.00167879) 458
(0.0183273 0.00612969 0.00482228) 12216
(0.0200237 0.005895 0.00503132) 12580
(0.0200237 0.005895 0.00503132) 12580
(0.0200237 0.005895 0.00503132) 12580
(0.0216583 0.00594621 0.00500052) 12583
(0.0216583 0.00594621 0.00500052) 12583
(0.0216583 0.00594621 0.00500052) 12583
(0.0179304 0.0040015 0.0048926) 10535
(0.0195988 0.00404544 0.00495456) 10839
(0.0200617 0.00371851 0.00143866) 9220
(0.0204953 0.00409075 0.00127556) 11500
(0.018056 0.00481876 0.000876935) 11616
(0.0200398 0.00474251 0.000929123) 11620
(0.0188765 0.00592579 0.000968012) 12277
(0.0180406 0.00537981 0.000754866) 11856
(0.0202443 0.00529343 0.000791643) 11920
(0.0217 0.00521225 0.000752131) 11923
(0.0193009 0.00529409 0.00523887) 11078
(0.0208153 0.00533833 0.00522793) 11441
(0.0183184 0.00289544 0.00323196) 32256
(0.0224997 0.00304521 0.00323388) 764
(0.0244476 0.00295034 0.0032198) 33984
(0.0198007 0.00669436 0.00164249) 2499
(0.0198007 0.00669436 0.00164249) 2499
(0.0198007 0.00669436 0.00164249) 2499
(0.0217425 0.00665656 0.00165778) 2503
(0.0228999 0.0066204 0.00157261) 6765
(0.0220992 0.00608048 0.00161634) 6044
(0.00855995 0.00643136 0.00286871) 13517
(0.00855995 0.00643136 0.00286871) 13517
(0.00855995 0.00643136 0.00286871) 13517
(0.00903299 0.00643589 0.00286837) 13518
(0.00947434 0.00643847 0.0028694) 13518
(0.00992217 0.00643944 0.00286888) 13519
(0.0104293 0.00643513 0.0028699) 13520
(0.0109569 0.00642958 0.00287353) 13521
(0.0082977 0.00634716 0.00256136) 13576
(0.00870103 0.00636337 0.00257102) 13577
(0.00831915 0.0058425 0.00188254) 13756
(0.008797 0.00583764 0.00186748) 13757
(0.00974239 0.00583305 0.00186184) 13759
(0.00830464 0.00559101 0.00171999) 13816
(0.00873068 0.00559339 0.00171082) 13817
(0.00868354 0.00466688 0.00161169) 13997
(0.00899836 0.0043923 0.00170021) 14057
(0.00938083 0.00439141 0.00169465) 14058
(0.00977588 0.00439087 0.00169008) 14059
(0.0102429 0.00439301 0.00169229) 14060
(0.0107712 0.00439529 0.00169979) 14061
(0.00855185 0.00416783 0.00183058) 14117
(0.00855185 0.00416783 0.00183058) 14117
(0.00855185 0.00416783 0.00183058) 14117
(0.00901268 0.00416766 0.00182691) 14118
(0.00941241 0.00416484 0.00182272) 14118
(0.0098211 0.00416091 0.00182132) 14119
(0.0103016 0.00416116 0.00182574) 14120
(0.0108331 0.00416674 0.00183121) 14121
(0.00833619 0.00395753 0.00204885) 14176
(0.00878125 0.00395744 0.00203851) 14177
(0.00828938 0.00359521 0.00317253) 14416
(0.00872204 0.00357906 0.00317307) 14417
(0.00850315 0.0036419 0.00345942) 14477
(0.00850315 0.0036419 0.00345942) 14477
(0.00850315 0.0036419 0.00345942) 14477
(0.00900795 0.00362779 0.00345957) 14478
(0.00990639 0.00361367 0.00345979) 14479
(0.0104395 0.00362153 0.00345748) 14480
(0.0109644 0.00362911 0.00345773) 14481
(0.0084066 0.00373283 0.00368702) 14536
(0.0084066 0.00373283 0.00368702) 14536
(0.0084066 0.00373283 0.00368702) 14536
(0.00899358 0.00372882 0.00369264) 14537
(0.00995339 0.00372449 0.00370178) 14539
(0.0104738 0.0037309 0.00369876) 14540
(0.0109822 0.00373537 0.00369529) 14541
(0.00831454 0.00392097 0.00391158) 14596
(0.00871032 0.00470361 0.00439527) 14777
(0.00841832 0.00500026 0.00442552) 14836
(0.00890088 0.00499633 0.00443064) 14837
(0.00932485 0.00499602 0.0044368) 14838
(0.0097633 0.00499703 0.00443977) 14839
(0.0102751 0.00499799 0.00443446) 14840
(0.00832 0.0052802 0.00439046) 14896
(0.00963286 0.00527929 0.00440823) 14899
(0.00817586 0.00622974 0.00366352) 15136
(0.00885615 0.00636855 0.00340673) 15197
(0.0092762 0.0063713 0.00340644) 15198
(0.00908613 0.00643031 0.00312494) 15258
(0.00953429 0.00643108 0.00312937) 15259
(0.00998917 0.00643139 0.0031324) 15259
(0.0104922 0.00642777 0.00313348) 15260
(0.0110054 0.00642332 0.0031341) 15262
(0.00543712 0.00642035 0.00292179) 13510
(0.00568194 0.00644025 0.00294115) 13511
(0.00619594 0.00644857 0.00293751) 13512
(0.00715567 0.0063932 0.00284201) 13514
(0.0077197 0.00584493 0.00189867) 13755
(0.00765273 0.00557191 0.0017298) 13815
(0.00502096 0.0044023 0.00166417) 14050
(0.00440569 0.00432389 0.00164149) 5708
(0.00401081 0.00437323 0.00164233) 5708
(0.00497459 0.00453901 0.00159989) 13989
(0.00596557 0.0044862 0.00168943) 14051
(0.00680024 0.00446074 0.00174556) 14053
(0.00455323 0.00409448 0.00188759) 14109
(0.00434079 0.0042094 0.00174735) 14108
(0.00503454 0.00417215 0.00166173) 5650
(0.00792258 0.0041681 0.0018691) 14115
(0.00672833 0.00372302 0.00354988) 14473
(0.00772232 0.00366473 0.00346726) 14475
(0.00633981 0.00381982 0.00374179) 14532
(0.00724314 0.00375717 0.00369522) 14534
(0.00721942 0.00506572 0.0043904) 14834
(0.00778042 0.00503636 0.0044089) 14835
(0.0069918 0.00533897 0.00433167) 14893
(0.00755165 0.00529798 0.00437689) 14895
(0.00407042 0.00635177 0.0028642) 13508
(0.00426244 0.00639784 0.00286872) 13508
(0.0041178 0.00643131 0.00288033) 13508
(0.00623093 0.00639679 0.00310574) 15252
(0.00684139 0.00637041 0.00309212) 15253
(0.0197222 0.00695535 0.00353664) 2019
(0.0114199 0.00652693 0.00421445) 6682
(0.0141919 0.00644073 0.00416448) 6688
(0.0148346 0.00642985 0.00415777) 6689
(0.0154052 0.00642299 0.00415526) 6690
(0.0224853 0.00634151 0.0020298) 13484
(0.0237641 0.00658599 0.00225172) 6107
(0.0179153 0.00668018 0.00427966) 6635
(0.0207214 0.00664649 0.00415598) 6641
(0.0182538 0.00632289 0.0010822) 12456
(0.0191546 0.00366181 0.00469874) 10538
(0.0206187 0.00370972 0.0047621) 10541
(0.0192942 0.00330988 0.00167441) 398
(0.018261 0.00612723 0.00482706) 12216
(0.0199516 0.00589353 0.00503324) 12579
(0.0199516 0.00589353 0.00503324) 12579
(0.0199516 0.00589353 0.00503324) 12579
(0.0216221 0.00594126 0.005002) 12583
(0.0216221 0.00594126 0.005002) 12583
(0.0216221 0.00594126 0.005002) 12583
(0.019545 0.00404359 0.00495093) 10839
(0.0199547 0.00372126 0.00143689) 9219
(0.0203977 0.00409561 0.00127527) 11500
(0.0179751 0.00482014 0.000874102) 11615
(0.0199766 0.00474717 0.000928398) 11619
(0.0214339 0.00461975 0.000931398) 11562
(0.0188246 0.0059265 0.000968823) 12277
(0.0201694 0.00529589 0.000791849) 11920
(0.0216841 0.00521866 0.000756989) 11923
(0.0192457 0.00529337 0.00523982) 11078
(0.0207816 0.005333 0.00522711) 11441
(0.018214 0.00289014 0.00322844) 32256
(0.0223621 0.00304592 0.00323432) 764
(0.0244327 0.00295357 0.00321818) 33984
(0.0197118 0.00669703 0.00163978) 2499
(0.0197118 0.00669703 0.00163978) 2499
(0.0197118 0.00669703 0.00163978) 2499
(0.0216941 0.00665803 0.00166054) 2503
(0.0229007 0.00662551 0.00158255) 2505
(0.0219929 0.00607503 0.00161204) 6043
(0.00853673 0.00643143 0.00286873) 13517
(0.00853673 0.00643143 0.00286873) 13517
(0.00853673 0.00643143 0.00286873) 13517
(0.00901023 0.00643595 0.00286822) 13518
(0.00945159 0.00643853 0.0028694) 13518
(0.0098981 0.00643962 0.00286887) 13519
(0.0104037 0.00643544 0.00286981) 13520
(0.0109321 0.00642984 0.00287336) 13521
(0.00827557 0.00634725 0.00256152) 13576
(0.00867843 0.00636336 0.00257081) 13577
(0.00829701 0.00584254 0.00188249) 13756
(0.00877304 0.00583785 0.00186737) 13757
(0.0097164 0.00583316 0.00186144) 13759
(0.00828259 0.00559091 0.00171979) 13816
(0.00870708 0.00559335 0.00171053) 13817
(0.00865857 0.00466704 0.00161131) 13997
(0.00897545 0.00439219 0.00170005) 14057
(0.00935884 0.00439141 0.00169459) 14058
(0.00975315 0.00439076 0.00168999) 14059
(0.0102175 0.00439293 0.00169191) 14060
(0.0107443 0.00439515 0.00169934) 14061
(0.008529 0.0041676 0.00183045) 14117
(0.008529 0.0041676 0.00183045) 14117
(0.008529 0.0041676 0.00183045) 14117
(0.00898917 0.0041674 0.00182676) 14117
(0.00938974 0.00416475 0.00182265) 14118
(0.00979766 0.00416092 0.0018211) 14119
(0.010276 0.00416092 0.00182545) 14120
(0.0108067 0.00416639 0.00183091) 14121
(0.0083132 0.00395742 0.00204871) 14176
(0.00875719 0.0039572 0.00203836) 14177
(0.00826719 0.00359522 0.00317285) 14416
(0.00869962 0.00357905 0.00317338) 14417
(0.00847843 0.00364238 0.00345969) 14476
(0.00847843 0.00364238 0.00345969) 14476
(0.00847843 0.00364238 0.00345969) 14476
(0.00898449 0.0036281 0.00345967) 14477
(0.00988006 0.00361336 0.00346003) 14479
(0.0104131 0.00362107 0.00345766) 14480
(0.01094 0.00362882 0.00345771) 14481
(0.00837723 0.00373289 0.00368696) 14536
(0.00837723 0.00373289 0.00368696) 14536
(0.00837723 0.00373289 0.00368696) 14536
(0.00896797 0.00372886 0.00369263) 14537
(0.00992741 0.00372417 0.00370195) 14539
(0.0104484 0.00373058 0.00369905) 14540
(0.0109578 0.00373515 0.00369548) 14541
(0.00828939 0.00392098 0.00391156) 14596
(0.00868734 0.00470377 0.00439552) 14777
(0.00839536 0.00500047 0.0044257) 14836
(0.00887755 0.00499639 0.00443085) 14837
(0.00930234 0.00499594 0.00443683) 14838
(0.00973923 0.00499696 0.00443998) 14839
(0.0102498 0.00499794 0.00443483) 14840
(0.00829699 0.00528027 0.00439057) 14896
(0.00960876 0.00527921 0.00440848) 14899
(0.00815286 0.00622981 0.00366371) 15136
(0.00883131 0.00636881 0.00340688) 15197
(0.00925265 0.00637147 0.00340649) 15198
(0.00906328 0.00643045 0.00312487) 15258
(0.00951129 0.00643121 0.00312928) 15259
(0.00996519 0.00643156 0.00313236) 15259
(0.0104673 0.00642802 0.00313348) 15260
(0.0109813 0.00642351 0.00313407) 15261
(0.00542887 0.00641847 0.00292025) 13510
(0.00566401 0.00643967 0.00294044) 13511
(0.00618168 0.00644729 0.00293898) 13512
(0.00709941 0.00639736 0.00284293) 13514
(0.0077046 0.00584456 0.00190032) 13755
(0.00763611 0.00557128 0.00173089) 13815
(0.00458479 0.00431863 0.00162937) 5709
(0.00495811 0.00453777 0.0015972) 13989
(0.0059101 0.0044883 0.00168467) 14051
(0.00675487 0.00446113 0.00174064) 14053
(0.00455443 0.00409448 0.00188779) 14109
(0.00450138 0.00420031 0.00175713) 14109
(0.00497788 0.00413745 0.00166463) 5649
(0.00790637 0.00417011 0.00187113) 14115
(0.00675156 0.00372479 0.0035472) 14473
(0.00769436 0.00366656 0.0034697) 14475
(0.00636987 0.00382115 0.00373409) 14532
(0.00720533 0.00375867 0.0036959) 14534
(0.00721008 0.00506521 0.00438829) 14834
(0.00776512 0.00503743 0.00440739) 14835
(0.00696997 0.00533911 0.00433163) 14893
(0.00753004 0.00529808 0.00437681) 14895
(0.00408143 0.00635096 0.00286269) 13508
(0.00426383 0.00639646 0.00286769) 13508
(0.00429245 0.00643062 0.00287258) 13508
(0.00620525 0.00639703 0.00310689) 15252
(0.00679895 0.00637481 0.00309292) 15253
(0.0196857 0.00695116 0.00354225) 2019
(0.0113809 0.00652851 0.00421528) 6682
(0.0141742 0.00644072 0.00416436) 6688
(0.0148188 0.00642975 0.00415757) 6689
(0.0153903 0.00642278 0.00415504) 6690
(0.0223954 0.0063334 0.00201795) 13484
(0.0237226 0.00657738 0.00224784) 6107
(0.0206217 0.00664786 0.00415754) 6641
(0.0182251 0.00632698 0.00108463) 12456
(0.0191017 0.00366009 0.00469704) 10538
(0.0205954 0.00370444 0.00475531) 10541
(0.0192254 0.00331297 0.00166993) 398
(0.0181909 0.006125 0.00483196) 12216
(0.0198787 0.0058921 0.00503527) 12579
(0.0198787 0.0058921 0.00503527) 12579
(0.0198787 0.0058921 0.00503527) 12579
(0.021584 0.00593656 0.00500339) 12583
(0.021584 0.00593656 0.00500339) 12583
(0.021584 0.00593656 0.00500339) 12583
(0.0194913 0.00404164 0.00494731) 10838
(0.0198456 0.00372394 0.00143483) 9219
(0.0202988 0.00410035 0.00127473) 11500
(0.0199121 0.00475164 0.000927587) 11619
(0.0214075 0.00462724 0.000931981) 11562
(0.0187727 0.00592725 0.000969577) 12277
(0.0200928 0.0052984 0.000791912) 11920
(0.0216654 0.00522473 0.000761666) 11923
(0.0191901 0.00529263 0.00524084) 11078
(0.0207469 0.00532797 0.00522635) 11441
(0.018112 0.00288496 0.00322474) 32256
(0.0222217 0.00304602 0.00323461) 764
(0.0244154 0.00295686 0.00321675) 33984
(0.0196172 0.00669977 0.00163645) 2499
(0.0196172 0.00669977 0.00163645) 2499
(0.0196172 0.00669977 0.00163645) 2499
(0.021644 0.00665949 0.00166308) 2503
(0.0228955 0.00662993 0.00159141) 2505
(0.021874 0.00607095 0.00160848) 6043
(0.00851345 0.00643149 0.00286875) 13517
(0.00851345 0.00643149 0.00286875) 13517
(0.00851345 0.00643149 0.00286875) 13517
(0.00898745 0.006436 0.00286807) 13517
(0.00942887 0.00643859 0.0028694) 13518
(0.00987413 0.00643978 0.00286887) 13519
(0.0103781 0.00643576 0.00286973) 13520
(0.0109071 0.0064301 0.00287319) 13521
(0.00825341 0.00634734 0.00256168) 13576
(0.00865589 0.00636334 0.0025706) 13577
(0.00827497 0.00584257 0.00188244) 13756
(0.00874912 0.00583807 0.00186728) 13757
(0.00969036 0.00583327 0.00186103) 13759
(0.0082606 0.00559081 0.0017196) 13816
(0.00868348 0.00559329 0.00171024) 13817
(0.00863347 0.00466721 0.00161093) 13997
(0.0089525 0.00439205 0.00169991) 14057
(0.00933681 0.00439145 0.00169451) 14058
(0.00973048 0.00439064 0.00168992) 14059
(0.0101923 0.00439284 0.00169154) 14060
(0.0107174 0.00439502 0.00169889) 14061
(0.00850619 0.00416739 0.00183032) 14117
(0.00850619 0.00416739 0.00183032) 14117
(0.00850619 0.00416739 0.00183032) 14117
(0.00896564 0.00416715 0.0018266) 14117
(0.00936706 0.00416462 0.00182261) 14118
(0.00977428 0.00416095 0.00182088) 14119
(0.0102506 0.00416069 0.00182516) 14120
(0.0107801 0.00416605 0.00183062) 14121
(0.00829025 0.00395731 0.00204857) 14176
(0.00873313 0.00395695 0.00203821) 14177
(0.00824502 0.00359524 0.00317318) 14416
(0.00867728 0.00357905 0.00317368) 14417
(0.00845361 0.00364288 0.00345997) 14476
(0.00845361 0.00364288 0.00345997) 14476
(0.00845361 0.00364288 0.00345997) 14476
(0.00896104 0.00362841 0.00345978) 14477
(0.00939557 0.0036167 0.00346117) 14478
(0.00985383 0.00361308 0.00346027) 14479
(0.0103867 0.00362061 0.00345785) 14480
(0.0109155 0.00362852 0.0034577) 14481
(0.0083476 0.00373296 0.00368687) 14536
(0.0083476 0.00373296 0.00368687) 14536
(0.0083476 0.00373296 0.00368687) 14536
(0.00894229 0.0037289 0.00369262) 14537
(0.00942363 0.00372371 0.00369834) 14538
(0.00990145 0.00372387 0.0037021) 14539
(0.0104229 0.00373024 0.00369934) 14540
(0.0109334 0.00373493 0.00369568) 14541
(0.00826417 0.00392101 0.00391153) 14596
(0.00866435 0.00470395 0.00439576) 14777
(0.00837245 0.00500067 0.00442586) 14836
(0.00885423 0.00499648 0.00443108) 14837
(0.00927984 0.00499586 0.00443687) 14838
(0.00971525 0.0049969 0.00444018) 14839
(0.0102245 0.00499789 0.0044352) 14840
(0.00827403 0.00528032 0.00439068) 14896
(0.00915262 0.00527954 0.00440595) 14898
(0.00958477 0.00527912 0.00440872) 14899
(0.00812994 0.00622987 0.00366388) 15136
(0.00880637 0.00636907 0.00340702) 15197
(0.00922902 0.00637165 0.00340654) 15198
(0.00904041 0.00643059 0.0031248) 15258
(0.00948829 0.00643135 0.0031292) 15258
(0.00994129 0.00643172 0.00313231) 15259
(0.0104424 0.00642828 0.00313349) 15260
(0.0109572 0.00642371 0.00313404) 15261
(0.0054341 0.00641636 0.00292016) 13510
(0.00564654 0.00643905 0.00293964) 13511
(0.00618591 0.00644631 0.00293974) 13512
(0.00704675 0.00640273 0.00284466) 13514
(0.00768914 0.00584425 0.00190206) 13755
(0.00761929 0.00557033 0.00173195) 13815
(0.00472178 0.00431315 0.00161749) 5709
(0.00494305 0.00453587 0.00159409) 13989
(0.00585823 0.00449028 0.00168022) 14051
(0.00670842 0.00446149 0.00173575) 14053
(0.00454663 0.00409161 0.00189319) 14109
(0.00462215 0.00418356 0.00177212) 14109
(0.00493145 0.00412062 0.00167478) 5649
(0.00788889 0.00417186 0.00187284) 14115
(0.00678037 0.00372691 0.00354356) 14473
(0.00766753 0.00366857 0.00347226) 14475
(0.00640265 0.00382236 0.00372669) 14532
(0.00716844 0.00376022 0.00369657) 14534
(0.00720151 0.00506464 0.00438584) 14834
(0.00774995 0.0050384 0.00440583) 14835
(0.00694813 0.00533925 0.0043316) 14893
(0.00750831 0.00529818 0.00437673) 14895
(0.00409058 0.00634991 0.00286153) 13508
(0.00426371 0.00639479 0.00286668) 13508
(0.00439391 0.0064357 0.00287305) 13508
(0.00618261 0.00639696 0.0031076) 15252
(0.00675384 0.00637965 0.00309398) 15253
(0.0196487 0.00694711 0.00354777) 2019
(0.0113412 0.00653016 0.00421619) 6682
(0.0124965 0.00648522 0.00419004) 6684
(0.0141563 0.00644071 0.00416424) 6688
(0.0148029 0.00642966 0.00415737) 6689
(0.0153754 0.00642258 0.00415482) 6690
(0.022299 0.00632622 0.00200561) 13484
(0.0236811 0.00656846 0.00224325) 6107
(0.0205193 0.00664961 0.00415916) 6641
(0.0225377 0.00675814 0.00406505) 1965
(0.0190487 0.00365839 0.00469538) 7178
(0.0205707 0.00369945 0.00474884) 10541
(0.0191557 0.00331599 0.00166533) 398
(0.0181168 0.00612312 0.00483701) 12216
(0.0198051 0.0058907 0.0050374) 12579
(0.0198051 0.0058907 0.0050374) 12579
(0.0198051 0.0058907 0.0050374) 12579
(0.0215465 0.00593192 0.00500471) 12583
(0.0215465 0.00593192 0.00500471) 12583
(0.0215465 0.00593192 0.00500471) 12583
(0.0194376 0.00403959 0.00494372) 10838
(0.0197357 0.0037266 0.00143247) 9219
(0.0201988 0.00410493 0.00127391) 11500
(0.0198466 0.00475592 0.000926691) 11619
(0.0213793 0.00463462 0.000932562) 11562
(0.0187208 0.00592805 0.000970279) 12277
(0.020014 0.00530094 0.000791791) 11920
(0.0216435 0.00523045 0.000766134) 11923
(0.0191342 0.00529186 0.00524192) 11078
(0.0207113 0.00532323 0.00522567) 11441
(0.0180122 0.00288006 0.00322105) 32256
(0.0220813 0.00304565 0.0032347) 764
(0.0243957 0.00296021 0.0032155) 33984
(0.0195148 0.00670277 0.00163243) 2499
(0.0195148 0.00670277 0.00163243) 2499
(0.0195148 0.00670277 0.00163243) 2499
(0.0215925 0.00666084 0.00166527) 2503
(0.0228842 0.00663379 0.00159921) 2505
(0.0217404 0.00606893 0.0016062) 6043
(0.0228815 0.00624152 0.00169632) 13485
(0.0084901 0.00643156 0.00286877) 13516
(0.0084901 0.00643156 0.00286877) 13516
(0.0084901 0.00643156 0.00286877) 13516
(0.00896467 0.00643606 0.00286793) 13517
(0.00940618 0.00643865 0.0028694) 13518
(0.00985024 0.00643994 0.00286887) 13519
(0.0103525 0.00643607 0.00286965) 13520
(0.0108821 0.00643036 0.00287302) 13521
(0.00823129 0.00634741 0.00256186) 13576
(0.0086334 0.00636331 0.00257039) 13577
(0.00825305 0.00584262 0.00188241) 13756
(0.00872525 0.00583831 0.0018672) 13757
(0.00966432 0.00583338 0.00186063) 13759
(0.00823868 0.00559071 0.00171942) 13816
(0.00865988 0.00559322 0.00170993) 13817
(0.00860823 0.00466738 0.00161053) 13997
(0.00892946 0.0043919 0.00169976) 14057
(0.00931476 0.00439147 0.00169443) 14058
(0.00970782 0.00439059 0.00168982) 14059
(0.0101671 0.00439271 0.0016912) 14060
(0.0106905 0.00439489 0.00169844) 14061
(0.00848341 0.00416719 0.00183019) 14116
(0.00848341 0.00416719 0.00183019) 14116
(0.00848341 0.00416719 0.00183019) 14116
(0.00894208 0.00416689 0.00182643) 14117
(0.00934436 0.00416449 0.00182255) 14118
(0.00975095 0.0041609 0.00182072) 14119
(0.0102252 0.00416051 0.00182485) 14120
(0.0107536 0.0041657 0.00183032) 14121
(0.00826735 0.00395721 0.00204846) 14176
(0.00870908 0.0039567 0.00203806) 14177
(0.00822288 0.00359527 0.0031735) 14416
(0.00865502 0.00357905 0.00317399) 14417
(0.00842871 0.00364341 0.00346026) 14476
(0.00842871 0.00364341 0.00346026) 14476
(0.00842871 0.00364341 0.00346026) 14476
(0.00893759 0.00362873 0.00345987) 14477
(0.0093723 0.00361691 0.0034613) 14478
(0.00982771 0.00361281 0.00346051) 14479
(0.0103602 0.00362015 0.00345805) 14480
(0.0108909 0.00362821 0.00345769) 14481
(0.0083177 0.00373303 0.00368676) 14536
(0.0083177 0.00373303 0.00368676) 14536
(0.0083177 0.00373303 0.00368676) 14536
(0.00891654 0.00372894 0.00369261) 14537
(0.00939897 0.00372372 0.00369829) 14538
(0.00987551 0.00372357 0.00370225) 14539
(0.0103974 0.0037299 0.00369964) 14540
(0.0109089 0.0037347 0.00369589) 14541
(0.00823891 0.00392105 0.00391151) 14596
(0.00864135 0.00470415 0.00439601) 14777
(0.00834958 0.00500088 0.00442601) 14836
(0.00883092 0.00499657 0.0044313) 14837
(0.00925734 0.00499577 0.00443691) 14838
(0.00969134 0.00499684 0.00444038) 14839
(0.0101992 0.00499784 0.00443557) 14840
(0.00825111 0.00528037 0.00439078) 14896
(0.008721 0.00528135 0.00439806) 14897
(0.00913041 0.00527975 0.00440596) 14898
(0.00956088 0.00527904 0.00440895) 14899
(0.00878133 0.00636933 0.00340717) 15197
(0.00920531 0.00637183 0.0034066) 15198
(0.00901752 0.00643072 0.00312474) 15258
(0.00946531 0.00643148 0.00312911) 15258
(0.00991746 0.00643188 0.00313225) 15259
(0.0104175 0.00642853 0.00313349) 15260
(0.0109331 0.00642391 0.00313402) 15261
(0.00543988 0.00641405 0.00292012) 13510
(0.00564783 0.00643846 0.00293952) 13511
(0.00616703 0.00644516 0.00294058) 13512
(0.00697449 0.00640956 0.00284793) 13513
(0.00767301 0.00584378 0.00190353) 13755
(0.00760216 0.00556908 0.00173298) 13815
(0.00482827 0.00430828 0.00160585) 5709
(0.00493048 0.00453312 0.00159057) 13989
(0.00581038 0.00449209 0.00167608) 14051
(0.00666148 0.00446189 0.00173095) 14053
(0.0045394 0.00409044 0.00189708) 14109
(0.00469687 0.00416205 0.00179268) 14109
(0.00488903 0.00411781 0.00168915) 5649
(0.00787031 0.00417339 0.00187436) 14115
(0.00681738 0.00372987 0.00353853) 14473
(0.00764268 0.00367074 0.00347481) 14475
(0.00713225 0.0037618 0.0036972) 14534
(0.00719543 0.00506399 0.00438265) 14834
(0.00773426 0.00503915 0.00440445) 14835
(0.00693458 0.00533841 0.00432836) 14893
(0.00748673 0.00529829 0.00437666) 14894
(0.00409515 0.00634939 0.00286082) 13508
(0.00426298 0.00639319 0.00286567) 13508
(0.00445184 0.00644119 0.0028772) 13508
(0.00616174 0.00639669 0.00310828) 15252
(0.00670652 0.00638496 0.00309535) 15253
(0.0196107 0.00694324 0.00355317) 2019
(0.0113006 0.00653189 0.00421716) 6682
(0.0124681 0.0064861 0.00419) 6684
(0.0141382 0.00644071 0.00416414) 6688
(0.0147869 0.00642958 0.00415718) 6689
(0.0153605 0.00642238 0.0041546) 6690
(0.0221943 0.00632074 0.00199454) 13484
(0.0236397 0.00655925 0.00223798) 6107
(0.0204134 0.0066518 0.00416086) 6640
(0.0224954 0.00675152 0.0040697) 1964
(0.0189955 0.00365674 0.00469377) 7177
(0.0205444 0.00369476 0.00474268) 10541
(0.0190851 0.00331891 0.00166063) 398
(0.0180388 0.00612165 0.00484215) 12216
(0.0197311 0.00588931 0.00503963) 12579
(0.0197311 0.00588931 0.00503963) 12579
(0.0197311 0.00588931 0.00503963) 12579
(0.0215087 0.00592741 0.00500602) 12583
(0.0215087 0.00592741 0.00500602) 12583
(0.0215087 0.00592741 0.00500602) 12583
(0.0193843 0.00403742 0.00494014) 10538
(0.0196255 0.00372926 0.00142982) 9219
(0.0200976 0.00410932 0.00127284) 11500
(0.0197801 0.00476006 0.000925711) 11619
(0.0213499 0.00464192 0.000933137) 11562
(0.0186689 0.00592891 0.000970945) 12277
(0.0199328 0.00530357 0.000791489) 11919
(0.0216188 0.00523586 0.000770416) 11923
(0.0190784 0.00529107 0.00524307) 11078
(0.0206745 0.00531877 0.00522507) 11441
(0.0179145 0.00287539 0.00321744) 32112
(0.0219404 0.00304474 0.00323469) 763
(0.0243732 0.00296364 0.00321438) 33984
(0.0194031 0.00670619 0.00162765) 2498
(0.0194031 0.00670619 0.00162765) 2498
(0.0194031 0.00670619 0.00162765) 2498
(0.0215391 0.00666205 0.00166706) 2503
(0.0228629 0.00663696 0.00160536) 2505
(0.0215927 0.00606929 0.00160534) 6043
(0.0228759 0.00623598 0.00169648) 13485
(0.00846668 0.00643163 0.00286879) 13516
(0.00846668 0.00643163 0.00286879) 13516
(0.00846668 0.00643163 0.00286879) 13516
(0.00894186 0.00643611 0.00286778) 13517
(0.0093835 0.00643871 0.00286939) 13518
(0.00982645 0.00644009 0.00286887) 13519
(0.0103269 0.00643637 0.00286958) 13520
(0.0108569 0.00643063 0.00287285) 13521
(0.00820922 0.00634749 0.00256204) 13576
(0.00861096 0.00636327 0.00257019) 13577
(0.00823124 0.00584265 0.00188239) 13756
(0.00870144 0.00583855 0.00186713) 13757
(0.00963828 0.00583348 0.00186023) 13759
(0.00821682 0.00559061 0.00171924) 13816
(0.00863627 0.00559314 0.00170962) 13817
(0.00858285 0.00466755 0.00161012) 13997
(0.00890633 0.00439174 0.0016996) 14057
(0.00929266 0.00439148 0.00169434) 14058
(0.00968521 0.00439054 0.00168972) 14059
(0.010142 0.00439258 0.00169087) 14060
(0.0106636 0.00439476 0.00169799) 14061
(0.00846068 0.00416699 0.00183007) 14116
(0.00846068 0.00416699 0.00183007) 14116
(0.00846068 0.00416699 0.00183007) 14116
(0.0089185 0.00416663 0.00182626) 14117
(0.00932163 0.00416437 0.00182249) 14118
(0.00972768 0.00416086 0.00182056) 14119
(0.0101998 0.00416034 0.00182453) 14120
(0.0107271 0.00416536 0.00183002) 14121
(0.00824451 0.00395712 0.00204836) 14176
(0.00868505 0.00395645 0.00203791) 14177
(0.00905576 0.00395244 0.00203182) 14178
(0.00820075 0.00359531 0.00317383) 14416
(0.00863284 0.00357907 0.0031743) 14417
(0.0084037 0.00364396 0.00346055) 14476
(0.0084037 0.00364396 0.00346055) 14476
(0.0084037 0.00364396 0.00346055) 14476
(0.00891414 0.00362906 0.00345997) 14477
(0.00934917 0.00361714 0.00346142) 14478
(0.00980168 0.00361256 0.00346075) 14479
(0.0103336 0.00361969 0.00345826) 14480
(0.0108662 0.00362789 0.0034577) 14481
(0.0082875 0.00373312 0.00368664) 14536
(0.0082875 0.00373312 0.00368664) 14536
(0.0082875 0.00373312 0.00368664) 14536
(0.00889069 0.00372899 0.0036926) 14537
(0.00937436 0.00372373 0.00369824) 14538
(0.0098496 0.00372329 0.00370239) 14539
(0.0103718 0.00372956 0.00369993) 14540
(0.0108844 0.00373448 0.00369611) 14541
(0.00821358 0.0039211 0.00391149) 14596
(0.00861834 0.00470437 0.00439626) 14777
(0.00832676 0.00500109 0.00442615) 14836
(0.00880763 0.00499668 0.00443153) 14837
(0.00923485 0.00499569 0.00443696) 14838
(0.00966749 0.00499675 0.00444056) 14839
(0.0101739 0.00499779 0.00443594) 14840
(0.00822824 0.00528041 0.00439087) 14896
(0.00869803 0.00528149 0.00439818) 14897
(0.00910824 0.00527992 0.00440596) 14898
(0.00953702 0.00527902 0.00440916) 14899
(0.00875619 0.0063696 0.00340733) 15197
(0.00918152 0.00637203 0.00340666) 15198
(0.00899461 0.00643086 0.00312468) 15257
(0.00944234 0.00643161 0.00312903) 15258
(0.00989371 0.00643203 0.00313219) 15259
(0.0103926 0.00642878 0.00313349) 15260
(0.0109088 0.00642412 0.003134) 15261
(0.00543208 0.00641201 0.00291859) 13510
(0.00563169 0.00643765 0.00293855) 13511
(0.00614844 0.00644407 0.00294124) 13512
(0.00689533 0.00641741 0.00285258) 13513
(0.00765655 0.0058434 0.00190522) 13755
(0.00758478 0.00556778 0.00173406) 13815
(0.00490596 0.00430522 0.00159573) 5709
(0.00492167 0.00452937 0.00158676) 5709
(0.00576613 0.00449386 0.00167221) 14051
(0.00661456 0.00446231 0.00172626) 14053
(0.0045351 0.00408972 0.00190006) 14109
(0.004725 0.00414153 0.00181436) 14109
(0.00483952 0.00413023 0.00170224) 5649
(0.00785151 0.00417497 0.00187596) 14115
(0.00685357 0.0037331 0.00353244) 14473
(0.00761866 0.00367306 0.00347734) 14475
(0.007097 0.00376338 0.00369777) 14534
(0.00718957 0.0050634 0.0043789) 14834
(0.0077186 0.00503979 0.00440304) 14835
(0.00689042 0.00533989 0.00433363) 14893
(0.00746152 0.00529813 0.00437607) 14894
(0.00409492 0.0063489 0.00286065) 13508
(0.00427036 0.00639216 0.00286475) 13508
(0.00446884 0.00644257 0.00287883) 13508
(0.00614458 0.00639594 0.00310956) 15252
(0.0066566 0.00639064 0.003097) 15253
(0.0195719 0.00693953 0.00355847) 2019
(0.0112592 0.0065337 0.00421821) 6682
(0.0124393 0.006487 0.00418999) 6684
(0.0141201 0.00644073 0.00416402) 6688
(0.0147709 0.00642949 0.00415702) 6689
(0.0153456 0.00642218 0.0041544) 6690
(0.0220818 0.00631657 0.00198275) 13484
(0.0235983 0.00654984 0.00223208) 6107
(0.0246044 0.00668728 0.00222312) 13429
(0.0203045 0.00665438 0.00416272) 6640
(0.0224512 0.00674495 0.00407432) 1964
(0.0189424 0.00365516 0.00469224) 7177
(0.0205164 0.00369035 0.00473684) 10541
(0.0190138 0.00332177 0.0016558) 398
(0.0179581 0.00612059 0.00484731) 12215
(0.0196569 0.00588792 0.00504197) 12579
(0.0196569 0.00588792 0.00504197) 12579
(0.0196569 0.00588792 0.00504197) 12579
(0.0214696 0.00592311 0.00500731) 12582
(0.0214696 0.00592311 0.00500731) 12582
(0.0214696 0.00592311 0.00500731) 12582
(0.0193316 0.00403515 0.00493656) 10538
(0.0195151 0.00373194 0.00142692) 9219
(0.0199953 0.00411357 0.00127153) 11499
(0.0197126 0.00476405 0.000924648) 11619
(0.0213193 0.00464914 0.000933696) 11562
(0.0186173 0.0059298 0.000971572) 12277
(0.01985 0.00530634 0.000791062) 11919
(0.0215918 0.005241 0.000774533) 11923
(0.0190224 0.00529032 0.00524432) 11078
(0.0206365 0.00531459 0.00522454) 11441
(0.0178185 0.00287079 0.00321387) 32112
(0.0217988 0.00304329 0.00323455) 763
(0.0243475 0.00296714 0.00321342) 33984
(0.0192828 0.00671012 0.00162203) 2498
(0.0192828 0.00671012 0.00162203) 2498
(0.0192828 0.00671012 0.00162203) 2498
(0.0214839 0.00666324 0.00166857) 2502
(0.0228314 0.00663954 0.00160972) 2505
(0.0214316 0.00607218 0.00160569) 6042
(0.0228685 0.00623034 0.00169627) 13485
(0.0084432 0.00643171 0.00286881) 13516
(0.0084432 0.00643171 0.00286881) 13516
(0.0084432 0.00643171 0.00286881) 13516
(0.00891902 0.00643616 0.00286764) 13517
(0.00936083 0.00643876 0.00286937) 13518
(0.00980273 0.00644024 0.00286887) 13519
(0.0103014 0.00643668 0.00286952) 13520
(0.0108317 0.00643091 0.00287269) 13521
(0.00818717 0.00634755 0.00256224) 13576
(0.00858857 0.00636323 0.00256999) 13577
(0.00820953 0.00584266 0.00188236) 13756
(0.00867769 0.00583879 0.00186706) 13757
(0.00961221 0.00583358 0.00185982) 13759
(0.00819502 0.0055905 0.00171908) 13816
(0.00861267 0.00559307 0.00170932) 13817
(0.00855732 0.00466774 0.0016097) 13997
(0.0088831 0.00439158 0.00169944) 14057
(0.00927052 0.00439149 0.00169424) 14058
(0.00966264 0.0043905 0.00168962) 14059
(0.010117 0.00439246 0.00169055) 14060
(0.0106367 0.00439462 0.00169754) 14061
(0.00843798 0.00416679 0.00182997) 14116
(0.00843798 0.00416679 0.00182997) 14116
(0.00843798 0.00416679 0.00182997) 14116
(0.00889489 0.00416637 0.00182609) 14117
(0.00929887 0.00416423 0.00182242) 14118
(0.00970445 0.00416081 0.00182041) 14119
(0.0101745 0.00416017 0.00182422) 14120
(0.0107005 0.00416502 0.00182971) 14121
(0.00822173 0.00395703 0.00204828) 14176
(0.00866103 0.0039562 0.00203777) 14177
(0.00903267 0.00395238 0.00203164) 14178
(0.00817865 0.00359537 0.00317417) 14416
(0.00861074 0.00357909 0.00317462) 14417
(0.00837859 0.00364453 0.00346086) 14476
(0.00837859 0.00364453 0.00346086) 14476
(0.00837859 0.00364453 0.00346086) 14476
(0.00889068 0.0036294 0.00346007) 14477
(0.00932616 0.00361738 0.00346154) 14478
(0.00977575 0.00361233 0.00346099) 14479
(0.0103069 0.00361922 0.00345847) 14480
(0.0108413 0.00362757 0.00345773) 14481
(0.00825703 0.00373323 0.00368651) 14536
(0.00825703 0.00373323 0.00368651) 14536
(0.00825703 0.00373323 0.00368651) 14536
(0.00886477 0.00372904 0.0036926) 14537
(0.0093498 0.00372375 0.00369818) 14538
(0.00982373 0.00372302 0.00370251) 14539
(0.0103461 0.00372921 0.00370023) 14540
(0.0108598 0.00373424 0.00369633) 14541
(0.0081882 0.00392118 0.00391149) 14596
(0.00859532 0.0047046 0.00439652) 14777
(0.00830399 0.0050013 0.00442627) 14836
(0.00878435 0.00499682 0.00443177) 14837
(0.00921236 0.00499561 0.00443701) 14838
(0.00964371 0.00499665 0.00444074) 14839
(0.0101486 0.00499775 0.00443631) 14840
(0.00820541 0.00528044 0.00439095) 14896
(0.00867508 0.00528159 0.00439831) 14897
(0.00908608 0.00528011 0.00440597) 14898
(0.00951321 0.00527906 0.00440936) 14899
(0.00873093 0.00636987 0.00340749) 15197
(0.00915763 0.00637223 0.00340672) 15198
(0.00897167 0.006431 0.00312462) 15257
(0.00941938 0.00643175 0.00312895) 15258
(0.00987004 0.00643218 0.00313213) 15259
(0.0103677 0.00642903 0.00313349) 15260
(0.0108845 0.00642433 0.00313398) 15261
(0.00545612 0.00640856 0.00292074) 13510
(0.00561686 0.0064367 0.00293738) 13511
(0.00612935 0.00644313 0.00294175) 13512
(0.00682826 0.00642598 0.00285815) 13513
(0.00763961 0.00584306 0.00190712) 13755
(0.00756707 0.00556663 0.00173524) 13815
(0.00496513 0.00430407 0.00158685) 5709
(0.00491517 0.00452489 0.00158291) 5709
(0.00572131 0.00449549 0.00166812) 14051
(0.00657861 0.0044636 0.00172357) 14053
(0.00453278 0.0040892 0.00190303) 14109
(0.00471134 0.00412289 0.00183506) 14109
(0.00476694 0.00415569 0.00170847) 5649
(0.00783266 0.00417677 0.00187774) 14115
(0.00506517 0.00343212 0.00323278) 5410
(0.0068837 0.00373675 0.0035257) 14473
(0.00759535 0.0036755 0.00347979) 14475
(0.00471534 0.00362797 0.0036115) 14529
(0.00709388 0.00376357 0.00369725) 14534
(0.00718215 0.0050624 0.00437513) 14834
(0.00770343 0.00504031 0.00440155) 14835
(0.00686994 0.00534021 0.0043339) 14893
(0.00743903 0.00529798 0.00437601) 14894
(0.00409268 0.00634843 0.00286069) 13508
(0.00426638 0.00638994 0.00286335) 13508
(0.00451452 0.00644815 0.00288588) 13509
(0.00622679 0.00639156 0.00313857) 15252
(0.00660187 0.00639616 0.00309887) 15253
(0.0195323 0.00693598 0.00356367) 2019
(0.0112176 0.00653554 0.0042193) 6682
(0.0124102 0.00648793 0.00419001) 6684
(0.0133355 0.00645778 0.00417618) 6686
(0.0141018 0.00644075 0.00416391) 6688
(0.0147547 0.00642941 0.00415687) 6689
(0.0153306 0.00642197 0.0041542) 6690
(0.0158628 0.00641945 0.00415147) 6691
(0.0219603 0.00631464 0.00197278) 13483
(0.0235569 0.00654023 0.00222559) 6107
(0.0245821 0.00668508 0.00222704) 13429
(0.0201932 0.0066573 0.00416476) 1900
(0.0224049 0.00673839 0.00407897) 1964
(0.0188892 0.00365368 0.00469085) 7177
(0.0204866 0.00368626 0.00473134) 10540
(0.0189421 0.00332458 0.00165087) 397
(0.0208593 0.00325693 0.00173599) 461
(0.0178762 0.00611992 0.00485241) 12215
(0.0195825 0.00588649 0.00504441) 12579
(0.0195825 0.00588649 0.00504441) 12579
(0.0195825 0.00588649 0.00504441) 12579
(0.021429 0.00591904 0.00500854) 12582
(0.021429 0.00591904 0.00500854) 12582
(0.021429 0.00591904 0.00500854) 12582
(0.0223909 0.00605231 0.00495023) 12344
(0.0192795 0.00403277 0.00493301) 10538
(0.0194049 0.00373458 0.00142385) 9218
(0.0198922 0.00411773 0.00126999) 11499
(0.0196443 0.00476793 0.000923493) 11619
(0.0212874 0.00465627 0.000934235) 11562
(0.0185659 0.00593073 0.000972164) 12277
(0.0197657 0.0053093 0.000790528) 11919
(0.0215627 0.00524587 0.000778469) 11923
(0.0189667 0.00528958 0.00524567) 11077
(0.0205973 0.00531065 0.00522408) 11441
(0.0216583 0.00304143 0.00323428) 763
(0.0243185 0.00297075 0.0032126) 33984
(0.0191548 0.00671478 0.00161557) 2498
(0.0191548 0.00671478 0.00161557) 2498
(0.0191548 0.00671478 0.00161557) 2498
(0.021427 0.00666451 0.00166991) 2502
(0.0227952 0.00664179 0.00161337) 2505
(0.021258 0.00607804 0.00160732) 6042
(0.0228595 0.00622473 0.00169586) 13485
(0.00841959 0.00643178 0.00286884) 13516
(0.00841959 0.00643178 0.00286884) 13516
(0.00841959 0.00643178 0.00286884) 13516
(0.00889616 0.00643621 0.0028675) 13517
(0.00933816 0.00643882 0.00286934) 13518
(0.00977908 0.00644038 0.00286887) 13519
(0.010276 0.00643698 0.00286947) 13520
(0.0108065 0.00643118 0.00287253) 13521
(0.00816514 0.00634761 0.00256245) 13576
(0.00856622 0.00636318 0.00256978) 13577
(0.00818791 0.00584265 0.00188233) 13756
(0.00865399 0.00583901 0.00186699) 13757
(0.00958613 0.00583367 0.00185943) 13759
(0.00817333 0.0055904 0.00171892) 13816
(0.00858907 0.00559298 0.001709) 13817
(0.00853164 0.00466793 0.00160927) 13997
(0.00885975 0.00439142 0.00169927) 14057
(0.00924832 0.00439148 0.00169414) 14058
(0.00964009 0.00439046 0.00168953) 14059
(0.0100921 0.00439234 0.00169024) 14060
(0.0106099 0.00439449 0.00169709) 14061
(0.00841531 0.0041666 0.00182988) 14116
(0.00841531 0.0041666 0.00182988) 14116
(0.00841531 0.0041666 0.00182988) 14116
(0.00887126 0.0041661 0.00182592) 14117
(0.00927607 0.00416409 0.00182234) 14118
(0.00968127 0.00416076 0.00182027) 14119
(0.0101493 0.00416001 0.00182391) 14120
(0.0106739 0.00416468 0.00182941) 14121
(0.00819905 0.00395695 0.00204822) 14176
(0.00863705 0.00395594 0.00203763) 14177
(0.00900953 0.00395232 0.00203144) 14178
(0.00815657 0.00359544 0.00317452) 14416
(0.00858875 0.00357912 0.00317496) 14417
(0.00835341 0.00364513 0.00346118) 14476
(0.00835341 0.00364513 0.00346118) 14476
(0.00835341 0.00364513 0.00346118) 14476
(0.0088672 0.00362975 0.00346018) 14477
(0.00930328 0.00361764 0.00346165) 14478
(0.00974994 0.00361212 0.00346123) 14479
(0.0102801 0.00361875 0.00345868) 14480
(0.0108164 0.00362723 0.00345776) 14481
(0.0082263 0.00373335 0.00368636) 14536
(0.0082263 0.00373335 0.00368636) 14536
(0.0082263 0.00373335 0.00368636) 14536
(0.00883875 0.00372909 0.00369258) 14537
(0.00932529 0.00372379 0.00369812) 14538
(0.0097979 0.00372276 0.00370263) 14539
(0.0103203 0.00372885 0.00370052) 14540
(0.0108351 0.00373401 0.00369657) 14541
(0.00816276 0.00392129 0.0039115) 14596
(0.00857228 0.00470484 0.00439677) 14777
(0.00828128 0.00500151 0.00442639) 14836
(0.00876111 0.00499697 0.004432) 14837
(0.00918986 0.00499552 0.00443708) 14838
(0.00962 0.00499654 0.00444092) 14839
(0.0101232 0.00499771 0.00443667) 14840
(0.00818263 0.00528047 0.00439102) 14896
(0.00865214 0.00528167 0.00439845) 14897
(0.0090639 0.00528032 0.00440598) 14898
(0.00948948 0.00527911 0.00440954) 14898
(0.00870556 0.00637015 0.00340765) 15197
(0.00913366 0.00637245 0.00340677) 15198
(0.0089487 0.00643113 0.00312456) 15257
(0.00939642 0.00643189 0.00312888) 15258
(0.00984643 0.00643232 0.00313205) 15259
(0.0103429 0.00642927 0.00313348) 15260
(0.0108602 0.00642455 0.00313396) 15261
(0.00547047 0.00640481 0.00292155) 13510
(0.00562005 0.00643572 0.00293693) 13511
(0.00610536 0.00644305 0.00294186) 13512
(0.00672499 0.00643339 0.0028685) 13513
(0.00762223 0.0058429 0.00190954) 13755
(0.0075494 0.00556545 0.00173655) 13815
(0.00500258 0.00430754 0.00158185) 5710
(0.00490488 0.00451973 0.00157885) 5709
(0.00565392 0.00449877 0.00166268) 14051
(0.00654738 0.00446437 0.00172192) 14053
(0.00453276 0.00408927 0.00190594) 14109
(0.00468726 0.00411023 0.00184851) 14109
(0.00199531 0.00414571 0.00173004) 5643
(0.00459301 0.00419574 0.00171298) 5649
(0.00781364 0.00417897 0.00187964) 14115
(0.0049967 0.00344673 0.00323819) 5409
(0.00757274 0.00367791 0.00348195) 14475
(0.00327706 0.00364374 0.00359314) 14466
(0.00468879 0.00362942 0.00361268) 14529
(0.00706063 0.00376524 0.00369777) 14534
(0.00717333 0.00506127 0.0043711) 14834
(0.00768784 0.00504067 0.00440012) 14835
(0.00684607 0.00534061 0.00433499) 14893
(0.00741642 0.00529794 0.00437578) 14894
(0.00408683 0.00634826 0.0028611) 13508
(0.00426604 0.00638779 0.00286207) 13508
(0.00453318 0.00644977 0.0028893) 13509
(0.0061619 0.00638508 0.00316613) 15252
(0.00657936 0.00639599 0.00309925) 15253
(0.019492 0.00693258 0.00356879) 2018
(0.0111753 0.00653746 0.00422045) 6682
(0.0123807 0.00648887 0.00419007) 6684
(0.0133127 0.00645812 0.00417614) 6686
(0.0140833 0.00644078 0.00416381) 6688
(0.0147385 0.00642932 0.00415673) 6689
(0.0153157 0.00642178 0.00415401) 6690
(0.0158478 0.0064192 0.00415123) 6691
(0.0218281 0.00631491 0.00196412) 13483
(0.0235151 0.0065305 0.00221863) 6107
(0.0245567 0.00668272 0.0022306) 6109
(0.0200796 0.00666048 0.00416701) 1900
(0.0223567 0.00673183 0.00408365) 1964
(0.0188358 0.00365232 0.00468962) 7177
(0.0204549 0.00368247 0.00472617) 10540
(0.0188699 0.00332733 0.00164582) 397
(0.0208139 0.0032619 0.00173267) 461
(0.0177952 0.00611954 0.00485751) 12215
(0.0197349 0.00616521 0.0047638) 12219
(0.019508 0.00588501 0.00504696) 12579
(0.019508 0.00588501 0.00504696) 12579
(0.019508 0.00588501 0.00504696) 12579
(0.0213869 0.00591522 0.00500971) 12582
(0.0213869 0.00591522 0.00500971) 12582
(0.0213869 0.00591522 0.00500971) 12582
(0.0223734 0.00604337 0.00495608) 12344
(0.019228 0.0040303 0.00492944) 10538
(0.0192956 0.00373712 0.00142069) 9218
(0.0197882 0.00412187 0.00126822) 11499
(0.0195756 0.00477175 0.000922255) 11619
(0.0212542 0.00466325 0.000934751) 11562
(0.0185148 0.00593169 0.000972735) 12277
(0.0196804 0.00531243 0.000789903) 11919
(0.0215313 0.00525049 0.000782232) 11923
(0.0189109 0.00528889 0.00524714) 11077
(0.0205569 0.00530695 0.00522369) 11441
(0.0214967 0.00546403 0.00523969) 12522
(0.0215175 0.00303902 0.00323389) 763
(0.0242856 0.00297447 0.0032119) 33984
(0.0246336 0.00291554 0.00325609) 34129
(0.019025 0.00672026 0.00160878) 2498
(0.019025 0.00672026 0.00160878) 2498
(0.019025 0.00672026 0.00160878) 2498
(0.0213684 0.00666586 0.00167106) 2502
(0.0227598 0.0066439 0.00161729) 2505
(0.0210708 0.00608715 0.00161036) 6042
(0.0228478 0.00621912 0.00169522) 13485
(0.00839592 0.00643186 0.00286886) 13516
(0.00839592 0.00643186 0.00286886) 13516
(0.00839592 0.00643186 0.00286886) 13516
(0.00887325 0.00643626 0.00286737) 13517
(0.00931548 0.00643888 0.00286931) 13518
(0.00975551 0.00644051 0.00286888) 13519
(0.0102505 0.00643728 0.00286942) 13520
(0.0107811 0.00643147 0.00287237) 13521
(0.00814315 0.00634766 0.00256268) 13576
(0.0085439 0.00636312 0.00256958) 13577
(0.019987 0.00620007 0.00235489) 13659
(0.0205444 0.00618468 0.00234667) 13661
(0.00816641 0.00584265 0.00188232) 13756
(0.00863034 0.00583921 0.00186689) 13757
(0.00956005 0.00583377 0.00185903) 13759
(0.00815171 0.00559028 0.00171878) 13816
(0.00856549 0.00559288 0.00170868) 13817
(0.00894928 0.00559423 0.00170106) 13817
(0.00850582 0.00466812 0.00160883) 13997
(0.00883628 0.00439125 0.0016991) 14057
(0.00922604 0.00439146 0.00169403) 14058
(0.00961757 0.00439042 0.00168945) 14059
(0.0100673 0.00439223 0.00168993) 14060
(0.0105831 0.00439436 0.00169664) 14061
(0.00839269 0.00416643 0.00182979) 14116
(0.00839269 0.00416643 0.00182979) 14116
(0.00839269 0.00416643 0.00182979) 14116
(0.00884761 0.00416583 0.00182575) 14117
(0.00925321 0.00416394 0.00182226) 14118
(0.00965812 0.00416071 0.00182013) 14119
(0.0101241 0.00415986 0.00182361) 14120
(0.0106473 0.00416435 0.0018291) 14121
(0.0081765 0.00395687 0.00204818) 14176
(0.00861309 0.00395568 0.0020375) 14177
(0.00898632 0.00395225 0.00203125) 14177
(0.0081345 0.00359551 0.00317489) 14416
(0.00856686 0.00357916 0.00317531) 14417
(0.00832816 0.00364575 0.00346151) 14476
(0.00832816 0.00364575 0.00346151) 14476
(0.00832816 0.00364575 0.00346151) 14476
(0.00884373 0.00363011 0.00346028) 14477
(0.0092805 0.00361792 0.00346176) 14478
(0.00972424 0.00361194 0.00346148) 14479
(0.0102533 0.00361828 0.0034589) 14480
(0.0107913 0.00362689 0.0034578) 14481
(0.00819532 0.00373349 0.00368621) 14536
(0.00819532 0.00373349 0.00368621) 14536
(0.00819532 0.00373349 0.00368621) 14536
(0.00881264 0.00372914 0.00369256) 14537
(0.00930084 0.00372384 0.00369806) 14538
(0.00977212 0.00372252 0.00370274) 14539
(0.0102945 0.00372849 0.00370081) 14540
(0.0108103 0.00373376 0.00369681) 14541
(0.00813727 0.00392143 0.00391153) 14596
(0.00865486 0.00391653 0.00391864) 14597
(0.00854921 0.0047051 0.00439702) 14777
(0.00825866 0.00500173 0.00442648) 14836
(0.00873789 0.00499713 0.00443223) 14837
(0.00916736 0.00499544 0.00443715) 14838
(0.00959637 0.00499644 0.00444108) 14839
(0.0100979 0.00499766 0.00443703) 14840
(0.00815992 0.0052805 0.00439109) 14896
(0.00862919 0.00528176 0.00439858) 14897
(0.00904174 0.00528052 0.00440599) 14898
(0.00946585 0.00527916 0.00440971) 14898
(0.00868006 0.00637043 0.00340782) 15197
(0.00910959 0.00637268 0.00340682) 15198
(0.00892568 0.00643127 0.00312452) 15257
(0.00937347 0.00643202 0.0031288) 15258
(0.0098229 0.00643245 0.00313198) 15259
(0.010318 0.00642951 0.00313348) 15260
(0.0108357 0.00642477 0.00313394) 15261
(0.00549584 0.00640088 0.00292303) 13510
(0.0056068 0.00643451 0.00293556) 13511
(0.00608171 0.00644293 0.00294196) 13512
(0.00664078 0.00644018 0.00288201) 13513
(0.0076047 0.00584274 0.00191225) 13755
(0.0075316 0.00556424 0.00173802) 13815
(0.00500991 0.00431596 0.00158384) 5710
(0.00488109 0.00451014 0.00157296) 5709
(0.00559057 0.00450299 0.00165781) 14051
(0.00650552 0.00446502 0.00171839) 14053
(0.00454222 0.00409 0.00190824) 14109
(0.00466725 0.00410065 0.00185804) 14109
(0.00252313 0.00417336 0.0017265) 5645
(0.0044238 0.00421823 0.00171597) 5648
(0.00779365 0.00418087 0.00188109) 14115
(0.00489642 0.00348147 0.00325471) 5409
(0.00755031 0.00368025 0.00348381) 14475
(0.00309359 0.00363869 0.00359096) 14466
(0.00463077 0.00363287 0.0036149) 14529
(0.00702875 0.00376705 0.00369838) 14534
(0.00716278 0.00506007 0.0043665) 14834
(0.00767228 0.00504086 0.00439871) 14835
(0.00682302 0.00534094 0.00433633) 14893
(0.0073933 0.0052978 0.00437544) 14894
(0.00408148 0.00634838 0.00286131) 13508
(0.00426565 0.00638592 0.00286099) 13508
(0.00454405 0.00645012 0.00289135) 13509
(0.00598763 0.00640454 0.00317151) 15251
(0.00655559 0.00639601 0.00309971) 15253
(0.0194513 0.00692931 0.00357385) 2018
(0.011132 0.00653949 0.0042217) 6682
(0.0123508 0.00648983 0.00419017) 6684
(0.0132896 0.0064585 0.00417609) 6686
(0.0140647 0.0064408 0.00416372) 6688
(0.0147221 0.00642924 0.0041566) 6689
(0.0153007 0.00642158 0.00415382) 6690
(0.0158329 0.00641895 0.00415099) 6691
(0.0216856 0.00631734 0.00195659) 13483
(0.0234727 0.00652071 0.00221122) 6106
(0.0245267 0.00667984 0.00223385) 6109
(0.0199647 0.00666365 0.00416963) 1899
(0.0223067 0.00672526 0.00408834) 1964
(0.0187822 0.00365108 0.0046886) 7177
(0.0204214 0.00367895 0.00472132) 10540
(0.0187972 0.00333002 0.00164063) 397
(0.0207668 0.00326669 0.00172943) 461
(0.0196748 0.00616194 0.00476615) 12219
(0.0194336 0.00588351 0.00504959) 12578
(0.0194336 0.00588351 0.00504959) 12578
(0.0194336 0.00588351 0.00504959) 12578
(0.0213433 0.00591157 0.00501083) 12582
(0.0213433 0.00591157 0.00501083) 12582
(0.0213433 0.00591157 0.00501083) 12582
(0.0223566 0.00603437 0.00496134) 12344
(0.0191771 0.00402775 0.00492587) 10538
(0.0191877 0.00373955 0.00141745) 9218
(0.0196835 0.00412604 0.00126624) 11499
(0.0195067 0.00477549 0.000920934) 11619
(0.0212192 0.00467009 0.000935245) 11562
(0.0184642 0.00593269 0.000973282) 12276
(0.020105 0.00593176 0.000964957) 12280
(0.0195945 0.00531575 0.000789202) 11859
(0.0214971 0.00525479 0.000785769) 11922
(0.0188545 0.00528829 0.00524873) 11077
(0.0205153 0.00530353 0.00522337) 11441
(0.0214959 0.00545068 0.00523854) 12522
(0.0213785 0.00303618 0.00323338) 762
(0.0242487 0.00297832 0.00321132) 33984
(0.0246473 0.00291658 0.00325033) 34129
(0.0189014 0.00672647 0.00160241) 2497
(0.0189014 0.00672647 0.00160241) 2497
(0.0189014 0.00672647 0.00160241) 2497
(0.0213078 0.00666729 0.00167201) 2502
(0.022726 0.00664592 0.00162153) 2505
(0.0208727 0.00609874 0.00161423) 6041
(0.0228353 0.00621347 0.00169432) 13485
(0.00837219 0.00643194 0.00286888) 13516
(0.00837219 0.00643194 0.00286888) 13516
(0.00837219 0.00643194 0.00286888) 13516
(0.00885031 0.00643631 0.00286725) 13517
(0.0092928 0.00643894 0.00286927) 13518
(0.00973201 0.00644063 0.00286888) 13519
(0.0102251 0.00643758 0.00286937) 13520
(0.0107557 0.00643175 0.00287221) 13521
(0.00812121 0.0063477 0.00256293) 13576
(0.00852162 0.00636306 0.00256938) 13577
(0.0199634 0.00620074 0.00235516) 13659
(0.0205205 0.00618538 0.00234725) 13661
(0.00814499 0.00584264 0.00188232) 13756
(0.00860675 0.0058394 0.0018668) 13757
(0.00953399 0.00583387 0.00185865) 13759
(0.00813013 0.00559016 0.00171865) 13816
(0.00854192 0.00559278 0.00170836) 13817
(0.00892539 0.00559428 0.00170083) 13817
(0.0084799 0.00466829 0.00160838) 13996
(0.00881267 0.0043911 0.00169891) 14057
(0.00920369 0.00439142 0.00169391) 14058
(0.00959507 0.00439037 0.00168936) 14059
(0.0100425 0.00439211 0.00168963) 14060
(0.0105563 0.00439423 0.00169619) 14061
(0.0083701 0.00416627 0.00182971) 14116
(0.0083701 0.00416627 0.00182971) 14116
(0.0083701 0.00416627 0.00182971) 14116
(0.00882394 0.00416554 0.00182559) 14117
(0.00923029 0.00416378 0.00182216) 14118
(0.00963499 0.00416066 0.00181999) 14119
(0.010099 0.00415971 0.00182332) 14120
(0.0106206 0.00416402 0.00182879) 14121
(0.00815405 0.0039568 0.00204816) 14176
(0.00858918 0.00395542 0.00203738) 14177
(0.00896305 0.00395217 0.00203105) 14177
(0.0081125 0.0035956 0.00317526) 14416
(0.00854504 0.00357921 0.00317568) 14417
(0.00830283 0.0036464 0.00346185) 14476
(0.00830283 0.0036464 0.00346185) 14476
(0.00830283 0.0036464 0.00346185) 14476
(0.00882027 0.00363048 0.0034604) 14477
(0.00925783 0.00361822 0.00346187) 14478
(0.00969865 0.00361177 0.00346172) 14479
(0.0102264 0.00361781 0.00345912) 14480
(0.010766 0.00362653 0.00345786) 14481
(0.00816411 0.00373366 0.00368605) 14536
(0.00816411 0.00373366 0.00368605) 14536
(0.00816411 0.00373366 0.00368605) 14536
(0.00878644 0.00372919 0.00369254) 14537
(0.00927644 0.00372389 0.00369799) 14538
(0.00974641 0.0037223 0.00370284) 14539
(0.0102687 0.00372812 0.00370109) 14540
(0.0107855 0.00373352 0.00369706) 14541
(0.00811175 0.0039216 0.00391158) 14596
(0.00863027 0.00391641 0.0039185) 14597
(0.00852614 0.00470537 0.00439727) 14777
(0.00823612 0.00500196 0.00442657) 14836
(0.00871471 0.00499729 0.00443247) 14837
(0.00914484 0.00499536 0.00443723) 14838
(0.0095728 0.00499635 0.00444124) 14839
(0.0100725 0.00499761 0.00443739) 14840
(0.00813728 0.00528052 0.00439114) 14896
(0.00860622 0.00528187 0.00439872) 14897
(0.00901959 0.00528068 0.004406) 14898
(0.00944228 0.00527922 0.00440988) 14898
(0.0090854 0.00637292 0.00340688) 15198
(0.00890262 0.00643141 0.00312447) 15257
(0.00935051 0.00643216 0.00312873) 15258
(0.00979943 0.00643259 0.0031319) 15259
(0.0102932 0.00642975 0.00313347) 15260
(0.0108112 0.00642499 0.00313393) 15261
(0.00561078 0.00643329 0.00293492) 13511
(0.00605826 0.0064428 0.00294202) 13512
(0.00659564 0.00644456 0.00289614) 13513
(0.00758736 0.00584239 0.001915) 13755
(0.00751346 0.00556319 0.00173968) 13815
(0.00500421 0.00432788 0.00159167) 5710
(0.00345128 0.00433948 0.00165989) 5706
(0.00485486 0.00449512 0.00156471) 5709
(0.00553274 0.00450715 0.00165312) 14051
(0.00645926 0.00446561 0.00171413) 14052
(0.00455279 0.00409188 0.00190981) 14109
(0.00465432 0.0040954 0.00186407) 14109
(0.00310464 0.00419981 0.00173193) 5646
(0.00405566 0.00423639 0.00172089) 14108
(0.00777299 0.00418263 0.00188241) 14115
(0.00483338 0.00351179 0.00327755) 5409
(0.00752782 0.00368262 0.00348558) 14475
(0.00455247 0.00363718 0.00361708) 14529
(0.00699797 0.0037689 0.00369891) 14533
(0.00765644 0.00504094 0.00439732) 14835
(0.00680093 0.00534108 0.00433773) 14893
(0.00736905 0.00529739 0.00437477) 14894
(0.00406898 0.00634917 0.00286258) 13508
(0.00426729 0.0063839 0.00285974) 13508
(0.00454865 0.00644949 0.00289177) 13509
(0.00596509 0.00640479 0.00317166) 15251
(0.00653185 0.00639603 0.0031002) 15253
(0.0194103 0.00692611 0.00357885) 2018
(0.0110879 0.00654159 0.00422304) 6682
(0.0123204 0.0064908 0.00419031) 6684
(0.0132662 0.00645891 0.00417605) 6686
(0.014046 0.00644084 0.00416362) 6688
(0.0147057 0.00642917 0.00415646) 6689
(0.0152857 0.0064214 0.00415362) 6690
(0.0158181 0.00641869 0.00415076) 6691
(0.0215312 0.00632247 0.00195222) 13483
(0.0234295 0.0065109 0.00220347) 6106
(0.0244937 0.00667671 0.00223687) 6108
(0.0198487 0.00666683 0.00417256) 1899
(0.0222547 0.00671861 0.00409315) 1964
(0.0187282 0.0036499 0.00468782) 7177
(0.0203859 0.0036757 0.00471679) 10540
(0.0187242 0.00333267 0.00163529) 397
(0.0207182 0.00327135 0.00172626) 461
(0.0196136 0.0061588 0.00476857) 12219
(0.0193595 0.00588201 0.0050523) 12578
(0.0193595 0.00588201 0.0050523) 12578
(0.0193595 0.00588201 0.0050523) 12578
(0.0212979 0.0059081 0.00501192) 12582
(0.0212979 0.0059081 0.00501192) 12582
(0.0212979 0.0059081 0.00501192) 12582
(0.0223409 0.00602534 0.00496608) 12344
(0.0191267 0.00402513 0.0049223) 10538
(0.0190815 0.00374186 0.00141413) 9218
(0.0195786 0.00413018 0.00126411) 11499
(0.0222373 0.00403076 0.00125451) 12764
(0.0194378 0.0047792 0.000919533) 11618
(0.0211825 0.00467677 0.000935717) 11562
(0.0184141 0.00593374 0.000973814) 12276
(0.0200614 0.00593356 0.00096748) 12280
(0.0195084 0.00531924 0.000788416) 11859
(0.0214602 0.00525885 0.000789108) 11922
(0.0187975 0.00528778 0.00525046) 11077
(0.0204724 0.00530038 0.00522312) 11440
(0.0214924 0.00543808 0.00523735) 12522
(0.0212406 0.00303286 0.00323276) 762
(0.0242071 0.00298231 0.00321083) 33984
(0.0246597 0.00291792 0.00324488) 34128
(0.018796 0.0067327 0.00159747) 2497
(0.018796 0.0067327 0.00159747) 2497
(0.018796 0.0067327 0.00159747) 2497
(0.0212454 0.0066688 0.00167276) 2502
(0.0226923 0.00664782 0.00162584) 2505
(0.0206636 0.00611253 0.0016189) 6041
(0.0228198 0.00620778 0.00169314) 13485
(0.00834842 0.00643202 0.0028689) 13516
(0.00834842 0.00643202 0.0028689) 13516
(0.00834842 0.00643202 0.0028689) 13516
(0.00882732 0.00643636 0.00286713) 13517
(0.00927011 0.006439 0.00286921) 13518
(0.00970856 0.00644076 0.00286889) 13519
(0.0101998 0.00643787 0.00286933) 13520
(0.0107302 0.00643205 0.00287206) 13521
(0.00809937 0.00634774 0.0025632) 13576
(0.00849938 0.006363 0.0025692) 13576
(0.0199399 0.00620142 0.00235543) 13659
(0.0204966 0.00618608 0.00234782) 13660
(0.00812367 0.00584266 0.00188236) 13756
(0.00858325 0.0058396 0.00186673) 13757
(0.00902116 0.00583651 0.00185761) 13758
(0.00950793 0.00583397 0.00185827) 13759
(0.00810859 0.00559003 0.00171853) 13816
(0.00851838 0.00559267 0.00170805) 13817
(0.00890151 0.00559432 0.00170059) 13817
(0.00845386 0.00466847 0.00160794) 13996
(0.00878893 0.00439094 0.00169871) 14057
(0.00918124 0.00439138 0.00169379) 14058
(0.00957258 0.00439033 0.00168929) 14059
(0.0100178 0.004392 0.00168934) 14060
(0.0105296 0.00439409 0.00169575) 14061
(0.00834756 0.00416612 0.00182964) 14116
(0.00834756 0.00416612 0.00182964) 14116
(0.00834756 0.00416612 0.00182964) 14116
(0.00880025 0.00416524 0.00182543) 14117
(0.00920729 0.00416362 0.00182206) 14118
(0.00961187 0.00416061 0.00181986) 14119
(0.0100739 0.00415956 0.00182302) 14120
(0.010594 0.00416369 0.00182848) 14121
(0.0081317 0.00395673 0.00204816) 14176
(0.00856531 0.00395516 0.00203727) 14177
(0.00893972 0.00395208 0.00203084) 14177
(0.00809051 0.00359569 0.00317564) 14416
(0.00852332 0.00357927 0.00317605) 14417
(0.00827741 0.00364708 0.00346222) 14476
(0.00827741 0.00364708 0.00346222) 14476
(0.00827741 0.00364708 0.00346222) 14476
(0.0087968 0.00363087 0.00346052) 14477
(0.00923525 0.00361852 0.00346197) 14478
(0.0096732 0.00361163 0.00346196) 14479
(0.0101996 0.00361734 0.00345935) 14480
(0.0107407 0.00362616 0.00345792) 14481
(0.00813264 0.00373385 0.00368589) 14536
(0.00813264 0.00373385 0.00368589) 14536
(0.00813264 0.00373385 0.00368589) 14536
(0.00876013 0.00372925 0.00369251) 14537
(0.00925209 0.00372396 0.00369792) 14538
(0.00972076 0.00372209 0.00370292) 14539
(0.0102427 0.00372775 0.00370137) 14540
(0.0107606 0.00373326 0.00369732) 14541
(0.00808618 0.0039218 0.00391166) 14596
(0.00860564 0.00391632 0.00391838) 14597
(0.00850305 0.00470565 0.00439751) 14777
(0.00821366 0.0050022 0.00442664) 14836
(0.00869156 0.00499747 0.0044327) 14837
(0.00912231 0.00499528 0.00443731) 14838
(0.00954928 0.00499626 0.00444139) 14839
(0.0100472 0.00499755 0.00443774) 14840
(0.0081147 0.00528054 0.00439119) 14896
(0.00858325 0.00528198 0.00439885) 14897
(0.00899742 0.00528086 0.00440602) 14897
(0.00941879 0.00527928 0.00441003) 14898
(0.00906107 0.00637317 0.00340694) 15198
(0.0088795 0.00643155 0.00312443) 15257
(0.00932753 0.0064323 0.00312866) 15258
(0.00977601 0.00643272 0.00313183) 15259
(0.0102684 0.00642998 0.00313345) 15260
(0.0107867 0.00642522 0.00313391) 15261
(0.00559911 0.00643184 0.00293335) 13511
(0.00603551 0.00644257 0.0029421) 13512
(0.00657645 0.00644529 0.00290692) 13513
(0.00764631 0.00638395 0.00285315) 13515
(0.00756983 0.00584179 0.00191749) 13755
(0.00499753 0.00434341 0.00160352) 5709
(0.00398355 0.00433845 0.00165603) 5707
(0.00483658 0.00447682 0.00155659) 5709
(0.00548004 0.00451108 0.00164865) 14050
(0.00641196 0.0044664 0.00170978) 14052
(0.00457444 0.00409527 0.00191065) 14109
(0.00464635 0.00409278 0.00186788) 14109
(0.00369779 0.00421534 0.00173804) 14107
(0.00358609 0.00423542 0.00172152) 14107
(0.00479958 0.0035329 0.00329791) 14409
(0.00750566 0.00368482 0.003487) 14475
(0.00280023 0.00365636 0.00362828) 14525
(0.00451466 0.00363915 0.00361755) 14529
(0.00696934 0.00377079 0.00369931) 14533
(0.00764014 0.00504089 0.00439601) 14835
(0.0067797 0.00534091 0.00433942) 14893
(0.00734303 0.00529636 0.0043735) 14894
(0.00404088 0.00635173 0.00286555) 13508
(0.00426843 0.00638201 0.00285866) 13508
(0.00454574 0.00644763 0.00289055) 13509
(0.00609936 0.00639819 0.00313841) 15252
(0.00651029 0.00639568 0.00310053) 15253
(0.00713642 0.00635796 0.00308948) 15254
(0.0193689 0.00692301 0.00358381) 2018
(0.0110425 0.00654381 0.00422451) 6682
(0.0122897 0.00649178 0.00419052) 6684
(0.0132426 0.00645935 0.00417599) 6686
(0.0140273 0.00644088 0.00416352) 6688
(0.0146893 0.0064291 0.00415632) 6689
(0.0152707 0.00642123 0.00415341) 6690
(0.0158032 0.00641844 0.00415052) 6691
(0.0213642 0.00633016 0.00194978) 13482
(0.0233858 0.00650112 0.00219548) 6106
(0.0244584 0.00667346 0.00223974) 6108
(0.0197341 0.00666931 0.00417617) 1899
(0.0222004 0.00671192 0.00409808) 1964
(0.0186735 0.00364872 0.00468727) 7177
(0.0203485 0.00367269 0.00471256) 10540
(0.0186512 0.00333529 0.00162977) 397
(0.020668 0.00327586 0.00172314) 461
(0.0195517 0.00615575 0.00477109) 12219
(0.0192857 0.0058805 0.00505507) 12578
(0.0192857 0.0058805 0.00505507) 12578
(0.0192857 0.0058805 0.00505507) 12578
(0.0212509 0.00590481 0.00501297) 12582
(0.0212509 0.00590481 0.00501297) 12582
(0.0212509 0.00590481 0.00501297) 12582
(0.0223269 0.00601619 0.00497041) 12344
(0.019077 0.00402249 0.00491876) 10538
(0.0189777 0.00374406 0.00141071) 9217
(0.0194738 0.00413433 0.0012619) 11498
(0.0221629 0.00403511 0.00125622) 12764
(0.0193691 0.00478289 0.000918047) 11618
(0.0211436 0.00468329 0.000936167) 11562
(0.0183648 0.00593482 0.000974343) 12276
(0.0200166 0.00593519 0.000969823) 12280
(0.0194243 0.00532302 0.000787627) 11858
(0.0214206 0.00526268 0.000792228) 11922
(0.0187396 0.00528737 0.00525231) 11077
(0.0204283 0.00529748 0.00522295) 11440
(0.0214863 0.00542616 0.00523612) 12522
(0.0211057 0.0030293 0.003232) 762
(0.0241608 0.00298647 0.00321047) 33984
(0.0246708 0.00291953 0.00323973) 34128
(0.0187186 0.00673774 0.00159468) 2497
(0.0187186 0.00673774 0.00159468) 2497
(0.0187186 0.00673774 0.00159468) 2497
(0.0211812 0.00667039 0.00167333) 2502
(0.0226584 0.00664959 0.00163014) 2505
(0.0204467 0.00612788 0.00162394) 6040
(0.0228026 0.00620203 0.00169168) 13485
(0.00832463 0.0064321 0.00286891) 13516
(0.00832463 0.0064321 0.00286891) 13516
(0.00832463 0.0064321 0.00286891) 13516
(0.00880428 0.00643641 0.00286702) 13517
(0.00924739 0.00643906 0.00286915) 13518
(0.00968517 0.00644087 0.00286889) 13519
(0.0101745 0.00643815 0.00286929) 13520
(0.0107046 0.00643234 0.00287191) 13521
(0.00807757 0.00634777 0.00256349) 13576
(0.00847718 0.00636294 0.00256903) 13576
(0.0199163 0.00620208 0.00235567) 13659
(0.0204726 0.00618678 0.00234838) 13660
(0.00810244 0.00584267 0.00188242) 13756
(0.00855982 0.0058398 0.00186666) 13757
(0.00899596 0.00583665 0.00185736) 13757
(0.00948191 0.00583408 0.0018579) 13758
(0.00808707 0.00558991 0.00171842) 13816
(0.00849488 0.00559256 0.00170773) 13816
(0.00887763 0.00559436 0.00170035) 13817
(0.00876506 0.00439078 0.0016985) 14057
(0.00915869 0.00439133 0.00169365) 14058
(0.0095501 0.00439029 0.00168921) 14059
(0.00999324 0.00439189 0.00168906) 14059
(0.0105028 0.00439396 0.0016953) 14061
(0.00832505 0.00416599 0.00182958) 14116
(0.00832505 0.00416599 0.00182958) 14116
(0.00832505 0.00416599 0.00182958) 14116
(0.00877654 0.00416494 0.00182527) 14117
(0.00918422 0.00416344 0.00182194) 14118
(0.00958875 0.00416055 0.00181972) 14119
(0.0100489 0.00415943 0.00182273) 14120
(0.0105674 0.00416336 0.00182817) 14121
(0.00810943 0.00395668 0.00204819) 14176
(0.0085415 0.0039549 0.00203717) 14177
(0.00891632 0.00395199 0.00203064) 14177
(0.00806853 0.0035958 0.00317603) 14416
(0.00850166 0.00357935 0.00317642) 14417
(0.00825195 0.00364779 0.0034626) 14476
(0.00825195 0.00364779 0.0034626) 14476
(0.00825195 0.00364779 0.0034626) 14476
(0.00877333 0.00363127 0.00346065) 14477
(0.00921277 0.00361885 0.00346207) 14478
(0.00964787 0.00361151 0.00346219) 14479
(0.0101727 0.00361688 0.00345958) 14480
(0.0107152 0.00362578 0.003458) 14481
(0.00810091 0.00373407 0.00368573) 14536
(0.00810091 0.00373407 0.00368573) 14536
(0.00810091 0.00373407 0.00368573) 14536
(0.00873373 0.00372931 0.00369249) 14537
(0.00922779 0.00372403 0.00369783) 14538
(0.0096952 0.0037219 0.003703) 14539
(0.0102168 0.00372738 0.00370165) 14540
(0.0107356 0.003733 0.00369758) 14541
(0.00806056 0.00392204 0.00391176) 14596
(0.00858099 0.00391624 0.00391827) 14597
(0.00847995 0.00470595 0.00439775) 14776
(0.00819129 0.00500245 0.00442669) 14836
(0.00866844 0.00499763 0.00443293) 14837
(0.00909976 0.00499522 0.00443741) 14838
(0.00952583 0.00499618 0.00444154) 14839
(0.0100218 0.0049975 0.00443809) 14840
(0.00809219 0.00528055 0.00439123) 14896
(0.00856025 0.00528213 0.00439898) 14897
(0.00897526 0.00528098 0.00440605) 14897
(0.00939538 0.00527934 0.00441018) 14898
(0.0090366 0.00637343 0.00340701) 15198
(0.00885632 0.00643169 0.0031244) 15257
(0.00930454 0.00643245 0.00312858) 15258
(0.00975265 0.00643284 0.00313175) 15259
(0.0102436 0.00643021 0.00313344) 15260
(0.0107621 0.00642546 0.00313389) 15261
(0.00560355 0.00643047 0.00293238) 13511
(0.00601235 0.00644244 0.00294211) 13512
(0.00655599 0.00644553 0.00291309) 13513
(0.00762029 0.00638382 0.00285339) 13515
(0.00755217 0.00584101 0.00191989) 13755
(0.00499409 0.00436276 0.00161629) 5709
(0.00436421 0.00433181 0.00163918) 5708
(0.00483003 0.00445638 0.00154944) 5709
(0.00542886 0.00451495 0.00164415) 14050
(0.00637908 0.00446857 0.0017076) 14052
(0.00460762 0.00410083 0.00191045) 14109
(0.00464109 0.00409083 0.0018707) 14109
(0.00411168 0.00421651 0.00174063) 14108
(0.00311284 0.00422112 0.00171818) 5646
(0.00525151 0.00427911 0.00170702) 14050
(0.00476926 0.00354938 0.00331498) 14409
(0.00748424 0.00368708 0.00348833) 14474
(0.00403937 0.00368359 0.00364892) 14528
(0.0045328 0.00363826 0.003616) 14529
(0.00694448 0.0037728 0.00369942) 14533
(0.00762374 0.00504074 0.00439477) 14835
(0.00676013 0.00534023 0.00434106) 14893
(0.00731502 0.00529488 0.00436978) 14894
(0.00399074 0.00635756 0.00287097) 13507
(0.00427673 0.00638093 0.0028576) 13508
(0.00454007 0.0064454 0.0028885) 13509
(0.00440042 0.0064615 0.00283139) 13508
(0.00648542 0.00639588 0.00310099) 15252
(0.00710842 0.00635921 0.00309049) 15254
(0.0193273 0.00692001 0.00358875) 2018
(0.0109967 0.00654606 0.00422606) 6681
(0.0122585 0.00649279 0.00419077) 6684
(0.0132187 0.00645984 0.00417594) 6686
(0.0140083 0.00644094 0.00416342) 6688
(0.014673 0.00642904 0.00415616) 6689
(0.0152557 0.00642106 0.0041532) 6690
(0.0157884 0.00641817 0.00415029) 6691
(0.021184 0.00634065 0.00194927) 13482
(0.0233414 0.00649137 0.00218729) 6106
(0.0244209 0.00667009 0.00224245) 6108
(0.0196221 0.00667101 0.00418045) 1899
(0.0221439 0.00670519 0.00410308) 1964
(0.018618 0.00364749 0.00468697) 7177
(0.0203092 0.00366991 0.00470862) 10540
(0.0185876 0.0033394 0.00162388) 397
(0.0206163 0.00328022 0.00172007) 461
(0.0194894 0.00615276 0.00477372) 12218
(0.0192125 0.00587897 0.00505789) 12578
(0.0192125 0.00587897 0.00505789) 12578
(0.0192125 0.00587897 0.00505789) 12578
(0.0212021 0.00590166 0.005014) 12582
(0.0212021 0.00590166 0.005014) 12582
(0.0212021 0.00590166 0.005014) 12582
(0.022312 0.00600736 0.00497439) 12344
(0.0190278 0.00401986 0.00491529) 10538
(0.0188769 0.00374617 0.00140713) 9217
(0.0193696 0.00413851 0.00125959) 11498
(0.0220862 0.00403954 0.00125791) 12764
(0.0193009 0.00478662 0.000916461) 11618
(0.0211028 0.00468965 0.000936593) 11562
(0.0183163 0.00593595 0.00097488) 12276
(0.019971 0.00593667 0.000971998) 12279
(0.0193499 0.0053274 0.000787274) 11858
(0.0213782 0.0052663 0.000795145) 11922
(0.0186809 0.00528704 0.00525427) 11077
(0.020383 0.00529485 0.00522286) 11440
(0.0214784 0.00541483 0.00523486) 11442
(0.0209732 0.00302552 0.00323106) 761
(0.0241091 0.0029908 0.00321021) 33984
(0.0246802 0.00292135 0.00323492) 34128
(0.0186523 0.00674214 0.00159259) 2497
(0.0186523 0.00674214 0.00159259) 2497
(0.0186523 0.00674214 0.00159259) 2497
(0.0211149 0.00667206 0.00167368) 2502
(0.0226252 0.00665129 0.00163459) 2505
(0.0227821 0.00619621 0.00168991) 13485
(0.00830075 0.00643218 0.00286893) 13516
(0.00830075 0.00643218 0.00286893) 13516
(0.00830075 0.00643218 0.00286893) 13516
(0.00878119 0.00643647 0.00286691) 13517
(0.00922465 0.00643913 0.00286908) 13518
(0.00966183 0.00644099 0.0028689) 13519
(0.0101492 0.00643843 0.00286926) 13520
(0.0106789 0.00643264 0.00287177) 13521
(0.00805589 0.00634778 0.00256377) 13576
(0.00845503 0.00636288 0.00256888) 13576
(0.0198929 0.00620273 0.00235592) 13659
(0.0204486 0.00618749 0.00234891) 13660
(0.00808128 0.00584267 0.00188248) 13756
(0.00853648 0.00584001 0.00186661) 13757
(0.00897082 0.0058368 0.0018571) 13757
(0.00945594 0.00583419 0.00185755) 13758
(0.00806559 0.00558977 0.00171833) 13816
(0.0084714 0.00559244 0.00170741) 13816
(0.00885377 0.00559441 0.00170012) 13817
(0.00874105 0.00439062 0.00169827) 14057
(0.00913603 0.00439126 0.00169351) 14058
(0.00952762 0.00439024 0.00168913) 14059
(0.00996873 0.00439179 0.0016888) 14059
(0.0104761 0.00439383 0.00169486) 14060
(0.0083026 0.00416587 0.00182953) 14116
(0.0083026 0.00416587 0.00182953) 14116
(0.0083026 0.00416587 0.00182953) 14116
(0.00875283 0.00416462 0.00182513) 14117
(0.00916106 0.00416327 0.00182181) 14118
(0.00956563 0.00416049 0.00181959) 14119
(0.010024 0.0041593 0.00182245) 14120
(0.0105408 0.00416304 0.00182785) 14121
(0.00808727 0.00395664 0.00204824) 14176
(0.00851773 0.00395465 0.00203708) 14177
(0.00889285 0.00395188 0.00203043) 14177
(0.00804655 0.00359591 0.00317643) 14416
(0.00848007 0.00357943 0.00317679) 14416
(0.00822644 0.00364852 0.003463) 14476
(0.00822644 0.00364852 0.003463) 14476
(0.00822644 0.00364852 0.003463) 14476
(0.00874985 0.00363168 0.00346078) 14477
(0.00919037 0.00361918 0.00346216) 14478
(0.00962269 0.00361142 0.00346244) 14479
(0.0101457 0.00361642 0.00345979) 14480
(0.0106895 0.00362539 0.00345809) 14481
(0.00806886 0.00373431 0.00368556) 14536
(0.00806886 0.00373431 0.00368556) 14536
(0.00806886 0.00373431 0.00368556) 14536
(0.00870723 0.00372938 0.00369246) 14537
(0.00920353 0.00372411 0.00369775) 14538
(0.00966972 0.00372171 0.00370305) 14539
(0.0101907 0.00372701 0.00370193) 14540
(0.0107105 0.00373273 0.00369786) 14541
(0.00803488 0.00392233 0.00391191) 14596
(0.00855632 0.00391617 0.00391816) 14597
(0.00845685 0.00470626 0.00439798) 14776
(0.00816904 0.0050027 0.00442673) 14836
(0.00864535 0.00499779 0.00443315) 14837
(0.0090772 0.00499517 0.00443751) 14838
(0.00950243 0.0049961 0.00444168) 14839
(0.0099965 0.00499744 0.00443843) 14839
(0.0080697 0.00528054 0.00439126) 14896
(0.00853725 0.00528229 0.0043991) 14897
(0.00895308 0.00528112 0.00440608) 14897
(0.00937204 0.0052794 0.00441032) 14898
(0.00901196 0.0063737 0.00340709) 15198
(0.00883308 0.00643183 0.00312437) 15257
(0.00928153 0.0064326 0.00312851) 15258
(0.00972934 0.00643296 0.00313167) 15259
(0.0102189 0.00643044 0.00313342) 15260
(0.0107374 0.00642569 0.00313388) 15261
(0.00559094 0.00642915 0.00293067) 13511
(0.00598937 0.00644231 0.00294207) 13511
(0.00656659 0.00644465 0.00291789) 13513
(0.00759392 0.0063841 0.00285342) 13515
(0.00753435 0.00584007 0.00192224) 13755
(0.00499673 0.00438389 0.00162907) 5709
(0.00461016 0.00432279 0.00161997) 5709
(0.00483824 0.00443401 0.00154309) 5709
(0.00538202 0.00451845 0.00163985) 14050
(0.00634354 0.00447057 0.001705) 14052
(0.00464658 0.00410991 0.00190996) 14109
(0.0046397 0.00408954 0.00187248) 14109
(0.00435238 0.0042083 0.00174568) 14108
(0.00273349 0.0042034 0.00171573) 5645
(0.00519696 0.00426334 0.00169193) 5710
(0.00472322 0.00356731 0.00333546) 14469
(0.0074644 0.00368963 0.0034897) 14474
(0.00462579 0.00369478 0.003637) 14529
(0.00443345 0.00364271 0.00361813) 14528
(0.00505968 0.00374955 0.00363647) 14530
(0.00695047 0.00377368 0.00369794) 14533
(0.00760735 0.00504069 0.00439327) 14835
(0.00674302 0.00533732 0.00434533) 14893
(0.00728766 0.00530021 0.00435884) 14894
(0.00392166 0.00636619 0.00287844) 13507
(0.00428366 0.00637976 0.00285661) 13508
(0.00453183 0.0064427 0.00288643) 13509
(0.00646181 0.00639587 0.00310148) 15252
(0.00707813 0.00636137 0.00309292) 15254
(0.0192851 0.00691713 0.00359367) 2018
(0.0109501 0.00654838 0.0042277) 6681
(0.0122267 0.00649383 0.00419108) 6684
(0.0131947 0.00646034 0.00417587) 6686
(0.0139894 0.006441 0.00416331) 6687
(0.0146566 0.00642899 0.00415599) 6689
(0.0152406 0.0064209 0.00415299) 6690
(0.0157737 0.00641791 0.00415008) 6691
(0.0209906 0.00635433 0.00195147) 13481
(0.0232964 0.00648166 0.00217894) 13426
(0.0243814 0.00666659 0.002245) 6108
(0.0195181 0.00667111 0.00418571) 1899
(0.0220853 0.00669844 0.00410817) 1964
(0.0185614 0.00364615 0.00468691) 7177
(0.0202679 0.00366733 0.00470497) 10540
(0.0185261 0.0033437 0.00161774) 397
(0.020563 0.00328443 0.00171699) 461
(0.0194271 0.00614983 0.00477645) 12218
(0.0191399 0.00587742 0.00506078) 12578
(0.0191399 0.00587742 0.00506078) 12578
(0.0191399 0.00587742 0.00506078) 12578
(0.0211516 0.00589868 0.00501503) 12582
(0.0211516 0.00589868 0.00501503) 12582
(0.0211516 0.00589868 0.00501503) 12582
(0.0222954 0.00599894 0.00497807) 12344
(0.018979 0.00401725 0.00491189) 10537
(0.0187795 0.00374819 0.00140341) 9217
(0.0192665 0.0041427 0.00125715) 11498
(0.022007 0.00404401 0.00125957) 12764
(0.0192332 0.00479043 0.000914764) 11618
(0.0210599 0.00469584 0.000936991) 11622
(0.0182687 0.00593714 0.000975445) 12276
(0.0199244 0.00593797 0.000974002) 12279
(0.019277 0.00533194 0.000786927) 11858
(0.0213334 0.00526976 0.000797873) 11922
(0.0186219 0.00528673 0.00525633) 11077
(0.0203365 0.00529247 0.00522283) 11440
(0.0214683 0.0054041 0.00523359) 11442
(0.0208411 0.0030216 0.00322997) 761
(0.0240515 0.00299529 0.00321009) 33984
(0.0246879 0.00292337 0.00323045) 34128
(0.0185881 0.00674647 0.00159048) 2497
(0.0210468 0.00667383 0.00167384) 2502
(0.0225925 0.0066529 0.00163911) 2505
(0.0227594 0.00619021 0.0016877) 13485
(0.00827683 0.00643226 0.00286895) 13516
(0.00827683 0.00643226 0.00286895) 13516
(0.00827683 0.00643226 0.00286895) 13516
(0.00875805 0.00643653 0.0028668) 13517
(0.00920188 0.00643919 0.002869) 13518
(0.00963853 0.0064411 0.00286891) 13519
(0.010124 0.00643871 0.00286923) 13520
(0.0106532 0.00643294 0.00287163) 13521
(0.00803434 0.00634778 0.00256406) 13576
(0.00843293 0.00636281 0.00256875) 13576
(0.0198695 0.00620338 0.00235615) 13659
(0.0204245 0.00618819 0.00234944) 13660
(0.00806021 0.00584266 0.00188255) 13756
(0.00851323 0.00584023 0.00186657) 13757
(0.00894572 0.00583693 0.00185685) 13757
(0.00943002 0.00583431 0.00185721) 13758
(0.00804413 0.00558965 0.00171825) 13816
(0.00844796 0.00559231 0.0017071) 13816
(0.00882993 0.00559447 0.00169988) 13817
(0.00871692 0.00439048 0.00169804) 14057
(0.00911326 0.00439118 0.00169336) 14058
(0.00950513 0.0043902 0.00168905) 14059
(0.0099443 0.00439168 0.00168854) 14059
(0.0104495 0.0043937 0.00169442) 14060
(0.00828018 0.00416577 0.00182949) 14116
(0.00828018 0.00416577 0.00182949) 14116
(0.00828018 0.00416577 0.00182949) 14116
(0.00872911 0.0041643 0.00182499) 14117
(0.00913782 0.00416308 0.00182167) 14118
(0.0095425 0.00416043 0.00181946) 14119
(0.0099991 0.00415917 0.00182216) 14119
(0.0105143 0.00416272 0.00182754) 14121
(0.00806529 0.0039566 0.0020483) 14176
(0.00849403 0.00395439 0.002037) 14176
(0.0088693 0.00395176 0.00203023) 14177
(0.00802457 0.00359603 0.00317684) 14416
(0.00845855 0.00357952 0.00317717) 14416
(0.00820091 0.00364928 0.00346341) 14476
(0.00820091 0.00364928 0.00346341) 14476
(0.00820091 0.00364928 0.00346341) 14476
(0.00872637 0.00363211 0.00346093) 14477
(0.00916804 0.00361953 0.00346226) 14478
(0.00959766 0.00361136 0.00346269) 14479
(0.0101187 0.00361597 0.00346001) 14480
(0.0106637 0.00362498 0.00345819) 14481
(0.00803649 0.00373458 0.00368539) 14536
(0.00803649 0.00373458 0.00368539) 14536
(0.00803649 0.00373458 0.00368539) 14536
(0.00868061 0.00372946 0.00369243) 14537
(0.00917929 0.00372419 0.00369765) 14538
(0.00964433 0.00372154 0.00370307) 14539
(0.0101647 0.00372665 0.00370222) 14540
(0.0106854 0.00373246 0.00369814) 14541
(0.00800916 0.00392267 0.0039121) 14596
(0.00853165 0.0039161 0.00391804) 14597
(0.00843376 0.00470658 0.0043982) 14776
(0.0081469 0.00500296 0.00442676) 14836
(0.00862229 0.00499797 0.00443337) 14837
(0.0090546 0.00499511 0.00443762) 14838
(0.00947907 0.00499603 0.00444181) 14838
(0.00997116 0.00499738 0.00443878) 14839
(0.00804727 0.00528056 0.00439128) 14896
(0.00851427 0.00528242 0.00439923) 14897
(0.00893084 0.00528128 0.00440612) 14897
(0.00934877 0.00527945 0.00441046) 14898
(0.00898717 0.00637399 0.00340718) 15197
(0.00880977 0.00643197 0.00312434) 15257
(0.00925848 0.00643275 0.00312844) 15258
(0.00970608 0.00643308 0.00313159) 15259
(0.0101943 0.00643066 0.0031334) 15260
(0.0107127 0.00642593 0.00313387) 15261
(0.00559308 0.00642795 0.00292982) 13511
(0.00596694 0.00644212 0.00294201) 13511
(0.00657521 0.00644361 0.00292094) 13513
(0.00756707 0.00638442 0.00285354) 13515
(0.00500243 0.0044009 0.00163975) 5710
(0.00475556 0.00431498 0.00160433) 5709
(0.00485955 0.00440618 0.00153771) 5709
(0.00533822 0.00452155 0.00163556) 14050
(0.00630569 0.00447231 0.00170212) 14052
(0.00468587 0.00411962 0.0019089) 14109
(0.00463664 0.00408945 0.00187395) 14109
(0.0044822 0.00419647 0.00175324) 14108
(0.00514011 0.00422971 0.00167277) 5650
(0.00465641 0.00358328 0.00335705) 14469
(0.00744447 0.00369204 0.00349078) 14474
(0.00476715 0.0037113 0.00364103) 14529
(0.00451342 0.0036392 0.00361506) 14529
(0.00504726 0.00369827 0.00363243) 14530
(0.00693014 0.00377626 0.00369757) 14533
(0.00759095 0.00504072 0.00439149) 14835
(0.00672783 0.00533264 0.00434943) 14893
(0.00731862 0.0053064 0.00433993) 14894
(0.00383109 0.00637848 0.00288814) 13507
(0.00429169 0.00637854 0.00285553) 13508
(0.00452625 0.00644045 0.00288473) 13509
(0.00438608 0.00645619 0.00285308) 13508
(0.00643902 0.00639571 0.00310207) 15252
(0.00704581 0.00636444 0.00309419) 15254
(0.0192422 0.0069144 0.0035986) 2018
(0.0109026 0.00655077 0.00422944) 6681
(0.0121945 0.00649491 0.00419143) 6684
(0.0131705 0.00646087 0.0041758) 6686
(0.0139704 0.00644105 0.0041632) 6687
(0.0146401 0.00642894 0.00415583) 6689
(0.0152255 0.00642075 0.00415278) 6690
(0.0157589 0.00641764 0.00414987) 6691
(0.0207815 0.00637169 0.00195597) 13481
(0.0232505 0.00647195 0.00217038) 13426
(0.0243402 0.00666295 0.00224742) 6108
(0.0194228 0.0066703 0.00419154) 1898
(0.0220244 0.00669173 0.0041133) 1964
(0.0190664 0.00628914 0.00107559) 12458
(0.0185035 0.00364464 0.00468703) 7177
(0.0202249 0.00366494 0.00470159) 10540
(0.0184659 0.00334796 0.00161144) 396
(0.0205079 0.00328853 0.00171387) 461
(0.0193651 0.00614696 0.00477927) 12218
(0.0190679 0.00587584 0.00506373) 12578
(0.0190679 0.00587584 0.00506373) 12578
(0.0190679 0.00587584 0.00506373) 12578
(0.0210992 0.00589586 0.00501605) 12582
(0.0210992 0.00589586 0.00501605) 12582
(0.0210992 0.00589586 0.00501605) 12582
(0.022279 0.00599073 0.00498144) 12344
(0.0189304 0.0040147 0.00490858) 10537
(0.0186861 0.00375011 0.00139953) 9217
(0.0215806 0.00370549 0.00143727) 9223
(0.0191647 0.00414678 0.00125449) 11498
(0.0219256 0.00404857 0.00126118) 12763
(0.0191662 0.00479436 0.000912959) 11618
(0.0210151 0.00470187 0.000937362) 11622
(0.0182221 0.00593837 0.000976059) 12276
(0.0198769 0.0059391 0.000975839) 12279
(0.0192055 0.00533663 0.000786581) 11858
(0.0212858 0.00527303 0.000800402) 11922
(0.0185632 0.00528638 0.0052585) 11077
(0.0202889 0.00529033 0.00522289) 11440
(0.0214561 0.00539397 0.00523231) 11442
(0.0207096 0.0030178 0.00322867) 761
(0.0207096 0.0030178 0.00322867) 761
(0.0207096 0.0030178 0.00322867) 761
(0.0239881 0.00299997 0.00321012) 33840
(0.024694 0.00292557 0.00322628) 34128
(0.0185256 0.00675068 0.00158834) 2497
(0.0209774 0.00667571 0.00167389) 2501
(0.0225601 0.00665443 0.00164366) 2505
(0.022734 0.00618395 0.00168497) 13485
(0.00825287 0.00643235 0.00286898) 13516
(0.00825287 0.00643235 0.00286898) 13516
(0.00825287 0.00643235 0.00286898) 13516
(0.00873487 0.00643659 0.0028667) 13517
(0.00917908 0.00643926 0.00286891) 13518
(0.00961526 0.00644121 0.00286891) 13519
(0.0100989 0.00643898 0.0028692) 13520
(0.0106274 0.00643325 0.00287149) 13521
(0.00801291 0.00634778 0.00256437) 13576
(0.00841088 0.00636276 0.00256866) 13576
(0.0198461 0.00620401 0.00235637) 13659
(0.0204005 0.0061889 0.00234995) 13660
(0.00803919 0.00584264 0.00188264) 13756
(0.00849008 0.00584045 0.00186655) 13756
(0.00892069 0.00583705 0.00185659) 13757
(0.00940416 0.00583443 0.00185688) 13758
(0.00802268 0.00558952 0.00171818) 13816
(0.00842455 0.00559218 0.00170678) 13816
(0.00880611 0.00559452 0.00169965) 13817
(0.00869267 0.00439034 0.00169779) 14057
(0.00909037 0.00439109 0.0016932) 14058
(0.00948263 0.00439016 0.00168898) 14058
(0.00991996 0.00439158 0.00168829) 14059
(0.0104229 0.00439357 0.00169398) 14060
(0.0082578 0.00416568 0.00182946) 14116
(0.0082578 0.00416568 0.00182946) 14116
(0.0082578 0.00416568 0.00182946) 14116
(0.0087054 0.00416397 0.00182485) 14117
(0.00911449 0.00416288 0.00182153) 14118
(0.00951934 0.00416037 0.00181932) 14119
(0.00997427 0.00415906 0.00182188) 14119
(0.0104877 0.00416241 0.00182722) 14120
(0.00804348 0.00395658 0.00204839) 14176
(0.00847038 0.00395415 0.00203693) 14176
(0.00884568 0.00395163 0.00203002) 14177
(0.00800257 0.00359616 0.00317726) 14416
(0.00843708 0.00357963 0.00317755) 14416
(0.00817535 0.00365007 0.00346384) 14476
(0.00817535 0.00365007 0.00346384) 14476
(0.00817535 0.00365007 0.00346384) 14476
(0.00870288 0.00363255 0.00346109) 14477
(0.00914578 0.00361989 0.00346235) 14478
(0.00957278 0.00361133 0.00346294) 14479
(0.0100917 0.00361552 0.00346022) 14480
(0.0106377 0.00362456 0.0034583) 14481
(0.00800381 0.00373489 0.00368522) 14536
(0.00800381 0.00373489 0.00368522) 14536
(0.00800381 0.00373489 0.00368522) 14536
(0.00865389 0.00372954 0.0036924) 14537
(0.00915508 0.00372428 0.00369756) 14538
(0.00961904 0.00372138 0.00370308) 14539
(0.0101385 0.00372629 0.0037025) 14540
(0.0106602 0.00373219 0.00369843) 14541
(0.00798338 0.00392305 0.00391233) 14595
(0.00850696 0.00391604 0.00391791) 14597
(0.00841066 0.00470692 0.00439842) 14776
(0.00812488 0.00500324 0.00442676) 14836
(0.00859927 0.00499815 0.00443359) 14837
(0.00903198 0.00499505 0.00443774) 14838
(0.00945576 0.00499596 0.00444194) 14838
(0.00994583 0.00499733 0.00443912) 14839
(0.00802493 0.00528054 0.00439129) 14896
(0.00849129 0.00528254 0.00439935) 14896
(0.00890856 0.00528145 0.00440616) 14897
(0.00932555 0.0052795 0.00441059) 14898
(0.00896221 0.00637429 0.00340728) 15197
(0.00878638 0.00643212 0.00312431) 15257
(0.0092354 0.0064329 0.00312837) 15258
(0.00968285 0.0064332 0.00313151) 15259
(0.0101697 0.00643087 0.00313337) 15260
(0.0106879 0.00642618 0.00313386) 15261
(0.00558063 0.00642653 0.00292827) 13511
(0.00594496 0.00644189 0.00294191) 13511
(0.00655981 0.00644267 0.0029234) 13513
(0.00753897 0.0063855 0.00285345) 13515
(0.00500831 0.00441685 0.00165064) 14050
(0.00484924 0.00430881 0.00159167) 5709
(0.00486373 0.00437803 0.00154397) 5709
(0.00529564 0.00452439 0.00163117) 14050
(0.00626663 0.00447377 0.00169904) 14052
(0.00700046 0.00445722 0.00175082) 14054
(0.00470926 0.00412687 0.00190841) 14109
(0.0046371 0.00408566 0.00187756) 14109
(0.00458454 0.00418111 0.00176354) 14109
(0.00508257 0.00418982 0.00166131) 5650
(0.00458767 0.00359351 0.00337323) 14469
(0.00529713 0.0036582 0.00330953) 14410
(0.00742366 0.00369427 0.00349158) 14474
(0.00480427 0.00373587 0.0036424) 14529
(0.00448426 0.00364064 0.00361535) 14528
(0.00504278 0.00366131 0.00363183) 14530
(0.0069071 0.00377923 0.00369757) 14533
(0.00757373 0.00504063 0.00439012) 14835
(0.00670949 0.0053269 0.00435388) 14893
(0.00732365 0.00531241 0.0043376) 14894
(0.00370214 0.00639537 0.00290271) 13507
(0.00429791 0.00637706 0.00285468) 13508
(0.00452543 0.00643893 0.00288414) 13509
(0.00458808 0.00648534 0.00289908) 13509
(0.00641535 0.00639571 0.00310267) 15252
(0.00701237 0.00636819 0.00309445) 15254
(0.0185112 0.00298252 0.0022226) 32396
(0.0191984 0.00691183 0.00360354) 2018
(0.0108545 0.00655321 0.00423125) 6621
(0.0121617 0.00649603 0.00419182) 6684
(0.0131463 0.00646139 0.00417573) 6686
(0.0139512 0.00644111 0.0041631) 6687
(0.0146235 0.00642891 0.00415567) 6689
(0.0152103 0.00642061 0.00415257) 6690
(0.0157443 0.00641736 0.00414966) 6691
(0.0205536 0.00639386 0.0019627) 13481
(0.0232033 0.00646229 0.00216154) 13426
(0.0242978 0.00665911 0.0022497) 6108
(0.0193307 0.00666932 0.00419774) 1898
(0.0219608 0.00668512 0.00411844) 1963
(0.019042 0.00629431 0.00107947) 12458
(0.0184439 0.00364283 0.00468732) 7176
(0.0201799 0.00366271 0.00469847) 10540
(0.0184066 0.00335206 0.00160503) 396
(0.0204512 0.0032925 0.0017107) 460
(0.0193037 0.00614415 0.00478219) 12218
(0.0189966 0.00587424 0.00506674) 12577
(0.0189966 0.00587424 0.00506674) 12577
(0.0189966 0.00587424 0.00506674) 12577
(0.021045 0.00589321 0.00501707) 12582
(0.021045 0.00589321 0.00501707) 12582
(0.021045 0.00589321 0.00501707) 12582
(0.0222634 0.00598263 0.00498456) 12344
(0.0188817 0.00401219 0.00490538) 10537
(0.0185964 0.00375192 0.00139543) 12757
(0.0214938 0.00370834 0.00143761) 9222
(0.0190644 0.0041506 0.00125157) 11498
(0.0218421 0.00405317 0.00126272) 12763
(0.0190997 0.00479842 0.000911055) 11618
(0.0209683 0.00470774 0.000937697) 11621
(0.0181764 0.00593965 0.000976737) 12276
(0.0198286 0.00594009 0.000977516) 12279
(0.0191346 0.00534141 0.000786203) 11858
(0.0212357 0.00527615 0.000802731) 11922
(0.018505 0.00528595 0.00526075) 11077
(0.0202404 0.00528843 0.00522301) 11440
(0.021442 0.00538438 0.00523103) 11442
(0.0205735 0.00301387 0.00322721) 761
(0.0205735 0.00301387 0.00322721) 761
(0.0205735 0.00301387 0.00322721) 761
(0.0239176 0.00300473 0.00321031) 767
(0.0246983 0.00292793 0.00322243) 34128
(0.0184642 0.00675477 0.00158616) 2496
(0.0209068 0.00667769 0.00167378) 2501
(0.0225257 0.00665581 0.00164792) 2505
(0.0227049 0.00617752 0.00168182) 13485
(0.00822887 0.00643243 0.00286902) 13516
(0.00822887 0.00643243 0.00286902) 13516
(0.00822887 0.00643243 0.00286902) 13516
(0.00871165 0.00643665 0.00286661) 13517
(0.00915625 0.00643933 0.00286881) 13518
(0.00959203 0.00644131 0.00286892) 13519
(0.0100738 0.00643924 0.00286918) 13520
(0.0106016 0.00643356 0.00287136) 13521
(0.0079916 0.00634777 0.00256471) 13575
(0.00838887 0.0063627 0.00256858) 13576
(0.0198229 0.00620463 0.00235659) 13659
(0.0203763 0.0061896 0.00235044) 13660
(0.00801821 0.0058426 0.00188272) 13756
(0.00846702 0.00584068 0.00186655) 13756
(0.00889575 0.00583718 0.00185634) 13757
(0.00937834 0.00583455 0.00185655) 13758
(0.00800125 0.0055894 0.00171813) 13816
(0.00840118 0.00559205 0.00170648) 13816
(0.0087823 0.00559456 0.00169941) 13817
(0.00866831 0.0043902 0.00169754) 14057
(0.00906736 0.00439099 0.00169303) 14058
(0.00946011 0.00439012 0.0016889) 14058
(0.0098957 0.00439147 0.00168805) 14059
(0.0103964 0.00439345 0.00169354) 14060
(0.00823545 0.0041656 0.00182945) 14116
(0.00823545 0.0041656 0.00182945) 14116
(0.00823545 0.0041656 0.00182945) 14116
(0.0086817 0.00416366 0.00182472) 14117
(0.00909107 0.00416266 0.00182139) 14118
(0.00949616 0.0041603 0.00181918) 14118
(0.00994953 0.00415895 0.0018216) 14119
(0.0104612 0.00416211 0.0018269) 14120
(0.00802184 0.00395658 0.00204849) 14176
(0.00844681 0.00395391 0.00203688) 14176
(0.00882199 0.00395149 0.00202982) 14177
(0.00798054 0.00359629 0.00317767) 14415
(0.00841566 0.00357975 0.00317793) 14416
(0.00814977 0.00365088 0.00346429) 14476
(0.00814977 0.00365088 0.00346429) 14476
(0.00814977 0.00365088 0.00346429) 14476
(0.00867938 0.00363301 0.00346126) 14477
(0.00912358 0.00362026 0.00346244) 14478
(0.00954806 0.00361133 0.0034632) 14479
(0.0100647 0.00361507 0.00346044) 14480
(0.0106117 0.00362414 0.00345842) 14481
(0.00797084 0.00373522 0.00368507) 14535
(0.00797084 0.00373522 0.00368507) 14535
(0.00797084 0.00373522 0.00368507) 14535
(0.00862704 0.00372962 0.00369236) 14537
(0.00913089 0.00372438 0.00369746) 14538
(0.00959385 0.00372123 0.00370307) 14539
(0.0101124 0.00372593 0.00370278) 14540
(0.0106348 0.0037319 0.00369873) 14541
(0.00795755 0.00392349 0.00391261) 14595
(0.00848223 0.00391601 0.00391783) 14596
(0.00838754 0.00470725 0.00439863) 14776
(0.00810298 0.00500354 0.00442675) 14836
(0.00857628 0.00499834 0.0044338) 14837
(0.00900932 0.00499499 0.00443786) 14838
(0.00943249 0.0049959 0.00444207) 14838
(0.0099205 0.00499727 0.00443946) 14839
(0.00800265 0.00528052 0.0043913) 14896
(0.00846831 0.00528266 0.00439947) 14896
(0.00888623 0.00528163 0.0044062) 14897
(0.00930238 0.00527955 0.00441072) 14898
(0.00893707 0.0063746 0.00340738) 15197
(0.00876292 0.00643228 0.00312428) 15257
(0.00921228 0.00643306 0.0031283) 15258
(0.00965965 0.00643332 0.00313144) 15259
(0.0101451 0.00643108 0.00313335) 15260
(0.010663 0.00642642 0.00313385) 15261
(0.00556908 0.006425 0.00292676) 13511
(0.00592332 0.00644164 0.00294177) 13511
(0.0065416 0.00644186 0.0029253) 13513
(0.00750983 0.00638691 0.00285339) 13515
(0.00501423 0.00442992 0.00166144) 14050
(0.00490688 0.00430496 0.00158226) 5709
(0.00478504 0.004362 0.00156856) 5709
(0.00525427 0.00452684 0.00162662) 14050
(0.00622685 0.00447494 0.00169588) 14052
(0.00696587 0.004458 0.00174619) 14053
(0.00472935 0.00413313 0.00190785) 14109
(0.00464152 0.00408454 0.00188029) 14109
(0.00464598 0.00416443 0.00177542) 14109
(0.00502857 0.00415378 0.00165776) 5650
(0.00522816 0.0036004 0.00327835) 14410
(0.00740566 0.003697 0.00349236) 14474
(0.00476447 0.00376613 0.00364725) 14529
(0.00444811 0.00364226 0.00361585) 14528
(0.00504322 0.0036342 0.00363126) 5290
(0.00688765 0.00378264 0.00369668) 14533
(0.0075563 0.00504056 0.00438862) 14835
(0.00668779 0.0053203 0.00435849) 14893
(0.00731478 0.00531456 0.00433698) 14894
(0.0034493 0.00642385 0.00293317) 13506
(0.00430643 0.00637597 0.00285365) 13508
(0.00452525 0.00643745 0.00288357) 13509
(0.0047105 0.00649114 0.00295651) 13509
(0.0063922 0.00639561 0.00310326) 15252
(0.006978 0.00637225 0.00309482) 15253
(0.0184699 0.00298455 0.00221887) 32252
(0.0191537 0.00690938 0.00360849) 2018
(0.0108055 0.00655569 0.00423324) 6621
(0.0121286 0.00649714 0.00419227) 6684
(0.0131219 0.00646198 0.00417559) 6686
(0.0139318 0.00644121 0.00416297) 6687
(0.0146068 0.00642887 0.00415552) 6689
(0.0151951 0.00642047 0.00415237) 6690
(0.0157296 0.0064171 0.00414946) 6691
(0.0231556 0.00645274 0.00215247) 13426
(0.0242542 0.00665508 0.00225179) 6108
(0.0192403 0.00666812 0.00420442) 6638
(0.0218949 0.00667867 0.00412353) 1963
(0.0190169 0.00629923 0.00108311) 12458
(0.0183823 0.0036406 0.00468771) 7176
(0.0201333 0.00366063 0.00469561) 10540
(0.0183482 0.003356 0.00159852) 396
(0.0203929 0.00329637 0.00170746) 460
(0.0192432 0.00614136 0.00478522) 12218
(0.0189262 0.00587262 0.00506982) 12577
(0.0189262 0.00587262 0.00506982) 12577
(0.0189262 0.00587262 0.00506982) 12577
(0.0209888 0.00589072 0.00501809) 12581
(0.0209888 0.00589072 0.00501809) 12581
(0.0209888 0.00589072 0.00501809) 12581
(0.0222475 0.00597476 0.00498743) 12344
(0.0188326 0.00400974 0.00490228) 10537
(0.0185104 0.00375362 0.00139118) 12757
(0.0214055 0.00371117 0.00143788) 9222
(0.0189653 0.00415398 0.00124834) 11497
(0.0217565 0.00405784 0.00126418) 12763
(0.0190337 0.00480261 0.000909045) 11618
(0.0209195 0.00471345 0.000937986) 11621
(0.0181316 0.00594098 0.000977501) 12276
(0.0197796 0.00594093 0.00097904) 12279
(0.019064 0.00534629 0.000785797) 11858
(0.0211826 0.00527911 0.000804853) 11922
(0.0220892 0.00515885 0.000727812) 11924
(0.0184477 0.00528538 0.00526308) 11076
(0.0201909 0.00528676 0.0052232) 11440
(0.0214261 0.00537533 0.00522976) 11442
(0.020426 0.00300931 0.00322567) 760
(0.020426 0.00300931 0.00322567) 760
(0.020426 0.00300931 0.00322567) 760
(0.0238402 0.00300956 0.00321068) 767
(0.0247006 0.00293043 0.00321891) 34128
(0.0184034 0.00675878 0.00158398) 2496
(0.0208352 0.00667976 0.00167357) 2501
(0.0224891 0.00665704 0.00165186) 2504
(0.0226722 0.00617077 0.00167808) 13485
(0.00820484 0.00643252 0.00286906) 13516
(0.00820484 0.00643252 0.00286906) 13516
(0.00820484 0.00643252 0.00286906) 13516
(0.00868839 0.00643672 0.00286652) 13517
(0.00913339 0.0064394 0.0028687) 13518
(0.00956884 0.00644142 0.00286892) 13519
(0.0100488 0.0064395 0.00286917) 13520
(0.0105758 0.00643388 0.00287123) 13521
(0.00797041 0.00634776 0.00256507) 13575
(0.00836692 0.00636265 0.00256853) 13576
(0.0197998 0.00620524 0.0023568) 13659
(0.0203522 0.0061903 0.00235092) 13660
(0.00799727 0.00584255 0.00188281) 13755
(0.00844405 0.00584091 0.00186656) 13756
(0.00887088 0.0058373 0.0018561) 13757
(0.00935256 0.00583467 0.00185624) 13758
(0.00797984 0.00558928 0.0017181) 13815
(0.00837786 0.00559192 0.00170618) 13816
(0.0087585 0.0055946 0.00169916) 13817
(0.00904424 0.00439089 0.00169285) 14058
(0.00943756 0.00439008 0.00168882) 14058
(0.00987152 0.00439137 0.00168782) 14059
(0.0103699 0.00439332 0.00169311) 14060
(0.00821312 0.00416555 0.00182944) 14116
(0.00821312 0.00416555 0.00182944) 14116
(0.00821312 0.00416555 0.00182944) 14116
(0.00865801 0.00416334 0.00182458) 14117
(0.00906757 0.00416242 0.00182125) 14118
(0.00947294 0.00416023 0.00181904) 14118
(0.00992484 0.00415884 0.00182133) 14119
(0.0104347 0.00416181 0.00182658) 14120
(0.00800036 0.00395659 0.0020486) 14176
(0.00842332 0.00395369 0.00203682) 14176
(0.00879822 0.00395132 0.00202964) 14177
(0.00795849 0.00359643 0.00317808) 14415
(0.00839429 0.00357988 0.00317832) 14416
(0.00812417 0.00365172 0.00346476) 14476
(0.00812417 0.00365172 0.00346476) 14476
(0.00812417 0.00365172 0.00346476) 14476
(0.00865587 0.00363349 0.00346143) 14477
(0.00910143 0.00362064 0.00346251) 14478
(0.00952349 0.00361135 0.00346345) 14479
(0.0100377 0.00361465 0.00346066) 14480
(0.0105855 0.0036237 0.00345854) 14481
(0.00793754 0.00373559 0.00368492) 14535
(0.00793754 0.00373559 0.00368492) 14535
(0.00793754 0.00373559 0.00368492) 14535
(0.00860006 0.00372971 0.00369231) 14537
(0.00910671 0.00372448 0.00369737) 14538
(0.00956877 0.0037211 0.00370304) 14539
(0.0100862 0.00372557 0.00370304) 14540
(0.0106094 0.00373161 0.00369905) 14541
(0.00793167 0.00392399 0.00391295) 14595
(0.00845749 0.00391601 0.00391776) 14596
(0.00836442 0.0047076 0.00439883) 14776
(0.00808119 0.00500383 0.00442672) 14836
(0.00855332 0.00499853 0.004434) 14837
(0.00898663 0.00499494 0.00443799) 14837
(0.00940924 0.00499584 0.00444219) 14838
(0.0098952 0.00499721 0.00443979) 14839
(0.00798043 0.0052805 0.0043913) 14895
(0.00844534 0.00528278 0.00439958) 14896
(0.00886385 0.00528181 0.00440625) 14897
(0.00927924 0.00527962 0.00441085) 14898
(0.00891175 0.00637492 0.00340749) 15197
(0.00873938 0.00643243 0.00312425) 15257
(0.00918911 0.00643323 0.00312824) 15258
(0.00963648 0.00643344 0.00313136) 15259
(0.0101206 0.00643129 0.00313333) 15260
(0.0106382 0.00642668 0.00313384) 15261
(0.00557198 0.00642338 0.00292612) 13511
(0.00590203 0.00644136 0.00294155) 13511
(0.0065402 0.00644115 0.00292644) 13513
(0.00747959 0.00638851 0.0028535) 13514
(0.00494849 0.00430269 0.00157464) 5709
(0.00521801 0.0045288 0.00162255) 14050
(0.00618257 0.00447563 0.00169208) 14052
(0.00692968 0.00445796 0.00174175) 14053
(0.00475022 0.00414013 0.00190716) 14109
(0.00465701 0.00408485 0.00188116) 14109
(0.00470484 0.00413967 0.00179588) 14109
(0.00497897 0.00412589 0.00165886) 5649
(0.00520328 0.00354603 0.00325674) 14410
(0.00738891 0.00370008 0.00349294) 14474
(0.00447789 0.00364106 0.00361442) 14528
(0.00504676 0.00361942 0.00362963) 5290
(0.00686771 0.0037862 0.00369549) 14533
(0.0075389 0.00504051 0.00438691) 14835
(0.00666868 0.00531302 0.00436259) 14893
(0.00729996 0.00531539 0.00433681) 14894
(0.00304505 0.00645949 0.00298531) 13506
(0.00431783 0.00637525 0.00285292) 13508
(0.00452684 0.00643635 0.00288336) 13509
(0.00478061 0.00648957 0.002993) 13509
(0.00636945 0.00639546 0.00310381) 15252
(0.00694267 0.00637656 0.00309531) 15253
(0.0184279 0.00298637 0.00221511) 32252
(0.0191075 0.00690716 0.0036134) 2018
(0.0107559 0.00655818 0.00423547) 6621
(0.0120951 0.00649822 0.00419285) 6684
(0.0130973 0.00646264 0.00417537) 6686
(0.0139123 0.00644136 0.00416277) 6687
(0.0145901 0.00642883 0.00415536) 6689
(0.0151799 0.00642036 0.00415215) 6690
(0.0157149 0.00641684 0.00414926) 6691
(0.0231064 0.00644313 0.00214296) 13426
(0.0242097 0.00665088 0.00225376) 6108
(0.0191509 0.00666678 0.00421153) 6638
(0.021826 0.00667248 0.00412852) 1963
(0.0189912 0.00630389 0.0010865) 12457
(0.0183183 0.0036378 0.00468812) 7176
(0.0200849 0.00365867 0.00469298) 7180
(0.0182905 0.00335973 0.00159196) 396
(0.0203331 0.00330011 0.00170416) 460
(0.0191835 0.00613859 0.00478839) 12218
(0.0188565 0.00587094 0.00507296) 12577
(0.0188565 0.00587094 0.00507296) 12577
(0.0188565 0.00587094 0.00507296) 12577
(0.0209308 0.00588841 0.00501913) 12581
(0.0209308 0.00588841 0.00501913) 12581
(0.0209308 0.00588841 0.00501913) 12581
(0.0222298 0.0059673 0.00499005) 12344
(0.0187828 0.00400733 0.00489928) 10537
(0.0184278 0.0037552 0.00138682) 12756
(0.0213158 0.00371395 0.00143805) 9222
(0.0188671 0.00415656 0.00124481) 11497
(0.021669 0.00406254 0.00126554) 12763
(0.0189681 0.00480693 0.000906945) 11617
(0.0208688 0.00471901 0.000938219) 11621
(0.0180876 0.00594236 0.000978356) 12276
(0.0197299 0.00594161 0.000980407) 12279
(0.0189938 0.00535126 0.000785378) 11857
(0.021127 0.00528197 0.000806779) 11922
(0.0220995 0.00516862 0.000734048) 11924
(0.0201407 0.0052853 0.00522345) 11440
(0.0214083 0.00536681 0.00522853) 11442
(0.0202629 0.00300382 0.00322411) 760
(0.0202629 0.00300382 0.00322411) 760
(0.0202629 0.00300382 0.00322411) 760
(0.0237555 0.00301442 0.00321123) 767
(0.0247015 0.00293306 0.00321566) 34128
(0.018343 0.00676262 0.00158172) 2496
(0.0207636 0.00668191 0.00167336) 2501
(0.0224516 0.00665818 0.00165568) 2504
(0.0226345 0.00616382 0.00167395) 13485
(0.00818077 0.0064326 0.0028691) 13516
(0.00818077 0.0064326 0.0028691) 13516
(0.00818077 0.0064326 0.0028691) 13516
(0.00866511 0.00643678 0.00286643) 13517
(0.0091105 0.00643947 0.00286858) 13518
(0.00954568 0.00644152 0.00286893) 13519
(0.0100239 0.00643975 0.00286915) 13520
(0.0105499 0.00643419 0.00287111) 13521
(0.00794935 0.00634774 0.00256547) 13575
(0.00834502 0.0063626 0.00256852) 13576
(0.0197767 0.00620584 0.002357) 13659
(0.0203281 0.006191 0.00235139) 13660
(0.00797636 0.00584249 0.00188291) 13755
(0.00842116 0.00584114 0.00186657) 13756
(0.0088461 0.00583742 0.00185587) 13757
(0.00932684 0.00583479 0.00185593) 13758
(0.00795843 0.00558917 0.00171808) 13815
(0.00835457 0.00559179 0.00170589) 13816
(0.00873473 0.00559461 0.00169891) 13817
(0.009021 0.00439078 0.00169266) 14058
(0.00941498 0.00439004 0.00168873) 14058
(0.00984741 0.00439127 0.0016876) 14059
(0.0103434 0.0043932 0.00169268) 14060
(0.00819083 0.00416551 0.00182944) 14116
(0.00819083 0.00416551 0.00182944) 14116
(0.00819083 0.00416551 0.00182944) 14116
(0.00863435 0.00416303 0.00182445) 14117
(0.00904399 0.00416216 0.00182111) 14118
(0.0094497 0.00416016 0.00181889) 14118
(0.00990021 0.00415873 0.00182106) 14119
(0.0104083 0.00416152 0.00182626) 14120
(0.00797902 0.00395662 0.00204872) 14175
(0.00839992 0.00395348 0.00203676) 14176
(0.00877439 0.00395114 0.00202947) 14177
(0.00793639 0.00359658 0.00317848) 14415
(0.00837296 0.00358001 0.00317871) 14416
(0.00809853 0.00365259 0.00346524) 14476
(0.00809853 0.00365259 0.00346524) 14476
(0.00809853 0.00365259 0.00346524) 14476
(0.00863235 0.00363398 0.00346162) 14477
(0.00907931 0.00362103 0.00346258) 14478
(0.00949908 0.0036114 0.00346369) 14478
(0.0100107 0.00361423 0.0034609) 14480
(0.0105591 0.00362325 0.00345867) 14481
(0.0079038 0.00373601 0.0036848) 14535
(0.0079038 0.00373601 0.0036848) 14535
(0.0079038 0.00373601 0.0036848) 14535
(0.00857295 0.00372979 0.00369223) 14537
(0.00908254 0.00372462 0.00369732) 14538
(0.00954378 0.00372099 0.00370301) 14539
(0.01006 0.00372521 0.00370329) 14540
(0.0105839 0.00373132 0.00369937) 14541
(0.00790572 0.00392455 0.00391335) 14595
(0.00843276 0.00391601 0.00391769) 14596
(0.00805951 0.00500413 0.00442668) 14836
(0.0085304 0.00499873 0.00443419) 14837
(0.00896391 0.00499491 0.00443813) 14837
(0.00938602 0.00499578 0.00444232) 14838
(0.0098699 0.00499716 0.00444012) 14839
(0.00795826 0.00528049 0.00439128) 14895
(0.00842237 0.0052829 0.00439969) 14896
(0.00884143 0.00528199 0.00440631) 14897
(0.00925612 0.00527971 0.00441097) 14898
(0.0088862 0.00637525 0.00340765) 15197
(0.00871576 0.00643259 0.00312422) 15257
(0.00916589 0.00643339 0.00312817) 15258
(0.00961333 0.00643355 0.00313129) 15259
(0.0100962 0.00643149 0.0031333) 15260
(0.0106132 0.00642693 0.00313384) 15261
(0.00556269 0.00642142 0.00292478) 13511
(0.00588123 0.00644105 0.00294126) 13511
(0.006518 0.00644048 0.00292771) 13513
(0.00743814 0.00639067 0.0028541) 13514
(0.00497374 0.00430246 0.00156954) 5709
(0.00518295 0.00453037 0.00161845) 14050
(0.00613804 0.00447607 0.00168833) 14052
(0.00689321 0.00445788 0.00173741) 14053
(0.00467322 0.00408725 0.00188162) 14109
(0.00473275 0.00411834 0.00181464) 14109
(0.00284481 0.0041941 0.00172799) 5645
(0.00492848 0.00410833 0.0016671) 5649
(0.00520101 0.00350213 0.00324513) 5410
(0.00737283 0.00370344 0.00349317) 14474
(0.00444389 0.00364253 0.00361485) 14528
(0.00504537 0.00360858 0.00362291) 5290
(0.0068435 0.00378999 0.00369452) 14533
(0.00752141 0.00504048 0.00438499) 14835
(0.00665507 0.0053055 0.00436587) 14893
(0.00728234 0.00531574 0.00433671) 14894
(0.00258818 0.00649019 0.00304848) 15245
(0.0043332 0.00637526 0.00285214) 13508
(0.00453047 0.00643563 0.00288356) 13509
(0.00482441 0.00648713 0.00301502) 15249
(0.00634538 0.00639554 0.0031043) 15252
(0.00690664 0.0063811 0.00309593) 15253
(0.018385 0.00298795 0.00221134) 32252
(0.0190595 0.00690522 0.00361826) 2018
(0.0107061 0.00656071 0.00423779) 6621
(0.0120612 0.00649934 0.00419346) 6684
(0.0130724 0.00646328 0.00417525) 6686
(0.0138924 0.00644147 0.00416268) 6687
(0.0145735 0.00642881 0.00415513) 6689
(0.0151647 0.00642028 0.00415184) 6690
(0.0157002 0.00641658 0.00414905) 6691
(0.0162208 0.00641628 0.00414441) 6692
(0.0230552 0.00643347 0.00213286) 13426
(0.0241646 0.00664641 0.00225551) 6108
(0.0190616 0.00666542 0.004219) 6638
(0.0217546 0.00666664 0.00413331) 1963
(0.0189649 0.00630832 0.00108965) 12457
(0.0182521 0.00363426 0.00468847) 7176
(0.020035 0.00365683 0.00469057) 7180
(0.0212316 0.00373259 0.00479374) 10542
(0.0182331 0.00336323 0.00158539) 396
(0.0202719 0.00330372 0.0017008) 460
(0.0191247 0.00613583 0.00479171) 12218
(0.0187876 0.0058692 0.00507618) 12577
(0.0187876 0.0058692 0.00507618) 12577
(0.0187876 0.0058692 0.00507618) 12577
(0.0208708 0.00588626 0.00502019) 12581
(0.0208708 0.00588626 0.00502019) 12581
(0.0208708 0.00588626 0.00502019) 12581
(0.0222102 0.00596027 0.00499243) 12344
(0.0222102 0.00596027 0.00499243) 12344
(0.0222102 0.00596027 0.00499243) 12344
(0.0187318 0.00400494 0.00489637) 10537
(0.0183479 0.00375657 0.00138243) 12756
(0.021224 0.00371664 0.00143814) 9222
(0.018769 0.00415802 0.00124101) 11497
(0.0215797 0.00406727 0.00126679) 11503
(0.0189026 0.0048113 0.000904762) 11617
(0.0208162 0.00472444 0.000938396) 11621
(0.0180445 0.00594378 0.000979328) 12276
(0.0196797 0.00594214 0.000981622) 12279
(0.018923 0.00535629 0.000784898) 11857
(0.0210687 0.0052847 0.000808503) 11922
(0.0221067 0.0051778 0.000740101) 11924
(0.0200896 0.00528407 0.00522376) 11440
(0.0213887 0.00535881 0.00522731) 11442
(0.0200776 0.00299674 0.00322272) 32832
(0.0200776 0.00299674 0.00322272) 32832
(0.0200776 0.00299674 0.00322272) 32832
(0.0236635 0.0030192 0.00321197) 767
(0.0247006 0.00293578 0.00321269) 34128
(0.0182828 0.00676628 0.00157939) 2496
(0.0206917 0.0066841 0.00167308) 2501
(0.0224137 0.00665927 0.00165946) 2504
(0.0225931 0.00615651 0.00166919) 13485
(0.00815667 0.00643269 0.00286916) 13516
(0.00815667 0.00643269 0.00286916) 13516
(0.00815667 0.00643269 0.00286916) 13516
(0.00864179 0.00643685 0.00286635) 13517
(0.00908759 0.00643954 0.00286845) 13518
(0.00952255 0.00644162 0.00286895) 13519
(0.00999898 0.00644 0.00286915) 13519
(0.0105239 0.00643451 0.00287099) 13521
(0.00792842 0.00634773 0.00256592) 13575
(0.00832317 0.00636256 0.00256854) 13576
(0.0197537 0.00620643 0.00235719) 13659
(0.0203039 0.00619169 0.00235184) 13660
(0.00795547 0.00584242 0.00188301) 13755
(0.00839837 0.00584136 0.0018666) 13756
(0.00882142 0.00583756 0.00185565) 13757
(0.00930117 0.00583491 0.00185563) 13758
(0.00793703 0.00558906 0.00171807) 13815
(0.00833132 0.00559167 0.00170561) 13816
(0.00871097 0.00559462 0.00169865) 13817
(0.00899764 0.00439067 0.00169246) 14057
(0.00939238 0.00438999 0.00168865) 14058
(0.00982338 0.00439116 0.00168739) 14059
(0.0103171 0.00439308 0.00169226) 14060
(0.00816855 0.00416549 0.00182945) 14116
(0.00816855 0.00416549 0.00182945) 14116
(0.00816855 0.00416549 0.00182945) 14116
(0.00861072 0.00416272 0.00182432) 14117
(0.00902032 0.00416189 0.00182097) 14118
(0.00942642 0.00416009 0.00181875) 14118
(0.00987564 0.00415863 0.0018208) 14119
(0.0103819 0.00416124 0.00182594) 14120
(0.00795783 0.00395667 0.00204886) 14175
(0.0083766 0.00395329 0.00203671) 14176
(0.0087505 0.00395094 0.00202931) 14177
(0.00791424 0.00359673 0.00317889) 14415
(0.00835167 0.00358016 0.0031791) 14416
(0.0129677 0.00363104 0.00318954) 14425
(0.00807287 0.00365348 0.00346573) 14476
(0.00807287 0.00365348 0.00346573) 14476
(0.00807287 0.00365348 0.00346573) 14476
(0.00860882 0.00363449 0.00346182) 14477
(0.00905722 0.00362143 0.00346264) 14478
(0.00947482 0.00361147 0.00346393) 14478
(0.00998378 0.00361383 0.00346115) 14479
(0.0105326 0.00362278 0.0034588) 14481
(0.00786968 0.00373645 0.0036847) 14535
(0.00786968 0.00373645 0.0036847) 14535
(0.00786968 0.00373645 0.0036847) 14535
(0.00854569 0.00372987 0.00369213) 14537
(0.00905835 0.00372476 0.00369727) 14538
(0.00951889 0.0037209 0.00370297) 14539
(0.0100338 0.00372486 0.00370352) 14540
(0.0105583 0.00373102 0.0036997) 14541
(0.00787975 0.00392518 0.00391382) 14595
(0.00840799 0.00391604 0.00391763) 14596
(0.00803794 0.00500442 0.00442662) 14836
(0.0085075 0.00499893 0.00443438) 14837
(0.00894115 0.00499489 0.00443828) 14837
(0.00936282 0.00499571 0.00444244) 14838
(0.00984462 0.00499711 0.00444045) 14839
(0.00793613 0.00528049 0.00439126) 14895
(0.00839941 0.00528302 0.00439979) 14896
(0.00881896 0.00528215 0.00440637) 14897
(0.009233 0.00527982 0.00441109) 14898
(0.00886047 0.00637558 0.00340783) 15197
(0.00914263 0.00643356 0.00312811) 15258
(0.00959019 0.00643367 0.00313122) 15259
(0.0100718 0.00643169 0.00313328) 15260
(0.0105883 0.00642719 0.00313383) 15261
(0.0043252 0.00632843 0.00259166) 13568
(0.00556451 0.00641984 0.00292389) 13511
(0.00586099 0.00644068 0.00294086) 13511
(0.00649558 0.00643987 0.00292879) 13512
(0.00740188 0.00639348 0.00285504) 13514
(0.0049891 0.00430437 0.00156656) 5709
(0.0051475 0.00453149 0.00161393) 14050
(0.00609592 0.00447639 0.00168493) 14052
(0.00685632 0.00445776 0.00173319) 14053
(0.00468701 0.00409077 0.00188211) 14109
(0.00474433 0.00410092 0.00183076) 14109
(0.00336383 0.00421083 0.00173638) 14106
(0.004883 0.00410554 0.00167845) 5649
(0.00520877 0.00346167 0.00323673) 5410
(0.00735693 0.00370716 0.003493) 14474
(0.00449608 0.00364055 0.00361245) 14528
(0.00504447 0.00360352 0.00361317) 5350
(0.00482942 0.00493315 0.00441595) 14829
(0.0075035 0.00504045 0.00438281) 14835
(0.0066385 0.00529799 0.0043684) 14893
(0.00726275 0.00531591 0.00433656) 14894
(0.00727887 0.00628092 0.00339824) 15194
(0.00435234 0.00637603 0.00285191) 13508
(0.00454252 0.0064363 0.0028854) 13509
(0.00483413 0.0064859 0.0030196) 15249
(0.00632317 0.00639532 0.00310479) 15252
(0.00686953 0.00638589 0.00309673) 15253
(0.0183413 0.00298928 0.00220755) 32252
(0.0190097 0.0069036 0.00362303) 2018
(0.0204011 0.00698409 0.0035124) 2020
(0.0106549 0.00656341 0.00424027) 6621
(0.0120268 0.00650052 0.00419409) 6684
(0.0130472 0.00646394 0.00417516) 6686
(0.0138724 0.00644158 0.00416263) 6687
(0.0145568 0.00642879 0.0041549) 6689
(0.0151495 0.00642022 0.00415151) 6690
(0.0156855 0.00641634 0.00414884) 6691
(0.0162054 0.00641602 0.00414421) 6692
(0.0230028 0.00642384 0.0021223) 13426
(0.0241194 0.00664167 0.00225701) 6108
(0.018972 0.006664 0.00422684) 6637
(0.02168 0.00666132 0.00413783) 1963
(0.018938 0.00631255 0.00109262) 12457
(0.0181841 0.00362984 0.0046886) 7176
(0.0199837 0.00365508 0.00468837) 7179
(0.0212207 0.00372537 0.00478499) 10542
(0.0181759 0.00336646 0.00157886) 396
(0.0202094 0.00330719 0.00169736) 460
(0.0190664 0.00613311 0.00479519) 12218
(0.0187195 0.00586739 0.00507948) 12577
(0.0187195 0.00586739 0.00507948) 12577
(0.0187195 0.00586739 0.00507948) 12577
(0.0208089 0.00588426 0.00502127) 12581
(0.0208089 0.00588426 0.00502127) 12581
(0.0208089 0.00588426 0.00502127) 12581
(0.0221886 0.00595363 0.00499459) 12344
(0.0221886 0.00595363 0.00499459) 12344
(0.0221886 0.00595363 0.00499459) 12344
(0.0186792 0.00400253 0.00489352) 10537
(0.0182702 0.00375771 0.00137809) 12756
(0.0211302 0.00371924 0.00143812) 9222
(0.0186708 0.00415819 0.00123703) 11497
(0.0214886 0.00407201 0.00126791) 11502
(0.0188368 0.00481563 0.000902499) 11617
(0.0207619 0.00472973 0.00093851) 11621
(0.0196288 0.00594257 0.000982714) 12279
(0.0188508 0.00536133 0.000784306) 11857
(0.0210077 0.00528733 0.000810023) 11922
(0.0221111 0.00518643 0.000745972) 11924
(0.0200376 0.00528304 0.00522413) 11440
(0.0213673 0.00535131 0.00522613) 11442
(0.0198679 0.00298756 0.00322163) 32688
(0.0198679 0.00298756 0.00322163) 32688
(0.0198679 0.00298756 0.00322163) 32688
(0.0235639 0.00302381 0.00321287) 767
(0.0246978 0.00293861 0.00321001) 34128
(0.0206195 0.00668634 0.00167271) 2501
(0.0206195 0.00668634 0.00167271) 2501
(0.0206195 0.00668634 0.00167271) 2501
(0.0223754 0.00666035 0.00166318) 2504
(0.0225456 0.00614896 0.00166401) 13485
(0.00813252 0.00643278 0.00286923) 13516
(0.00813252 0.00643278 0.00286923) 13516
(0.00813252 0.00643278 0.00286923) 13516
(0.00861844 0.00643691 0.00286628) 13517
(0.00906464 0.00643962 0.00286831) 13518
(0.00949946 0.00644171 0.00286896) 13518
(0.00997417 0.00644024 0.00286914) 13519
(0.010498 0.00643483 0.00287088) 13520
(0.00790756 0.00634772 0.00256642) 13575
(0.00830138 0.00636253 0.00256859) 13576
(0.0197308 0.006207 0.00235737) 13659
(0.0202798 0.00619239 0.00235228) 13660
(0.0079346 0.00584234 0.00188311) 13755
(0.00837566 0.00584157 0.00186663) 13756
(0.00879685 0.0058377 0.00185544) 13757
(0.00927556 0.00583504 0.00185534) 13758
(0.00791564 0.00558896 0.00171808) 13815
(0.0083081 0.00559156 0.00170534) 13816
(0.00868724 0.00559461 0.00169838) 13817
(0.00897417 0.00439056 0.00169225) 14057
(0.00936974 0.00438995 0.00168855) 14058
(0.00979942 0.00439105 0.00168719) 14059
(0.0102908 0.00439297 0.00169184) 14060
(0.0081463 0.00416549 0.00182946) 14116
(0.0081463 0.00416549 0.00182946) 14116
(0.0081463 0.00416549 0.00182946) 14116
(0.00858711 0.00416241 0.0018242) 14117
(0.00899658 0.0041616 0.00182083) 14117
(0.0094031 0.00416001 0.0018186) 14118
(0.00985112 0.00415854 0.00182053) 14119
(0.0103555 0.00416096 0.00182562) 14120
(0.00793675 0.00395674 0.00204899) 14175
(0.00835338 0.00395312 0.00203667) 14176
(0.00872655 0.00395072 0.00202916) 14177
(0.00789203 0.00359689 0.00317929) 14415
(0.00833039 0.00358031 0.00317948) 14416
(0.0129443 0.00363067 0.00318965) 14425
(0.0134621 0.00363483 0.0031877) 14426
(0.00804718 0.00365441 0.00346624) 14476
(0.00804718 0.00365441 0.00346624) 14476
(0.00804718 0.00365441 0.00346624) 14476
(0.00858526 0.00363501 0.00346202) 14477
(0.00903514 0.00362183 0.00346269) 14478
(0.0094507 0.00361157 0.00346416) 14478
(0.00995686 0.00361345 0.00346141) 14479
(0.010506 0.00362231 0.00345893) 14481
(0.00783511 0.00373695 0.00368462) 14535
(0.00783511 0.00373695 0.00368462) 14535
(0.00783511 0.00373695 0.00368462) 14535
(0.00851827 0.00372996 0.00369203) 14537
(0.00903416 0.0037249 0.00369722) 14538
(0.00949413 0.00372083 0.00370293) 14538
(0.0100076 0.0037245 0.00370374) 14540
(0.0105327 0.00373072 0.00370004) 14541
(0.00785376 0.00392587 0.00391436) 14595
(0.00838318 0.00391608 0.00391759) 14596
(0.00801648 0.00500472 0.00442654) 14836
(0.00848465 0.00499913 0.00443456) 14836
(0.00891834 0.00499488 0.00443843) 14837
(0.00933963 0.00499564 0.00444256) 14838
(0.00981936 0.00499706 0.00444078) 14839
(0.00791406 0.00528049 0.00439122) 14895
(0.00837647 0.00528314 0.00439989) 14896
(0.00879644 0.00528231 0.00440645) 14897
(0.00920988 0.00527996 0.00441121) 14898
(0.00883453 0.00637593 0.00340801) 15197
(0.0091193 0.00643374 0.00312805) 15258
(0.00956708 0.00643378 0.00313115) 15259
(0.0100475 0.00643188 0.00313325) 15260
(0.0105633 0.00642744 0.00313383) 15261
(0.00422444 0.00633591 0.00258093) 13568
(0.00557516 0.0064166 0.00292402) 13511
(0.00584199 0.00644016 0.0029402) 13511
(0.00647316 0.0064393 0.00292972) 13512
(0.00736036 0.00639742 0.00285674) 13514
(0.00499639 0.00430852 0.00156598) 5709
(0.00511178 0.00453202 0.00160903) 14050
(0.00605598 0.00447669 0.00168186) 14052
(0.00681972 0.00445757 0.00172913) 14053
(0.00470778 0.00409547 0.00188181) 14109
(0.00474302 0.0040883 0.00184121) 14109
(0.00352717 0.00421394 0.00173864) 14107
(0.00481627 0.0041169 0.0016961) 5649
(0.00520152 0.00343387 0.00323277) 5410
(0.00734087 0.00371148 0.00349243) 14474
(0.00449097 0.00364103 0.0036116) 14528
(0.00504312 0.00360114 0.00360691) 5350
(0.00477333 0.00493161 0.0044194) 14829
(0.00748527 0.00504038 0.00438056) 14834
(0.00662041 0.00529159 0.00437022) 14893
(0.00724193 0.00531612 0.0043369) 14894
(0.00724746 0.00628365 0.00339605) 15194
(0.00436473 0.00637559 0.00285156) 13508
(0.00454761 0.00643592 0.00288579) 13509
(0.0048807 0.00648246 0.00304031) 15249
(0.00630293 0.00639479 0.00310516) 15252
(0.00683232 0.00639075 0.00309765) 15253
(0.0182968 0.00299035 0.00220377) 32252
(0.018958 0.00690235 0.00362768) 2017
(0.0203678 0.00697842 0.00351892) 2020
(0.0106033 0.00656618 0.00424284) 6621
(0.0119919 0.00650175 0.00419475) 6683
(0.0130217 0.00646463 0.00417507) 6686
(0.0138521 0.00644171 0.0041626) 6687
(0.0145401 0.00642877 0.00415469) 6689
(0.0151344 0.00642015 0.00415118) 6690
(0.0156708 0.00641609 0.00414863) 6691
(0.0161901 0.00641576 0.00414402) 6692
(0.022947 0.006414 0.00211101) 13425
(0.024074 0.00663659 0.00225816) 6108
(0.0188815 0.00666254 0.00423505) 6637
(0.0216024 0.0066566 0.00414199) 1963
(0.0189107 0.00631664 0.00109543) 12457
(0.0181154 0.00362448 0.00468839) 7176
(0.0199311 0.00365339 0.00468635) 7179
(0.0212078 0.00371858 0.00477663) 10542
(0.0181189 0.00336946 0.00157249) 396
(0.0201456 0.00331052 0.00169386) 460
(0.0190084 0.0061304 0.00479883) 12218
(0.018652 0.00586557 0.00508285) 12577
(0.018652 0.00586557 0.00508285) 12577
(0.018652 0.00586557 0.00508285) 12577
(0.0207452 0.00588238 0.00502242) 12581
(0.0207452 0.00588238 0.00502242) 12581
(0.0207452 0.00588238 0.00502242) 12581
(0.0221651 0.00594736 0.00499655) 12344
(0.0221651 0.00594736 0.00499655) 12344
(0.0221651 0.00594736 0.00499655) 12344
(0.0186247 0.00400006 0.0048907) 10537
(0.0202967 0.00403726 0.0049516) 10840
(0.0181947 0.00375873 0.00137395) 12756
(0.0210344 0.00372175 0.00143799) 9222
(0.0185722 0.00415701 0.00123291) 11497
(0.0213961 0.0040768 0.00126889) 11502
(0.0187696 0.00481973 0.000900151) 11617
(0.0207059 0.00473489 0.000938557) 11621
(0.0195775 0.00594296 0.000983725) 12279
(0.0187769 0.00536639 0.000783594) 11857
(0.0209444 0.00528988 0.000811346) 11921
(0.0221124 0.00519454 0.000751655) 11924
(0.0199849 0.00528212 0.00522456) 11439
(0.0213441 0.00534429 0.00522497) 11442
(0.0196321 0.00297527 0.00322101) 32688
(0.0234566 0.00302818 0.00321389) 766
(0.0246931 0.00294153 0.00320761) 34128
(0.0205455 0.00668869 0.00167211) 2501
(0.0205455 0.00668869 0.00167211) 2501
(0.0205455 0.00668869 0.00167211) 2501
(0.0223363 0.0066614 0.00166682) 2504
(0.0231509 0.00660458 0.00154563) 6766
(0.0224915 0.00614133 0.00165857) 13484
(0.00810834 0.00643287 0.0028693) 13516
(0.00810834 0.00643287 0.0028693) 13516
(0.00810834 0.00643287 0.0028693) 13516
(0.00859507 0.00643698 0.00286622) 13517
(0.00904167 0.00643969 0.00286816) 13518
(0.00947639 0.0064418 0.00286897) 13518
(0.00994948 0.00644047 0.00286914) 13519
(0.010472 0.00643515 0.00287078) 13520
(0.0078868 0.00634771 0.00256697) 13575
(0.00827965 0.00636251 0.00256868) 13576
(0.019708 0.00620757 0.00235755) 13659
(0.0202557 0.00619309 0.00235271) 13660
(0.020803 0.00617886 0.00234158) 13661
(0.00791375 0.00584224 0.00188322) 13755
(0.00835302 0.00584177 0.00186666) 13756
(0.00877241 0.00583786 0.00185525) 13757
(0.00925001 0.00583516 0.00185505) 13758
(0.00789426 0.00558886 0.0017181) 13815
(0.00828492 0.00559145 0.00170508) 13816
(0.00866353 0.00559458 0.00169811) 13817
(0.00895058 0.00439044 0.00169203) 14057
(0.00934705 0.00438989 0.00168846) 14058
(0.00977553 0.00439094 0.001687) 14059
(0.0102646 0.00439286 0.00169142) 14060
(0.00812405 0.00416552 0.00182948) 14116
(0.00812405 0.00416552 0.00182948) 14116
(0.00812405 0.00416552 0.00182948) 14116
(0.00856354 0.00416212 0.00182408) 14117
(0.00897277 0.0041613 0.00182069) 14117
(0.00937974 0.00415992 0.00181844) 14118
(0.00982665 0.00415845 0.00182027) 14119
(0.0103291 0.00416068 0.0018253) 14120
(0.00791579 0.00395685 0.00204912) 14175
(0.00833025 0.00395295 0.00203663) 14176
(0.00870256 0.00395049 0.00202903) 14177
(0.00786976 0.00359705 0.00317968) 14415
(0.00830914 0.00358048 0.00317986) 14416
(0.012921 0.00363029 0.00318975) 14425
(0.0134402 0.00363479 0.00318783) 14426
(0.00802142 0.00365536 0.00346677) 14476
(0.00802142 0.00365536 0.00346677) 14476
(0.00802142 0.00365536 0.00346677) 14476
(0.00856168 0.00363555 0.00346222) 14477
(0.00901309 0.00362223 0.00346273) 14478
(0.00942673 0.00361169 0.00346438) 14478
(0.00993 0.00361308 0.00346168) 14479
(0.0104792 0.00362182 0.00345906) 14480
(0.00780008 0.00373748 0.00368458) 14535
(0.00780008 0.00373748 0.00368458) 14535
(0.00780008 0.00373748 0.00368458) 14535
(0.00849067 0.00373006 0.00369193) 14536
(0.00900994 0.00372504 0.00369716) 14538
(0.00946947 0.00372078 0.00370288) 14538
(0.00998135 0.00372414 0.00370393) 14539
(0.0105069 0.00373042 0.0037004) 14541
(0.00782778 0.00392663 0.00391498) 14595
(0.0083583 0.00391615 0.00391757) 14596
(0.00880257 0.00391221 0.00392475) 14597
(0.00799513 0.00500502 0.00442644) 14835
(0.00846183 0.00499934 0.00443472) 14836
(0.0088955 0.00499489 0.00443859) 14837
(0.00931644 0.00499556 0.00444268) 14838
(0.00979411 0.00499701 0.0044411) 14839
(0.00789203 0.00528049 0.00439118) 14895
(0.00835354 0.00528326 0.00439997) 14896
(0.00877387 0.00528247 0.00440653) 14897
(0.00918676 0.00528012 0.00441133) 14898
(0.00776136 0.00622905 0.00366433) 15135
(0.00880841 0.0063763 0.00340821) 15197
(0.00909592 0.00643392 0.00312799) 15258
(0.00954397 0.0064339 0.00313108) 15259
(0.0100232 0.00643206 0.00313322) 15260
(0.0105383 0.0064277 0.00313383) 15261
(0.00412318 0.00634465 0.00258006) 13568
(0.00558531 0.00641328 0.00292412) 13511
(0.0058428 0.00643975 0.00293959) 13511
(0.0064503 0.00643881 0.00293054) 13512
(0.00730012 0.00640313 0.00286018) 13514
(0.00499635 0.00431511 0.00156834) 5709
(0.00507369 0.00453151 0.00160293) 14050
(0.00601832 0.00447699 0.00167912) 14052
(0.00678748 0.00445792 0.00172628) 14053
(0.00473146 0.00410175 0.00188114) 14109
(0.00473927 0.00407908 0.00184709) 14109
(0.00368969 0.00421594 0.00174043) 14107
(0.00471887 0.00413974 0.00171094) 5649
(0.00516794 0.00342465 0.0032328) 5410
(0.00732068 0.00371595 0.00349152) 14474
(0.0044836 0.00364157 0.00361086) 14528
(0.00504042 0.00360084 0.00360174) 5350
(0.00471517 0.00493014 0.00442313) 14829
(0.00746647 0.00504027 0.00437821) 14834
(0.00660373 0.00528651 0.00437109) 14893
(0.00721917 0.0053164 0.00433798) 14894
(0.00721557 0.00628724 0.0033931) 15194
(0.00437087 0.00637453 0.00285081) 13508
(0.00453709 0.0064328 0.00288339) 13509
(0.00490037 0.00648039 0.00304848) 15249
(0.00645276 0.0063842 0.00309675) 15252
(0.00679406 0.00639522 0.00309863) 15253
(0.0182516 0.00299117 0.00220003) 32252
(0.0189043 0.00690153 0.00363215) 2017
(0.0203335 0.00697288 0.00352534) 2020
(0.0105514 0.00656902 0.00424552) 6621
(0.0119565 0.00650302 0.00419543) 6683
(0.0129959 0.00646534 0.00417499) 6685
(0.0138317 0.00644184 0.00416259) 6687
(0.0145232 0.00642875 0.0041545) 6689
(0.0151193 0.00642008 0.00415084) 6690
(0.0156562 0.00641586 0.00414841) 6691
(0.0161749 0.0064155 0.00414382) 6692
(0.0228888 0.00640412 0.00209922) 13425
(0.0240292 0.00663116 0.00225894) 6108
(0.0187898 0.00666106 0.00424358) 6637
(0.0215214 0.00665269 0.00414569) 1963
(0.0188829 0.0063206 0.00109811) 12457
(0.0198774 0.00365176 0.00468449) 7179
(0.0211929 0.0037122 0.00476865) 10542
(0.0200807 0.00331371 0.00169027) 460
(0.0189502 0.00612771 0.00480264) 12217
(0.0185852 0.00586373 0.00508627) 12577
(0.0185852 0.00586373 0.00508627) 12577
(0.0185852 0.00586373 0.00508627) 12577
(0.0206796 0.00588059 0.00502364) 12581
(0.0206796 0.00588059 0.00502364) 12581
(0.0206796 0.00588059 0.00502364) 12581
(0.0221395 0.00594143 0.00499833) 12584
(0.0221395 0.00594143 0.00499833) 12584
(0.0221395 0.00594143 0.00499833) 12584
(0.0185679 0.00399749 0.0048879) 10537
(0.0202435 0.00403582 0.00494803) 10840
(0.0181224 0.00375974 0.00137012) 12756
(0.0209363 0.00372426 0.00143768) 9221
(0.0184726 0.00415433 0.00122879) 11496
(0.0213019 0.00408158 0.00126973) 11502
(0.0187004 0.00482348 0.00089771) 11617
(0.0206481 0.00473992 0.000938529) 11621
(0.0195257 0.00594334 0.000984664) 12279
(0.0187014 0.00537146 0.000782801) 11857
(0.0208786 0.00529237 0.00081248) 11921
(0.0221099 0.0052021 0.000757115) 11924
(0.0199314 0.00528132 0.00522506) 11439
(0.021319 0.00533771 0.00522384) 11442
(0.0193764 0.00295927 0.00322088) 32544
(0.0233432 0.00303224 0.00321503) 766
(0.0246867 0.0029445 0.00320545) 34128
(0.0204697 0.00669115 0.00167123) 2500
(0.0204697 0.00669115 0.00167123) 2500
(0.0204697 0.00669115 0.00167123) 2500
(0.0222957 0.00666242 0.00167027) 2504
(0.0231695 0.00661304 0.00155861) 6766
(0.0224313 0.00613334 0.00165253) 6044
(0.00808411 0.00643296 0.00286939) 13516
(0.00808411 0.00643296 0.00286939) 13516
(0.00808411 0.00643296 0.00286939) 13516
(0.00857167 0.00643705 0.00286616) 13517
(0.00901868 0.00643977 0.002868) 13518
(0.00945335 0.0064419 0.00286898) 13518
(0.00992486 0.0064407 0.00286914) 13519
(0.0104461 0.00643547 0.00287068) 13520
(0.0078661 0.0063477 0.00256756) 13575
(0.00825796 0.0063625 0.0025688) 13576
(0.0196854 0.00620812 0.00235772) 13659
(0.0202315 0.00619379 0.00235312) 13660
(0.0207799 0.00617946 0.00234226) 13661
(0.00789293 0.00584214 0.00188333) 13755
(0.00833046 0.00584196 0.00186669) 13756
(0.00874808 0.00583802 0.00185508) 13757
(0.0092246 0.00583528 0.00185478) 13758
(0.00787288 0.00558877 0.00171814) 13815
(0.00826178 0.00559136 0.00170484) 13816
(0.00863985 0.00559454 0.00169783) 13817
(0.00892687 0.00439032 0.00169181) 14057
(0.00932432 0.00438983 0.00168836) 14058
(0.00975171 0.00439082 0.00168682) 14059
(0.0102385 0.00439275 0.00169101) 14060
(0.00810181 0.00416556 0.0018295) 14116
(0.00810181 0.00416556 0.0018295) 14116
(0.00810181 0.00416556 0.0018295) 14116
(0.00853999 0.00416184 0.00182397) 14117
(0.0089489 0.00416098 0.00182056) 14117
(0.00935634 0.00415983 0.00181829) 14118
(0.00980223 0.00415837 0.00182001) 14119
(0.0103029 0.0041604 0.00182498) 14120
(0.00789495 0.00395696 0.00204927) 14175
(0.00830723 0.00395281 0.00203659) 14176
(0.00867853 0.00395026 0.0020289) 14177
(0.00784739 0.00359721 0.00318005) 14415
(0.0082879 0.00358066 0.00318023) 14416
(0.0128975 0.00362989 0.00318986) 14425
(0.0134183 0.00363475 0.00318796) 14426
(0.00799556 0.00365636 0.00346732) 14475
(0.00799556 0.00365636 0.00346732) 14475
(0.00799556 0.00365636 0.00346732) 14475
(0.00853806 0.00363611 0.00346244) 14477
(0.00899106 0.00362266 0.0034628) 14477
(0.00940288 0.00361181 0.00346453) 14478
(0.00990323 0.00361275 0.00346199) 14479
(0.0104523 0.00362133 0.0034592) 14480
(0.00776454 0.00373806 0.00368457) 14535
(0.00776454 0.00373806 0.00368457) 14535
(0.00776454 0.00373806 0.00368457) 14535
(0.00846289 0.00373017 0.00369183) 14536
(0.00898569 0.00372517 0.00369707) 14537
(0.0094449 0.00372077 0.00370288) 14538
(0.00995515 0.00372377 0.00370409) 14539
(0.0104811 0.00373011 0.00370076) 14540
(0.0078018 0.00392746 0.00391567) 14595
(0.00833336 0.00391625 0.00391757) 14596
(0.00877938 0.00391215 0.00392455) 14597
(0.00797386 0.00500532 0.00442633) 14835
(0.00843906 0.00499955 0.00443488) 14836
(0.00887262 0.00499492 0.00443875) 14837
(0.00929325 0.00499548 0.0044428) 14838
(0.00976889 0.00499696 0.00444142) 14839
(0.00787005 0.00528051 0.00439113) 14895
(0.00833063 0.00528337 0.00440005) 14896
(0.00875123 0.00528261 0.00440662) 14897
(0.00916363 0.00528031 0.00441144) 14898
(0.00774092 0.00622887 0.00366422) 15135
(0.00878209 0.00637667 0.00340842) 15197
(0.00907246 0.0064341 0.00312794) 15258
(0.00952088 0.00643402 0.00313101) 15259
(0.00999905 0.00643224 0.00313319) 15259
(0.0105133 0.00642795 0.00313384) 15261
(0.00398889 0.00635165 0.00259744) 13567
(0.00560297 0.00640869 0.00292395) 13511
(0.00582528 0.00643904 0.00293862) 13511
(0.00642481 0.00643892 0.00293097) 13512
(0.00722981 0.00641068 0.00286802) 13514
(0.00498954 0.00432574 0.00157529) 5709
(0.0050378 0.00452943 0.00159596) 14050
(0.00597222 0.00447658 0.00167521) 14051
(0.00676367 0.00445849 0.00172578) 14053
(0.00474725 0.00410715 0.00188115) 14109
(0.00474011 0.00407584 0.00185001) 14109
(0.00386301 0.00421599 0.00174232) 14107
(0.00455982 0.00417214 0.00172376) 5649
(0.00513858 0.00342085 0.00323335) 5410
(0.00729548 0.0037205 0.00349031) 14474
(0.00246179 0.00363927 0.00362495) 14524
(0.00445344 0.00364318 0.00361054) 14528
(0.00503844 0.0036007 0.00359916) 5350
(0.00465364 0.00492883 0.00442711) 14829
(0.00744701 0.00504009 0.0043758) 14834
(0.00658766 0.00528264 0.00437135) 14893
(0.00719573 0.00531668 0.00433931) 14894
(0.007185 0.00629243 0.00338752) 15194
(0.00437089 0.00637219 0.00284974) 13508
(0.00452764 0.00642987 0.00288121) 13509
(0.00491803 0.00647838 0.0030555) 15249
(0.00627475 0.00639602 0.00316257) 15252
(0.00677127 0.00639508 0.00309884) 15253
(0.0182059 0.00299187 0.00219623) 32252
(0.018848 0.00690121 0.00363636) 2017
(0.0202981 0.00696749 0.00353165) 2020
(0.0119205 0.00650436 0.00419615) 6683
(0.0129698 0.00646607 0.00417492) 6685
(0.0138111 0.00644198 0.00416258) 6687
(0.0145062 0.00642873 0.00415432) 6689
(0.0151041 0.00642002 0.00415051) 6690
(0.0156416 0.00641562 0.00414818) 6691
(0.0161597 0.00641523 0.00414362) 6692
(0.022826 0.00639402 0.00208688) 13425
(0.0239844 0.00662531 0.00225918) 6107
(0.0186958 0.00665991 0.0042522) 6637
(0.0214372 0.0066497 0.00414885) 6642
(0.0188547 0.00632449 0.00110068) 12457
(0.0198228 0.00365015 0.00468274) 7179
(0.0211761 0.00370621 0.00476103) 10542
(0.0200147 0.0033168 0.00168658) 460
(0.0188912 0.00612505 0.00480665) 12217
(0.0185188 0.0058619 0.00508972) 12577
(0.0185188 0.0058619 0.00508972) 12577
(0.0185188 0.0058619 0.00508972) 12577
(0.0206124 0.00587891 0.00502494) 12581
(0.0206124 0.00587891 0.00502494) 12581
(0.0206124 0.00587891 0.00502494) 12581
(0.0221119 0.00593582 0.00499994) 12584
(0.0221119 0.00593582 0.00499994) 12584
(0.0221119 0.00593582 0.00499994) 12584
(0.0185084 0.00399472 0.00488504) 10537
(0.0201896 0.00403439 0.00494456) 10840
(0.0180543 0.00376081 0.00136668) 12756
(0.0208361 0.00372676 0.00143716) 9221
(0.01837 0.0041497 0.00122508) 11496
(0.0212063 0.00408639 0.00127044) 11502
(0.0186288 0.00482675 0.000895181) 11617
(0.0205887 0.00474483 0.000938419) 11621
(0.0194737 0.00594371 0.000985535) 12278
(0.0186252 0.00537655 0.000781958) 11857
(0.0208106 0.00529484 0.000813431) 11921
(0.0221037 0.00520916 0.000762341) 11924
(0.0198772 0.00528063 0.00522563) 11439
(0.0212922 0.00533155 0.00522274) 11442
(0.0191182 0.00294038 0.00322118) 32544
(0.0232227 0.00303589 0.00321627) 766
(0.0246783 0.00294752 0.00320354) 34128
(0.0203916 0.00669371 0.00167009) 2500
(0.0203916 0.00669371 0.00167009) 2500
(0.0203916 0.00669371 0.00167009) 2500
(0.0222535 0.00666344 0.00167352) 2504
(0.0231838 0.00662049 0.00157068) 6766
(0.0223615 0.00612532 0.00164621) 6044
(0.00805984 0.00643306 0.00286949) 13516
(0.00805984 0.00643306 0.00286949) 13516
(0.00805984 0.00643306 0.00286949) 13516
(0.00854824 0.00643712 0.00286612) 13517
(0.00899565 0.00643984 0.00286784) 13517
(0.00943033 0.00644198 0.00286899) 13518
(0.00990033 0.00644091 0.00286915) 13519
(0.0104201 0.00643579 0.00287059) 13520
(0.00784543 0.00634771 0.00256821) 13575
(0.00823633 0.00636249 0.00256896) 13576
(0.0196628 0.00620866 0.00235788) 13659
(0.0202073 0.00619449 0.00235352) 13660
(0.0207567 0.00618007 0.00234293) 13661
(0.00787211 0.00584203 0.00188345) 13755
(0.00830797 0.00584214 0.00186673) 13756
(0.00872385 0.0058382 0.00185492) 13757
(0.00919926 0.0058354 0.00185452) 13758
(0.0078515 0.00558869 0.0017182) 13815
(0.00823868 0.00559128 0.00170461) 13816
(0.0086162 0.00559448 0.00169755) 13817
(0.00890304 0.00439019 0.00169158) 14057
(0.00930154 0.00438977 0.00168826) 14058
(0.00972797 0.00439069 0.00168665) 14059
(0.0102124 0.00439265 0.0016906) 14060
(0.00807958 0.00416563 0.00182952) 14116
(0.00807958 0.00416563 0.00182952) 14116
(0.00807958 0.00416563 0.00182952) 14116
(0.00851647 0.00416156 0.00182386) 14117
(0.00892496 0.00416065 0.00182042) 14117
(0.0093329 0.00415973 0.00181813) 14118
(0.00977786 0.00415829 0.00181976) 14119
(0.0102766 0.00416013 0.00182466) 14120
(0.00787419 0.00395711 0.0020494) 14175
(0.0082843 0.00395268 0.00203656) 14176
(0.00865447 0.00395001 0.00202877) 14177
(0.00782494 0.00359738 0.00318044) 14415
(0.00826667 0.00358084 0.00318059) 14416
(0.012874 0.00362947 0.00318995) 14425
(0.0133963 0.00363468 0.0031881) 14426
(0.0079696 0.00365738 0.00346789) 14475
(0.0079696 0.00365738 0.00346789) 14475
(0.0079696 0.00365738 0.00346789) 14475
(0.00851441 0.00363668 0.00346266) 14477
(0.00896903 0.00362309 0.00346287) 14477
(0.00937917 0.00361196 0.00346468) 14478
(0.00987648 0.00361242 0.00346226) 14479
(0.0104253 0.00362084 0.00345938) 14480
(0.00772848 0.00373868 0.00368461) 14535
(0.00772848 0.00373868 0.00368461) 14535
(0.00772848 0.00373868 0.00368461) 14535
(0.00843491 0.00373029 0.00369173) 14536
(0.00896139 0.00372529 0.00369698) 14537
(0.00942042 0.00372078 0.00370286) 14538
(0.00992897 0.00372343 0.00370426) 14539
(0.0104552 0.00372978 0.00370109) 14540
(0.00777581 0.00392836 0.00391643) 14595
(0.00830841 0.00391636 0.00391757) 14596
(0.00875618 0.0039121 0.00392435) 14597
(0.00795268 0.00500563 0.0044262) 14835
(0.00841632 0.00499976 0.00443502) 14836
(0.00884969 0.00499497 0.00443893) 14837
(0.00927005 0.00499538 0.00444292) 14838
(0.0097437 0.00499691 0.00444174) 14839
(0.00784811 0.00528054 0.00439106) 14895
(0.00830774 0.00528348 0.00440011) 14896
(0.00872853 0.00528276 0.00440672) 14897
(0.00914047 0.00528052 0.00441155) 14898
(0.00772054 0.00622869 0.0036641) 15135
(0.00875559 0.00637705 0.00340863) 15197
(0.00904893 0.00643429 0.00312788) 15258
(0.00949779 0.00643414 0.00313095) 15258
(0.00997494 0.00643242 0.00313315) 15259
(0.0104883 0.00642821 0.00313384) 15260
(0.00383267 0.00635921 0.00263095) 13567
(0.00563234 0.00640385 0.00292306) 13511
(0.00580869 0.00643821 0.00293753) 13511
(0.00639958 0.00643897 0.0029314) 13512
(0.0071917 0.00641825 0.00287762) 13514
(0.00498018 0.0043385 0.00158478) 5709
(0.00477188 0.00432103 0.00159061) 5709
(0.00500721 0.00452527 0.00158827) 5710
(0.00592585 0.00447734 0.00167243) 14051
(0.00673226 0.00445851 0.00172336) 14053
(0.00476357 0.00411346 0.00188155) 14109
(0.00474875 0.00407413 0.00185099) 14109
(0.00410299 0.00421131 0.00174523) 14108
(0.00509175 0.00342125 0.00323362) 5410
(0.00359151 0.00367531 0.00363573) 14527
(0.00438184 0.00364589 0.00361137) 14528
(0.00503088 0.00360233 0.00359529) 5350
(0.00455947 0.00492676 0.00443156) 14829
(0.0074269 0.00503987 0.00437334) 14834
(0.00657617 0.00527923 0.00437058) 14893
(0.00717267 0.00531689 0.00434144) 14894
(0.0071587 0.00629892 0.00338138) 15194
(0.00437284 0.00637018 0.00284873) 13508
(0.00451883 0.00642699 0.00287947) 13509
(0.00491461 0.00647788 0.00305427) 15249
(0.00621965 0.00640095 0.00316442) 15252
(0.00674763 0.00639514 0.00309905) 15253
(0.0181597 0.00299246 0.00219236) 32252
(0.0187887 0.00690142 0.00364025) 2017
(0.0202616 0.00696227 0.00353784) 2020
(0.0118842 0.00650574 0.00419689) 6683
(0.0129434 0.00646682 0.00417485) 6685
(0.0137904 0.00644214 0.00416259) 6687
(0.0144891 0.00642871 0.00415417) 6688
(0.0150889 0.00641995 0.00415018) 6690
(0.015627 0.00641539 0.00414795) 6691
(0.0161446 0.00641496 0.00414342) 6692
(0.0227588 0.00638379 0.00207385) 13425
(0.02394 0.00661909 0.00225886) 6107
(0.0185972 0.0066599 0.00426049) 6637
(0.0213494 0.00664809 0.00415121) 6642
(0.0188261 0.00632833 0.00110314) 12457
(0.0197677 0.00364853 0.00468108) 7179
(0.0211577 0.00370055 0.00475374) 10542
(0.0199475 0.00331984 0.00168274) 459
(0.0188307 0.00612238 0.00481087) 12217
(0.0184528 0.0058601 0.00509318) 12576
(0.0184528 0.0058601 0.00509318) 12576
(0.0184528 0.0058601 0.00509318) 12576
(0.0205436 0.00587733 0.00502631) 12581
(0.0205436 0.00587733 0.00502631) 12581
(0.0205436 0.00587733 0.00502631) 12581
(0.0220821 0.00593052 0.0050014) 12584
(0.0220821 0.00593052 0.0050014) 12584
(0.0220821 0.00593052 0.0050014) 12584
(0.018446 0.00399166 0.00488208) 10536
(0.0201349 0.00403293 0.00494118) 10540
(0.0179913 0.00376218 0.00136353) 12755
(0.020734 0.00372928 0.00143641) 9221
(0.0182654 0.00414374 0.00122195) 11496
(0.0211095 0.00409116 0.001271) 11502
(0.0185544 0.00482943 0.000892581) 11617
(0.0205277 0.00474963 0.000938219) 11621
(0.0194214 0.00594409 0.000986344) 12278
(0.0185499 0.00538173 0.000781163) 11857
(0.0207402 0.00529726 0.00081419) 11921
(0.0220945 0.00521586 0.00076741) 11924
(0.0198225 0.00528003 0.00522626) 11079
(0.0212636 0.00532579 0.00522167) 11442
(0.018896 0.00292239 0.0032211) 32400
(0.0230953 0.00303903 0.00321756) 766
(0.0246683 0.00295057 0.00320182) 34128
(0.0203105 0.00669635 0.00166861) 2500
(0.0203105 0.00669635 0.00166861) 2500
(0.0203105 0.00669635 0.00166861) 2500
(0.0222098 0.00666447 0.00167659) 2504
(0.0231949 0.00662716 0.00158203) 2506
(0.022281 0.00611753 0.00163991) 6044
(0.00803553 0.00643316 0.0028696) 13516
(0.00803553 0.00643316 0.0028696) 13516
(0.00803553 0.00643316 0.0028696) 13516
(0.00852479 0.00643719 0.00286609) 13517
(0.0089726 0.00643992 0.00286768) 13517
(0.00940732 0.00644207 0.00286899) 13518
(0.00987589 0.00644112 0.00286917) 13519
(0.0103942 0.00643611 0.0028705) 13520
(0.0078248 0.00634772 0.00256891) 13575
(0.00821475 0.0063625 0.00256916) 13576
(0.0196403 0.0062092 0.00235804) 13659
(0.0201832 0.0061952 0.00235392) 13660
(0.0207334 0.00618069 0.00234359) 13661
(0.00785131 0.00584191 0.00188356) 13755
(0.00828554 0.0058423 0.00186677) 13756
(0.00869974 0.00583838 0.00185478) 13757
(0.00917401 0.00583552 0.00185426) 13758
(0.00783011 0.00558861 0.00171826) 13815
(0.00821562 0.0055912 0.0017044) 13816
(0.00859257 0.0055944 0.00169726) 13817
(0.0088791 0.00439006 0.00169133) 14057
(0.00927872 0.0043897 0.00168815) 14058
(0.00970429 0.00439056 0.00168649) 14059
(0.0101865 0.00439255 0.00169019) 14060
(0.00805734 0.00416573 0.00182954) 14116
(0.00805734 0.00416573 0.00182954) 14116
(0.00805734 0.00416573 0.00182954) 14116
(0.00849299 0.0041613 0.00182375) 14116
(0.00890096 0.00416031 0.0018203) 14117
(0.00930942 0.00415963 0.00181797) 14118
(0.00975354 0.00415822 0.0018195) 14119
(0.0102504 0.00415986 0.00182434) 14120
(0.0078535 0.00395729 0.00204953) 14175
(0.00826149 0.00395257 0.00203653) 14176
(0.00863038 0.00394975 0.00202866) 14177
(0.0078024 0.00359755 0.00318082) 14415
(0.00824545 0.00358103 0.00318095) 14416
(0.0128504 0.00362904 0.00319005) 14425
(0.0133742 0.00363461 0.00318824) 14426
(0.00794352 0.00365843 0.00346846) 14475
(0.00794352 0.00365843 0.00346846) 14475
(0.00794352 0.00365843 0.00346846) 14475
(0.00849071 0.00363726 0.00346288) 14476
(0.00894701 0.00362354 0.00346295) 14477
(0.00935561 0.00361212 0.00346481) 14478
(0.00984975 0.00361209 0.00346251) 14479
(0.0103982 0.00362035 0.00345959) 14480
(0.00769186 0.00373936 0.00368469) 14535
(0.00769186 0.00373936 0.00368469) 14535
(0.00769186 0.00373936 0.00368469) 14535
(0.00840671 0.00373042 0.00369161) 14536
(0.00893704 0.00372542 0.00369689) 14537
(0.00939602 0.00372079 0.00370283) 14538
(0.00990278 0.00372312 0.00370445) 14539
(0.0104292 0.00372943 0.0037014) 14540
(0.00774979 0.00392933 0.00391728) 14595
(0.00828342 0.0039165 0.0039176) 14596
(0.00873297 0.00391206 0.00392415) 14597
(0.0079316 0.00500594 0.00442606) 14835
(0.00839363 0.00499997 0.00443515) 14836
(0.00882673 0.00499503 0.00443911) 14837
(0.00924683 0.00499528 0.00444305) 14838
(0.00971854 0.00499686 0.00444205) 14839
(0.00782621 0.00528059 0.00439099) 14895
(0.00828487 0.00528359 0.00440017) 14896
(0.00870577 0.0052829 0.00440683) 14897
(0.0091173 0.00528076 0.00441166) 14898
(0.00770022 0.0062285 0.00366395) 15135
(0.0087289 0.00637744 0.00340886) 15197
(0.00902532 0.00643448 0.00312783) 15258
(0.00947469 0.00643426 0.0031309) 15258
(0.00995089 0.00643259 0.0031331) 15259
(0.0104633 0.00642846 0.00313385) 15260
(0.00367431 0.00636986 0.00267184) 13567
(0.00581054 0.00643748 0.00293658) 13511
(0.00637452 0.006439 0.0029318) 13512
(0.00717615 0.00642318 0.00288608) 13514
(0.00497315 0.00435419 0.0015955) 5709
(0.00488479 0.00431078 0.00157219) 5709
(0.00496917 0.00451818 0.00158007) 5709
(0.0058794 0.00447875 0.00166993) 14051
(0.00669705 0.00445834 0.00172001) 14053
(0.00478038 0.00412109 0.00188238) 14109
(0.00475579 0.00407561 0.00185176) 14109
(0.0043243 0.00419877 0.00174951) 14108
(0.00545176 0.00428081 0.00174508) 14050
(0.00505407 0.00342628 0.00323459) 5410
(0.00427695 0.00368041 0.00364533) 14528
(0.00429827 0.00364869 0.0036123) 14528
(0.00502674 0.00360293 0.0035938) 5350
(0.00442167 0.00492292 0.00443665) 14828
(0.00656961 0.00527561 0.00436887) 14893
(0.00715108 0.00531671 0.00434394) 14894
(0.00713526 0.0063061 0.00337507) 15194
(0.00437368 0.00636794 0.00284764) 13508
(0.00451151 0.00642464 0.00287794) 13509
(0.00490719 0.00647769 0.00305135) 15249
(0.00619636 0.00640123 0.00316475) 15252
(0.00672401 0.0063952 0.00309928) 15253
(0.0181131 0.00299291 0.00218845) 32252
(0.0187263 0.00690218 0.00364375) 2017
(0.0202241 0.00695722 0.00354391) 2020
(0.0118472 0.00650719 0.00419767) 6683
(0.0129167 0.0064676 0.0041748) 6685
(0.0137694 0.00644232 0.00416261) 6687
(0.0144719 0.00642868 0.00415403) 6688
(0.0150738 0.00641986 0.00414986) 6690
(0.0156124 0.00641516 0.00414773) 6691
(0.0161295 0.0064147 0.00414322) 6692
(0.0226859 0.00637373 0.00206086) 13425
(0.0238959 0.00661244 0.00225785) 6107
(0.0184942 0.0066613 0.00426827) 6636
(0.0212582 0.00664753 0.00415304) 6642
(0.0187972 0.00633212 0.00110552) 12457
(0.0197122 0.0036469 0.00467947) 7179
(0.0211377 0.00369519 0.00474677) 10542
(0.019879 0.00332277 0.00167874) 459
(0.0187676 0.00611981 0.00481531) 12217
(0.018387 0.00585831 0.00509663) 12576
(0.018387 0.00585831 0.00509663) 12576
(0.018387 0.00585831 0.00509663) 12576
(0.0204733 0.00587583 0.00502779) 12580
(0.0204733 0.00587583 0.00502779) 12580
(0.0204733 0.00587583 0.00502779) 12580
(0.0220503 0.00592548 0.00500274) 12584
(0.0220503 0.00592548 0.00500274) 12584
(0.0220503 0.00592548 0.00500274) 12584
(0.0183803 0.00398823 0.00487896) 10536
(0.0200796 0.00403144 0.00493788) 10540
(0.0206301 0.00373178 0.00143543) 9221
(0.018162 0.00413724 0.00121954) 11496
(0.0210117 0.00409594 0.00127139) 11502
(0.0184771 0.00483143 0.000889932) 11616
(0.0204651 0.00475431 0.000937926) 11620
(0.0193691 0.00594451 0.000987099) 12278
(0.0184786 0.0053871 0.000780563) 11856
(0.0206679 0.00529969 0.000814782) 11921
(0.0220824 0.00522222 0.000772325) 11924
(0.0197677 0.00527944 0.00522694) 11079
(0.0212332 0.0053204 0.00522065) 11442
(0.0187571 0.00291364 0.00321872) 32400
(0.0229622 0.00304163 0.00321884) 765
(0.0246568 0.00295365 0.00320028) 34128
(0.0202262 0.00669905 0.00166673) 2500
(0.0202262 0.00669905 0.00166673) 2500
(0.0202262 0.00669905 0.00166673) 2500
(0.0221646 0.0066655 0.0016795) 2504
(0.0232006 0.00663298 0.00159231) 2506
(0.0221894 0.00611011 0.00163372) 6044
(0.0229975 0.00627847 0.00170485) 13485
(0.00801116 0.00643326 0.00286972) 13516
(0.00801116 0.00643326 0.00286972) 13516
(0.00801116 0.00643326 0.00286972) 13516
(0.00850131 0.00643727 0.00286607) 13517
(0.00894951 0.00643999 0.00286751) 13517
(0.00938431 0.00644216 0.00286898) 13518
(0.00985155 0.00644132 0.0028692) 13519
(0.0103683 0.00643642 0.00287041) 13520
(0.0078042 0.00634774 0.00256967) 13575
(0.00819321 0.00636251 0.0025694) 13576
(0.0196179 0.00620973 0.0023582) 13659
(0.0201591 0.00619591 0.00235431) 13660
(0.02071 0.00618132 0.00234425) 13661
(0.00783052 0.00584178 0.00188368) 13755
(0.00826319 0.00584246 0.00186682) 13756
(0.00867573 0.00583857 0.00185465) 13757
(0.00914886 0.00583564 0.00185401) 13758
(0.0078087 0.00558854 0.00171834) 13815
(0.0081926 0.00559113 0.0017042) 13816
(0.00856899 0.00559431 0.00169697) 13817
(0.00885504 0.00438993 0.00169108) 14057
(0.00925585 0.00438963 0.00168804) 14058
(0.00968067 0.00439042 0.00168634) 14059
(0.0101606 0.00439245 0.00168979) 14060
(0.0080351 0.00416584 0.00182956) 14116
(0.0080351 0.00416584 0.00182956) 14116
(0.0080351 0.00416584 0.00182956) 14116
(0.00846953 0.00416105 0.00182364) 14116
(0.00887691 0.00415995 0.00182017) 14117
(0.0092859 0.00415951 0.00181781) 14118
(0.00972927 0.00415816 0.00181924) 14119
(0.0102242 0.0041596 0.00182402) 14120
(0.00783287 0.00395749 0.00204966) 14175
(0.00823878 0.00395249 0.0020365) 14176
(0.00860627 0.00394948 0.00202857) 14177
(0.00777973 0.00359773 0.00318117) 14415
(0.00822422 0.00358123 0.00318129) 14416
(0.0128267 0.0036286 0.00319014) 14425
(0.0133521 0.00363452 0.00318838) 14426
(0.0079173 0.00365952 0.00346906) 14475
(0.0079173 0.00365952 0.00346906) 14475
(0.0079173 0.00365952 0.00346906) 14475
(0.00846696 0.00363787 0.0034631) 14476
(0.00892499 0.00362399 0.00346302) 14477
(0.00933219 0.00361231 0.00346494) 14478
(0.00982307 0.00361178 0.00346275) 14479
(0.010371 0.00361986 0.0034598) 14480
(0.00765468 0.0037401 0.00368484) 14535
(0.00765468 0.0037401 0.00368484) 14535
(0.00765468 0.0037401 0.00368484) 14535
(0.00837827 0.00373055 0.00369149) 14536
(0.00891263 0.00372556 0.0036968) 14537
(0.0093717 0.00372082 0.00370279) 14538
(0.00987659 0.00372281 0.00370463) 14539
(0.0104032 0.00372907 0.00370172) 14540
(0.00772376 0.00393036 0.00391821) 14595
(0.0082584 0.00391666 0.00391765) 14596
(0.00870974 0.00391202 0.00392396) 14597
(0.00791058 0.00500625 0.0044259) 14835
(0.00837099 0.00500018 0.00443527) 14836
(0.00880374 0.00499511 0.0044393) 14837
(0.00922359 0.00499517 0.00444319) 14838
(0.0096934 0.00499681 0.00444235) 14839
(0.00780435 0.00528065 0.0043909) 14895
(0.00826203 0.00528369 0.00440022) 14896
(0.00868295 0.00528303 0.00440695) 14897
(0.0090941 0.00528103 0.00441178) 14898
(0.00767998 0.00622831 0.00366378) 15135
(0.008702 0.00637784 0.00340911) 15197
(0.00900163 0.00643468 0.00312778) 15258
(0.00945159 0.00643438 0.00313085) 15258
(0.00992691 0.00643275 0.00313305) 15259
(0.0104382 0.00642872 0.00313386) 15260
(0.00341882 0.00638771 0.0027318) 13566
(0.00579489 0.00643645 0.00293532) 13511
(0.00634963 0.00643901 0.00293216) 13512
(0.00715149 0.00642556 0.00289184) 13514
(0.00497282 0.00437407 0.00160776) 5709
(0.00494814 0.00430465 0.00155899) 5709
(0.00492663 0.00450709 0.00157161) 5709
(0.00583468 0.00448039 0.00166751) 14051
(0.00666098 0.00445815 0.00171655) 14053
(0.0048046 0.00413148 0.00188311) 14109
(0.00476205 0.00407772 0.0018525) 14109
(0.00447262 0.00417895 0.0017578) 14108
(0.00538941 0.00428019 0.00173091) 14050
(0.00502968 0.00343106 0.00323534) 5410
(0.00454525 0.00368289 0.00363891) 14529
(0.00424234 0.00365036 0.00361271) 14528
(0.00502175 0.00360319 0.00359287) 5350
(0.00425126 0.00492019 0.00444078) 14828
(0.00656151 0.00527266 0.00436698) 14893
(0.00713011 0.00531588 0.0043468) 14894
(0.00711842 0.00631326 0.00336947) 15194
(0.00436964 0.00636457 0.00284633) 13508
(0.00450575 0.00642242 0.00287685) 13509
(0.00489647 0.00647768 0.00304716) 15249
(0.00617314 0.00640154 0.00316501) 15252
(0.00670042 0.00639524 0.00309954) 15253
(0.0201858 0.00695233 0.00354988) 2020
(0.0118096 0.0065087 0.00419848) 6683
(0.0128898 0.0064684 0.00417475) 6685
(0.0137481 0.00644252 0.00416264) 6687
(0.0144546 0.00642865 0.00415391) 6688
(0.0150586 0.00641978 0.00414955) 6690
(0.0155978 0.00641493 0.0041475) 6691
(0.0161145 0.00641444 0.00414301) 6692
(0.0226069 0.00636397 0.00204834) 13485
(0.0238524 0.00660539 0.00225617) 6107
(0.0183882 0.0066642 0.00427548) 6636
(0.0211641 0.00664732 0.00415481) 6642
(0.018768 0.00633587 0.0011078) 12457
(0.0196566 0.00364525 0.00467789) 7179
(0.021116 0.00369012 0.00474011) 10542
(0.0198093 0.0033256 0.00167459) 459
(0.0187013 0.00611742 0.00481997) 12217
(0.0183213 0.00585651 0.00510001) 12576
(0.0183213 0.00585651 0.00510001) 12576
(0.0183213 0.00585651 0.00510001) 12576
(0.0204018 0.00587441 0.00502937) 12580
(0.0204018 0.00587441 0.00502937) 12580
(0.0204018 0.00587441 0.00502937) 12580
(0.0220163 0.0059207 0.00500397) 12584
(0.0220163 0.0059207 0.00500397) 12584
(0.0220163 0.0059207 0.00500397) 12584
(0.0183116 0.00398434 0.00487564) 10536
(0.0200241 0.00402991 0.00493464) 10540
(0.0205241 0.00373426 0.00143419) 9221
(0.0209132 0.00410071 0.00127158) 11501
(0.0183973 0.00483274 0.000887251) 11616
(0.0204012 0.00475885 0.00093753) 11620
(0.0218621 0.00463736 0.000931358) 11563
(0.0193169 0.00594496 0.000987804) 12278
(0.0184145 0.00539276 0.000780318) 11856
(0.0205937 0.00530211 0.000815192) 11921
(0.0220674 0.00522826 0.000777071) 11924
(0.0197128 0.00527884 0.00522767) 11079
(0.0212011 0.00531536 0.00521967) 11442
(0.0186508 0.00290912 0.00321493) 32400
(0.0228242 0.00304363 0.00322005) 765
(0.0246434 0.00295676 0.00319893) 34128
(0.0201374 0.0067018 0.00166432) 2500
(0.0201374 0.0067018 0.00166432) 2500
(0.0201374 0.0067018 0.00166432) 2500
(0.0221179 0.00666655 0.00168227) 2504
(0.0232003 0.00663801 0.00160147) 2506
(0.0220852 0.00610341 0.00162789) 6044
(0.0229926 0.00627351 0.00170602) 13485
(0.00798675 0.00643336 0.00286985) 13515
(0.00798675 0.00643336 0.00286985) 13515
(0.00798675 0.00643336 0.00286985) 13515
(0.0084778 0.00643735 0.00286606) 13516
(0.0089264 0.00644007 0.00286733) 13517
(0.0093613 0.00644224 0.00286896) 13518
(0.00982731 0.00644152 0.00286924) 13519
(0.0103424 0.00643674 0.00287033) 13520
(0.00778361 0.00634777 0.00257048) 13575
(0.00817171 0.00636254 0.00256968) 13576
(0.0195956 0.00621024 0.00235835) 13659
(0.020135 0.00619662 0.00235468) 13660
(0.0206866 0.00618196 0.00234489) 13661
(0.00780973 0.00584164 0.00188379) 13755
(0.00824091 0.0058426 0.00186687) 13756
(0.00865183 0.00583876 0.00185454) 13757
(0.00912379 0.00583575 0.00185377) 13758
(0.00778728 0.00558848 0.00171843) 13815
(0.00816963 0.00559106 0.00170401) 13816
(0.00854543 0.0055942 0.00169669) 13817
(0.00883086 0.00438979 0.00169083) 14057
(0.00923292 0.00438957 0.00168791) 14058
(0.00965712 0.00439027 0.00168619) 14059
(0.0101347 0.00439237 0.0016894) 14060
(0.00801285 0.00416598 0.00182958) 14116
(0.00801285 0.00416598 0.00182958) 14116
(0.00801285 0.00416598 0.00182958) 14116
(0.0084461 0.00416082 0.00182354) 14116
(0.0088528 0.00415959 0.00182004) 14117
(0.00926233 0.00415938 0.00181765) 14118
(0.00970504 0.00415811 0.00181899) 14119
(0.0101981 0.00415935 0.00182371) 14120
(0.00781226 0.00395772 0.00204978) 14175
(0.00821618 0.00395241 0.00203649) 14176
(0.00858217 0.00394921 0.00202847) 14177
(0.00775691 0.0035979 0.00318151) 14415
(0.008203 0.00358145 0.00318162) 14416
(0.012803 0.00362814 0.00319023) 14425
(0.0133299 0.00363441 0.00318851) 14426
(0.00789091 0.00366064 0.00346966) 14475
(0.00789091 0.00366064 0.00346966) 14475
(0.00789091 0.00366064 0.00346966) 14475
(0.00844315 0.00363849 0.00346334) 14476
(0.00890296 0.00362444 0.0034631) 14477
(0.00930893 0.00361252 0.00346507) 14478
(0.00979645 0.00361148 0.003463) 14479
(0.0103437 0.00361937 0.00346001) 14480
(0.00761692 0.00374092 0.00368505) 14535
(0.00761692 0.00374092 0.00368505) 14535
(0.00761692 0.00374092 0.00368505) 14535
(0.00834959 0.0037307 0.00369137) 14536
(0.00888814 0.00372569 0.00369672) 14537
(0.00934745 0.00372085 0.00370273) 14538
(0.00985041 0.00372251 0.0037048) 14539
(0.0103771 0.00372871 0.00370203) 14540
(0.00769775 0.00393146 0.00391922) 14595
(0.00823336 0.00391684 0.00391771) 14596
(0.00868649 0.00391199 0.00392378) 14597
(0.00788962 0.00500657 0.00442573) 14835
(0.00834839 0.00500039 0.00443538) 14836
(0.00878071 0.00499522 0.0044395) 14837
(0.00920034 0.00499507 0.00444332) 14838
(0.00966829 0.00499675 0.00444265) 14839
(0.00778254 0.00528072 0.00439081) 14895
(0.00823921 0.0052838 0.00440026) 14896
(0.00866006 0.00528317 0.00440708) 14897
(0.00907092 0.00528127 0.00441189) 14898
(0.00765978 0.00622811 0.00366359) 15135
(0.00867492 0.00637825 0.00340937) 15197
(0.00897785 0.00643489 0.00312773) 15257
(0.00942848 0.0064345 0.00313081) 15258
(0.009903 0.00643292 0.00313298) 15259
(0.0104132 0.00642897 0.00313387) 15260
(0.00301535 0.00642402 0.00279244) 13506
(0.00577958 0.00643536 0.00293401) 13511
(0.00632491 0.00643898 0.00293249) 13512
(0.00714455 0.00642651 0.00289522) 13514
(0.00498243 0.00439517 0.00162079) 5709
(0.00497759 0.00430266 0.00155214) 5709
(0.00489215 0.00449221 0.00156323) 5709
(0.00579148 0.00448224 0.00166515) 14051
(0.00662935 0.0044586 0.00171396) 14053
(0.00483148 0.00414452 0.00188409) 14109
(0.00476881 0.00407992 0.00185298) 14109
(0.00457009 0.00415238 0.00177121) 5649
(0.00533325 0.00427631 0.00171666) 14050
(0.00500128 0.0034378 0.00323652) 5410
(0.00465869 0.00368677 0.00363953) 14529
(0.00417312 0.0036522 0.00361336) 14528
(0.00501525 0.00360358 0.00359246) 5350
(0.00516078 0.00385689 0.00367107) 14530
(0.00405649 0.00492088 0.00444331) 14828
(0.00655306 0.0052703 0.00436494) 14893
(0.00711005 0.005314 0.00434998) 14894
(0.0071057 0.00631958 0.00336499) 15194
(0.00435771 0.00635981 0.00284489) 13508
(0.00450103 0.00642053 0.00287564) 13509
(0.004884 0.00647775 0.00304199) 15249
(0.00614775 0.00640214 0.00316537) 15252
(0.00667686 0.00639528 0.00309982) 15253
(0.0201467 0.00694762 0.00355575) 2020
(0.0117712 0.00651028 0.00419936) 6683
(0.0128625 0.00646923 0.00417472) 6685
(0.0137267 0.00644274 0.00416267) 6687
(0.0144372 0.00642861 0.0041538) 6688
(0.0150435 0.0064197 0.00414924) 6690
(0.0155832 0.00641471 0.00414727) 6691
(0.0160995 0.00641418 0.0041428) 6692
(0.0225221 0.00635454 0.002035) 13485
(0.023809 0.00659793 0.00225372) 6107
(0.0182831 0.00666841 0.0042821) 6636
(0.0210671 0.0066475 0.00415657) 6642
(0.0229665 0.00676307 0.00406955) 1965
(0.0187385 0.00633956 0.00110998) 12457
(0.0196009 0.00364357 0.00467632) 7179
(0.0210928 0.00368531 0.00473374) 10542
(0.0197384 0.00332832 0.0016703) 399
(0.0186309 0.00611532 0.00482487) 12217
(0.0203292 0.00587306 0.00503107) 12580
(0.0203292 0.00587306 0.00503107) 12580
(0.0203292 0.00587306 0.00503107) 12580
(0.0219806 0.00591614 0.00500509) 12583
(0.0219806 0.00591614 0.00500509) 12583
(0.0219806 0.00591614 0.00500509) 12583
(0.0182402 0.00397992 0.00487206) 10536
(0.0199684 0.0040283 0.00493144) 10539
(0.0204162 0.00373669 0.0014327) 9220
(0.0208139 0.00410549 0.00127153) 11501
(0.0183164 0.00483342 0.000884596) 11616
(0.0203362 0.00476324 0.000937039) 11620
(0.0218351 0.00464425 0.000932318) 11563
(0.0192645 0.00594544 0.000988441) 12278
(0.0205175 0.00530457 0.00081544) 11921
(0.0220494 0.00523393 0.00078164) 11924
(0.0196576 0.00527823 0.00522845) 11079
(0.021168 0.0053106 0.00521875) 11442
(0.0185471 0.00290468 0.00321081) 32400
(0.0226829 0.00304504 0.00322113) 765
(0.0246282 0.0029599 0.00319779) 34128
(0.0200436 0.00670461 0.00166133) 2500
(0.0200436 0.00670461 0.00166133) 2500
(0.0200436 0.00670461 0.00166133) 2500
(0.0220693 0.0066676 0.00168483) 2504
(0.0231937 0.00664232 0.0016095) 2506
(0.0219669 0.00609812 0.00162298) 6043
(0.0229865 0.00626851 0.00170696) 13485
(0.00796228 0.00643347 0.00286999) 13515
(0.00796228 0.00643347 0.00286999) 13515
(0.00796228 0.00643347 0.00286999) 13515
(0.00845426 0.00643743 0.00286607) 13516
(0.00890326 0.00644014 0.00286716) 13517
(0.00933828 0.00644232 0.00286893) 13518
(0.00980315 0.0064417 0.00286929) 13519
(0.0103165 0.00643705 0.00287024) 13520
(0.00776301 0.00634781 0.00257133) 13575
(0.00815025 0.00636258 0.00257) 13576
(0.0195734 0.00621074 0.00235848) 13659
(0.0201109 0.00619733 0.00235504) 13660
(0.0206631 0.00618261 0.00234553) 13661
(0.00778893 0.0058415 0.00188391) 13755
(0.00821868 0.00584271 0.0018669) 13756
(0.00862807 0.005839 0.00185446) 13757
(0.00909881 0.00583587 0.00185354) 13758
(0.00776582 0.00558843 0.00171853) 13815
(0.0081467 0.00559102 0.00170384) 13816
(0.0085219 0.00559405 0.00169638) 13817
(0.00880656 0.00438964 0.00169057) 14057
(0.00920994 0.00438951 0.00168778) 14058
(0.00963361 0.00439012 0.00168605) 14059
(0.010109 0.00439228 0.00168901) 14060
(0.00799059 0.00416615 0.0018296) 14115
(0.00799059 0.00416615 0.0018296) 14115
(0.00799059 0.00416615 0.0018296) 14115
(0.00842269 0.0041606 0.00182344) 14116
(0.00882864 0.00415923 0.00181991) 14117
(0.00923872 0.00415923 0.0018175) 14118
(0.00968085 0.00415806 0.00181873) 14119
(0.0101721 0.00415909 0.0018234) 14120
(0.00779169 0.00395797 0.00204989) 14175
(0.00819367 0.00395235 0.00203648) 14176
(0.00855806 0.00394893 0.00202839) 14177
(0.00773393 0.00359808 0.00318182) 14415
(0.00818178 0.00358167 0.00318195) 14416
(0.0127792 0.00362766 0.00319031) 14425
(0.0133077 0.00363429 0.00318865) 14426
(0.00786436 0.00366179 0.00347029) 14475
(0.00786436 0.00366179 0.00347029) 14475
(0.00786436 0.00366179 0.00347029) 14475
(0.00841928 0.00363913 0.00346359) 14476
(0.00888092 0.0036249 0.00346317) 14477
(0.00928582 0.00361275 0.00346519) 14478
(0.00976991 0.0036112 0.00346324) 14479
(0.0103164 0.00361887 0.00346023) 14480
(0.00757854 0.0037418 0.00368534) 14535
(0.00757854 0.0037418 0.00368534) 14535
(0.00757854 0.0037418 0.00368534) 14535
(0.00832065 0.00373087 0.00369124) 14536
(0.00886356 0.00372583 0.00369664) 14537
(0.00932327 0.00372088 0.00370267) 14538
(0.00982425 0.00372222 0.00370497) 14539
(0.0103509 0.00372834 0.00370235) 14540
(0.00767175 0.00393263 0.00392031) 14595
(0.00820828 0.00391704 0.00391778) 14596
(0.0086632 0.00391197 0.0039236) 14597
(0.0078687 0.00500689 0.00442555) 14835
(0.00832584 0.00500059 0.00443548) 14836
(0.00875764 0.00499534 0.0044397) 14837
(0.00917707 0.00499499 0.00444346) 14838
(0.00964321 0.00499664 0.00444295) 14839
(0.00776079 0.00528081 0.00439071) 14895
(0.00821642 0.0052839 0.00440029) 14896
(0.0086371 0.0052833 0.00440721) 14897
(0.00904776 0.00528146 0.00441202) 14898
(0.0076396 0.00622792 0.00366338) 15135
(0.00864766 0.00637866 0.00340963) 15197
(0.00895397 0.0064351 0.00312768) 15257
(0.00940535 0.00643463 0.00313077) 15258
(0.00987915 0.00643308 0.0031329) 15259
(0.0103882 0.00642922 0.00313389) 15260
(0.00272079 0.00644374 0.002813) 13505
(0.00578127 0.0064345 0.00293288) 13511
(0.00630033 0.00643893 0.00293279) 13512
(0.00712151 0.00642695 0.00289745) 13514
(0.00499529 0.00441233 0.00163206) 5709
(0.00498874 0.00430327 0.00154988) 5709
(0.00486901 0.00447173 0.00155447) 5709
(0.00575086 0.00448428 0.00166291) 14051
(0.00660179 0.00445973 0.00171216) 14053
(0.00485662 0.00415787 0.00188544) 14109
(0.00477487 0.00408205 0.0018535) 14109
(0.00461362 0.00413195 0.00178252) 5649
(0.00526742 0.0042654 0.00169848) 14050
(0.00496875 0.00344746 0.00324046) 5409
(0.00474357 0.00369382 0.00364457) 14529
(0.00408781 0.00365403 0.00361383) 14528
(0.00500743 0.0036043 0.00359234) 5350
(0.00512683 0.0038352 0.00366458) 14530
(0.00378441 0.00492855 0.00444505) 14827
(0.00654367 0.00526838 0.00436274) 14893
(0.00709105 0.00531081 0.00435325) 14894
(0.00709178 0.00632475 0.00336155) 15194
(0.00433993 0.0063548 0.0028438) 13508
(0.00449583 0.00641845 0.00287458) 13508
(0.00487236 0.00647768 0.00303694) 15249
(0.00551098 0.00645186 0.00315492) 15251
(0.00665328 0.00639532 0.00310014) 15253
(0.0201067 0.00694312 0.00356148) 2020
(0.0117323 0.0065119 0.00420031) 6683
(0.012835 0.00647006 0.00417472) 6685
(0.0137051 0.00644299 0.0041627) 6687
(0.0144196 0.00642859 0.00415371) 6688
(0.0150282 0.00641961 0.00414895) 6690
(0.0155686 0.00641449 0.00414702) 6691
(0.0160846 0.00641393 0.00414257) 6692
(0.0224292 0.00634611 0.00202282) 13484
(0.0237658 0.00659009 0.00225055) 6107
(0.0247141 0.00669225 0.00220995) 13429
(0.0209668 0.00664808 0.00415834) 6641
(0.0229267 0.00675722 0.00407312) 1965
(0.0187089 0.00634318 0.00111206) 12457
(0.019545 0.00364188 0.00467476) 7179
(0.0210683 0.00368075 0.00472763) 10542
(0.0196667 0.00333095 0.00166587) 399
(0.0185565 0.00611346 0.00482986) 12217
(0.0204336 0.00616486 0.00475168) 12220
(0.0202557 0.00587176 0.00503287) 12580
(0.0202557 0.00587176 0.00503287) 12580
(0.0202557 0.00587176 0.00503287) 12580
(0.0219455 0.00591162 0.00500618) 12583
(0.0219455 0.00591162 0.00500618) 12583
(0.0219455 0.00591162 0.00500618) 12583
(0.0199127 0.0040266 0.00492828) 10539
(0.0203071 0.00373911 0.00143089) 9220
(0.0207137 0.00411022 0.00127123) 11501
(0.0202699 0.00476742 0.000936458) 11620
(0.0218064 0.00465107 0.000933287) 11563
(0.019212 0.00594594 0.00098901) 12278
(0.0204397 0.00530715 0.000815554) 11920
(0.0220286 0.00523929 0.000786055) 11924
(0.0196021 0.00527759 0.00522929) 11079
(0.0211339 0.00530611 0.00521789) 11442
(0.0184457 0.0029005 0.00320655) 32256
(0.0225383 0.00304581 0.00322204) 765
(0.0246111 0.00296307 0.00319685) 34128
(0.0199428 0.00670766 0.00165774) 2499
(0.0199428 0.00670766 0.00165774) 2499
(0.0199428 0.00670766 0.00165774) 2499
(0.022019 0.00666857 0.00168707) 2504
(0.0231797 0.00664598 0.00161625) 2506
(0.0218329 0.00609475 0.00161919) 6043
(0.0229803 0.00626343 0.00170764) 13485
(0.00793775 0.00643358 0.00287014) 13515
(0.00793775 0.00643358 0.00287014) 13515
(0.00793775 0.00643358 0.00287014) 13515
(0.00843069 0.00643751 0.00286609) 13516
(0.00888008 0.00644022 0.00286698) 13517
(0.00931524 0.00644241 0.00286888) 13518
(0.00977908 0.00644188 0.00286935) 13519
(0.0102907 0.00643736 0.00287016) 13520
(0.00774238 0.00634786 0.00257222) 13575
(0.00812879 0.00636262 0.00257035) 13576
(0.0195513 0.00621123 0.00235861) 13659
(0.0200868 0.00619804 0.00235539) 13660
(0.0206395 0.00618327 0.00234617) 13661
(0.00776812 0.00584134 0.00188403) 13755
(0.00819653 0.00584281 0.00186694) 13756
(0.00860441 0.00583923 0.0018544) 13757
(0.00907393 0.00583598 0.00185331) 13758
(0.00774434 0.00558839 0.00171864) 13815
(0.00812382 0.00559097 0.00170368) 13816
(0.00849842 0.00559391 0.00169609) 13816
(0.00878215 0.00438948 0.00169031) 14057
(0.00918689 0.00438946 0.00168764) 14058
(0.00961015 0.00438998 0.00168592) 14059
(0.0100833 0.00439219 0.00168863) 14060
(0.00796832 0.00416633 0.00182962) 14115
(0.00796832 0.00416633 0.00182962) 14115
(0.00796832 0.00416633 0.00182962) 14115
(0.00839931 0.0041604 0.00182334) 14116
(0.00880442 0.00415886 0.00181977) 14117
(0.00921505 0.00415906 0.00181735) 14118
(0.00965671 0.00415802 0.00181847) 14119
(0.0101461 0.00415885 0.00182308) 14120
(0.00777113 0.00395824 0.00205) 14175
(0.00817127 0.0039523 0.00203649) 14176
(0.00853396 0.00394865 0.00202831) 14177
(0.00771081 0.00359825 0.0031821) 14415
(0.00816055 0.0035819 0.00318227) 14416
(0.0127552 0.00362717 0.00319039) 14425
(0.0132853 0.00363415 0.00318879) 14426
(0.00783762 0.00366299 0.00347096) 14475
(0.00783762 0.00366299 0.00347096) 14475
(0.00783762 0.00366299 0.00347096) 14475
(0.00839533 0.00363979 0.00346384) 14476
(0.00885886 0.00362537 0.00346324) 14477
(0.00926285 0.003613 0.0034653) 14478
(0.0097435 0.00361095 0.00346349) 14479
(0.0102889 0.00361836 0.00346046) 14480
(0.00753957 0.00374276 0.0036857) 14535
(0.00753957 0.00374276 0.0036857) 14535
(0.00753957 0.00374276 0.0036857) 14535
(0.00829143 0.00373104 0.00369111) 14536
(0.00883889 0.00372597 0.00369656) 14537
(0.00929916 0.00372093 0.00370259) 14538
(0.0097981 0.00372194 0.00370512) 14539
(0.0103247 0.00372797 0.00370266) 14540
(0.00764578 0.00393387 0.00392147) 14595
(0.00818317 0.00391726 0.00391787) 14596
(0.00863989 0.00391196 0.00392344) 14597
(0.00784782 0.00500721 0.00442536) 14835
(0.00830334 0.0050008 0.00443557) 14836
(0.00873455 0.00499548 0.00443991) 14837
(0.00915378 0.00499491 0.00444361) 14838
(0.00961819 0.00499655 0.00444324) 14839
(0.00773909 0.0052809 0.0043906) 14895
(0.00819365 0.00528399 0.00440031) 14896
(0.00861407 0.00528343 0.00440735) 14897
(0.00902457 0.00528167 0.00441214) 14898
(0.00761945 0.00622773 0.00366314) 15135
(0.00862022 0.00637908 0.0034099) 15197
(0.00893001 0.00643531 0.00312763) 15257
(0.00938218 0.00643476 0.00313073) 15258
(0.00985536 0.00643324 0.00313282) 15259
(0.0103632 0.00642946 0.0031339) 15260
(0.00245619 0.00645484 0.00282317) 13504
(0.0057663 0.00643332 0.00293135) 13511
(0.00627602 0.00643886 0.00293305) 13512
(0.00709774 0.00642718 0.002899) 13514
(0.00500864 0.0044276 0.00164375) 14050
(0.00499247 0.00430497 0.00154979) 5709
(0.00485957 0.00444735 0.00154613) 5709
(0.00571174 0.00448643 0.0016606) 14051
(0.00657272 0.00446065 0.00171007) 14053
(0.00487753 0.00417027 0.00188707) 14109
(0.00478 0.00408537 0.00185441) 14109
(0.00464018 0.00411623 0.00179203) 5649
(0.00521132 0.0042471 0.00168267) 5710
(0.00494016 0.00345671 0.00324357) 5409
(0.00544313 0.00370668 0.00336607) 14470
(0.00480881 0.00370976 0.00364586) 14529
(0.00393135 0.00365593 0.00361283) 14527
(0.00500431 0.00360402 0.0035927) 5350
(0.00510099 0.0038167 0.00365697) 14530
(0.00351844 0.00493925 0.00444632) 14827
(0.00653653 0.00526622 0.00435967) 14893
(0.00707504 0.0053058 0.00435607) 14894
(0.00707669 0.00632883 0.00335899) 15194
(0.00429308 0.00634966 0.00284468) 13508
(0.00448912 0.00641617 0.00287346) 13508
(0.00487 0.00647706 0.00303591) 15249
(0.00552626 0.00644903 0.003158) 15251
(0.00662986 0.00639531 0.00310048) 15253
(0.00732418 0.00636308 0.00309579) 15254
(0.0200656 0.00693882 0.00356712) 2020
(0.0116928 0.00651356 0.00420131) 6683
(0.0128071 0.00647092 0.00417475) 6685
(0.0136831 0.00644326 0.00416274) 6687
(0.0144019 0.00642855 0.00415365) 6688
(0.0150129 0.00641952 0.00414867) 6690
(0.0155542 0.00641428 0.00414675) 6691
(0.0160697 0.00641368 0.00414232) 6692
(0.0223285 0.00633858 0.0020098) 13484
(0.0237232 0.00658186 0.00224669) 6107
(0.0246982 0.00669026 0.00221436) 13429
(0.0208633 0.00664908 0.00416016) 6641
(0.0228845 0.0067515 0.00407665) 1965
(0.0186789 0.00634678 0.00111405) 12457
(0.0194893 0.00364018 0.00467319) 7178
(0.0210422 0.00367644 0.00472179) 10542
(0.0195941 0.00333348 0.00166131) 399
(0.0214526 0.00327251 0.00173292) 462
(0.0184781 0.00611198 0.00483494) 12216
(0.0203764 0.00616121 0.0047536) 12220
(0.0201816 0.00587052 0.00503478) 12580
(0.0201816 0.00587052 0.00503478) 12580
(0.0201816 0.00587052 0.00503478) 12580
(0.0219096 0.00590726 0.00500724) 12583
(0.0219096 0.00590726 0.00500724) 12583
(0.0219096 0.00590726 0.00500724) 12583
(0.0198573 0.0040248 0.00492512) 10539
(0.0201969 0.00374153 0.00142877) 9220
(0.0206126 0.00411486 0.00127068) 11501
(0.0202025 0.00477148 0.000935788) 11620
(0.0217764 0.00465783 0.000934245) 11563
(0.0191594 0.00594645 0.00098953) 12278
(0.0203606 0.00530981 0.000815523) 11920
(0.0220049 0.00524433 0.000790286) 11924
(0.0195465 0.00527691 0.0052302) 11079
(0.0210987 0.00530189 0.00521709) 11442
(0.0183466 0.00289664 0.00320229) 32256
(0.0223936 0.00304606 0.00322271) 764
(0.0245918 0.00296626 0.0031961) 34128
(0.0198341 0.00671109 0.00165351) 2499
(0.0198341 0.00671109 0.00165351) 2499
(0.0198341 0.00671109 0.00165351) 2499
(0.0219669 0.00666942 0.00168896) 2503
(0.0231563 0.00664899 0.00162138) 2506
(0.021683 0.00609383 0.00161688) 6043
(0.0229721 0.00625832 0.00170803) 13485
(0.00791314 0.00643369 0.0028703) 13515
(0.00791314 0.00643369 0.0028703) 13515
(0.00791314 0.00643369 0.0028703) 13515
(0.00840708 0.00643759 0.00286612) 13516
(0.00885688 0.0064403 0.00286681) 13517
(0.00929218 0.00644249 0.00286883) 13518
(0.00975509 0.00644205 0.00286941) 13519
(0.010265 0.00643766 0.00287008) 13520
(0.00772173 0.00634793 0.00257316) 13575
(0.00810734 0.00636267 0.00257072) 13576
(0.0195293 0.0062117 0.00235874) 13659
(0.0200628 0.00619874 0.00235572) 13660
(0.0206159 0.00618394 0.00234679) 13661
(0.0077473 0.00584118 0.00188414) 13755
(0.00817445 0.0058429 0.00186699) 13756
(0.00858085 0.00583947 0.00185434) 13757
(0.00904914 0.00583609 0.00185309) 13758
(0.00772283 0.00558835 0.00171877) 13815
(0.00810097 0.00559092 0.00170353) 13816
(0.00847498 0.00559377 0.0016958) 13816
(0.00875764 0.0043893 0.00169005) 14057
(0.00916377 0.00438944 0.00168747) 14058
(0.00958674 0.00438983 0.0016858) 14059
(0.0100578 0.00439209 0.00168826) 14060
(0.00794604 0.00416653 0.00182964) 14115
(0.00794604 0.00416653 0.00182964) 14115
(0.00794604 0.00416653 0.00182964) 14115
(0.00837596 0.00416021 0.00182324) 14116
(0.00878014 0.00415851 0.00181962) 14117
(0.00919133 0.00415885 0.00181721) 14118
(0.0096326 0.00415799 0.00181821) 14119
(0.0101201 0.00415861 0.00182277) 14120
(0.00775059 0.00395853 0.00205009) 14175
(0.00814896 0.00395227 0.00203651) 14176
(0.00850987 0.00394836 0.00202824) 14177
(0.00768754 0.00359843 0.00318237) 14415
(0.00813931 0.00358214 0.00318259) 14416
(0.0127312 0.00362667 0.00319046) 14425
(0.013263 0.003634 0.00318893) 14426
(0.0078107 0.00366421 0.00347165) 14475
(0.0078107 0.00366421 0.00347165) 14475
(0.0078107 0.00366421 0.00347165) 14475
(0.0083713 0.00364047 0.00346411) 14476
(0.00883678 0.00362585 0.00346331) 14477
(0.00924003 0.00361326 0.00346541) 14478
(0.00971719 0.00361071 0.00346373) 14479
(0.0102614 0.00361786 0.00346069) 14480
(0.00750004 0.00374381 0.00368615) 14535
(0.00750004 0.00374381 0.00368615) 14535
(0.00750004 0.00374381 0.00368615) 14535
(0.00826194 0.00373123 0.00369098) 14536
(0.00881413 0.00372611 0.00369648) 14537
(0.0092751 0.00372098 0.00370251) 14538
(0.00977198 0.00372167 0.00370527) 14539
(0.0102984 0.00372759 0.00370297) 14540
(0.00761986 0.00393517 0.00392272) 14595
(0.00815803 0.00391751 0.00391797) 14596
(0.00861655 0.00391196 0.00392328) 14597
(0.00782697 0.00500753 0.00442516) 14835
(0.00828089 0.00500102 0.00443564) 14836
(0.00871143 0.00499565 0.00444012) 14837
(0.00913044 0.00499481 0.00444377) 14838
(0.00959321 0.00499645 0.00444353) 14839
(0.00771745 0.00528099 0.00439048) 14895
(0.00817091 0.00528409 0.00440032) 14896
(0.008591 0.00528353 0.0044075) 14897
(0.00900133 0.00528193 0.00441226) 14898
(0.0075993 0.00622755 0.00366288) 15135
(0.00859262 0.0063795 0.00341018) 15197
(0.00890594 0.00643553 0.00312759) 15257
(0.00935897 0.0064349 0.0031307) 15258
(0.00983163 0.00643339 0.00313274) 15259
(0.0103382 0.0064297 0.00313391) 15260
(0.00210457 0.00646114 0.00282916) 13504
(0.00575188 0.00643202 0.00292989) 13511
(0.00625196 0.00643877 0.00293328) 13512
(0.00707347 0.00642728 0.00290019) 13514
(0.00502185 0.00444008 0.00165587) 14050
(0.00499232 0.00430752 0.00155118) 5709
(0.00486444 0.00442184 0.00153894) 5709
(0.00567348 0.00448873 0.00165822) 14051
(0.00654251 0.00446135 0.00170774) 14053
(0.00489083 0.00418073 0.00188997) 14109
(0.00480532 0.00409227 0.0018532) 14109
(0.00466508 0.00409723 0.0018036) 5649
(0.00516322 0.0042222 0.00167093) 5650
(0.00491869 0.00346448 0.00324663) 5409
(0.00533773 0.0036506 0.00332167) 14410
(0.0048221 0.00371886 0.00364464) 14529
(0.00499194 0.00360548 0.00359314) 5349
(0.00508407 0.00379811 0.00365112) 14530
(0.00324872 0.00494932 0.00444913) 14826
(0.00652998 0.00526432 0.00435598) 14893
(0.00706217 0.00529965 0.00435842) 14894
(0.00706062 0.00633192 0.00335714) 15194
(0.00419976 0.00634865 0.00285168) 13508
(0.00448932 0.00641486 0.0028729) 13508
(0.00485902 0.00647689 0.00303085) 15249
(0.00554608 0.00644635 0.00316049) 15251
(0.0066065 0.00639528 0.00310083) 15253
(0.0072989 0.0063634 0.00309598) 15254
(0.0200236 0.00693468 0.00357268) 2020
(0.0116528 0.00651527 0.00420234) 6683
(0.0127789 0.00647179 0.00417481) 6685
(0.013661 0.00644354 0.00416279) 6687
(0.014384 0.00642851 0.00415363) 6688
(0.0149976 0.00641942 0.00414839) 6689
(0.0155399 0.00641408 0.00414645) 6691
(0.016055 0.00641345 0.00414205) 6692
(0.0165852 0.00641275 0.00413555) 6693
(0.0222197 0.00633286 0.00199772) 13484
(0.0236806 0.00657332 0.00224213) 6107
(0.0246799 0.00668825 0.00221856) 13429
(0.0207569 0.00665046 0.00416209) 6641
(0.0228404 0.00674588 0.00408013) 1965
(0.0186485 0.00635036 0.00111595) 12457
(0.0194337 0.00363851 0.00467164) 7178
(0.0210145 0.00367238 0.00471621) 10542
(0.0195207 0.00333592 0.00165664) 399
(0.0214108 0.00327721 0.00172976) 462
(0.0183967 0.0061109 0.00484004) 12216
(0.0203179 0.00615776 0.00475553) 12220
(0.020107 0.00586929 0.0050368) 12580
(0.020107 0.00586929 0.0050368) 12580
(0.020107 0.00586929 0.0050368) 12580
(0.021872 0.00590308 0.00500827) 12583
(0.021872 0.00590308 0.00500827) 12583
(0.021872 0.00590308 0.00500827) 12583
(0.0227181 0.00603877 0.00494973) 12345
(0.0198024 0.00402288 0.00492194) 10539
(0.0200859 0.00374395 0.00142635) 9220
(0.0205107 0.00411942 0.00126987) 11501
(0.020134 0.0047754 0.000935029) 11620
(0.0217451 0.00466459 0.000935199) 11563
(0.0191068 0.005947 0.000990006) 12278
(0.0202793 0.00531258 0.000815325) 11920
(0.0219787 0.00524907 0.000794355) 11923
(0.0194908 0.00527625 0.00523118) 11078
(0.0210625 0.0052979 0.00521636) 11442
(0.0182494 0.002893 0.00319795) 32256
(0.0222483 0.00304575 0.00322316) 764
(0.0245701 0.00296946 0.00319552) 34128
(0.0248012 0.00292259 0.00324567) 34128
(0.0197168 0.006715 0.0016485) 2499
(0.0197168 0.006715 0.0016485) 2499
(0.0197168 0.006715 0.0016485) 2499
(0.0219131 0.00667024 0.00169058) 2503
(0.0231316 0.00665176 0.00162643) 2506
(0.0215172 0.00609591 0.00161636) 6043
(0.0229629 0.00625319 0.00170816) 13485
(0.00788845 0.00643381 0.00287046) 13515
(0.00788845 0.00643381 0.00287046) 13515
(0.00788845 0.00643381 0.00287046) 13515
(0.00838343 0.00643768 0.00286615) 13516
(0.00883364 0.00644038 0.00286664) 13517
(0.00926909 0.00644257 0.00286876) 13518
(0.00973117 0.00644222 0.00286948) 13519
(0.0102393 0.00643795 0.00287001) 13520
(0.00770102 0.006348 0.00257413) 13575
(0.0080859 0.00636272 0.00257111) 13576
(0.0190084 0.00622045 0.0023586) 13658
(0.0195073 0.00621216 0.00235885) 13659
(0.0200388 0.00619944 0.00235604) 13660
(0.0205922 0.00618462 0.00234741) 13661
(0.00772646 0.00584101 0.00188425) 13755
(0.00815244 0.00584299 0.00186706) 13756
(0.00855738 0.0058397 0.0018543) 13757
(0.00902444 0.0058362 0.00185288) 13758
(0.00770128 0.00558833 0.0017189) 13815
(0.00807815 0.00559086 0.0017034) 13816
(0.00845159 0.00559363 0.00169553) 13816
(0.00873302 0.00438909 0.0016898) 14057
(0.00914058 0.00438944 0.00168729) 14058
(0.00956337 0.00438967 0.00168568) 14059
(0.0100323 0.004392 0.0016879) 14060
(0.00792375 0.00416675 0.00182966) 14115
(0.00792375 0.00416675 0.00182966) 14115
(0.00792375 0.00416675 0.00182966) 14115
(0.00835264 0.00416005 0.00182314) 14116
(0.00875583 0.00415816 0.00181946) 14117
(0.00916756 0.00415859 0.0018171) 14118
(0.00960852 0.00415795 0.00181795) 14119
(0.0100942 0.00415838 0.00182246) 14120
(0.00773006 0.00395884 0.00205018) 14175
(0.00812676 0.00395224 0.00203654) 14176
(0.00848581 0.00394807 0.00202818) 14176
(0.00766411 0.0035986 0.00318261) 14415
(0.00811806 0.00358238 0.00318291) 14416
(0.0127071 0.00362615 0.00319053) 14425
(0.0132405 0.00363383 0.00318906) 14426
(0.0137356 0.00363324 0.00318765) 14427
(0.00778357 0.00366547 0.00347235) 14475
(0.00778357 0.00366547 0.00347235) 14475
(0.00778357 0.00366547 0.00347235) 14475
(0.00834721 0.00364117 0.00346439) 14476
(0.00881466 0.00362633 0.00346339) 14477
(0.00921735 0.00361355 0.00346551) 14478
(0.00969099 0.00361049 0.00346396) 14479
(0.0102338 0.00361735 0.00346092) 14480
(0.00745998 0.00374495 0.00368671) 14534
(0.00745998 0.00374495 0.00368671) 14534
(0.00745998 0.00374495 0.00368671) 14534
(0.00823214 0.00373143 0.00369085) 14536
(0.00878925 0.00372625 0.0036964) 14537
(0.0092511 0.00372105 0.00370243) 14538
(0.00974589 0.00372141 0.0037054) 14539
(0.010272 0.00372722 0.00370328) 14540
(0.00759401 0.00393655 0.00392405) 14595
(0.00813285 0.00391779 0.0039181) 14596
(0.00859317 0.00391197 0.00392314) 14597
(0.00780615 0.00500786 0.00442496) 14835
(0.00825848 0.00500123 0.0044357) 14836
(0.00868829 0.00499584 0.00444034) 14837
(0.00910708 0.0049947 0.00444393) 14838
(0.00956828 0.00499636 0.00444381) 14839
(0.00769587 0.00528109 0.00439035) 14895
(0.00814819 0.00528419 0.00440032) 14896
(0.00856785 0.00528364 0.00440765) 14897
(0.00897806 0.00528218 0.00441239) 14897
(0.00757918 0.00622738 0.00366259) 15135
(0.00856485 0.00637994 0.00341046) 15197
(0.00888177 0.00643575 0.00312755) 15257
(0.00933572 0.00643504 0.00313067) 15258
(0.00980793 0.00643354 0.00313265) 15259
(0.0103133 0.00642995 0.00313392) 15260
(0.00157159 0.00646008 0.00283706) 13503
(0.00575444 0.00643075 0.00292879) 13511
(0.00622818 0.00643865 0.00293348) 13512
(0.00704868 0.00642735 0.00290114) 13514
(0.00503374 0.00445051 0.00166825) 14050
(0.00498971 0.00431084 0.00155342) 5709
(0.00488143 0.00439724 0.0015335) 5709
(0.00563597 0.00449114 0.0016557) 14051
(0.00651091 0.00446185 0.00170523) 14053
(0.00490446 0.00419171 0.00189273) 14109
(0.00482863 0.00410096 0.00185248) 14109
(0.00467934 0.00408385 0.00181248) 5649
(0.00511759 0.00419373 0.00166377) 5650
(0.00490387 0.00347033 0.00324926) 5409
(0.00527546 0.00358571 0.00329176) 14410
(0.00482544 0.00373012 0.0036436) 14529
(0.00498859 0.0036054 0.00359384) 5349
(0.00507832 0.00378182 0.00364693) 14530
(0.00300184 0.00495613 0.00445324) 14826
(0.00652138 0.00526324 0.00435182) 14893
(0.00705249 0.00529312 0.00436043) 14894
(0.00704355 0.00633435 0.0033558) 15194
(0.0040703 0.00635479 0.00286446) 13508
(0.0044934 0.0064142 0.00287274) 13508
(0.00485069 0.00647654 0.00302698) 15249
(0.0055488 0.00644501 0.0031614) 15251
(0.00658319 0.00639523 0.00310121) 15253
(0.00727372 0.00636376 0.0030962) 15254
(0.0199807 0.00693076 0.00357811) 2019
(0.0116123 0.00651702 0.00420343) 6683
(0.0127504 0.00647267 0.00417491) 6685
(0.0136386 0.00644385 0.00416284) 6687
(0.0143661 0.00642845 0.00415363) 6688
(0.0149821 0.00641932 0.00414814) 6689
(0.0155256 0.00641389 0.00414614) 6691
(0.0160403 0.00641323 0.00414177) 6692
(0.0165692 0.0064126 0.00413531) 6693
(0.0221011 0.0063293 0.00198661) 13484
(0.0236379 0.00656454 0.00223691) 6107
(0.0246591 0.00668621 0.00222254) 13429
(0.020648 0.00665217 0.00416414) 6641
(0.0227939 0.00674033 0.0040836) 1965
(0.0186177 0.00635394 0.00111778) 12457
(0.0193783 0.00363691 0.00467015) 7178
(0.0209851 0.0036686 0.00471092) 10541
(0.0194467 0.00333824 0.00165189) 398
(0.0213677 0.00328179 0.00172671) 462
(0.0183142 0.0061102 0.00484515) 12216
(0.0202582 0.00615451 0.0047575) 12220
(0.0200322 0.00586804 0.00503893) 12580
(0.0200322 0.00586804 0.00503893) 12580
(0.0200322 0.00586804 0.00503893) 12580
(0.0218329 0.00589913 0.00500923) 12583
(0.0218329 0.00589913 0.00500923) 12583
(0.0218329 0.00589913 0.00500923) 12583
(0.0227061 0.00602956 0.00495573) 12345
(0.0197479 0.00402082 0.00491874) 10539
(0.0199743 0.00374636 0.00142364) 9219
(0.0204078 0.00412377 0.0012688) 11500
(0.0200648 0.0047792 0.000934192) 11620
(0.0217123 0.00467124 0.000936131) 11563
(0.0190544 0.00594757 0.000990433) 12278
(0.0201952 0.00531542 0.000814928) 11920
(0.0219498 0.00525351 0.000798232) 11923
(0.0194352 0.00527561 0.00523225) 11078
(0.021025 0.00529415 0.00521569) 11442
(0.0193839 0.00370614 0.00121769) 12998
(0.022102 0.00304484 0.00322342) 764
(0.0245457 0.00297267 0.00319512) 34128
(0.0248137 0.00292305 0.00323971) 34128
(0.0195929 0.00671948 0.00164274) 2499
(0.0195929 0.00671948 0.00164274) 2499
(0.0195929 0.00671948 0.00164274) 2499
(0.0218575 0.00667114 0.00169205) 2503
(0.0231075 0.00665435 0.00163165) 2506
(0.0213387 0.00610078 0.00161726) 6042
(0.0229527 0.00624798 0.00170801) 13485
(0.00786368 0.00643393 0.00287064) 13515
(0.00786368 0.00643393 0.00287064) 13515
(0.00786368 0.00643393 0.00287064) 13515
(0.00835974 0.00643777 0.0028662) 13516
(0.00881037 0.00644045 0.00286648) 13517
(0.00924597 0.00644266 0.00286867) 13518
(0.0097073 0.00644238 0.00286955) 13519
(0.0102137 0.00643825 0.00286995) 13520
(0.00768025 0.00634808 0.00257513) 13575
(0.00806444 0.00636277 0.00257153) 13576
(0.0189867 0.00622075 0.0023586) 13657
(0.0194854 0.00621261 0.00235895) 13658
(0.0200149 0.00620013 0.00235634) 13660
(0.0205684 0.00618531 0.00234802) 13661
(0.0077056 0.00584083 0.00188435) 13755
(0.00813051 0.00584307 0.00186713) 13756
(0.00853402 0.00583992 0.00185426) 13757
(0.00899985 0.00583631 0.00185268) 13757
(0.0076797 0.00558831 0.00171904) 13815
(0.00805537 0.0055908 0.00170327) 13816
(0.00842825 0.00559349 0.00169526) 13816
(0.00870829 0.00438888 0.00168955) 14057
(0.00911733 0.00438943 0.0016871) 14058
(0.00954004 0.00438953 0.00168556) 14059
(0.0100069 0.0043919 0.00168755) 14060
(0.00790146 0.00416699 0.00182967) 14115
(0.00790146 0.00416699 0.00182967) 14115
(0.00790146 0.00416699 0.00182967) 14115
(0.00832935 0.0041599 0.00182304) 14116
(0.00873146 0.00415782 0.0018193) 14117
(0.00914375 0.00415833 0.00181699) 14118
(0.00958447 0.00415791 0.0018177) 14119
(0.0100684 0.00415816 0.00182214) 14120
(0.00770955 0.00395917 0.00205025) 14175
(0.00810464 0.00395223 0.00203659) 14176
(0.00846178 0.00394779 0.00202813) 14176
(0.00764053 0.00359877 0.00318282) 14415
(0.00809678 0.00358264 0.00318322) 14416
(0.0126829 0.00362562 0.00319061) 14425
(0.013218 0.00363364 0.00318919) 14426
(0.0137147 0.00363337 0.00318773) 14427
(0.00775623 0.00366675 0.00347308) 14475
(0.00775623 0.00366675 0.00347308) 14475
(0.00775623 0.00366675 0.00347308) 14475
(0.00832302 0.00364189 0.00346468) 14476
(0.00879252 0.00362681 0.00346346) 14477
(0.0091948 0.00361386 0.0034656) 14478
(0.00966491 0.0036103 0.0034642) 14479
(0.0102061 0.00361685 0.00346115) 14480
(0.00741924 0.00374619 0.00368739) 14534
(0.00741924 0.00374619 0.00368739) 14534
(0.00741924 0.00374619 0.00368739) 14534
(0.00820204 0.00373164 0.00369071) 14536
(0.00876426 0.00372639 0.00369632) 14537
(0.00922714 0.00372112 0.00370234) 14538
(0.00971982 0.00372117 0.00370553) 14539
(0.0102456 0.00372683 0.00370358) 14540
(0.00756828 0.00393799 0.00392544) 14595
(0.00810764 0.00391811 0.00391826) 14596
(0.00856976 0.00391199 0.00392299) 14597
(0.00778535 0.00500818 0.00442475) 14835
(0.00823612 0.00500145 0.00443575) 14836
(0.00866511 0.00499604 0.00444056) 14837
(0.00908368 0.0049946 0.0044441) 14838
(0.00954339 0.00499627 0.00444408) 14839
(0.00767436 0.00528118 0.00439022) 14895
(0.0081255 0.00528429 0.00440032) 14896
(0.00854463 0.00528377 0.00440781) 14897
(0.00895476 0.00528244 0.00441252) 14897
(0.00755905 0.00622723 0.00366228) 15135
(0.00853692 0.00638037 0.00341074) 15197
(0.0088575 0.00643598 0.00312752) 15257
(0.00931241 0.00643518 0.00313064) 15258
(0.00978427 0.00643369 0.00313255) 15259
(0.0102884 0.00643018 0.00313392) 15260
(0.000873808 0.00645881 0.00284573) 13501
(0.00446424 0.00632806 0.00261657) 13568
(0.00574144 0.00642908 0.0029274) 13511
(0.00620473 0.0064385 0.00293363) 13512
(0.0070236 0.00642739 0.00290197) 13514
(0.00498546 0.00431533 0.00155586) 5709
(0.00490658 0.00437203 0.00153002) 5709
(0.00559839 0.00449367 0.00165302) 14051
(0.00647845 0.00446217 0.00170262) 14052
(0.00723022 0.00444668 0.00175475) 14054
(0.00491834 0.00420334 0.00189552) 14109
(0.00485287 0.00411089 0.00185148) 14109
(0.00469374 0.0040696 0.00181979) 5649
(0.0050605 0.00415771 0.0016585) 5650
(0.00490944 0.00346783 0.00324708) 5409
(0.00526001 0.00345216 0.00326963) 5410
(0.00481747 0.00374388 0.0036444) 14529
(0.00498306 0.00360624 0.00359419) 5349
(0.00507417 0.00376838 0.00364292) 14530
(0.00276878 0.00496137 0.00445748) 14825
(0.00513389 0.00494579 0.00441158) 14830
(0.00650858 0.00526239 0.00434774) 14893
(0.00703981 0.00528779 0.00436139) 14894
(0.00702584 0.0063362 0.00335479) 15194
(0.0038339 0.00637896 0.00289233) 13507
(0.00450206 0.00641416 0.00287299) 13509
(0.00484433 0.00647602 0.0030239) 15249
(0.00554272 0.00644436 0.00316157) 15251
(0.00655991 0.00639517 0.00310161) 15253
(0.00724875 0.00636413 0.00309644) 15254
(0.0199372 0.00692701 0.00358345) 2019
(0.011571 0.00651886 0.00420459) 6683
(0.0127216 0.00647356 0.00417504) 6685
(0.0136159 0.00644419 0.00416289) 6687
(0.0143479 0.0064284 0.00415366) 6688
(0.0149666 0.00641923 0.00414789) 6689
(0.0155113 0.00641371 0.00414582) 6691
(0.0160256 0.00641301 0.00414147) 6692
(0.0165532 0.00641245 0.00413508) 6693
(0.021973 0.00632782 0.00197558) 13483
(0.0235954 0.00655549 0.00223112) 6107
(0.0246357 0.00668409 0.00222622) 13429
(0.0205368 0.00665417 0.00416635) 6641
(0.0227454 0.00673482 0.00408705) 1965
(0.0185866 0.00635754 0.00111956) 12457
(0.0193231 0.00363545 0.00466878) 7178
(0.0209539 0.00366508 0.00470591) 10541
(0.0193722 0.00334051 0.00164702) 398
(0.0213231 0.00328623 0.00172376) 462
(0.0182331 0.00610977 0.00485028) 12216
(0.0201973 0.00615142 0.00475953) 12220
(0.0199572 0.00586677 0.00504117) 12579
(0.0199572 0.00586677 0.00504117) 12579
(0.0199572 0.00586677 0.00504117) 12579
(0.0217923 0.00589541 0.00501014) 12583
(0.0217923 0.00589541 0.00501014) 12583
(0.0217923 0.00589541 0.00501014) 12583
(0.0226947 0.00602028 0.00496113) 12345
(0.0196939 0.00401862 0.00491551) 10539
(0.0198626 0.00374878 0.00142072) 9219
(0.0203042 0.00412807 0.00126751) 11500
(0.019995 0.00478287 0.000933269) 11619
(0.0216777 0.00467771 0.000937041) 11563
(0.0190022 0.00594817 0.00099082) 12278
(0.0206263 0.0059507 0.000983436) 12281
(0.0201098 0.00531842 0.000814412) 11920
(0.0219187 0.00525771 0.000801949) 11923
(0.0193798 0.005275 0.00523343) 11078
(0.0209863 0.00529062 0.00521509) 11441
(0.0218811 0.00543808 0.00523166) 12523
(0.0193527 0.00371296 0.00121463) 12998
(0.0219566 0.00304345 0.00322346) 763
(0.0245185 0.00297589 0.00319486) 34128
(0.0248252 0.00292386 0.00323403) 34128
(0.0194666 0.0067248 0.00163664) 2498
(0.0194666 0.0067248 0.00163664) 2498
(0.0194666 0.0067248 0.00163664) 2498
(0.0218001 0.00667213 0.00169335) 2503
(0.0230834 0.00665678 0.00163687) 2506
(0.0211453 0.00610901 0.00161985) 6042
(0.0229405 0.00624273 0.00170758) 13485
(0.00783881 0.00643406 0.00287082) 13515
(0.00783881 0.00643406 0.00287082) 13515
(0.00783881 0.00643406 0.00287082) 13515
(0.008336 0.00643787 0.00286625) 13516
(0.00878706 0.00644053 0.00286632) 13517
(0.00922281 0.00644275 0.00286858) 13518
(0.00968348 0.00644254 0.00286962) 13519
(0.0101882 0.00643853 0.00286991) 13520
(0.00765942 0.00634816 0.00257615) 13575
(0.00804298 0.00636283 0.00257196) 13576
(0.0189649 0.00622104 0.0023586) 13657
(0.0194636 0.00621305 0.00235905) 13658
(0.0199911 0.00620081 0.00235663) 13659
(0.0205447 0.006186 0.00234861) 13661
(0.00768471 0.00584063 0.00188444) 13755
(0.00810864 0.00584314 0.00186721) 13756
(0.00851075 0.00584014 0.00185423) 13757
(0.00897536 0.00583642 0.00185248) 13757
(0.00765809 0.00558831 0.0017192) 13815
(0.00803263 0.00559073 0.00170315) 13816
(0.00840494 0.00559335 0.00169499) 13816
(0.00868343 0.00438867 0.00168928) 14057
(0.00909403 0.00438938 0.00168692) 14058
(0.00951671 0.00438946 0.00168541) 14059
(0.00998163 0.00439177 0.00168723) 14059
(0.00830609 0.00415979 0.00182294) 14116
(0.00870704 0.00415747 0.00181913) 14117
(0.00911988 0.00415809 0.00181685) 14118
(0.00956043 0.0041578 0.0018175) 14119
(0.0100427 0.00415799 0.00182181) 14120
(0.00768904 0.00395951 0.00205032) 14175
(0.00808263 0.00395223 0.00203665) 14176
(0.00843777 0.00394751 0.00202808) 14176
(0.00807548 0.0035829 0.00318352) 14416
(0.0126586 0.00362508 0.00319068) 14425
(0.0131954 0.00363344 0.00318931) 14426
(0.0136937 0.00363349 0.0031878) 14427
(0.00772867 0.00366805 0.0034738) 14475
(0.00772867 0.00366805 0.0034738) 14475
(0.00772867 0.00366805 0.0034738) 14475
(0.00829873 0.00364263 0.00346498) 14476
(0.00877036 0.00362731 0.00346353) 14477
(0.0091724 0.00361419 0.00346569) 14478
(0.00963897 0.00361012 0.00346443) 14479
(0.0101784 0.00361634 0.00346139) 14480
(0.00737797 0.00374754 0.00368819) 14534
(0.00737797 0.00374754 0.00368819) 14534
(0.00737797 0.00374754 0.00368819) 14534
(0.00817161 0.00373188 0.00369057) 14536
(0.00873916 0.00372653 0.00369624) 14537
(0.00920323 0.00372119 0.00370224) 14538
(0.00969379 0.00372093 0.00370565) 14539
(0.0102192 0.00372645 0.00370388) 14540
(0.00754267 0.00393948 0.00392689) 14595
(0.0080824 0.00391845 0.00391845) 14596
(0.00854633 0.00391201 0.00392285) 14597
(0.00776456 0.00500851 0.00442454) 14835
(0.00821381 0.00500166 0.00443579) 14836
(0.0086419 0.00499626 0.00444079) 14837
(0.00906025 0.0049945 0.00444427) 14838
(0.00951855 0.00499619 0.00444435) 14839
(0.00765292 0.00528128 0.00439009) 14895
(0.00810286 0.00528438 0.0044003) 14896
(0.00852133 0.0052839 0.00440796) 14897
(0.00893143 0.0052827 0.00441265) 14897
(0.00753892 0.00622708 0.00366193) 15135
(0.00850888 0.00638081 0.00341102) 15197
(0.00883313 0.00643622 0.0031275) 15257
(0.00928904 0.00643533 0.00313061) 15258
(0.00976064 0.00643384 0.00313246) 15259
(0.0102635 0.00643042 0.00313391) 15260
(8.37231e-05 0.00645902 0.00284122) 13500
(0.0043808 0.00633393 0.00259562) 13568
(0.00572926 0.00642727 0.00292604) 13511
(0.00618163 0.00643831 0.00293371) 13512
(0.00699827 0.00642743 0.0029027) 13513
(0.0049794 0.00432149 0.00155914) 5709
(0.00492647 0.00435372 0.00152973) 5709
(0.00556417 0.00449616 0.0016505) 14051
(0.00644307 0.00446207 0.00169946) 14052
(0.00720782 0.00444758 0.00175243) 14054
(0.0049236 0.0042134 0.00189924) 14109
(0.00487408 0.00412039 0.00185079) 14109
(0.00471155 0.00406074 0.0018232) 5649
(0.00424244 0.00418649 0.00175794) 14108
(0.00501935 0.00413287 0.00165724) 5650
(0.00491494 0.00346549 0.00324522) 5409
(0.00519194 0.00342265 0.00326601) 5410
(0.00480416 0.00375601 0.00364526) 14529
(0.00497737 0.00360656 0.00359564) 5349
(0.00507202 0.00375792 0.00364126) 14530
(0.00257799 0.00496579 0.00446091) 14825
(0.00508777 0.00494501 0.00441464) 14830
(0.00702487 0.0052837 0.00436169) 14894
(0.0070076 0.00633761 0.00335405) 15194
(0.00348768 0.00642147 0.00293536) 13506
(0.00450651 0.00641358 0.00287282) 13509
(0.00483104 0.00647581 0.00301733) 15249
(0.00553073 0.00644417 0.00316122) 15251
(0.00653661 0.00639511 0.00310204) 15253
(0.00722375 0.00636452 0.00309668) 15254
(0.0192074 0.00297839 0.00222711) 32540
(0.019893 0.00692347 0.00358869) 2019
(0.0115295 0.00652074 0.0042058) 6683
(0.0126925 0.00647445 0.00417522) 6685
(0.0135931 0.00644454 0.00416295) 6687
(0.0143296 0.00642836 0.0041537) 6688
(0.0149509 0.00641915 0.00414764) 6689
(0.015497 0.00641354 0.00414549) 6690
(0.0160109 0.00641279 0.00414118) 6692
(0.0165373 0.00641229 0.00413485) 6693
(0.0218318 0.00632957 0.00196752) 13483
(0.0235525 0.00654627 0.00222479) 6107
(0.0246091 0.00668178 0.00222959) 6109
(0.0204244 0.00665614 0.00416889) 6640
(0.0226946 0.00672935 0.0040905) 1965
(0.0185553 0.00636113 0.00112128) 12457
(0.019268 0.00363415 0.00466756) 7178
(0.020921 0.00366178 0.00470116) 10541
(0.0192974 0.00334273 0.00164203) 398
(0.0212768 0.00329052 0.0017209) 462
(0.0201351 0.00614845 0.00476165) 12220
(0.0198822 0.0058655 0.0050435) 12579
(0.0198822 0.0058655 0.0050435) 12579
(0.0198822 0.0058655 0.0050435) 12579
(0.0217503 0.00589185 0.005011) 12583
(0.0217503 0.00589185 0.005011) 12583
(0.0217503 0.00589185 0.005011) 12583
(0.0226841 0.00601103 0.00496601) 12345
(0.0196403 0.0040163 0.00491224) 10539
(0.0197514 0.00375107 0.00141768) 9219
(0.0201999 0.00413231 0.00126601) 11500
(0.0228374 0.00404036 0.00124226) 12765
(0.019925 0.00478641 0.000932256) 11619
(0.0216414 0.00468405 0.000937936) 11563
(0.0189505 0.00594878 0.000991181) 12277
(0.0205854 0.00595259 0.000986147) 12281
(0.0200238 0.00532159 0.000813799) 11860
(0.0218852 0.00526168 0.000805488) 11923
(0.0193246 0.0052744 0.00523472) 11078
(0.0209465 0.00528735 0.00521454) 11441
(0.0218805 0.00542547 0.00523062) 12523
(0.0193215 0.00371964 0.00121158) 12998
(0.0218133 0.00304165 0.00322329) 763
(0.0218133 0.00304165 0.00322329) 763
(0.0218133 0.00304165 0.00322329) 763
(0.0244883 0.00297912 0.00319472) 33984
(0.0248355 0.00292498 0.00322866) 34128
(0.0193478 0.00673075 0.00163104) 2498
(0.0193478 0.00673075 0.00163104) 2498
(0.0193478 0.00673075 0.00163104) 2498
(0.021741 0.00667321 0.00169452) 2503
(0.0230586 0.00665901 0.00164197) 2506
(0.0209401 0.00612038 0.00162364) 6041
(0.0229264 0.00623743 0.00170689) 13485
(0.00781384 0.00643419 0.00287101) 13515
(0.00781384 0.00643419 0.00287101) 13515
(0.00781384 0.00643419 0.00287101) 13515
(0.00831221 0.00643796 0.0028663) 13516
(0.00876373 0.00644061 0.00286617) 13517
(0.00919964 0.00644284 0.00286851) 13518
(0.00965964 0.00644269 0.00286962) 13519
(0.0101628 0.00643882 0.00286989) 13520
(0.00763852 0.00634825 0.00257719) 13575
(0.00802151 0.00636289 0.00257242) 13576
(0.018943 0.00622132 0.00235859) 13657
(0.0194418 0.00621348 0.00235915) 13658
(0.0199673 0.00620148 0.00235692) 13659
(0.0205208 0.00618668 0.00234918) 13661
(0.00766379 0.00584042 0.00188452) 13755
(0.00808684 0.0058432 0.0018673) 13756
(0.00848759 0.00584036 0.00185421) 13756
(0.00895096 0.00583653 0.0018523) 13757
(0.00800991 0.00559066 0.00170304) 13816
(0.00838167 0.0055932 0.00169473) 13816
(0.00865846 0.00438846 0.00168901) 14057
(0.00907068 0.00438932 0.00168674) 14058
(0.00949341 0.00438939 0.00168526) 14058
(0.00995644 0.00439164 0.00168692) 14059
(0.00828287 0.0041597 0.00182284) 14116
(0.00868259 0.00415712 0.00181896) 14117
(0.00909597 0.00415784 0.00181671) 14118
(0.00953641 0.00415769 0.0018173) 14119
(0.010017 0.00415781 0.00182148) 14120
(0.00766853 0.00395988 0.00205037) 14175
(0.00806071 0.00395225 0.00203672) 14176
(0.00841382 0.00394723 0.00202805) 14176
(0.00805414 0.00358317 0.00318381) 14416
(0.0126343 0.00362453 0.00319075) 14425
(0.0131727 0.00363323 0.00318944) 14426
(0.0136726 0.00363359 0.00318788) 14427
(0.00770087 0.00366938 0.00347456) 14475
(0.00770087 0.00366938 0.00347456) 14475
(0.00770087 0.00366938 0.00347456) 14475
(0.00827432 0.0036434 0.0034653) 14476
(0.00874818 0.00362781 0.00346361) 14477
(0.00915013 0.00361453 0.00346577) 14478
(0.00961314 0.00360997 0.00346466) 14479
(0.0101507 0.00361584 0.00346163) 14480
(0.00733625 0.00374898 0.0036891) 14534
(0.00733625 0.00374898 0.0036891) 14534
(0.00733625 0.00374898 0.0036891) 14534
(0.00814085 0.00373214 0.00369044) 14536
(0.00871393 0.00372668 0.00369616) 14537
(0.00917934 0.00372127 0.00370213) 14538
(0.0096678 0.00372071 0.00370575) 14539
(0.0101927 0.00372606 0.00370417) 14540
(0.0075172 0.00394104 0.0039284) 14595
(0.00805713 0.00391884 0.00391868) 14596
(0.00852285 0.00391205 0.00392272) 14597
(0.00774378 0.00500884 0.00442433) 14835
(0.00819155 0.00500189 0.00443582) 14836
(0.00861866 0.00499648 0.00444102) 14837
(0.00903678 0.0049944 0.00444446) 14838
(0.00949376 0.0049961 0.00444461) 14838
(0.00763157 0.00528137 0.00438995) 14895
(0.00808025 0.00528445 0.00440027) 14896
(0.00849796 0.00528405 0.00440812) 14896
(0.00890806 0.00528297 0.00441278) 14897
(0.00751877 0.00622694 0.00366157) 15135
(0.00848072 0.00638126 0.0034113) 15196
(0.00880867 0.00643646 0.00312747) 15257
(0.00926561 0.00643549 0.00313056) 15258
(0.00973701 0.00643399 0.00313242) 15259
(0.0102387 0.00643065 0.00313389) 15260
(0.00429734 0.00634009 0.0025819) 13568
(0.00573283 0.00642545 0.00292503) 13511
(0.00615892 0.00643808 0.00293372) 13512
(0.00698903 0.00642741 0.00290318) 13513
(0.00497284 0.00432905 0.00156359) 5709
(0.00494068 0.00434212 0.00153061) 5709
(0.00552993 0.00449869 0.0016478) 14051
(0.00640713 0.00446178 0.00169629) 14052
(0.00718518 0.00444836 0.00175024) 14054
(0.00488852 0.00412855 0.00185108) 14109
(0.00473309 0.00405933 0.00182384) 5649
(0.0042599 0.00418483 0.00175832) 14108
(0.00495344 0.00410251 0.00166499) 5649
(0.0049166 0.00346479 0.00324431) 5409
(0.00513951 0.00341267 0.00326072) 5410
(0.0047843 0.00376656 0.0036494) 14529
(0.00495885 0.00360826 0.00359807) 5349
(0.00506693 0.00374642 0.00363874) 14530
(0.00504059 0.00494433 0.00441785) 14830
(0.00700829 0.00528066 0.00436158) 14894
(0.0069888 0.00633873 0.00335348) 15193
(0.00300565 0.00646887 0.00300019) 13506
(0.00451009 0.00641271 0.00287276) 13509
(0.00481578 0.00647555 0.00300946) 15249
(0.00551512 0.00644431 0.00316051) 15251
(0.00651335 0.00639502 0.00310249) 15253
(0.00719868 0.00636492 0.00309692) 15254
(0.0191698 0.00298112 0.00222342) 32540
(0.0198483 0.00692005 0.00359382) 2019
(0.0114869 0.00652271 0.0042071) 6682
(0.0126628 0.00647537 0.00417543) 6685
(0.01357 0.00644492 0.004163) 6687
(0.0143111 0.00642833 0.00415375) 6688
(0.0149352 0.00641908 0.0041474) 6689
(0.0154826 0.00641337 0.00414516) 6690
(0.0159963 0.00641257 0.00414089) 6691
(0.0165214 0.00641213 0.00413462) 6693
(0.0216778 0.00633415 0.00196095) 13483
(0.0235092 0.00653695 0.00221805) 6107
(0.0245788 0.00667907 0.00223278) 6109
(0.0203107 0.00665822 0.00417167) 6640
(0.022642 0.00672384 0.00409401) 1965
(0.0192128 0.00363299 0.00466656) 7178
(0.0208862 0.00365869 0.00469666) 10541
(0.0192223 0.00334492 0.0016369) 398
(0.0212289 0.00329466 0.00171812) 462
(0.0200717 0.0061456 0.00476386) 12220
(0.0198074 0.00586424 0.00504591) 12579
(0.0198074 0.00586424 0.00504591) 12579
(0.0198074 0.00586424 0.00504591) 12579
(0.0217067 0.00588844 0.00501184) 12583
(0.0217067 0.00588844 0.00501184) 12583
(0.0217067 0.00588844 0.00501184) 12583
(0.0226753 0.00600171 0.00497044) 12345
(0.0195871 0.00401387 0.00490895) 10539
(0.0196411 0.00375323 0.00141455) 9219
(0.020095 0.00413651 0.00126434) 11500
(0.0227651 0.0040438 0.0012443) 12765
(0.0198549 0.00478985 0.000931142) 11619
(0.0216032 0.00469025 0.000938816) 11563
(0.0188994 0.00594943 0.00099152) 12277
(0.0205433 0.0059543 0.000988691) 12281
(0.0199374 0.00532491 0.000813086) 11859
(0.0218494 0.00526549 0.000808866) 11923
(0.0192689 0.00527387 0.00523613) 11078
(0.0209053 0.00528433 0.00521406) 11441
(0.0218774 0.00541357 0.00522951) 11443
(0.0192903 0.00372619 0.00120855) 12998
(0.021671 0.00303935 0.00322296) 763
(0.021671 0.00303935 0.00322296) 763
(0.021671 0.00303935 0.00322296) 763
(0.0244546 0.00298238 0.00319469) 33984
(0.0248446 0.00292636 0.00322359) 34128
(0.0192472 0.00673659 0.0016268) 2498
(0.0192472 0.00673659 0.0016268) 2498
(0.0192472 0.00673659 0.0016268) 2498
(0.0216796 0.00667436 0.00169546) 2503
(0.0230339 0.00666111 0.0016471) 2506
(0.0207241 0.00613445 0.001628) 6041
(0.0229111 0.00623208 0.00170595) 13485
(0.00778876 0.00643432 0.00287118) 13515
(0.00778876 0.00643432 0.00287118) 13515
(0.00778876 0.00643432 0.00287118) 13515
(0.00828838 0.00643807 0.00286637) 13516
(0.00874036 0.00644069 0.00286603) 13517
(0.00917643 0.00644293 0.00286844) 13518
(0.00963583 0.00644284 0.00286961) 13519
(0.0101374 0.00643909 0.00286988) 13520
(0.00761753 0.00634834 0.00257825) 13575
(0.00800002 0.00636294 0.00257289) 13576
(0.0189212 0.0062216 0.00235858) 13657
(0.0194201 0.0062139 0.00235923) 13658
(0.0199436 0.00620214 0.00235718) 13659
(0.020497 0.00618736 0.00234973) 13660
(0.0210289 0.00617487 0.00233683) 13662
(0.00764285 0.00584021 0.0018846) 13755
(0.00806511 0.00584325 0.0018674) 13756
(0.00846451 0.00584058 0.00185421) 13756
(0.00892666 0.00583664 0.00185212) 13757
(0.00798724 0.00559059 0.00170295) 13815
(0.00835844 0.00559305 0.00169448) 13816
(0.00863337 0.00438826 0.00168872) 14057
(0.00904726 0.00438925 0.00168656) 14058
(0.00947012 0.00438932 0.00168511) 14058
(0.00993136 0.00439151 0.00168661) 14059
(0.0082597 0.00415962 0.00182274) 14116
(0.0086581 0.00415678 0.00181879) 14117
(0.009072 0.00415758 0.00181657) 14118
(0.0095124 0.00415757 0.00181711) 14119
(0.00999138 0.00415764 0.00182116) 14119
(0.00764802 0.00396025 0.00205041) 14175
(0.0080389 0.00395228 0.0020368) 14176
(0.00838991 0.00394695 0.00202802) 14176
(0.00803278 0.00358345 0.0031841) 14416
(0.0126098 0.00362396 0.00319082) 14425
(0.01315 0.003633 0.00318955) 14426
(0.0136514 0.00363368 0.00318796) 14427
(0.00767283 0.00367072 0.00347534) 14475
(0.00767283 0.00367072 0.00347534) 14475
(0.00767283 0.00367072 0.00347534) 14475
(0.0082498 0.00364419 0.00346562) 14476
(0.00872596 0.00362832 0.0034637) 14477
(0.00912798 0.00361489 0.00346586) 14478
(0.00958744 0.00360984 0.00346488) 14479
(0.010123 0.00361535 0.00346188) 14480
(0.00729399 0.00375051 0.00369014) 14534
(0.00729399 0.00375051 0.00369014) 14534
(0.00729399 0.00375051 0.00369014) 14534
(0.00810972 0.00373243 0.00369032) 14536
(0.00868857 0.00372683 0.00369609) 14537
(0.00915549 0.00372136 0.00370202) 14538
(0.00964185 0.00372051 0.00370585) 14539
(0.0101661 0.00372567 0.00370446) 14540
(0.00749188 0.00394267 0.00392997) 14594
(0.00803184 0.00391927 0.00391895) 14596
(0.00849935 0.0039121 0.0039226) 14596
(0.007723 0.00500917 0.00442412) 14835
(0.00816933 0.00500211 0.00443583) 14836
(0.00859539 0.0049967 0.00444125) 14837
(0.00901328 0.00499432 0.00444465) 14838
(0.00946901 0.00499603 0.00444487) 14838
(0.00761034 0.00528145 0.0043898) 14895
(0.0080577 0.00528451 0.00440024) 14896
(0.0084745 0.00528423 0.00440828) 14896
(0.00888465 0.00528322 0.00441292) 14897
(0.0074986 0.00622682 0.00366119) 15134
(0.00845247 0.0063817 0.00341157) 15196
(0.00878411 0.0064367 0.00312745) 15257
(0.0092421 0.00643566 0.0031305) 15258
(0.00971338 0.00643414 0.00313239) 15259
(0.0102139 0.00643088 0.00313386) 15260
(0.00421697 0.00634621 0.00257599) 13568
(0.00572249 0.00642318 0.00292367) 13511
(0.00613668 0.0064378 0.00293365) 13512
(0.00696388 0.00642733 0.00290392) 13513
(0.0049655 0.00433838 0.00156924) 5709
(0.00495048 0.00433558 0.00153169) 5709
(0.00549423 0.00450129 0.00164482) 14050
(0.00637174 0.00446145 0.00169336) 14052
(0.0071624 0.00444904 0.00174818) 14054
(0.00490056 0.00413635 0.00185191) 14109
(0.00475409 0.00406143 0.00182362) 5649
(0.00429884 0.00418034 0.00175935) 14108
(0.00490606 0.00408856 0.00167452) 5649
(0.00491804 0.00346434 0.00324359) 5409
(0.00508495 0.00341515 0.00325634) 5410
(0.00476551 0.00377582 0.00365441) 14529
(0.00401157 0.00367475 0.0036409) 14528
(0.00491708 0.00361209 0.00360223) 5349
(0.00506425 0.00373705 0.0036381) 14530
(0.00499268 0.00494379 0.00442117) 14829
(0.00699099 0.00527836 0.00436107) 14893
(0.00697033 0.0063396 0.00335282) 15193
(0.0045156 0.00641225 0.00287268) 13509
(0.00480064 0.00647515 0.0030014) 13509
(0.00549805 0.00644459 0.00315961) 15250
(0.00649015 0.00639492 0.00310294) 15252
(0.00717266 0.00636603 0.0030972) 15254
(0.0191312 0.00298371 0.0022198) 32540
(0.0198033 0.00691676 0.00359887) 2019
(0.0114435 0.00652476 0.0042085) 6682
(0.0126328 0.00647631 0.00417572) 6685
(0.0135468 0.00644533 0.00416305) 6687
(0.0142924 0.00642831 0.00415382) 6688
(0.0149195 0.00641901 0.00414715) 6689
(0.0154682 0.00641321 0.00414482) 6690
(0.0159818 0.00641235 0.0041406) 6691
(0.0165055 0.00641196 0.00413439) 6693
(0.0215099 0.0063419 0.00195665) 13483
(0.0234655 0.00652754 0.0022109) 6106
(0.024546 0.00667628 0.00223578) 6109
(0.0201979 0.00665974 0.00417512) 6640
(0.022587 0.00671826 0.00409763) 1965
(0.0191572 0.0036319 0.00466578) 7178
(0.0208495 0.0036558 0.00469241) 7181
(0.019148 0.00334725 0.00163164) 398
(0.0211794 0.00329866 0.00171542) 462
(0.0200073 0.00614286 0.00476614) 12220
(0.019733 0.00586297 0.00504839) 12579
(0.019733 0.00586297 0.00504839) 12579
(0.019733 0.00586297 0.00504839) 12579
(0.0216615 0.00588518 0.00501265) 12583
(0.0216615 0.00588518 0.00501265) 12583
(0.0216615 0.00588518 0.00501265) 12583
(0.0226654 0.00599274 0.0049745) 12345
(0.0195347 0.00401135 0.00490565) 10539
(0.0195323 0.00375527 0.00141137) 9219
(0.0199896 0.00414059 0.00126257) 11499
(0.0226901 0.0040473 0.00124632) 12765
(0.0197851 0.00479324 0.00092993) 11619
(0.021563 0.00469631 0.000939681) 11623
(0.018849 0.00595012 0.000991849) 12277
(0.0205001 0.00595586 0.000991067) 12281
(0.0198509 0.00532841 0.000812271) 11859
(0.021811 0.00526911 0.000812058) 11923
(0.0192126 0.00527342 0.00523767) 11078
(0.0208629 0.00528155 0.00521365) 11441
(0.0218724 0.00540227 0.00522835) 11443
(0.0192589 0.00373268 0.00120549) 12998
(0.0215305 0.00303663 0.00322247) 763
(0.0215305 0.00303663 0.00322247) 763
(0.0215305 0.00303663 0.00322247) 763
(0.0244168 0.00298571 0.00319475) 33984
(0.0248523 0.00292797 0.00321886) 34128
(0.0191731 0.00674116 0.00162452) 2498
(0.0191731 0.00674116 0.00162452) 2498
(0.0191731 0.00674116 0.00162452) 2498
(0.0216163 0.00667559 0.00169623) 2503
(0.0230092 0.00666307 0.00165223) 2506
(0.0205024 0.00615014 0.00163241) 6041
(0.0228932 0.00622669 0.00170474) 13485
(0.00776357 0.00643445 0.00287135) 13515
(0.00776357 0.00643445 0.00287135) 13515
(0.00776357 0.00643445 0.00287135) 13515
(0.00826448 0.00643818 0.00286644) 13516
(0.00871696 0.00644077 0.0028659) 13517
(0.00915318 0.00644302 0.00286835) 13518
(0.00961204 0.00644299 0.00286961) 13519
(0.0101122 0.00643936 0.00286987) 13520
(0.00759644 0.00634844 0.00257932) 13575
(0.00797852 0.006363 0.00257339) 13575
(0.0188993 0.00622187 0.00235855) 13657
(0.0193984 0.00621431 0.00235931) 13658
(0.0199199 0.00620278 0.00235743) 13659
(0.0204731 0.00618804 0.00235027) 13660
(0.0210065 0.00617539 0.00233756) 13662
(0.00762187 0.00584001 0.00188469) 13755
(0.00804344 0.00584328 0.0018675) 13756
(0.00844153 0.0058408 0.00185422) 13756
(0.00890244 0.00583675 0.00185194) 13757
(0.00796459 0.00559051 0.00170287) 13815
(0.00833523 0.00559289 0.00169423) 13816
(0.00860818 0.00438806 0.00168844) 14057
(0.00902378 0.00438917 0.00168637) 14058
(0.00944685 0.00438925 0.00168497) 14058
(0.00990636 0.00439138 0.00168632) 14059
(0.00823656 0.00415956 0.00182266) 14116
(0.00863359 0.00415642 0.00181862) 14117
(0.00904798 0.00415732 0.00181642) 14118
(0.0094884 0.00415745 0.00181692) 14118
(0.00996582 0.00415747 0.00182084) 14119
(0.00762748 0.00396064 0.00205045) 14175
(0.00801719 0.00395233 0.00203689) 14176
(0.00836603 0.00394668 0.00202801) 14176
(0.00801137 0.00358374 0.00318438) 14416
(0.0125853 0.00362338 0.00319089) 14425
(0.0131273 0.00363276 0.00318967) 14426
(0.0136302 0.00363376 0.00318804) 14427
(0.00764456 0.00367207 0.00347613) 14475
(0.00764456 0.00367207 0.00347613) 14475
(0.00764456 0.00367207 0.00347613) 14475
(0.00822515 0.003645 0.00346596) 14476
(0.00870371 0.00362884 0.00346379) 14477
(0.00910596 0.00361527 0.00346594) 14478
(0.00956188 0.00360973 0.00346511) 14479
(0.0100952 0.00361486 0.00346211) 14480
(0.00725141 0.00375215 0.0036914) 14534
(0.00725141 0.00375215 0.0036914) 14534
(0.00725141 0.00375215 0.0036914) 14534
(0.00807824 0.00373274 0.00369021) 14536
(0.00866307 0.00372698 0.00369602) 14537
(0.00913167 0.00372145 0.0037019) 14538
(0.00961595 0.0037203 0.00370592) 14539
(0.0101396 0.00372528 0.00370476) 14540
(0.0074667 0.00394437 0.0039316) 14594
(0.00800652 0.00391974 0.00391925) 14596
(0.00847581 0.00391216 0.00392248) 14596
(0.00770222 0.0050095 0.0044239) 14835
(0.00814717 0.00500235 0.00443583) 14836
(0.00857209 0.00499691 0.00444149) 14837
(0.00898973 0.00499426 0.00444485) 14837
(0.0094443 0.00499595 0.00444512) 14838
(0.00758928 0.00528151 0.00438966) 14895
(0.0080352 0.00528455 0.0044002) 14896
(0.00845094 0.00528446 0.00440843) 14896
(0.00886123 0.00528345 0.00441306) 14897
(0.00747838 0.0062267 0.00366079) 15134
(0.00875946 0.00643695 0.00312743) 15257
(0.00921852 0.00643583 0.00313043) 15258
(0.00968975 0.00643428 0.00313235) 15259
(0.0101891 0.0064311 0.00313384) 15260
(0.00412391 0.00635078 0.00257948) 13568
(0.00572727 0.00642085 0.00292256) 13511
(0.00613349 0.00643765 0.0029332) 13512
(0.00693864 0.00642723 0.00290465) 13513
(0.00495944 0.00434898 0.00157569) 5709
(0.00495523 0.0043334 0.00153326) 5709
(0.00544822 0.00450419 0.00164028) 14050
(0.00633728 0.00446111 0.00169061) 14052
(0.00713919 0.00444956 0.00174589) 14054
(0.00491205 0.00414434 0.0018529) 14109
(0.00477596 0.00406538 0.00182255) 5649
(0.00436666 0.00417067 0.00176158) 5648
(0.00486088 0.00408428 0.00168622) 5649
(0.00491661 0.00346504 0.00324348) 5409
(0.00502332 0.00342753 0.00325443) 5410
(0.00474239 0.00378655 0.00366169) 14529
(0.00438213 0.00367555 0.00364628) 14528
(0.00488784 0.00361461 0.00360626) 5349
(0.00506278 0.00373105 0.00363686) 14530
(0.00494208 0.00494338 0.00442465) 14829
(0.00697328 0.00527656 0.00436028) 14893
(0.00695157 0.0063403 0.00335222) 15193
(0.00452184 0.00641192 0.00287276) 13509
(0.00478757 0.00647457 0.00299422) 13509
(0.00547681 0.00644525 0.00315822) 15250
(0.00646704 0.00639479 0.00310339) 15252
(0.00714614 0.0063676 0.00309754) 15254
(0.0190919 0.00298617 0.00221625) 32540
(0.0197579 0.00691359 0.00360385) 2019
(0.0113989 0.00652688 0.00421008) 6682
(0.0126022 0.00647724 0.00417611) 6685
(0.0135234 0.00644579 0.00416306) 6687
(0.0142735 0.00642833 0.00415385) 6688
(0.0149037 0.00641896 0.00414689) 6689
(0.0154539 0.00641305 0.00414447) 6690
(0.0159672 0.00641212 0.0041403) 6691
(0.0164897 0.00641177 0.00413418) 6692
(0.0213255 0.00635323 0.00195586) 13482
(0.0234211 0.00651805 0.00220336) 6106
(0.0245108 0.00667341 0.00223859) 6109
(0.020086 0.00666094 0.00417903) 6640
(0.0225301 0.00671261 0.00410138) 1965
(0.0196301 0.00629654 0.00109691) 12459
(0.0191011 0.00363083 0.00466524) 7178
(0.020811 0.0036531 0.0046884) 7181
(0.0190821 0.00335104 0.00162606) 398
(0.0211283 0.00330252 0.00171279) 462
(0.0199424 0.00614024 0.00476848) 12219
(0.0196591 0.00586172 0.00505093) 12579
(0.0196591 0.00586172 0.00505093) 12579
(0.0196591 0.00586172 0.00505093) 12579
(0.0216145 0.00588208 0.00501343) 12583
(0.0216145 0.00588208 0.00501343) 12583
(0.0216145 0.00588208 0.00501343) 12583
(0.0226539 0.00598417 0.00497822) 12345
(0.0194829 0.00400878 0.00490239) 10538
(0.0194258 0.0037572 0.00140811) 12758
(0.0198845 0.00414464 0.00126068) 11499
(0.0226126 0.00405091 0.00124832) 12765
(0.0197155 0.00479664 0.000928619) 11619
(0.0215208 0.00470221 0.000940524) 11623
(0.0187994 0.00595085 0.000992186) 12277
(0.0204558 0.00595724 0.000993276) 12280
(0.0197727 0.0053325 0.000811813) 11859
(0.0217697 0.00527254 0.000815057) 11923
(0.0191554 0.00527308 0.00523933) 11078
(0.0208193 0.00527903 0.0052133) 11441
(0.0218652 0.00539158 0.00522715) 11443
(0.0192274 0.00373913 0.0012024) 12998
(0.0213939 0.00303369 0.00322175) 762
(0.0213939 0.00303369 0.00322175) 762
(0.0213939 0.00303369 0.00322175) 762
(0.0243748 0.00298912 0.00319486) 33984
(0.0248585 0.00292981 0.00321445) 34128
(0.0191057 0.00674543 0.00162255) 2498
(0.0191057 0.00674543 0.00162255) 2498
(0.0191057 0.00674543 0.00162255) 2498
(0.021551 0.0066769 0.00169681) 2503
(0.0229845 0.00666488 0.00165734) 2505
(0.0228727 0.00622122 0.00170325) 13485
(0.00773828 0.00643459 0.00287153) 13515
(0.00773828 0.00643459 0.00287153) 13515
(0.00773828 0.00643459 0.00287153) 13515
(0.00824053 0.00643829 0.00286651) 13516
(0.00869354 0.00644085 0.00286578) 13517
(0.00912989 0.00644312 0.00286825) 13518
(0.00958828 0.00644314 0.0028696) 13519
(0.010087 0.00643962 0.00286987) 13520
(0.00757526 0.00634854 0.00258039) 13575
(0.007957 0.00636305 0.0025739) 13575
(0.0188773 0.00622213 0.00235851) 13657
(0.0193767 0.0062147 0.00235938) 13658
(0.0198964 0.00620341 0.00235768) 13659
(0.0204491 0.00618872 0.00235079) 13660
(0.020984 0.00617592 0.00233829) 13661
(0.00760085 0.00583981 0.00188478) 13755
(0.00802182 0.0058433 0.00186761) 13756
(0.00841863 0.00584102 0.00185424) 13756
(0.00794198 0.00559044 0.00170281) 13815
(0.00831206 0.00559273 0.00169399) 13816
(0.00858288 0.00438786 0.00168814) 14057
(0.00900022 0.00438908 0.00168618) 14058
(0.00942359 0.00438917 0.00168483) 14058
(0.00988146 0.00439125 0.00168603) 14059
(0.00821347 0.00415952 0.00182258) 14116
(0.00860905 0.00415607 0.00181846) 14117
(0.00902391 0.00415704 0.00181628) 14118
(0.0094644 0.00415733 0.00181673) 14118
(0.00994033 0.0041573 0.00182053) 14119
(0.00760694 0.00396103 0.00205047) 14175
(0.00799559 0.00395239 0.00203699) 14175
(0.00834221 0.00394641 0.00202801) 14176
(0.00798991 0.00358403 0.00318467) 14415
(0.0125607 0.00362279 0.00319095) 14425
(0.0131045 0.00363251 0.00318978) 14426
(0.0136089 0.00363382 0.00318812) 14427
(0.00761606 0.00367342 0.00347693) 14475
(0.00761606 0.00367342 0.00347693) 14475
(0.00761606 0.00367342 0.00347693) 14475
(0.00820036 0.00364584 0.00346632) 14476
(0.00868142 0.00362936 0.00346388) 14477
(0.00908406 0.00361566 0.00346602) 14478
(0.00953647 0.00360966 0.00346536) 14479
(0.0100675 0.00361437 0.00346233) 14480
(0.00720852 0.0037539 0.00369285) 14534
(0.00720852 0.0037539 0.00369285) 14534
(0.00720852 0.0037539 0.00369285) 14534
(0.00804638 0.00373307 0.00369012) 14536
(0.00863744 0.00372714 0.00369595) 14537
(0.00910787 0.00372155 0.00370177) 14538
(0.00959011 0.00372011 0.00370597) 14539
(0.010113 0.00372491 0.00370505) 14540
(0.00744166 0.00394614 0.00393327) 14594
(0.00798118 0.00392025 0.00391959) 14595
(0.00845223 0.00391224 0.00392238) 14596
(0.00768144 0.00500985 0.00442369) 14835
(0.00812507 0.0050026 0.00443582) 14836
(0.00854875 0.00499713 0.00444172) 14837
(0.00896615 0.00499421 0.00444506) 14837
(0.00941963 0.00499586 0.00444537) 14838
(0.00756838 0.00528157 0.00438952) 14895
(0.00801276 0.00528457 0.00440015) 14896
(0.00842733 0.00528469 0.00440858) 14896
(0.00883776 0.00528367 0.00441321) 14897
(0.00745813 0.00622659 0.00366037) 15134
(0.00873473 0.0064372 0.00312741) 15257
(0.00919486 0.00643601 0.00313037) 15258
(0.00966612 0.00643443 0.00313232) 15259
(0.0101644 0.00643132 0.00313381) 15260
(0.00400588 0.00635567 0.00259545) 13568
(0.00574236 0.00641622 0.00292143) 13511
(0.00611288 0.00643717 0.00293273) 13512
(0.00691288 0.00642721 0.00290528) 13513
(0.00495558 0.00436098 0.0015829) 5709
(0.00495689 0.00433324 0.00153559) 5709
(0.00540141 0.00450691 0.00163525) 14050
(0.00630359 0.00446082 0.00168798) 14052
(0.00711515 0.00444982 0.00174309) 14054
(0.00492325 0.00415292 0.00185431) 14109
(0.00479855 0.00407074 0.00182088) 5649
(0.00444866 0.00415376 0.00176599) 5648
(0.00479522 0.00409412 0.00170419) 5649
(0.00490492 0.00347035 0.00324671) 5409
(0.00454137 0.00367655 0.00365196) 14529
(0.00485324 0.003618 0.00361025) 5349
(0.00506356 0.0037331 0.00363618) 14530
(0.00488618 0.00494301 0.00442748) 14829
(0.00695563 0.00527483 0.00435904) 14893
(0.00693239 0.00634085 0.00335178) 15193
(0.00452708 0.00641132 0.00287258) 13509
(0.00478472 0.00647384 0.00299132) 13509
(0.00547665 0.00644411 0.00315881) 15250
(0.00644419 0.00639459 0.00310382) 15252
(0.00712002 0.00636933 0.00309787) 15254
(0.0190517 0.00298847 0.00221274) 32540
(0.0197122 0.00691053 0.0036088) 2019
(0.0113541 0.00652899 0.00421179) 6682
(0.0125712 0.00647818 0.00417658) 6685
(0.0134997 0.00644631 0.00416301) 6686
(0.0142546 0.00642838 0.00415383) 6688
(0.0148878 0.00641889 0.00414665) 6689
(0.0154395 0.0064129 0.00414413) 6690
(0.0159527 0.00641189 0.00414002) 6691
(0.016474 0.00641157 0.00413398) 6692
(0.0211241 0.00636835 0.00195778) 13482
(0.0233763 0.00650859 0.0021956) 6106
(0.0244734 0.00667046 0.00224122) 6108
(0.0199796 0.00666092 0.00418386) 6639
(0.0224711 0.00670689 0.00410525) 1964
(0.0196065 0.00630184 0.00110102) 12459
(0.0190443 0.00362973 0.00466498) 7178
(0.0207706 0.00365059 0.00468463) 7181
(0.0190178 0.00335498 0.0016202) 398
(0.0210755 0.00330621 0.0017102) 462
(0.0198772 0.00613773 0.00477089) 12219
(0.0195858 0.00586046 0.00505355) 12579
(0.0195858 0.00586046 0.00505355) 12579
(0.0195858 0.00586046 0.00505355) 12579
(0.0215658 0.00587914 0.00501419) 12583
(0.0215658 0.00587914 0.00501419) 12583
(0.0215658 0.00587914 0.00501419) 12583
(0.0226415 0.00597591 0.00498164) 12345
(0.0194317 0.00400617 0.00489917) 10538
(0.0193221 0.00375906 0.00140476) 12758
(0.022203 0.00372123 0.00142857) 9224
(0.0197798 0.0041487 0.0012587) 11499
(0.0225327 0.0040546 0.00125028) 12765
(0.0196467 0.00480016 0.000927202) 11619
(0.0214767 0.00470797 0.000941341) 11622
(0.0187509 0.00595163 0.000992533) 12277
(0.0204103 0.00595846 0.000995315) 12280
(0.019699 0.00533691 0.000811518) 11859
(0.0217259 0.00527582 0.000817874) 11923
(0.0190974 0.00527283 0.0052411) 11078
(0.0207745 0.00527675 0.00521303) 11441
(0.021856 0.00538145 0.00522591) 11443
(0.0191959 0.00374558 0.00119927) 12998
(0.0212577 0.0030304 0.00322086) 762
(0.0212577 0.0030304 0.00322086) 762
(0.0212577 0.0030304 0.00322086) 762
(0.024328 0.00299267 0.00319501) 33984
(0.0248634 0.00293183 0.00321033) 34128
(0.0190408 0.00674964 0.00162057) 2498
(0.0190408 0.00674964 0.00162057) 2498
(0.0190408 0.00674964 0.00162057) 2498
(0.0214838 0.00667832 0.00169719) 2502
(0.0229584 0.00666649 0.00166223) 2505
(0.0228495 0.00621559 0.00170141) 13485
(0.00771288 0.00643472 0.00287173) 13515
(0.00771288 0.00643472 0.00287173) 13515
(0.00771288 0.00643472 0.00287173) 13515
(0.00821651 0.0064384 0.00286659) 13516
(0.00867008 0.00644094 0.00286567) 13517
(0.00910656 0.00644321 0.00286814) 13518
(0.00956454 0.00644329 0.0028696) 13519
(0.0100619 0.00643988 0.00286988) 13520
(0.00755397 0.00634864 0.00258147) 13575
(0.00793547 0.0063631 0.00257444) 13575
(0.0188554 0.00622239 0.00235846) 13657
(0.0193551 0.00621509 0.00235945) 13658
(0.0198729 0.00620404 0.00235791) 13659
(0.0204251 0.00618939 0.0023513) 13660
(0.0209614 0.00617646 0.002339) 13661
(0.00800026 0.00584331 0.00186773) 13756
(0.00839582 0.00584124 0.00185427) 13756
(0.00791939 0.00559037 0.00170275) 13815
(0.00828893 0.00559257 0.00169376) 13816
(0.00855748 0.00438766 0.00168784) 14057
(0.00897659 0.00438898 0.00168599) 14057
(0.00940034 0.0043891 0.00168469) 14058
(0.00985665 0.00439113 0.00168575) 14059
(0.00819042 0.00415949 0.00182251) 14116
(0.0085845 0.00415573 0.00181829) 14117
(0.00899978 0.00415676 0.00181613) 14117
(0.00944041 0.00415721 0.00181653) 14118
(0.00991491 0.00415714 0.00182023) 14119
(0.00758638 0.00396144 0.0020505) 14175
(0.00797409 0.00395247 0.00203709) 14175
(0.00831845 0.00394616 0.00202801) 14176
(0.00796842 0.00358432 0.00318495) 14415
(0.012536 0.00362219 0.00319101) 14425
(0.0130816 0.00363224 0.00318988) 14426
(0.0135875 0.00363388 0.0031882) 14427
(0.00758736 0.00367476 0.00347775) 14475
(0.00758736 0.00367476 0.00347775) 14475
(0.00758736 0.00367476 0.00347775) 14475
(0.00817544 0.00364672 0.00346668) 14476
(0.00865908 0.00362989 0.00346397) 14477
(0.00906227 0.00361607 0.0034661) 14478
(0.00951121 0.00360961 0.00346561) 14479
(0.0100398 0.00361389 0.00346256) 14480
(0.00716546 0.00375576 0.00369458) 14534
(0.00716546 0.00375576 0.00369458) 14534
(0.00716546 0.00375576 0.00369458) 14534
(0.0080142 0.00373344 0.00369005) 14536
(0.00861166 0.0037273 0.00369588) 14537
(0.00908408 0.00372166 0.00370165) 14538
(0.00956433 0.00371992 0.003706) 14539
(0.0100863 0.00372454 0.00370535) 14540
(0.00741675 0.00394798 0.00393499) 14594
(0.00795584 0.0039208 0.00391997) 14595
(0.00842861 0.00391234 0.0039223) 14596
(0.00766065 0.00501021 0.00442348) 14835
(0.00810303 0.00500285 0.00443579) 14836
(0.00852539 0.00499736 0.00444196) 14837
(0.00894252 0.00499417 0.00444527) 14837
(0.009395 0.00499577 0.00444562) 14838
(0.00754763 0.00528159 0.00438938) 14895
(0.00799038 0.00528459 0.0044001) 14895
(0.00840367 0.00528493 0.00440872) 14896
(0.00881425 0.0052839 0.00441336) 14897
(0.00743784 0.0062265 0.00365991) 15134
(0.00755058 0.00636213 0.00339935) 15195
(0.00870992 0.00643745 0.0031274) 15257
(0.00917112 0.0064362 0.00313032) 15258
(0.00964248 0.00643458 0.00313228) 15259
(0.0101398 0.00643154 0.00313378) 15260
(0.00386578 0.00636119 0.0026254) 13567
(0.00575673 0.00641142 0.0029199) 13511
(0.0060931 0.00643657 0.0029321) 13512
(0.00688683 0.0064273 0.00290577) 13513
(0.00495574 0.00437354 0.00159066) 5709
(0.00495684 0.00433449 0.00153885) 5709
(0.00535473 0.00450934 0.00162974) 14050
(0.00626977 0.0044603 0.00168533) 14052
(0.00709129 0.00445003 0.00174077) 14054
(0.00493189 0.00416087 0.00185619) 14109
(0.00481643 0.00407616 0.00182027) 5649
(0.00450653 0.00413661 0.00177127) 5649
(0.00472849 0.00410864 0.00171752) 5649
(0.00566992 0.00426003 0.00177469) 14111
(0.00489106 0.00347679 0.00325059) 5409
(0.00469826 0.00367776 0.00365473) 14529
(0.00478859 0.00362377 0.00361589) 5289
(0.00506379 0.00373108 0.00363363) 14530
(0.00479471 0.00494179 0.00443167) 14829
(0.00693791 0.00527311 0.00435746) 14893
(0.00691309 0.0063413 0.00335143) 15193
(0.00453246 0.00641068 0.00287276) 13509
(0.00476859 0.00647311 0.00298223) 13509
(0.00546303 0.0064441 0.00315811) 15250
(0.00642133 0.00639439 0.00310429) 15252
(0.00709375 0.00637119 0.00309809) 15254
(0.0190107 0.0029906 0.00220927) 32540
(0.019666 0.00690762 0.00361374) 2019
(0.0113082 0.00653119 0.00421367) 6682
(0.0125397 0.00647915 0.0041771) 6685
(0.0134759 0.00644686 0.00416294) 6686
(0.0142354 0.00642845 0.0041538) 6688
(0.0148718 0.00641882 0.00414643) 6689
(0.0154251 0.00641274 0.00414379) 6690
(0.0159384 0.00641165 0.00413972) 6691
(0.0164583 0.00641137 0.00413377) 6692
(0.020904 0.00638804 0.00196267) 13481
(0.0233315 0.00649912 0.0021877) 13426
(0.0244337 0.00666741 0.00224368) 6108
(0.0198819 0.00666 0.00418928) 6639
(0.0224099 0.00670112 0.00410924) 1964
(0.0195822 0.00630687 0.00110488) 12459
(0.0189864 0.00362854 0.00466497) 7177
(0.0207283 0.00364825 0.00468111) 7181
(0.018955 0.00335907 0.00161404) 397
(0.021021 0.00330977 0.00170763) 462
(0.0198122 0.00613523 0.00477343) 12219
(0.0195132 0.00585918 0.00505623) 12579
(0.0195132 0.00585918 0.00505623) 12579
(0.0195132 0.00585918 0.00505623) 12579
(0.0215153 0.00587635 0.00501494) 12583
(0.0215153 0.00587635 0.00501494) 12583
(0.0215153 0.00587635 0.00501494) 12583
(0.0226296 0.00596778 0.00498478) 12345
(0.019381 0.00400356 0.004896) 10538
(0.0192221 0.00376086 0.00140128) 12758
(0.0221213 0.00372379 0.00142937) 9224
(0.019676 0.00415278 0.00125665) 11499
(0.0224505 0.0040584 0.0012522) 12764
(0.0195784 0.00480383 0.00092567) 11619
(0.0214306 0.0047136 0.000942126) 11622
(0.0187035 0.00595246 0.000992906) 12277
(0.0203638 0.00595951 0.000997185) 12280
(0.0196272 0.00534148 0.000811248) 11859
(0.0216793 0.00527892 0.000820498) 11923
(0.0190393 0.0052726 0.00524297) 11078
(0.0207285 0.0052747 0.00521282) 11441
(0.021845 0.00537186 0.00522467) 11443
(0.0191646 0.00375206 0.00119609) 12998
(0.0211246 0.00302722 0.00321974) 762
(0.0211246 0.00302722 0.00321974) 762
(0.0211246 0.00302722 0.00321974) 762
(0.0242757 0.00299638 0.0031952) 33984
(0.0248668 0.00293404 0.00320652) 34128
(0.0189779 0.00675372 0.00161859) 2497
(0.0214148 0.00667985 0.00169742) 2502
(0.0229302 0.00666789 0.0016668) 2505
(0.0228228 0.00620991 0.0016993) 13485
(0.00768738 0.00643487 0.00287193) 13515
(0.00768738 0.00643487 0.00287193) 13515
(0.00768738 0.00643487 0.00287193) 13515
(0.00819242 0.00643852 0.00286667) 13516
(0.00864659 0.00644102 0.00286557) 13517
(0.00908319 0.00644331 0.00286802) 13518
(0.00954081 0.00644343 0.0028696) 13519
(0.0100369 0.00644013 0.00286989) 13520
(0.00753258 0.00634875 0.00258255) 13575
(0.00791393 0.00636315 0.002575) 13575
(0.0188333 0.00622263 0.00235838) 13657
(0.0193334 0.00621548 0.00235951) 13658
(0.0198495 0.00620465 0.00235814) 13659
(0.0204011 0.00619008 0.00235179) 13660
(0.0209389 0.00617699 0.0023397) 13661
(0.00797876 0.00584331 0.00186786) 13755
(0.00837308 0.00584145 0.00185432) 13756
(0.00789684 0.00559029 0.00170272) 13815
(0.00826583 0.00559241 0.00169354) 13816
(0.00853196 0.00438753 0.00168751) 14057
(0.00895289 0.00438883 0.00168581) 14057
(0.00937709 0.00438903 0.00168455) 14058
(0.00983193 0.00439101 0.00168548) 14059
(0.00816743 0.00415949 0.00182244) 14116
(0.00855995 0.00415535 0.00181816) 14117
(0.00897561 0.0041565 0.00181596) 14117
(0.00941641 0.00415709 0.00181634) 14118
(0.00988956 0.00415698 0.00181993) 14119
(0.0075658 0.00396185 0.00205051) 14175
(0.00795268 0.00395257 0.00203721) 14175
(0.00829476 0.00394592 0.00202801) 14176
(0.00794689 0.00358463 0.00318524) 14415
(0.0125112 0.00362157 0.00319104) 14425
(0.0130588 0.00363197 0.00319002) 14426
(0.0135661 0.00363392 0.00318829) 14427
(0.00755848 0.00367611 0.00347861) 14475
(0.00755848 0.00367611 0.00347861) 14475
(0.00755848 0.00367611 0.00347861) 14475
(0.00815038 0.00364761 0.00346707) 14476
(0.0086367 0.00363043 0.00346405) 14477
(0.00904059 0.0036165 0.00346618) 14478
(0.00948612 0.00360959 0.00346586) 14478
(0.0100121 0.00361343 0.00346278) 14480
(0.00712214 0.0037577 0.00369633) 14534
(0.00712214 0.0037577 0.00369633) 14534
(0.00712214 0.0037577 0.00369633) 14534
(0.00798156 0.00373385 0.00369001) 14535
(0.00858572 0.00372746 0.00369582) 14537
(0.00906031 0.00372177 0.00370151) 14538
(0.0095386 0.00371974 0.003706) 14539
(0.0100596 0.00372417 0.00370564) 14540
(0.00739197 0.0039499 0.00393677) 14594
(0.00793049 0.0039214 0.0039204) 14595
(0.00840494 0.00391246 0.00392225) 14596
(0.00763985 0.00501057 0.00442327) 14835
(0.00808104 0.00500311 0.00443575) 14836
(0.00850201 0.0049976 0.00444219) 14837
(0.00891884 0.00499414 0.00444549) 14837
(0.00937041 0.00499567 0.00444586) 14838
(0.00752702 0.00528159 0.00438924) 14895
(0.00796806 0.0052846 0.00440003) 14895
(0.00837998 0.00528516 0.00440887) 14896
(0.00879068 0.00528412 0.00441352) 14897
(0.00741752 0.00622644 0.00365942) 15134
(0.00752721 0.00636209 0.00339896) 15195
(0.00868504 0.00643771 0.00312738) 15257
(0.00914729 0.00643639 0.00313026) 15258
(0.00961883 0.00643474 0.00313225) 15259
(0.0101152 0.00643176 0.00313374) 15260
(0.00380497 0.00636506 0.00264092) 13567
(0.00577164 0.00640607 0.00291801) 13511
(0.00607399 0.00643587 0.00293135) 13512
(0.00686077 0.0064274 0.00290624) 13513
(0.00495997 0.00438678 0.00159924) 5709
(0.00495579 0.00433705 0.00154263) 5709
(0.00530695 0.0045113 0.00162349) 14050
(0.00623636 0.00445995 0.0016831) 14052
(0.00706722 0.00445013 0.00173835) 14054
(0.0049408 0.00417016 0.00185898) 14109
(0.00483702 0.00408246 0.00181872) 5649
(0.00455166 0.0041195 0.00177683) 5649
(0.00559805 0.00426342 0.0017629) 14111
(0.00488507 0.00347952 0.00325155) 5409
(0.00478399 0.00368272 0.00365239) 14529
(0.00472437 0.00362919 0.00362099) 5289
(0.00506313 0.00372561 0.00363208) 14530
(0.00468865 0.00494032 0.0044364) 14829
(0.0069191 0.00527197 0.00435613) 14893
(0.00689369 0.00634168 0.00335115) 15193
(0.00453266 0.00640929 0.00287202) 13509
(0.0047512 0.00647208 0.00297255) 13509
(0.00544716 0.00644433 0.00315713) 15250
(0.00639847 0.0063942 0.00310476) 15252
(0.00706748 0.00637315 0.00309832) 15254
(0.018969 0.00299255 0.00220581) 32396
(0.0196192 0.00690486 0.00361867) 2019
(0.0112611 0.00653349 0.00421569) 6682
(0.0125077 0.00648015 0.00417766) 6685
(0.0134521 0.00644745 0.00416283) 6686
(0.0142161 0.00642854 0.0041538) 6688
(0.0148558 0.00641874 0.00414623) 6689
(0.0154106 0.00641259 0.00414345) 6690
(0.0159241 0.00641141 0.00413942) 6691
(0.0164427 0.00641116 0.00413359) 6692
(0.0206611 0.00641371 0.00197092) 13481
(0.0232851 0.00648963 0.00217955) 13426
(0.0243921 0.00666424 0.00224595) 6108
(0.0197875 0.00665899 0.00419505) 6639
(0.0223469 0.00669525 0.00411337) 1964
(0.0195571 0.00631165 0.00110849) 12459
(0.0189273 0.00362717 0.0046652) 7177
(0.0206841 0.00364607 0.00467784) 7181
(0.0188936 0.00336325 0.0016076) 397
(0.0209647 0.00331319 0.00170508) 461
(0.0197476 0.00613275 0.00477611) 12219
(0.0194413 0.00585791 0.00505897) 12578
(0.0194413 0.00585791 0.00505897) 12578
(0.0194413 0.00585791 0.00505897) 12578
(0.0214629 0.00587374 0.00501569) 12582
(0.0214629 0.00587374 0.00501569) 12582
(0.0214629 0.00587374 0.00501569) 12582
(0.0226173 0.00595989 0.00498767) 12345
(0.0193305 0.00400097 0.00489291) 10538
(0.0191263 0.00376257 0.00139767) 12758
(0.022038 0.00372635 0.00143011) 9224
(0.0195736 0.00415685 0.00125448) 11499
(0.0223661 0.00406228 0.00125408) 11504
(0.019511 0.00480768 0.000924014) 11619
(0.0213826 0.00471907 0.00094287) 11622
(0.0186572 0.00595331 0.000993325) 12277
(0.0203162 0.0059604 0.000998889) 12280
(0.0195565 0.0053462 0.000810982) 11859
(0.0216298 0.00528186 0.000822923) 11923
(0.0189817 0.00527231 0.00524493) 11077
(0.0206815 0.00527288 0.00521269) 11441
(0.0218321 0.00536278 0.00522341) 11443
(0.0209908 0.00302412 0.00321841) 761
(0.0209908 0.00302412 0.00321841) 761
(0.0209908 0.00302412 0.00321841) 761
(0.0242177 0.00300029 0.00319541) 768
(0.0248687 0.00293641 0.003203) 34128
(0.0189163 0.00675764 0.00161656) 2497
(0.0213446 0.0066815 0.00169752) 2502
(0.0228999 0.0066691 0.00167107) 2505
(0.0227931 0.00620404 0.00169681) 13485
(0.00766182 0.00643501 0.00287211) 13515
(0.00766182 0.00643501 0.00287211) 13515
(0.00766182 0.00643501 0.00287211) 13515
(0.00816828 0.00643864 0.00286677) 13516
(0.00862307 0.00644111 0.00286549) 13517
(0.00905978 0.00644341 0.00286788) 13518
(0.0095171 0.00644358 0.00286959) 13519
(0.0100119 0.00644038 0.00286991) 13520
(0.0075111 0.00634887 0.00258365) 13575
(0.00789237 0.00636321 0.00257559) 13575
(0.0188113 0.00622286 0.00235829) 13657
(0.0193118 0.00621586 0.00235956) 13658
(0.0198262 0.00620526 0.00235836) 13659
(0.0203771 0.00619076 0.00235228) 13660
(0.0209162 0.00617754 0.00234039) 13661
(0.0079573 0.00584331 0.001868) 13755
(0.00835042 0.00584167 0.00185438) 13756
(0.00787431 0.00559022 0.00170269) 13815
(0.00824276 0.00559226 0.00169332) 13816
(0.00739617 0.00467178 0.00162137) 13994
(0.00850638 0.00438739 0.00168718) 14057
(0.0089291 0.00438868 0.00168562) 14057
(0.00935382 0.00438896 0.00168441) 14058
(0.00980729 0.00439088 0.00168522) 14059
(0.00814448 0.0041595 0.00182238) 14116
(0.00853542 0.00415498 0.00181803) 14117
(0.00895138 0.00415622 0.00181579) 14117
(0.0093924 0.00415697 0.00181614) 14118
(0.00986427 0.00415683 0.00181963) 14119
(0.00754516 0.00396227 0.00205051) 14175
(0.00793137 0.00395268 0.00203734) 14175
(0.00827114 0.0039457 0.00202802) 14176
(0.00792533 0.00358493 0.00318553) 14415
(0.0124863 0.00362095 0.00319106) 14424
(0.0130359 0.00363169 0.00319014) 14426
(0.0135446 0.00363394 0.00318839) 14427
(0.00752946 0.00367747 0.0034795) 14475
(0.00752946 0.00367747 0.0034795) 14475
(0.00752946 0.00367747 0.0034795) 14475
(0.00812519 0.00364853 0.00346746) 14476
(0.00861427 0.00363097 0.00346415) 14477
(0.009019 0.00361694 0.00346624) 14478
(0.00946118 0.0036096 0.00346611) 14478
(0.0099845 0.00361297 0.003463) 14479
(0.00707893 0.00375976 0.00369842) 14534
(0.00707893 0.00375976 0.00369842) 14534
(0.00707893 0.00375976 0.00369842) 14534
(0.00794852 0.0037343 0.00369) 14535
(0.00855962 0.00372762 0.00369575) 14537
(0.00903654 0.0037219 0.00370139) 14538
(0.00951295 0.00371958 0.003706) 14539
(0.0100329 0.00372381 0.00370593) 14540
(0.00736731 0.00395189 0.00393861) 14594
(0.00790514 0.00392205 0.00392087) 14595
(0.00838126 0.00391257 0.00392217) 14596
(0.00761902 0.00501094 0.00442306) 14835
(0.00805912 0.00500338 0.00443569) 14836
(0.00847861 0.00499786 0.00444242) 14836
(0.00889513 0.00499412 0.00444572) 14837
(0.00934584 0.00499555 0.0044461) 14838
(0.00750654 0.00528157 0.0043891) 14895
(0.0079458 0.00528462 0.00439995) 14895
(0.00835627 0.00528537 0.00440901) 14896
(0.00876706 0.00528435 0.00441367) 14897
(0.00739716 0.0062264 0.00365887) 15134
(0.00750396 0.00636204 0.00339857) 15195
(0.0086601 0.00643797 0.00312736) 15257
(0.00912337 0.00643659 0.00313022) 15258
(0.00959516 0.00643489 0.00313222) 15259
(0.0100906 0.00643197 0.0031337) 15260
(0.00374877 0.00636931 0.00265722) 13567
(0.00605464 0.00643519 0.00293056) 13512
(0.00683509 0.00642729 0.00290686) 13513
(0.00496965 0.00440044 0.0016087) 5709
(0.00495419 0.00434041 0.00154661) 5709
(0.00525589 0.00451244 0.00161592) 14050
(0.00619882 0.00445971 0.00168112) 14052
(0.00704309 0.00445017 0.00173611) 14054
(0.00494941 0.00418069 0.00186263) 14109
(0.0048526 0.00408821 0.00181856) 5649
(0.00458807 0.00410242 0.00178255) 5649
(0.00552885 0.00426593 0.00174989) 14111
(0.00488278 0.00348007 0.00325048) 5409
(0.00483414 0.00350418 0.00329333) 5409
(0.00483303 0.00369642 0.00365143) 14529
(0.00465245 0.00363493 0.00362542) 14529
(0.00506525 0.00372294 0.00363142) 14530
(0.00456619 0.00493841 0.00444155) 14829
(0.00689933 0.00527137 0.00435509) 14893
(0.00687468 0.00634173 0.00335069) 15193
(0.00452321 0.0064064 0.00286957) 13509
(0.00474698 0.00647113 0.00296891) 13509
(0.00543585 0.00644417 0.00315639) 15250
(0.00637585 0.00639394 0.00310524) 15252
(0.00704127 0.00637548 0.00309848) 15254
(0.0189266 0.00299432 0.00220233) 32396
(0.0195717 0.00690227 0.0036236) 2019
(0.0112132 0.00653584 0.00421779) 6682
(0.0124753 0.00648121 0.00417822) 6684
(0.013428 0.00644807 0.00416272) 6686
(0.0141966 0.00642865 0.00415381) 6688
(0.0148397 0.00641865 0.00414607) 6689
(0.0153963 0.00641244 0.0041431) 6690
(0.0159099 0.00641116 0.00413911) 6691
(0.0164271 0.00641094 0.00413342) 6692
(0.0203888 0.00644836 0.00198299) 13420
(0.0232376 0.00648016 0.00217122) 13426
(0.0243492 0.00666091 0.00224808) 6108
(0.0196952 0.00665781 0.00420125) 6639
(0.0222816 0.00668938 0.0041176) 1964
(0.0195312 0.00631619 0.00111185) 12459
(0.0188665 0.00362554 0.00466558) 7177
(0.020638 0.00364405 0.00467482) 7181
(0.0188335 0.00336732 0.00160105) 397
(0.0209068 0.00331652 0.00170246) 461
(0.0196839 0.00613029 0.00477893) 12219
(0.0193702 0.00585662 0.00506177) 12578
(0.0193702 0.00585662 0.00506177) 12578
(0.0193702 0.00585662 0.00506177) 12578
(0.0214086 0.00587128 0.00501643) 12582
(0.0214086 0.00587128 0.00501643) 12582
(0.0214086 0.00587128 0.00501643) 12582
(0.0226035 0.00595237 0.00499031) 12345
(0.01928 0.00399841 0.0048899) 10538
(0.0190347 0.00376413 0.00139391) 12758
(0.0219524 0.00372884 0.00143079) 9223
(0.0194731 0.00416078 0.0012521) 11498
(0.0222798 0.00406626 0.00125589) 11504
(0.0194443 0.00481169 0.000922233) 11618
(0.0213328 0.00472443 0.000943575) 11622
(0.018612 0.00595419 0.000993797) 12277
(0.0202678 0.00596114 0.00100044) 12280
(0.0194865 0.00535106 0.000810722) 11858
(0.0215777 0.00528468 0.000825161) 11923
(0.0189247 0.00527192 0.00524696) 11077
(0.0206334 0.00527126 0.00521263) 11441
(0.0218175 0.00535421 0.00522217) 11443
(0.0208507 0.00302068 0.0032169) 761
(0.0208507 0.00302068 0.0032169) 761
(0.0208507 0.00302068 0.0032169) 761
(0.0241532 0.00300445 0.00319569) 768
(0.0248692 0.00293891 0.00319976) 34128
(0.0188555 0.00676146 0.00161453) 2497
(0.0212732 0.00668325 0.00169751) 2502
(0.0228686 0.00667021 0.0016752) 2505
(0.022759 0.00619798 0.00169391) 13485
(0.00763616 0.00643516 0.00287229) 13515
(0.00763616 0.00643516 0.00287229) 13515
(0.00763616 0.00643516 0.00287229) 13515
(0.00814409 0.00643877 0.00286689) 13516
(0.00859952 0.0064412 0.00286541) 13517
(0.00903633 0.00644351 0.00286773) 13518
(0.00949338 0.00644372 0.00286959) 13518
(0.00998708 0.00644062 0.00286994) 13519
(0.0074895 0.006349 0.00258475) 13574
(0.0078708 0.00636325 0.0025762) 13575
(0.0187892 0.00622308 0.0023582) 13657
(0.0192902 0.00621623 0.00235962) 13658
(0.0198029 0.00620585 0.00235858) 13659
(0.020353 0.00619144 0.00235276) 13660
(0.0208935 0.00617808 0.00234107) 13661
(0.00793588 0.00584329 0.00186816) 13755
(0.00832783 0.00584187 0.00185444) 13756
(0.00785182 0.00559015 0.00170268) 13815
(0.00821971 0.0055921 0.00169312) 13816
(0.00737317 0.00467162 0.00162148) 13994
(0.00848073 0.00438726 0.00168685) 14056
(0.00890523 0.00438853 0.00168542) 14057
(0.00933055 0.00438889 0.00168427) 14058
(0.00978275 0.00439076 0.00168497) 14059
(0.00812157 0.00415954 0.00182232) 14116
(0.0085109 0.00415462 0.0018179) 14117
(0.0089271 0.00415593 0.00181563) 14117
(0.00936838 0.00415685 0.00181595) 14118
(0.00983908 0.00415668 0.00181934) 14119
(0.00752447 0.00396268 0.00205051) 14175
(0.00791015 0.0039528 0.00203748) 14175
(0.00824763 0.0039455 0.00202802) 14176
(0.00790371 0.00358524 0.00318582) 14415
(0.0124614 0.00362031 0.00319109) 14424
(0.0130129 0.00363139 0.00319026) 14426
(0.0135231 0.00363396 0.00318849) 14427
(0.0075003 0.00367882 0.00348042) 14475
(0.0075003 0.00367882 0.00348042) 14475
(0.0075003 0.00367882 0.00348042) 14475
(0.00809988 0.00364948 0.00346787) 14476
(0.00859178 0.00363153 0.00346426) 14477
(0.0089975 0.00361739 0.0034663) 14477
(0.00943642 0.00360963 0.00346636) 14478
(0.00995693 0.00361253 0.00346323) 14479
(0.00703602 0.00376191 0.00370073) 14534
(0.00703602 0.00376191 0.00370073) 14534
(0.00703602 0.00376191 0.00370073) 14534
(0.00791522 0.00373481 0.00369004) 14535
(0.00853334 0.00372778 0.00369567) 14537
(0.00901277 0.00372205 0.00370127) 14538
(0.00948737 0.00371944 0.00370599) 14538
(0.0100063 0.00372345 0.00370619) 14540
(0.00734278 0.00395397 0.0039405) 14594
(0.0078798 0.00392275 0.00392141) 14595
(0.00835754 0.0039127 0.0039221) 14596
(0.00759817 0.0050113 0.00442286) 14835
(0.00803726 0.00500366 0.00443562) 14836
(0.00845519 0.00499813 0.00444265) 14836
(0.00887136 0.00499413 0.00444595) 14837
(0.00932131 0.00499542 0.00444634) 14838
(0.00748616 0.00528152 0.00438896) 14894
(0.00792361 0.00528463 0.00439987) 14895
(0.00833253 0.00528558 0.00440915) 14896
(0.00874339 0.00528457 0.00441383) 14897
(0.00737675 0.00622637 0.00365832) 15134
(0.00748081 0.00636198 0.00339819) 15194
(0.00863509 0.00643822 0.00312734) 15257
(0.00909938 0.0064368 0.00313017) 15258
(0.00957148 0.00643505 0.00313218) 15259
(0.0100661 0.00643217 0.00313366) 15260
(0.00370208 0.00637184 0.00267086) 13567
(0.00605226 0.0064347 0.00292966) 13512
(0.00680935 0.0064272 0.00290744) 13513
(0.00498464 0.00441421 0.00161907) 5709
(0.00495303 0.00434431 0.00155045) 5709
(0.00520321 0.00451211 0.00160707) 14050
(0.00616124 0.0044596 0.00167927) 14052
(0.00701865 0.00445008 0.00173395) 14054
(0.00495789 0.00419221 0.00186706) 14109
(0.00486299 0.00409309 0.00182009) 5649
(0.00460804 0.00409225 0.00178724) 5649
(0.00547738 0.00426558 0.0017384) 14110
(0.00487557 0.00348336 0.00325155) 5409
(0.0048359 0.00371314 0.00365418) 14529
(0.00455383 0.00364194 0.00363041) 14529
(0.00506666 0.00371701 0.0036292) 14530
(0.00443041 0.00493595 0.00444649) 14828
(0.00687888 0.00527121 0.00435435) 14893
(0.00685516 0.00634178 0.00335034) 15193
(0.00451168 0.00640334 0.00286666) 13509
(0.00473345 0.00646991 0.00296084) 13509
(0.00541784 0.00644466 0.00315483) 15250
(0.00635319 0.00639369 0.00310578) 15252
(0.00701466 0.006378 0.00309867) 15254
(0.0188835 0.00299588 0.00219883) 32396
(0.0195234 0.00689982 0.00362852) 2019
(0.0209398 0.00699668 0.0035107) 2021
(0.0111644 0.00653829 0.00421999) 6682
(0.0124425 0.0064823 0.0041788) 6684
(0.0134037 0.00644874 0.00416259) 6686
(0.0141769 0.00642876 0.00415383) 6688
(0.0148234 0.00641857 0.00414594) 6689
(0.0153818 0.00641229 0.00414275) 6690
(0.0158957 0.00641091 0.00413879) 6691
(0.0164116 0.0064107 0.00413326) 6692
(0.0169454 0.00640756 0.00412902) 6693
(0.0231894 0.00647069 0.00216257) 13426
(0.0243047 0.00665746 0.00225005) 6108
(0.0196045 0.00665645 0.00420792) 6639
(0.022214 0.00668353 0.00412192) 1964
(0.0195048 0.00632049 0.00111501) 12459
(0.0188036 0.00362348 0.00466606) 7177
(0.0205901 0.00364217 0.00467204) 7181
(0.021716 0.00371509 0.00477574) 10543
(0.0187744 0.00337123 0.00159444) 397
(0.0208471 0.00331975 0.00169977) 461
(0.0196212 0.00612783 0.0047819) 12219
(0.0193001 0.00585529 0.00506462) 12578
(0.0193001 0.00585529 0.00506462) 12578
(0.0193001 0.00585529 0.00506462) 12578
(0.0213524 0.00586899 0.00501718) 12582
(0.0213524 0.00586899 0.00501718) 12582
(0.0213524 0.00586899 0.00501718) 12582
(0.0225877 0.00594525 0.00499269) 12585
(0.0192292 0.0039959 0.00488697) 10538
(0.0189474 0.00376559 0.00138999) 12757
(0.0218643 0.00373123 0.00143138) 9223
(0.019374 0.00416427 0.00124944) 11498
(0.0221914 0.00407032 0.00125764) 11504
(0.0193781 0.00481587 0.000920354) 11618
(0.0212812 0.00472965 0.000944225) 11622
(0.0185678 0.00595509 0.000994343) 12277
(0.0202185 0.00596172 0.00100183) 12280
(0.0194168 0.00535604 0.000810464) 11858
(0.0215229 0.00528737 0.000827209) 11923
(0.0224627 0.00518259 0.000757215) 11924
(0.0188688 0.00527138 0.00524905) 11077
(0.0205845 0.00526985 0.00521264) 11441
(0.0218011 0.00534615 0.00522093) 11443
(0.0206981 0.0030165 0.00321525) 761
(0.0206981 0.0030165 0.00321525) 761
(0.0206981 0.0030165 0.00321525) 761
(0.0240817 0.00300878 0.00319605) 768
(0.0248683 0.00294155 0.00319677) 34128
(0.0187951 0.0067651 0.00161246) 2497
(0.021201 0.0066851 0.00169741) 2502
(0.0228364 0.00667122 0.00167921) 2505
(0.0227206 0.00619165 0.00169052) 13485
(0.00761042 0.00643532 0.00287248) 13515
(0.00761042 0.00643532 0.00287248) 13515
(0.00761042 0.00643532 0.00287248) 13515
(0.00811983 0.00643889 0.00286702) 13516
(0.00857595 0.00644128 0.00286534) 13517
(0.00901285 0.00644361 0.00286756) 13518
(0.00946967 0.00644386 0.00286959) 13518
(0.0099623 0.00644085 0.00286998) 13519
(0.0074678 0.00634912 0.00258582) 13574
(0.00784923 0.0063633 0.00257684) 13575
(0.018767 0.00622331 0.0023581) 13657
(0.0192685 0.00621661 0.00235967) 13658
(0.0197798 0.00620645 0.00235879) 13659
(0.0203289 0.00619213 0.00235323) 13660
(0.0208708 0.00617864 0.00234175) 13661
(0.00791451 0.00584327 0.00186832) 13755
(0.0083053 0.00584206 0.0018545) 13756
(0.00782935 0.00559008 0.00170269) 13815
(0.0081967 0.00559196 0.00169292) 13816
(0.00735025 0.00467147 0.00162158) 13994
(0.00845504 0.00438712 0.00168652) 14056
(0.00888126 0.00438839 0.00168522) 14057
(0.00930725 0.00438881 0.00168413) 14058
(0.00975829 0.00439063 0.00168472) 14059
(0.00809871 0.0041596 0.00182227) 14116
(0.00848639 0.00415427 0.00181777) 14116
(0.00890277 0.00415562 0.00181548) 14117
(0.00934436 0.00415673 0.00181574) 14118
(0.00981398 0.00415654 0.00181906) 14119
(0.00750371 0.00396311 0.00205049) 14175
(0.00788902 0.00395295 0.00203763) 14175
(0.00822421 0.00394533 0.00202802) 14176
(0.00788206 0.00358555 0.00318611) 14415
(0.0124364 0.00361967 0.00319111) 14424
(0.0129899 0.00363109 0.00319038) 14425
(0.0135015 0.00363396 0.00318859) 14427
(0.007471 0.00368019 0.00348141) 14474
(0.007471 0.00368019 0.00348141) 14474
(0.007471 0.00368019 0.00348141) 14474
(0.00807446 0.00365045 0.0034683) 14476
(0.00856922 0.0036321 0.00346438) 14477
(0.00897609 0.00361784 0.00346634) 14477
(0.00941182 0.00360969 0.00346659) 14478
(0.00992943 0.00361212 0.00346347) 14479
(0.00699324 0.00376414 0.00370312) 14533
(0.00699324 0.00376414 0.00370312) 14533
(0.00699324 0.00376414 0.00370312) 14533
(0.0078814 0.00373534 0.00369012) 14535
(0.00850687 0.00372795 0.0036956) 14537
(0.008989 0.0037222 0.00370116) 14537
(0.00946186 0.00371931 0.00370597) 14538
(0.00997957 0.00372308 0.00370644) 14539
(0.0073184 0.00395611 0.00394243) 14594
(0.00785446 0.0039235 0.00392198) 14595
(0.00833376 0.00391288 0.00392209) 14596
(0.0075773 0.00501166 0.00442267) 14835
(0.00801546 0.00500396 0.00443554) 14836
(0.00843175 0.00499839 0.00444288) 14836
(0.00884756 0.00499415 0.00444619) 14837
(0.00929683 0.00499531 0.00444657) 14838
(0.00746593 0.00528146 0.00438882) 14894
(0.00790149 0.00528464 0.00439977) 14895
(0.00830876 0.0052858 0.00440927) 14896
(0.00871968 0.00528478 0.004414) 14897
(0.00735627 0.00622634 0.00365777) 15134
(0.00745777 0.00636192 0.0033978) 15194
(0.00861004 0.00643848 0.00312732) 15257
(0.00907529 0.00643701 0.00313013) 15258
(0.00954777 0.00643521 0.00313215) 15259
(0.0100416 0.00643238 0.00313361) 15260
(0.00362548 0.00637656 0.00269195) 13567
(0.00603331 0.00643383 0.00292873) 13512
(0.00678353 0.00642714 0.00290798) 13513
(0.00500436 0.00442821 0.00163086) 14050
(0.00495211 0.00434867 0.00155435) 5709
(0.00514608 0.00450934 0.00159782) 14050
(0.00612467 0.00445968 0.0016776) 14052
(0.00699398 0.00444987 0.00173168) 14053
(0.00496279 0.00420133 0.0018713) 14109
(0.00488587 0.00410274 0.00182108) 14109
(0.00463231 0.00407656 0.00179307) 5649
(0.00541269 0.00426395 0.00172411) 14110
(0.00486385 0.0034893 0.00325513) 5409
(0.00556847 0.00375102 0.00347603) 14471
(0.00483866 0.00371641 0.00365294) 14529
(0.00437914 0.00365293 0.00363625) 14528
(0.00506827 0.00371018 0.00362715) 14530
(0.00427908 0.0049346 0.00445025) 14828
(0.00685824 0.00527108 0.00435345) 14893
(0.00683536 0.00634183 0.00335009) 15193
(0.00449183 0.00639932 0.00286321) 13508
(0.00471842 0.00646839 0.00295233) 13509
(0.00539818 0.00644532 0.00315299) 15250
(0.00633056 0.00639344 0.00310634) 15252
(0.00698843 0.00638055 0.00309889) 15253
(0.0188396 0.00299722 0.00219532) 32396
(0.0194743 0.00689759 0.00363341) 2018
(0.0209067 0.00699061 0.00351693) 2021
(0.011116 0.0065407 0.00422222) 6682
(0.0124094 0.00648343 0.00417941) 6684
(0.0133791 0.00644942 0.00416247) 6686
(0.014157 0.0064289 0.00415386) 6688
(0.014807 0.00641849 0.00414582) 6689
(0.0153673 0.00641216 0.0041424) 6690
(0.0158816 0.00641067 0.00413847) 6691
(0.0163962 0.00641044 0.0041331) 6692
(0.0169289 0.00640748 0.00412883) 6693
(0.0231394 0.00646107 0.00215338) 13426
(0.0242593 0.00665386 0.00225189) 6108
(0.0195146 0.00665505 0.00421498) 6639
(0.0221439 0.0066778 0.00412628) 1964
(0.0194777 0.00632458 0.00111795) 12458
(0.0187384 0.00362081 0.00466656) 7177
(0.0205404 0.00364041 0.00466949) 7181
(0.0217073 0.00370824 0.0047674) 10543
(0.0187162 0.00337494 0.0015878) 397
(0.0207858 0.00332285 0.00169699) 461
(0.0195597 0.00612538 0.00478502) 12219
(0.0192309 0.00585391 0.00506752) 12578
(0.0192309 0.00585391 0.00506752) 12578
(0.0192309 0.00585391 0.00506752) 12578
(0.0212942 0.00586685 0.00501794) 12582
(0.0212942 0.00586685 0.00501794) 12582
(0.0212942 0.00586685 0.00501794) 12582
(0.02257 0.00593853 0.00499485) 12585
(0.02257 0.00593853 0.00499485) 12585
(0.02257 0.00593853 0.00499485) 12585
(0.0191774 0.00399341 0.00488412) 10538
(0.0208661 0.00402457 0.0049404) 10541
(0.0188643 0.00376694 0.00138599) 12757
(0.021774 0.00373353 0.00143188) 9223
(0.019276 0.004167 0.00124645) 11498
(0.0221011 0.00407444 0.0012593) 11504
(0.0193123 0.00482019 0.000918389) 11618
(0.0212279 0.00473476 0.000944811) 11622
(0.0185245 0.00595601 0.000994966) 12277
(0.0201684 0.00596215 0.00100308) 12280
(0.0193476 0.00536112 0.000810209) 11858
(0.0214656 0.00528997 0.00082908) 11922
(0.0224693 0.00519116 0.00076281) 11924
(0.0188142 0.00527062 0.00525118) 11077
(0.0205348 0.00526863 0.00521271) 11441
(0.0217828 0.00533857 0.00521971) 11443
(0.020529 0.00301127 0.00321353) 761
(0.020529 0.00301127 0.00321353) 761
(0.020529 0.00301127 0.00321353) 761
(0.024003 0.00301326 0.00319652) 768
(0.0248657 0.00294429 0.00319406) 34128
(0.0187351 0.00676852 0.00161029) 2497
(0.0211285 0.00668702 0.00169726) 2502
(0.0211285 0.00668702 0.00169726) 2502
(0.0211285 0.00668702 0.00169726) 2502
(0.0228032 0.00667215 0.00168307) 2505
(0.0226775 0.00618507 0.00168661) 13485
(0.00758459 0.00643548 0.00287268) 13515
(0.00758459 0.00643548 0.00287268) 13515
(0.00758459 0.00643548 0.00287268) 13515
(0.00809551 0.00643902 0.00286716) 13516
(0.00855235 0.00644137 0.00286529) 13517
(0.00898933 0.00644371 0.00286738) 13517
(0.00944595 0.00644401 0.00286958) 13518
(0.00993761 0.00644108 0.00287004) 13519
(0.00744597 0.00634924 0.00258687) 13574
(0.00782764 0.00636335 0.00257751) 13575
(0.0187447 0.00622353 0.00235799) 13657
(0.0192469 0.00621698 0.00235972) 13658
(0.0197567 0.00620703 0.002359) 13659
(0.0203048 0.00619281 0.00235368) 13660
(0.020848 0.0061792 0.00234242) 13661
(0.00789318 0.00584324 0.00186849) 13755
(0.00828283 0.00584222 0.00185456) 13756
(0.00780691 0.00559002 0.00170271) 13815
(0.00817372 0.00559182 0.00169275) 13816
(0.0073274 0.00467131 0.00162169) 13994
(0.00885721 0.00438825 0.001685) 14057
(0.00928393 0.00438874 0.00168399) 14058
(0.00973391 0.00439051 0.00168449) 14059
(0.00807588 0.00415967 0.00182223) 14116
(0.00846191 0.00415394 0.00181764) 14116
(0.00887838 0.00415529 0.00181533) 14117
(0.00932031 0.0041566 0.00181554) 14118
(0.00978897 0.00415641 0.00181878) 14119
(0.00748289 0.00396353 0.00205047) 14174
(0.00786796 0.0039531 0.00203778) 14175
(0.00820089 0.00394519 0.00202801) 14176
(0.00786034 0.00358587 0.0031864) 14415
(0.0124114 0.00361901 0.00319114) 14424
(0.0129668 0.00363076 0.00319049) 14425
(0.0134799 0.00363396 0.0031887) 14426
(0.0139542 0.00363007 0.00318817) 14427
(0.00744161 0.00368157 0.00348245) 14474
(0.00744161 0.00368157 0.00348245) 14474
(0.00744161 0.00368157 0.00348245) 14474
(0.00804891 0.00365144 0.00346874) 14476
(0.0085466 0.00363268 0.00346451) 14477
(0.00895476 0.00361831 0.00346637) 14477
(0.0093874 0.00360977 0.00346681) 14478
(0.00990198 0.00361171 0.00346373) 14479
(0.00695082 0.00376645 0.00370558) 14533
(0.00695082 0.00376645 0.00370558) 14533
(0.00695082 0.00376645 0.00370558) 14533
(0.00784726 0.00373594 0.00369024) 14535
(0.0084802 0.00372812 0.00369552) 14536
(0.00896522 0.00372237 0.00370106) 14537
(0.00943643 0.0037192 0.00370595) 14538
(0.00995289 0.00372273 0.00370667) 14539
(0.00729411 0.00395832 0.0039444) 14594
(0.00782913 0.0039243 0.00392259) 14595
(0.00830994 0.00391309 0.00392211) 14596
(0.00755637 0.00501192 0.00442251) 14835
(0.00799373 0.0050043 0.00443544) 14835
(0.00840831 0.00499866 0.0044431) 14836
(0.00882372 0.00499419 0.00444644) 14837
(0.00927239 0.00499522 0.00444681) 14838
(0.00744572 0.00528148 0.00438867) 14894
(0.00787949 0.00528462 0.00439967) 14895
(0.00828498 0.00528602 0.00440939) 14896
(0.00869592 0.00528498 0.00441417) 14897
(0.00733575 0.0062263 0.00365721) 15134
(0.00743483 0.00636186 0.0033974) 15194
(0.00765797 0.00642683 0.00311235) 15255
(0.00765797 0.00642683 0.00311235) 15255
(0.00765797 0.00642683 0.00311235) 15255
(0.00858496 0.00643873 0.0031273) 15257
(0.00905111 0.00643723 0.00313011) 15258
(0.00952403 0.00643537 0.00313211) 15259
(0.0100172 0.00643258 0.00313355) 15260
(0.00354771 0.00638163 0.00271129) 13567
(0.00601464 0.00643294 0.00292769) 13512
(0.00675776 0.00642706 0.00290854) 13513
(0.00502463 0.00444189 0.00164414) 14050
(0.00495144 0.00435313 0.00155796) 5709
(0.00508941 0.00450377 0.00158881) 5710
(0.00608894 0.00445989 0.00167605) 14052
(0.00696912 0.00444954 0.00172929) 14053
(0.00496398 0.00420953 0.00187661) 14109
(0.00490718 0.00411281 0.00182325) 14109
(0.0046527 0.00406386 0.00179714) 5649
(0.00536804 0.00425937 0.00171292) 14050
(0.00485136 0.00349603 0.00325987) 5409
(0.00553938 0.00371667 0.00342289) 14471
(0.00483923 0.00372007 0.0036522) 14529
(0.00506992 0.00370252 0.00362546) 14530
(0.00507492 0.00377214 0.00366026) 14530
(0.00246033 0.00501078 0.00446183) 14824
(0.00411199 0.00493661 0.00445239) 14828
(0.00683793 0.00527007 0.00435156) 14893
(0.00681541 0.00634182 0.00334989) 15193
(0.00444803 0.00639315 0.00285791) 13508
(0.0047058 0.0064668 0.00294486) 13509
(0.00537708 0.00644616 0.00315086) 15250
(0.00630207 0.00639466 0.00310788) 15252
(0.00696241 0.0063829 0.00309916) 15253
(0.0187951 0.0029983 0.00219178) 32396
(0.0194238 0.00689565 0.00363824) 2018
(0.0208721 0.00698464 0.00352308) 2021
(0.0110669 0.00654324 0.00422456) 6682
(0.0123758 0.0064846 0.00418004) 6684
(0.0133542 0.00645012 0.00416234) 6686
(0.0141371 0.00642903 0.00415389) 6688
(0.0147905 0.00641841 0.00414574) 6689
(0.0153527 0.00641203 0.00414206) 6690
(0.0158675 0.00641043 0.00413813) 6691
(0.0163808 0.00641018 0.00413295) 6692
(0.0169124 0.0064074 0.00412864) 6693
(0.023088 0.00645153 0.00214385) 13426
(0.0242132 0.00665005 0.00225354) 6108
(0.0194251 0.00665357 0.00422242) 6638
(0.0220716 0.00667224 0.00413062) 1964
(0.01945 0.00632847 0.0011207) 12458
(0.0186711 0.00361732 0.00466695) 7177
(0.020489 0.00363876 0.00466717) 7180
(0.0216967 0.00370181 0.00475941) 10543
(0.0186586 0.0033784 0.0015812) 397
(0.0207229 0.00332584 0.00169412) 461
(0.0194991 0.00612294 0.0047883) 12218
(0.0191626 0.00585251 0.00507048) 12578
(0.0191626 0.00585251 0.00507048) 12578
(0.0191626 0.00585251 0.00507048) 12578
(0.0212341 0.00586486 0.00501874) 12582
(0.0212341 0.00586486 0.00501874) 12582
(0.0212341 0.00586486 0.00501874) 12582
(0.0225504 0.00593217 0.00499678) 12585
(0.0225504 0.00593217 0.00499678) 12585
(0.0225504 0.00593217 0.00499678) 12585
(0.0191245 0.00399094 0.00488133) 10538
(0.020815 0.00402339 0.0049369) 10541
(0.0187844 0.00376815 0.00138198) 12757
(0.0216816 0.00373575 0.00143228) 9223
(0.0191784 0.00416858 0.00124316) 11498
(0.0220091 0.00407865 0.00126087) 11504
(0.0192467 0.00482457 0.000916347) 11618
(0.0211729 0.00473975 0.000945332) 11622
(0.0184819 0.00595693 0.000995701) 12276
(0.0201177 0.00596244 0.00100418) 12280
(0.0192774 0.00536625 0.00080988) 11858
(0.0214056 0.00529248 0.000830763) 11922
(0.022473 0.0051992 0.000768259) 11924
(0.0204845 0.0052676 0.00521285) 11440
(0.0217628 0.00533146 0.0052185) 11443
(0.0203365 0.00300427 0.00321188) 760
(0.0203365 0.00300427 0.00321188) 760
(0.0203365 0.00300427 0.00321188) 760
(0.0239166 0.0030178 0.00319715) 767
(0.0248615 0.00294713 0.00319161) 34128
(0.0186753 0.0067717 0.00160803) 2497
(0.0210558 0.00668897 0.00169705) 2502
(0.0210558 0.00668897 0.00169705) 2502
(0.0210558 0.00668897 0.00169705) 2502
(0.0227685 0.00667301 0.00168678) 2505
(0.0226289 0.00617827 0.00168224) 13485
(0.00755864 0.00643565 0.00287291) 13515
(0.00755864 0.00643565 0.00287291) 13515
(0.00755864 0.00643565 0.00287291) 13515
(0.00807113 0.00643913 0.00286727) 13516
(0.00852873 0.00644146 0.00286524) 13517
(0.00896577 0.00644381 0.00286719) 13517
(0.00942223 0.00644415 0.00286957) 13518
(0.00991298 0.00644131 0.00287011) 13519
(0.00742403 0.00634936 0.00258786) 13574
(0.00780606 0.00636339 0.00257819) 13575
(0.0187224 0.00622374 0.00235788) 13657
(0.0192253 0.00621734 0.00235977) 13658
(0.0197338 0.0062076 0.0023592) 13659
(0.0202807 0.0061935 0.00235413) 13660
(0.0208251 0.00617977 0.00234309) 13661
(0.00787189 0.0058432 0.00186868) 13755
(0.00826042 0.00584238 0.00185462) 13756
(0.00778449 0.00558996 0.00170274) 13815
(0.00815078 0.0055917 0.00169258) 13816
(0.00730461 0.00467115 0.00162179) 13994
(0.00883305 0.0043881 0.00168478) 14057
(0.00926058 0.00438867 0.00168385) 14058
(0.0097096 0.00439038 0.00168426) 14059
(0.0080531 0.00415977 0.00182219) 14116
(0.00843747 0.00415363 0.00181751) 14116
(0.00885395 0.00415495 0.00181519) 14117
(0.00929625 0.00415648 0.00181534) 14118
(0.00976403 0.00415628 0.0018185) 14119
(0.007462 0.00396395 0.00205044) 14174
(0.00784699 0.00395327 0.00203795) 14175
(0.00817765 0.00394507 0.002028) 14176
(0.00783856 0.00358619 0.00318668) 14415
(0.0123863 0.00361835 0.00319116) 14424
(0.0129437 0.00363043 0.0031906) 14425
(0.0134582 0.00363394 0.00318882) 14426
(0.0139342 0.00363032 0.00318824) 14427
(0.00741216 0.00368294 0.00348353) 14474
(0.00741216 0.00368294 0.00348353) 14474
(0.00741216 0.00368294 0.00348353) 14474
(0.00802325 0.00365245 0.0034692) 14476
(0.00852391 0.00363327 0.00346465) 14477
(0.00893353 0.0036188 0.00346642) 14477
(0.0093631 0.00360984 0.00346697) 14478
(0.00987462 0.00361134 0.00346402) 14479
(0.00690885 0.00376882 0.0037081) 14533
(0.00690885 0.00376882 0.0037081) 14533
(0.00690885 0.00376882 0.0037081) 14533
(0.00781269 0.00373658 0.00369041) 14535
(0.00845333 0.00372829 0.00369544) 14536
(0.00894141 0.00372253 0.00370094) 14537
(0.00941109 0.00371915 0.00370598) 14538
(0.00992622 0.00372235 0.00370685) 14539
(0.00726989 0.0039606 0.00394643) 14594
(0.00780381 0.00392515 0.00392322) 14595
(0.00828608 0.00391332 0.00392215) 14596
(0.00753538 0.00501215 0.00442236) 14835
(0.00797207 0.00500465 0.00443532) 14835
(0.00838486 0.00499893 0.00444331) 14836
(0.00879983 0.00499424 0.00444669) 14837
(0.00924797 0.00499512 0.00444704) 14838
(0.00742552 0.00528152 0.0043885) 14894
(0.00785757 0.00528459 0.00439956) 14895
(0.00826119 0.00528624 0.0044095) 14896
(0.00867212 0.00528517 0.00441435) 14897
(0.00731516 0.00622626 0.00365667) 15134
(0.00741199 0.00636179 0.00339698) 15194
(0.00763386 0.00642678 0.00311203) 15255
(0.00763386 0.00642678 0.00311203) 15255
(0.00763386 0.00642678 0.00311203) 15255
(0.00855985 0.00643897 0.00312727) 15257
(0.00902684 0.00643745 0.00313008) 15258
(0.00950027 0.00643554 0.00313208) 15259
(0.00999279 0.00643278 0.00313349) 15259
(0.00348473 0.00638677 0.00272781) 13566
(0.00460708 0.00632512 0.00266268) 13569
(0.00599836 0.00643158 0.0029264) 13511
(0.00673246 0.00642704 0.00290903) 13513
(0.00504491 0.00445408 0.00165847) 14050
(0.00495106 0.00435806 0.00156166) 5709
(0.00503882 0.0044952 0.00158046) 5710
(0.00605379 0.00446024 0.00167458) 14052
(0.00694407 0.00444911 0.00172683) 14053
(0.00496519 0.00421923 0.0018829) 14109
(0.00492186 0.00412121 0.0018269) 14109
(0.00466803 0.00405731 0.00180031) 5649
(0.0053125 0.00425168 0.00169992) 5650
(0.00484078 0.00350144 0.00326376) 5409
(0.00547404 0.00368402 0.00337257) 14470
(0.00483583 0.00372604 0.00365318) 14529
(0.00507078 0.00369511 0.00362432) 14530
(0.00506588 0.00374561 0.00365538) 14530
(0.0027626 0.00502115 0.00445555) 14825
(0.00393699 0.00494219 0.00445258) 14827
(0.00681704 0.00526891 0.00434948) 14893
(0.00679581 0.00634133 0.00334936) 15193
(0.00438388 0.00638586 0.00285258) 13508
(0.00470215 0.00646555 0.00294183) 13509
(0.00536312 0.00644637 0.00314945) 15250
(0.0061566 0.00641621 0.00314145) 15252
(0.00693927 0.00638223 0.00309713) 15253
(0.0187499 0.00299912 0.00218823) 32396
(0.0193716 0.00689409 0.00364292) 2018
(0.0208361 0.00697879 0.00352915) 2021
(0.0110168 0.0065459 0.00422702) 6682
(0.0123418 0.00648581 0.00418069) 6684
(0.0133291 0.00645086 0.00416222) 6686
(0.014117 0.00642919 0.00415393) 6688
(0.0147737 0.00641832 0.00414569) 6689
(0.0153381 0.0064119 0.00414174) 6690
(0.0158535 0.00641018 0.0041378) 6691
(0.0163655 0.00640993 0.00413278) 6692
(0.0168958 0.00640733 0.00412845) 6693
(0.0230343 0.00644172 0.00213346) 13426
(0.0241667 0.00664602 0.00225498) 6108
(0.0193353 0.006652 0.00423027) 6638
(0.0219965 0.00666698 0.00413485) 1963
(0.0194219 0.00633221 0.00112328) 12458
(0.0186026 0.00361289 0.00466705) 7177
(0.0204361 0.00363721 0.00466506) 7180
(0.0216842 0.00369577 0.00475177) 10543
(0.0186012 0.00338155 0.00157467) 397
(0.0206586 0.00332871 0.00169116) 461
(0.0194391 0.00612053 0.00479173) 12218
(0.0190952 0.00585111 0.00507348) 12578
(0.0190952 0.00585111 0.00507348) 12578
(0.0190952 0.00585111 0.00507348) 12578
(0.0211721 0.00586298 0.00501958) 12582
(0.0211721 0.00586298 0.00501958) 12582
(0.0211721 0.00586298 0.00501958) 12582
(0.0225289 0.00592616 0.00499851) 12585
(0.0225289 0.00592616 0.00499851) 12585
(0.0225289 0.00592616 0.00499851) 12585
(0.0190699 0.00398845 0.00487859) 10538
(0.0207628 0.00402222 0.00493349) 10541
(0.018707 0.00376913 0.00137804) 12757
(0.021587 0.00373785 0.00143255) 9223
(0.019081 0.00416877 0.00123969) 11498
(0.0219154 0.00408292 0.00126234) 11503
(0.0191804 0.00482881 0.000914232) 11618
(0.0211164 0.00474463 0.000945784) 11622
(0.0184399 0.00595789 0.000996573) 12276
(0.0200663 0.00596262 0.00100514) 12280
(0.0192056 0.00537139 0.000809441) 11858
(0.0213434 0.00529492 0.000832268) 11922
(0.0224731 0.00520668 0.000773521) 11924
(0.0204333 0.00526674 0.00521304) 11440
(0.0217411 0.0053248 0.00521731) 11443
(0.0201187 0.00299471 0.00321039) 32832
(0.0201187 0.00299471 0.00321039) 32832
(0.0201187 0.00299471 0.00321039) 32832
(0.0238221 0.00302229 0.00319796) 767
(0.0248559 0.00295005 0.00318939) 34128
(0.0209816 0.00669104 0.00169663) 2501
(0.0209816 0.00669104 0.00169663) 2501
(0.0209816 0.00669104 0.00169663) 2501
(0.0227319 0.00667376 0.00169025) 2505
(0.0234341 0.00661392 0.00157062) 6766
(0.0225746 0.00617105 0.00167715) 13485
(0.00753258 0.00643582 0.00287314) 13515
(0.00753258 0.00643582 0.00287314) 13515
(0.00753258 0.00643582 0.00287314) 13515
(0.00804669 0.00643925 0.0028674) 13516
(0.0085051 0.00644154 0.0028652) 13517
(0.00894219 0.00644392 0.00286699) 13517
(0.00939849 0.00644429 0.00286956) 13518
(0.00988838 0.00644153 0.00287014) 13519
(0.00740198 0.00634948 0.00258883) 13574
(0.00778446 0.00636343 0.0025789) 13575
(0.0187 0.00622396 0.00235777) 13657
(0.0192036 0.0062177 0.00235982) 13658
(0.0197109 0.00620815 0.00235939) 13659
(0.0202566 0.00619419 0.00235456) 13660
(0.0208022 0.00618036 0.00234375) 13661
(0.00785063 0.00584316 0.00186888) 13755
(0.00823807 0.00584251 0.00185468) 13756
(0.0077621 0.00558991 0.00170279) 13815
(0.00812787 0.00559157 0.00169243) 13816
(0.00728188 0.00467099 0.00162189) 13994
(0.00880881 0.00438796 0.00168455) 14057
(0.0092372 0.00438859 0.00168371) 14058
(0.00968537 0.00439025 0.00168405) 14059
(0.00803036 0.00415988 0.00182216) 14116
(0.00841306 0.00415333 0.00181739) 14116
(0.00882946 0.0041546 0.00181506) 14117
(0.00927216 0.00415635 0.00181514) 14118
(0.00973917 0.00415615 0.00181823) 14119
(0.00744103 0.00396437 0.00205041) 14174
(0.00782608 0.00395346 0.00203812) 14175
(0.00815451 0.00394496 0.002028) 14176
(0.00781672 0.0035865 0.00318695) 14415
(0.0123612 0.00361769 0.00319119) 14424
(0.0129205 0.00363008 0.00319071) 14425
(0.0134364 0.0036339 0.00318894) 14426
(0.0139141 0.00363057 0.00318831) 14427
(0.00738263 0.00368432 0.00348468) 14474
(0.00738263 0.00368432 0.00348468) 14474
(0.00738263 0.00368432 0.00348468) 14474
(0.00799747 0.00365348 0.00346968) 14475
(0.00850114 0.00363388 0.0034648) 14477
(0.00891236 0.0036193 0.00346647) 14477
(0.00933897 0.00360995 0.00346712) 14478
(0.00984733 0.00361098 0.00346432) 14479
(0.00686735 0.00377124 0.00371076) 14533
(0.00686735 0.00377124 0.00371076) 14533
(0.00686735 0.00377124 0.00371076) 14533
(0.00777777 0.00373727 0.00369064) 14535
(0.00842625 0.00372848 0.00369537) 14536
(0.00891757 0.0037227 0.00370083) 14537
(0.00938587 0.00371911 0.00370599) 14538
(0.00989956 0.00372199 0.00370702) 14539
(0.00724574 0.00396297 0.00394852) 14594
(0.00777851 0.00392605 0.0039239) 14595
(0.00826219 0.00391356 0.00392219) 14596
(0.00751432 0.00501235 0.00442223) 14835
(0.00795047 0.00500501 0.00443519) 14835
(0.0083614 0.0049992 0.00444352) 14836
(0.0087759 0.00499431 0.00444695) 14837
(0.00922356 0.00499503 0.00444728) 14838
(0.00740533 0.00528156 0.00438833) 14894
(0.00783575 0.00528455 0.00439944) 14895
(0.00823741 0.00528647 0.0044096) 14896
(0.00864826 0.00528535 0.00441453) 14897
(0.00738924 0.00636171 0.0033966) 15194
(0.00760976 0.00642673 0.00311171) 15255
(0.00760976 0.00642673 0.00311171) 15255
(0.00760976 0.00642673 0.00311171) 15255
(0.00853473 0.00643921 0.00312725) 15257
(0.00900248 0.00643768 0.00313006) 15258
(0.00947647 0.00643571 0.00313204) 15258
(0.00996842 0.00643298 0.00313344) 15259
(0.00337222 0.00639721 0.00275325) 13506
(0.00456126 0.00633005 0.00264407) 13569
(0.00600272 0.00642969 0.00292527) 13512
(0.00670675 0.0064274 0.00290917) 13513
(0.00506289 0.00446303 0.00167225) 14050
(0.00495083 0.00436365 0.00156559) 5709
(0.00499854 0.00448394 0.00157315) 5709
(0.00601908 0.0044607 0.00167311) 14052
(0.00691887 0.00444857 0.00172433) 14053
(0.00496566 0.00422918 0.00188962) 14109
(0.00493382 0.00412914 0.00183058) 14109
(0.00469378 0.00405096 0.00180072) 5649
(0.00463238 0.00409138 0.00175579) 5649
(0.00527728 0.00424207 0.00169117) 5650
(0.00483244 0.00350633 0.00326761) 5409
(0.00537698 0.00363043 0.00332914) 14470
(0.00482601 0.00373529 0.00365673) 14529
(0.00506856 0.00368452 0.00362344) 14530
(0.00506508 0.00373535 0.00365354) 14530
(0.00309596 0.00502918 0.00444776) 14826
(0.00376014 0.00494992 0.00445202) 14827
(0.00543306 0.00495629 0.00440568) 14830
(0.00679553 0.00526787 0.00434753) 14893
(0.00677582 0.00634099 0.00334903) 15193
(0.00432424 0.00637796 0.00284909) 13508
(0.00469392 0.00646388 0.00293689) 13509
(0.00534269 0.00644722 0.00314712) 15250
(0.00609674 0.00642146 0.00315927) 15252
(0.00691499 0.0063829 0.00309515) 15253
(0.0187042 0.0029997 0.0021847) 32396
(0.0193171 0.00689298 0.00364738) 2018
(0.0207989 0.00697307 0.00353515) 2021
(0.0109664 0.00654861 0.00422957) 6681
(0.0123075 0.00648706 0.00418135) 6684
(0.0133037 0.00645161 0.0041621) 6686
(0.0140966 0.00642937 0.00415398) 6688
(0.0147569 0.00641823 0.00414566) 6689
(0.0153235 0.00641177 0.00414143) 6690
(0.0158394 0.00640995 0.00413746) 6691
(0.0163502 0.00640967 0.00413261) 6692
(0.0168793 0.00640724 0.00412828) 6693
(0.0229783 0.00643181 0.00212241) 13425
(0.0241204 0.00664171 0.00225619) 6108
(0.019245 0.00665034 0.00423846) 6638
(0.0219185 0.00666218 0.00413889) 1963
(0.0193933 0.00633581 0.00112573) 12458
(0.0185346 0.00360755 0.0046667) 7177
(0.0203818 0.00363573 0.00466314) 7180
(0.0216697 0.00369011 0.00474447) 10543
(0.0185443 0.00338447 0.00156835) 397
(0.020593 0.00333146 0.00168812) 461
(0.0193795 0.00611811 0.00479534) 12218
(0.0190287 0.00584971 0.00507651) 12578
(0.0190287 0.00584971 0.00507651) 12578
(0.0190287 0.00584971 0.00507651) 12578
(0.0211083 0.00586122 0.00502048) 12582
(0.0211083 0.00586122 0.00502048) 12582
(0.0211083 0.00586122 0.00502048) 12582
(0.0225053 0.00592047 0.00500007) 12585
(0.0225053 0.00592047 0.00500007) 12585
(0.0225053 0.00592047 0.00500007) 12585
(0.0190132 0.00398591 0.00487587) 10538
(0.0207095 0.00402106 0.00493018) 10541
(0.0186322 0.00377001 0.0013743) 12757
(0.0214906 0.00373988 0.0014327) 9222
(0.018983 0.00416749 0.0012361) 11497
(0.0218201 0.00408723 0.00126367) 11503
(0.0191125 0.00483273 0.000912048) 11618
(0.0210582 0.0047494 0.000946155) 11622
(0.0200144 0.00596275 0.00100601) 12280
(0.019132 0.00537652 0.000808901) 11858
(0.0212788 0.0052973 0.000833591) 11922
(0.02247 0.00521368 0.000778616) 11924
(0.0203812 0.00526599 0.00521331) 11440
(0.0217175 0.00531857 0.00521614) 11443
(0.0198764 0.0029819 0.00320914) 32688
(0.0198764 0.0029819 0.00320914) 32688
(0.0198764 0.0029819 0.00320914) 32688
(0.0237197 0.00302662 0.00319897) 767
(0.0248486 0.00295302 0.0031874) 34128
(0.020906 0.00669323 0.00169598) 2501
(0.020906 0.00669323 0.00169598) 2501
(0.020906 0.00669323 0.00169598) 2501
(0.0226931 0.00667444 0.00169348) 2505
(0.0234526 0.00662244 0.00158295) 2506
(0.0225128 0.0061638 0.00167183) 13485
(0.0075065 0.00643599 0.00287335) 13515
(0.0075065 0.00643599 0.00287335) 13515
(0.0075065 0.00643599 0.00287335) 13515
(0.0080222 0.00643937 0.00286757) 13516
(0.00848145 0.00644163 0.00286518) 13516
(0.0089186 0.00644402 0.00286681) 13517
(0.00937475 0.00644443 0.00286954) 13518
(0.00986379 0.00644175 0.00287014) 13519
(0.00737985 0.00634962 0.00258981) 13574
(0.00776286 0.00636347 0.00257962) 13575
(0.0186776 0.00622417 0.00235766) 13657
(0.0191819 0.00621806 0.00235987) 13658
(0.0196881 0.0062087 0.00235957) 13659
(0.0202324 0.00619487 0.00235497) 13660
(0.0207792 0.00618095 0.00234441) 13661
(0.00782941 0.00584311 0.00186908) 13755
(0.00821579 0.00584264 0.00185475) 13756
(0.00773973 0.00558986 0.00170286) 13815
(0.00810501 0.00559146 0.00169229) 13816
(0.00725922 0.00467083 0.00162198) 13994
(0.00878447 0.00438782 0.00168431) 14057
(0.00921378 0.00438851 0.00168356) 14058
(0.00966121 0.00439012 0.00168384) 14059
(0.00800765 0.00416001 0.00182214) 14116
(0.0083887 0.00415304 0.00181727) 14116
(0.00880494 0.00415423 0.00181493) 14117
(0.00924804 0.00415621 0.00181493) 14118
(0.00971436 0.00415603 0.00181796) 14119
(0.00741998 0.00396478 0.00205037) 14174
(0.00780524 0.00395366 0.00203829) 14175
(0.00813148 0.00394487 0.002028) 14176
(0.00779482 0.00358681 0.00318723) 14415
(0.012336 0.00361702 0.00319121) 14424
(0.0128972 0.00362972 0.00319081) 14425
(0.0134146 0.00363386 0.00318906) 14426
(0.0138939 0.0036308 0.00318838) 14427
(0.00797159 0.00365453 0.00347019) 14475
(0.00847829 0.0036345 0.00346497) 14476
(0.00889125 0.00361981 0.00346651) 14477
(0.00931502 0.00361007 0.00346726) 14478
(0.00982012 0.00361065 0.00346462) 14479
(0.00682631 0.00377375 0.00371358) 14533
(0.00682631 0.00377375 0.00371358) 14533
(0.00682631 0.00377375 0.00371358) 14533
(0.00774244 0.00373803 0.00369092) 14535
(0.00839894 0.00372868 0.0036953) 14536
(0.0088937 0.00372288 0.00370072) 14537
(0.00936076 0.00371908 0.003706) 14538
(0.00987291 0.00372163 0.00370718) 14539
(0.00722164 0.00396542 0.00395066) 14594
(0.00775323 0.003927 0.00392461) 14595
(0.00823826 0.00391382 0.00392224) 14596
(0.00749319 0.00501256 0.00442211) 14834
(0.00792892 0.00500534 0.00443505) 14835
(0.00833796 0.00499948 0.00444372) 14836
(0.00875193 0.0049944 0.00444721) 14837
(0.00919916 0.00499493 0.00444751) 14838
(0.00738516 0.0052816 0.00438816) 14894
(0.00781402 0.00528451 0.00439932) 14895
(0.00821364 0.00528669 0.00440968) 14896
(0.00862436 0.00528554 0.00441471) 14897
(0.00736658 0.00636162 0.00339622) 15194
(0.00758568 0.00642669 0.00311141) 15255
(0.00758568 0.00642669 0.00311141) 15255
(0.00758568 0.00642669 0.00311141) 15255
(0.00850961 0.00643945 0.00312722) 15257
(0.00897804 0.00643792 0.00313003) 15257
(0.00945263 0.00643588 0.003132) 15258
(0.00994408 0.00643317 0.00313343) 15259
(-1.32482e-05 0.00646788 0.00291161) 35709
(0.0031069 0.0064218 0.00279299) 13506
(0.00450593 0.00633475 0.00262526) 13569
(0.005987 0.0064282 0.00292417) 13511
(0.00668162 0.00642738 0.00290957) 13513
(0.00495061 0.00436927 0.0015692) 5709
(0.0049696 0.00447012 0.00156686) 5709
(0.00598451 0.00446132 0.00167166) 14051
(0.00689335 0.00444788 0.00172175) 14053
(0.00496555 0.00423846 0.00189643) 14109
(0.00494482 0.0041372 0.00183415) 14109
(0.0047258 0.00404938 0.00179884) 5649
(0.00463368 0.00408941 0.00175702) 5649
(0.00522909 0.00422535 0.00168182) 5650
(0.00482494 0.00351121 0.00327166) 5409
(0.00531849 0.00355678 0.00329928) 14410
(0.00481442 0.00374581 0.00366025) 14529
(0.00424424 0.0036706 0.00365404) 14528
(0.00506711 0.00367648 0.00362421) 14530
(0.00506787 0.00373478 0.0036524) 14530
(0.00350603 0.00503554 0.00443818) 14827
(0.00360193 0.00495777 0.00445168) 14827
(0.00539389 0.00495575 0.00440841) 14830
(0.0067549 0.0063411 0.00334919) 15193
(0.00425485 0.00637053 0.00284912) 13508
(0.00469454 0.00646283 0.00293609) 13509
(0.0053292 0.0064474 0.00314553) 15250
(0.00605694 0.00642409 0.0031624) 15252
(0.00689012 0.00638422 0.00309555) 15253
(0.0186579 0.00300002 0.00218121) 517
(0.0192599 0.00689238 0.00365155) 2018
(0.0207605 0.00696748 0.00354109) 2021
(0.010916 0.00655137 0.0042322) 6621
(0.0122727 0.00648835 0.00418205) 6684
(0.0132781 0.00645238 0.00416199) 6686
(0.014076 0.00642959 0.00415399) 6688
(0.0147399 0.00641817 0.00414561) 6689
(0.0153088 0.00641163 0.00414116) 6690
(0.0158253 0.0064097 0.00413716) 6691
(0.0163351 0.00640942 0.00413242) 6692
(0.0168628 0.00640715 0.00412811) 6693
(0.0229184 0.00642166 0.00211055) 13425
(0.0240744 0.00663706 0.00225707) 6108
(0.0191532 0.00664873 0.00424686) 6638
(0.0218378 0.00665796 0.00414262) 1963
(0.0193644 0.00633928 0.00112804) 12458
(0.0203263 0.0036343 0.0046614) 7180
(0.0216533 0.00368481 0.00473749) 10543
(0.0184885 0.00338733 0.00156235) 396
(0.0205261 0.00333409 0.00168495) 461
(0.0193195 0.00611569 0.00479917) 12218
(0.018963 0.00584833 0.00507957) 12577
(0.018963 0.00584833 0.00507957) 12577
(0.018963 0.00584833 0.00507957) 12577
(0.0210427 0.00585955 0.00502146) 12582
(0.0210427 0.00585955 0.00502146) 12582
(0.0210427 0.00585955 0.00502146) 12582
(0.0224798 0.00591508 0.00500145) 12584
(0.0224798 0.00591508 0.00500145) 12584
(0.0224798 0.00591508 0.00500145) 12584
(0.0189541 0.00398325 0.00487313) 10537
(0.0206552 0.00401991 0.00492697) 10541
(0.0185608 0.00377091 0.00137085) 12757
(0.0213922 0.00374188 0.00143268) 9222
(0.0188839 0.0041647 0.00123249) 11497
(0.0217234 0.00409159 0.00126485) 11503
(0.0190426 0.00483619 0.000909794) 11618
(0.0209987 0.00475409 0.000946447) 11621
(0.0199622 0.00596286 0.00100681) 12279
(0.0190573 0.00538168 0.000808305) 11858
(0.0212119 0.00529962 0.000834724) 11922
(0.0224643 0.00522028 0.000783577) 11924
(0.0203284 0.00526536 0.00521365) 11440
(0.0216923 0.00531274 0.00521498) 11443
(0.0196188 0.00296546 0.00320813) 32688
(0.0196188 0.00296546 0.00320813) 32688
(0.0196188 0.00296546 0.00320813) 32688
(0.0236099 0.0030307 0.00320017) 767
(0.0248398 0.00295607 0.00318565) 34128
(0.0208282 0.00669554 0.00169507) 2501
(0.0208282 0.00669554 0.00169507) 2501
(0.0208282 0.00669554 0.00169507) 2501
(0.0226529 0.0066751 0.00169655) 2505
(0.0234678 0.00663005 0.00159457) 2506
(0.0224438 0.00615629 0.00166598) 13484
(0.0231145 0.0063044 0.00170898) 13486
(0.00748035 0.00643617 0.00287357) 13514
(0.00748035 0.00643617 0.00287357) 13514
(0.00748035 0.00643617 0.00287357) 13514
(0.00799768 0.00643949 0.00286774) 13515
(0.00845779 0.00644171 0.00286516) 13516
(0.00889499 0.00644412 0.00286662) 13517
(0.00935099 0.00644456 0.00286952) 13518
(0.00983924 0.00644196 0.00287014) 13519
(0.00774127 0.00636351 0.00258037) 13575
(0.018655 0.00622438 0.00235754) 13657
(0.0191602 0.00621841 0.00235992) 13658
(0.0196654 0.00620923 0.00235975) 13659
(0.0202083 0.00619556 0.00235537) 13660
(0.0207561 0.00618155 0.00234506) 13661
(0.00780822 0.00584305 0.00186929) 13755
(0.00819356 0.00584275 0.00185481) 13756
(0.00771738 0.00558983 0.00170293) 13815
(0.00808219 0.00559135 0.00169216) 13816
(0.00723661 0.00467064 0.00162207) 13994
(0.00876004 0.00438769 0.00168407) 14057
(0.00919033 0.00438842 0.00168342) 14058
(0.00963711 0.00438999 0.00168364) 14059
(0.00798498 0.00416015 0.00182213) 14115
(0.0083644 0.00415278 0.00181715) 14116
(0.00878037 0.00415386 0.00181481) 14117
(0.0092239 0.00415608 0.00181472) 14118
(0.00968962 0.00415592 0.00181769) 14119
(0.00778446 0.00395389 0.00203846) 14175
(0.00810855 0.0039448 0.00202802) 14176
(0.00777284 0.00358712 0.0031875) 14415
(0.0123108 0.00361634 0.00319123) 14424
(0.0128738 0.00362934 0.00319091) 14425
(0.0133927 0.0036338 0.00318918) 14426
(0.0138736 0.00363102 0.00318845) 14427
(0.00794559 0.00365561 0.00347072) 14475
(0.00845536 0.00363513 0.00346514) 14476
(0.00887019 0.00362032 0.00346654) 14477
(0.00929124 0.00361022 0.00346739) 14478
(0.009793 0.00361033 0.00346492) 14479
(0.00678583 0.00377627 0.00371645) 14533
(0.00678583 0.00377627 0.00371645) 14533
(0.00678583 0.00377627 0.00371645) 14533
(0.00770676 0.00373884 0.00369126) 14535
(0.0083714 0.00372889 0.00369524) 14536
(0.00886978 0.00372306 0.00370061) 14537
(0.00933574 0.00371907 0.00370599) 14538
(0.00984631 0.00372127 0.00370732) 14539
(0.00719759 0.00396795 0.00395283) 14594
(0.00772797 0.00392801 0.00392537) 14595
(0.0082143 0.0039141 0.00392231) 14596
(0.00747199 0.00501273 0.00442201) 14834
(0.00790743 0.0050057 0.00443489) 14835
(0.00831453 0.00499976 0.0044439) 14836
(0.00872791 0.0049945 0.00444748) 14837
(0.00917476 0.00499483 0.00444775) 14838
(0.00736502 0.00528163 0.00438799) 14894
(0.00779237 0.00528448 0.00439918) 14895
(0.00818989 0.00528691 0.00440976) 14896
(0.0086004 0.00528572 0.00441489) 14897
(0.00734401 0.00636152 0.00339586) 15194
(0.00756162 0.00642664 0.00311112) 15255
(0.00756162 0.00642664 0.00311112) 15255
(0.00756162 0.00642664 0.00311112) 15255
(0.00848451 0.00643967 0.00312719) 15256
(0.00895351 0.00643816 0.00313) 15257
(0.00942876 0.00643606 0.00313196) 15258
(0.00991978 0.00643336 0.00313342) 15259
(2.21251e-05 0.00646711 0.00291236) 13500
(0.00263848 0.00645616 0.00283129) 13505
(0.00444672 0.00633957 0.00260729) 13568
(0.00597131 0.00642667 0.00292322) 13511
(0.00665674 0.00642732 0.00290995) 13513
(0.00495036 0.00437523 0.00157279) 5709
(0.00495418 0.00445514 0.00156239) 5709
(0.00595043 0.00446205 0.00167022) 14051
(0.00686742 0.0044469 0.00171898) 14053
(0.00496515 0.00424635 0.0019031) 14109
(0.00495209 0.00414449 0.0018379) 14109
(0.00476252 0.00405254 0.00179566) 5649
(0.00462273 0.00409284 0.0017582) 5649
(0.00518367 0.00420344 0.00167562) 5650
(0.00481687 0.00351647 0.00327619) 5409
(0.00530065 0.00347692 0.00327793) 5410
(0.00480079 0.00375823 0.00366455) 14529
(0.0043939 0.00367011 0.00366045) 14528
(0.00506373 0.00366675 0.00362452) 14530
(0.00506115 0.00370551 0.00365076) 14530
(0.00388335 0.00503593 0.00442928) 14827
(0.00346696 0.00496507 0.00445179) 14826
(0.00535472 0.00495532 0.00441118) 14830
(0.00673388 0.0063412 0.00334939) 15193
(0.00416466 0.00636907 0.00285415) 13508
(0.00469355 0.00646161 0.00293461) 13509
(0.00531101 0.0064481 0.00314312) 15250
(0.00603523 0.00642469 0.00316369) 15252
(0.00686504 0.00638588 0.00309606) 15253
(0.0186111 0.00300011 0.00217777) 517
(0.0191997 0.00689236 0.00365535) 2018
(0.0207209 0.00696206 0.00354694) 2021
(0.010865 0.00655421 0.00423495) 6621
(0.0122373 0.00648969 0.0041828) 6684
(0.0132522 0.00645317 0.00416188) 6686
(0.0140552 0.00642984 0.00415398) 6688
(0.0147229 0.00641813 0.00414554) 6689
(0.015294 0.00641148 0.00414093) 6690
(0.0158112 0.00640946 0.00413687) 6691
(0.01632 0.00640916 0.00413222) 6692
(0.0168463 0.00640703 0.00412797) 6693
(0.0228552 0.00641133 0.0020979) 13425
(0.0240286 0.00663207 0.00225757) 6108
(0.0190578 0.00664799 0.004255) 6638
(0.0217538 0.00665449 0.00414594) 1963
(0.0193351 0.00634265 0.00113023) 12458
(0.0202698 0.00363288 0.0046598) 7180
(0.0216353 0.00367982 0.00473082) 10543
(0.0204581 0.00333661 0.00168166) 460
(0.0192584 0.00611323 0.00480323) 12218
(0.0188977 0.00584699 0.0050826) 12577
(0.0188977 0.00584699 0.0050826) 12577
(0.0188977 0.00584699 0.0050826) 12577
(0.0209754 0.005858 0.00502251) 12581
(0.0209754 0.005858 0.00502251) 12581
(0.0209754 0.005858 0.00502251) 12581
(0.0224522 0.00590998 0.00500269) 12584
(0.0224522 0.00590998 0.00500269) 12584
(0.0224522 0.00590998 0.00500269) 12584
(0.0188922 0.00398039 0.0048703) 10537
(0.0206002 0.00401874 0.00492385) 10541
(0.0184939 0.00377195 0.00136776) 12756
(0.0212918 0.00374391 0.00143244) 9222
(0.0187815 0.00415993 0.00122926) 11497
(0.0216252 0.00409594 0.00126588) 11503
(0.01897 0.00483904 0.000907485) 11617
(0.0209376 0.00475867 0.000946648) 11621
(0.0199098 0.00596297 0.00100754) 12279
(0.0189827 0.00538687 0.000807714) 11857
(0.021143 0.00530196 0.000835688) 11922
(0.0224554 0.00522649 0.000788385) 11924
(0.0202749 0.00526482 0.00521406) 11440
(0.0216653 0.00530731 0.00521385) 11443
(0.0193763 0.0029476 0.0032071) 32544
(0.0234924 0.00303446 0.00320154) 766
(0.0248296 0.00295915 0.0031841) 34128
(0.0207478 0.00669798 0.00169383) 2501
(0.0207478 0.00669798 0.00169383) 2501
(0.0207478 0.00669798 0.00169383) 2501
(0.0226114 0.00667574 0.00169947) 2505
(0.02348 0.00663687 0.00160548) 2506
(0.0223663 0.00614857 0.00165961) 13484
(0.0231054 0.00630028 0.00171087) 13486
(0.00745411 0.00643636 0.00287379) 13514
(0.00745411 0.00643636 0.00287379) 13514
(0.00745411 0.00643636 0.00287379) 13514
(0.00797312 0.0064396 0.00286792) 13515
(0.00843412 0.0064418 0.00286516) 13516
(0.00887136 0.00644421 0.00286643) 13517
(0.00932721 0.0064447 0.0028695) 13518
(0.00981474 0.00644217 0.00287013) 13519
(0.00771968 0.00636354 0.00258114) 13575
(0.0186324 0.00622459 0.00235743) 13657
(0.0191385 0.00621875 0.00235997) 13658
(0.0196427 0.00620975 0.00235992) 13659
(0.0201842 0.00619624 0.00235576) 13660
(0.020733 0.00618216 0.00234571) 13661
(0.00778706 0.00584299 0.00186951) 13755
(0.00817141 0.00584284 0.00185488) 13756
(0.00769505 0.0055898 0.00170303) 13815
(0.00805941 0.00559124 0.00169205) 13816
(0.00721405 0.00467048 0.00162216) 13994
(0.00749028 0.00439787 0.00170381) 14054
(0.00749028 0.00439787 0.00170381) 14054
(0.00749028 0.00439787 0.00170381) 14054
(0.00873551 0.00438756 0.00168381) 14057
(0.00916685 0.00438833 0.00168327) 14058
(0.00961308 0.00438984 0.00168345) 14059
(0.00796236 0.00416032 0.00182213) 14115
(0.00834015 0.00415254 0.00181704) 14116
(0.00875576 0.00415347 0.00181469) 14117
(0.00919972 0.00415593 0.00181451) 14118
(0.00966495 0.00415582 0.00181743) 14119
(0.00776374 0.00395415 0.00203861) 14175
(0.00808572 0.00394473 0.00202805) 14176
(0.0077508 0.00358742 0.00318776) 14415
(0.0122856 0.00361567 0.00319125) 14424
(0.0128504 0.00362895 0.003191) 14425
(0.0133708 0.00363373 0.00318931) 14426
(0.0138532 0.00363123 0.00318852) 14427
(0.00791949 0.0036567 0.00347127) 14475
(0.00843235 0.00363578 0.00346532) 14476
(0.00884919 0.00362085 0.00346658) 14477
(0.00926765 0.00361039 0.00346752) 14478
(0.00976591 0.00361001 0.00346517) 14479
(0.00674602 0.00377886 0.00371938) 14533
(0.00674602 0.00377886 0.00371938) 14533
(0.00674602 0.00377886 0.00371938) 14533
(0.00767073 0.00373971 0.00369166) 14535
(0.00834362 0.00372911 0.00369518) 14536
(0.00884581 0.00372324 0.00370052) 14537
(0.00931082 0.00371907 0.00370598) 14538
(0.00981974 0.00372096 0.00370749) 14539
(0.00717358 0.00397055 0.00395503) 14594
(0.00770273 0.00392907 0.00392617) 14595
(0.00819031 0.00391442 0.00392241) 14596
(0.00745071 0.0050129 0.00442192) 14834
(0.00788599 0.00500605 0.00443472) 14835
(0.00829112 0.00500005 0.00444408) 14836
(0.00870386 0.00499462 0.00444775) 14837
(0.00915035 0.00499474 0.00444799) 14838
(0.00734488 0.00528165 0.00438782) 14894
(0.00777081 0.00528445 0.00439904) 14895
(0.00816618 0.00528712 0.00440982) 14896
(0.00857638 0.00528589 0.00441508) 14897
(0.00732152 0.00636142 0.00339551) 15194
(0.0075376 0.00642659 0.00311083) 15255
(0.0075376 0.00642659 0.00311083) 15255
(0.0075376 0.00642659 0.00311083) 15255
(0.00845943 0.00643989 0.00312715) 15256
(0.0089289 0.00643841 0.00312997) 15257
(0.00940485 0.00643624 0.00313191) 15258
(0.00989552 0.00643355 0.0031334) 15259
(1.26781e-05 0.00646725 0.00291218) 13500
(0.0019915 0.00647518 0.00286574) 13503
(0.00439371 0.0063446 0.00259257) 13568
(0.00597121 0.00642515 0.00292218) 13511
(0.00663213 0.00642722 0.00291029) 13513
(0.00495085 0.00438242 0.00157736) 5709
(0.00495047 0.0044432 0.00156085) 5709
(0.00591706 0.00446287 0.00166878) 14051
(0.00684196 0.00444602 0.00171665) 14053
(0.00496524 0.00425447 0.00190982) 14109
(0.0049633 0.00415412 0.00184087) 14109
(0.00479345 0.00405837 0.00179384) 5649
(0.00462962 0.00408981 0.00175822) 5649
(0.00513858 0.00417809 0.00167141) 5650
(0.00480953 0.00352172 0.00328096) 5409
(0.00478017 0.00353104 0.00330955) 5409
(0.00520377 0.00342419 0.00327441) 5410
(0.00478803 0.00377131 0.00366726) 14529
(0.00460568 0.00366643 0.0036618) 14529
(0.00505944 0.00365643 0.00362595) 14530
(0.00506296 0.00370975 0.00364907) 14530
(0.00411481 0.00504094 0.00442076) 14828
(0.0033576 0.00497158 0.00445221) 14826
(0.00531554 0.00495499 0.00441401) 14830
(0.00671267 0.00634135 0.00334967) 15193
(0.00401666 0.00637593 0.00286853) 13508
(0.00469306 0.00646038 0.00293365) 13509
(0.00529258 0.00644885 0.00314059) 15250
(0.00601297 0.00642511 0.00316412) 15252
(0.00684024 0.00638746 0.0030967) 15253
(0.018564 0.00300005 0.0021743) 517
(0.0191364 0.00689298 0.00365872) 2018
(0.0206802 0.00695679 0.00355273) 2021
(0.0108136 0.00655711 0.0042378) 6621
(0.0122013 0.00649109 0.0041836) 6684
(0.0132261 0.00645397 0.0041618) 6686
(0.0140343 0.00643012 0.00415395) 6688
(0.0147057 0.0064181 0.00414546) 6689
(0.0152791 0.00641132 0.00414073) 6690
(0.015797 0.00640922 0.00413658) 6691
(0.0163051 0.00640891 0.00413198) 6692
(0.0168298 0.00640691 0.00412784) 6693
(0.0227867 0.00640074 0.00208455) 13425
(0.0239832 0.0066267 0.00225757) 6107
(0.0189577 0.0066486 0.0042626) 6637
(0.0216669 0.00665191 0.00414876) 1903
(0.0193055 0.00634596 0.00113232) 12458
(0.0202126 0.00363144 0.00465829) 7180
(0.0216157 0.00367511 0.00472443) 10543
(0.0203886 0.00333904 0.00167817) 460
(0.0191954 0.00611078 0.00480752) 12218
(0.0210438 0.00616254 0.00474352) 12222
(0.0188328 0.00584567 0.00508558) 12577
(0.0188328 0.00584567 0.00508558) 12577
(0.0188328 0.00584567 0.00508558) 12577
(0.0209067 0.00585655 0.00502364) 12581
(0.0209067 0.00585655 0.00502364) 12581
(0.0209067 0.00585655 0.00502364) 12581
(0.0224226 0.00590515 0.00500379) 12584
(0.0224226 0.00590515 0.00500379) 12584
(0.0224226 0.00590515 0.00500379) 12584
(0.0188274 0.00397724 0.00486734) 10537
(0.0205444 0.00401753 0.00492082) 10541
(0.0184325 0.00377337 0.00136505) 12756
(0.0211896 0.00374597 0.00143199) 9222
(0.018677 0.00415345 0.00122671) 11497
(0.0215262 0.00410037 0.00126675) 11503
(0.0188946 0.00484116 0.000905134) 11617
(0.0208751 0.00476316 0.000946757) 11621
(0.0198572 0.00596308 0.00100819) 12279
(0.0189106 0.00539218 0.000807252) 11857
(0.0210721 0.00530429 0.000836477) 10122
(0.0224438 0.00523235 0.000793056) 11924
(0.0202209 0.00526436 0.00521453) 11440
(0.0216367 0.00530223 0.00521274) 11443
(0.0191993 0.00293515 0.00320495) 32544
(0.0233672 0.00303781 0.00320302) 766
(0.0248181 0.00296225 0.00318272) 34128
(0.0206646 0.00670051 0.00169225) 2501
(0.0206646 0.00670051 0.00169225) 2501
(0.0206646 0.00670051 0.00169225) 2501
(0.0225682 0.00667638 0.00170224) 2505
(0.0234859 0.00664275 0.0016152) 2506
(0.0222757 0.00614122 0.00165324) 13484
(0.0230962 0.00629604 0.00171262) 13486
(0.0074278 0.00643655 0.00287401) 13514
(0.0074278 0.00643655 0.00287401) 13514
(0.0074278 0.00643655 0.00287401) 13514
(0.0079485 0.00643971 0.00286811) 13515
(0.00841043 0.00644188 0.00286516) 13516
(0.00884773 0.00644431 0.00286624) 13517
(0.00930341 0.00644484 0.00286947) 13518
(0.00979027 0.00644238 0.00287013) 13519
(0.0076981 0.00636358 0.00258193) 13575
(0.0191167 0.00621909 0.00236002) 13658
(0.0196201 0.00621027 0.00236008) 13659
(0.02016 0.00619692 0.00235613) 13660
(0.0207097 0.00618278 0.00234635) 13661
(0.00776592 0.00584293 0.00186974) 13755
(0.00814932 0.00584291 0.00185494) 13756
(0.00767275 0.00558977 0.00170314) 13815
(0.0080367 0.00559117 0.00169196) 13816
(0.00719154 0.00467031 0.00162224) 13994
(0.00746704 0.00439815 0.00170374) 14054
(0.00746704 0.00439815 0.00170374) 14054
(0.00746704 0.00439815 0.00170374) 14054
(0.00871088 0.00438744 0.00168355) 14057
(0.00914333 0.00438824 0.00168312) 14058
(0.00958913 0.00438969 0.00168327) 14059
(0.00793977 0.0041605 0.00182212) 14115
(0.00831597 0.00415231 0.00181693) 14116
(0.00873112 0.00415307 0.00181459) 14117
(0.00917551 0.00415578 0.0018143) 14118
(0.00964033 0.00415573 0.00181716) 14119
(0.00774307 0.00395442 0.00203876) 14175
(0.008063 0.00394468 0.0020281) 14176
(0.00772868 0.00358772 0.00318802) 14415
(0.0122604 0.00361499 0.00319127) 14424
(0.0128269 0.00362855 0.0031911) 14425
(0.0133488 0.00363364 0.00318944) 14426
(0.0138329 0.00363143 0.00318859) 14427
(0.00789329 0.00365782 0.00347185) 14475
(0.00840927 0.00363644 0.00346551) 14476
(0.00882823 0.00362139 0.00346661) 14477
(0.00924423 0.00361058 0.00346764) 14478
(0.00973893 0.00360971 0.00346541) 14479
(0.0076344 0.00374065 0.00369213) 14535
(0.00831559 0.00372935 0.00369514) 14536
(0.00882178 0.00372344 0.00370042) 14537
(0.00928599 0.00371908 0.00370595) 14538
(0.00979319 0.00372067 0.00370767) 14539
(0.00714961 0.00397323 0.00395727) 14594
(0.00767752 0.0039302 0.00392701) 14595
(0.00816627 0.00391475 0.00392252) 14596
(0.0078646 0.0050064 0.00443455) 14835
(0.00826773 0.00500035 0.00444424) 14836
(0.00867978 0.00499476 0.00444802) 14837
(0.00912593 0.00499464 0.00444824) 14838
(0.00732471 0.00528166 0.00438766) 14894
(0.00774933 0.00528442 0.00439888) 14895
(0.00814251 0.00528732 0.00440987) 14896
(0.00855232 0.00528607 0.00441528) 14897
(0.00729912 0.00636132 0.00339516) 15194
(0.0075136 0.00642655 0.00311054) 15255
(0.0075136 0.00642655 0.00311054) 15255
(0.0075136 0.00642655 0.00311054) 15255
(0.00843437 0.0064401 0.0031271) 15256
(0.00890421 0.00643866 0.00312995) 15257
(0.00938089 0.00643643 0.00313187) 15258
(0.00987129 0.00643374 0.00313339) 15259
(-1.66893e-05 0.00646788 0.0029116) 35709
(0.001635 0.00647668 0.00289419) 13503
(0.00432013 0.0063473 0.00258234) 13568
(0.00595639 0.00642326 0.00292111) 13511
(0.00660777 0.00642708 0.00291061) 13513
(0.0049536 0.00439076 0.00158303) 5709
(0.00495171 0.00443633 0.00156124) 5709
(0.00588062 0.00446363 0.00166705) 14051
(0.00681591 0.0044448 0.00171408) 14053
(0.00497371 0.00416407 0.00184364) 14109
(0.00482376 0.00406585 0.00179223) 5649
(0.00463105 0.00408887 0.00175958) 5649
(0.00511272 0.00416112 0.00167052) 5650
(0.00479735 0.00352956 0.0032895) 5409
(0.00482665 0.00350513 0.00328375) 5409
(0.00476817 0.00378935 0.00367263) 14529
(0.00476344 0.00366644 0.00366135) 14529
(0.00505631 0.00364995 0.00362819) 14530
(0.00506548 0.00372144 0.00364929) 14530
(0.00423036 0.00504717 0.00441335) 14828
(0.00328321 0.00497732 0.00445261) 14826
(0.0052788 0.00495488 0.00441648) 14830
(0.00669089 0.00634176 0.00335026) 15193
(0.0037923 0.00639368 0.00289597) 13507
(0.00469283 0.00645918 0.00293295) 13509
(0.00527317 0.00644972 0.00313778) 15250
(0.00599197 0.00642529 0.00316436) 15251
(0.00681581 0.00638915 0.00309741) 15253
(0.0185164 0.00299986 0.00217084) 32396
(0.01907 0.00689422 0.00366162) 2018
(0.0206387 0.00695168 0.00355843) 2021
(0.0121648 0.00649253 0.00418444) 6684
(0.0131998 0.00645478 0.00416173) 6686
(0.0140132 0.00643042 0.0041539) 6688
(0.0146884 0.00641809 0.00414538) 6689
(0.0152641 0.00641116 0.00414055) 6690
(0.0157828 0.00640898 0.00413632) 6691
(0.0162902 0.00640867 0.00413174) 6692
(0.0168133 0.00640678 0.00412771) 6693
(0.0227127 0.00639011 0.00207029) 13425
(0.0239383 0.00662094 0.00225701) 6107
(0.018854 0.00665076 0.00426954) 6637
(0.0215762 0.00665041 0.00415101) 6643
(0.0233551 0.00676227 0.00407831) 1966
(0.0192757 0.00634923 0.00113433) 12458
(0.0201549 0.00362998 0.00465687) 7180
(0.0215943 0.00367067 0.00471831) 10543
(0.0203178 0.00334142 0.00167447) 460
(0.0191291 0.00610846 0.00481204) 12218
(0.0209901 0.00615879 0.00474499) 12221
(0.0187681 0.00584436 0.00508847) 12577
(0.0187681 0.00584436 0.00508847) 12577
(0.0187681 0.00584436 0.00508847) 12577
(0.0208366 0.00585519 0.00502488) 12581
(0.0208366 0.00585519 0.00502488) 12581
(0.0208366 0.00585519 0.00502488) 12581
(0.0223909 0.00590055 0.00500478) 12584
(0.0223909 0.00590055 0.00500478) 12584
(0.0223909 0.00590055 0.00500478) 12584
(0.0187594 0.00397372 0.00486417) 10537
(0.0204883 0.0040163 0.00491785) 10540
(0.0183773 0.00377536 0.00136251) 12756
(0.0210855 0.00374802 0.00143132) 9222
(0.0185745 0.00414655 0.00122489) 11497
(0.0214261 0.00410479 0.00126744) 11502
(0.0188168 0.00484252 0.000902762) 11617
(0.0208112 0.00476751 0.000946768) 11621
(0.0222701 0.00465483 0.000931595) 11564
(0.0198045 0.0059632 0.00100878) 12279
(0.0188445 0.00539771 0.000807088) 11857
(0.0209993 0.00530665 0.000837105) 10121
(0.0224293 0.00523789 0.000797594) 11924
(0.0201666 0.00526394 0.00521505) 11440
(0.0216065 0.00529748 0.00521167) 11443
(0.0190903 0.0029314 0.00320093) 32544
(0.0232356 0.00304069 0.00320457) 766
(0.0248051 0.00296538 0.00318152) 34128
(0.0205776 0.00670312 0.00169022) 2501
(0.0205776 0.00670312 0.00169022) 2501
(0.0205776 0.00670312 0.00169022) 2501
(0.0225233 0.00667702 0.00170486) 2505
(0.0234855 0.00664775 0.00162371) 2506
(0.022173 0.00613417 0.00164674) 6044
(0.0230876 0.00629164 0.00171418) 13486
(0.0074014 0.00643674 0.00287423) 13514
(0.0074014 0.00643674 0.00287423) 13514
(0.0074014 0.00643674 0.00287423) 13514
(0.00792383 0.00643982 0.00286831) 13515
(0.00838674 0.00644195 0.00286517) 13516
(0.00882409 0.0064444 0.00286606) 13517
(0.0092796 0.00644498 0.00286942) 13518
(0.00976583 0.00644259 0.00287012) 13519
(0.00767654 0.00636361 0.00258274) 13575
(0.0190949 0.00621943 0.00236006) 13658
(0.0195976 0.00621077 0.00236023) 13659
(0.0201359 0.0061976 0.00235649) 13660
(0.0206864 0.00618341 0.00234698) 13661
(0.0212019 0.00617312 0.00233387) 13662
(0.00774479 0.00584285 0.00186997) 13755
(0.0081273 0.00584295 0.001855) 13756
(0.00765047 0.00558975 0.00170326) 13815
(0.00801405 0.0055911 0.00169189) 13816
(0.00716908 0.00467014 0.00162231) 13994
(0.00744384 0.00439842 0.00170368) 14054
(0.00744384 0.00439842 0.00170368) 14054
(0.00744384 0.00439842 0.00170368) 14054
(0.00868617 0.00438733 0.00168329) 14057
(0.00911977 0.00438815 0.00168296) 14058
(0.00956522 0.00438953 0.00168309) 14059
(0.00791722 0.0041607 0.00182213) 14115
(0.00829187 0.00415211 0.00181682) 14116
(0.00870645 0.00415267 0.00181449) 14117
(0.00915126 0.00415562 0.00181409) 14118
(0.00961576 0.00415565 0.00181688) 14119
(0.00772245 0.00395471 0.00203891) 14175
(0.0080404 0.00394464 0.00202817) 14176
(0.00770653 0.00358802 0.0031883) 14415
(0.0122352 0.00361431 0.00319129) 14424
(0.0128033 0.00362813 0.00319119) 14425
(0.0133267 0.00363354 0.00318956) 14426
(0.0138125 0.00363161 0.00318866) 14427
(0.007867 0.00365895 0.00347246) 14475
(0.0083861 0.00363711 0.00346572) 14476
(0.0088073 0.00362193 0.00346664) 14477
(0.009221 0.0036108 0.00346775) 14478
(0.00971205 0.00360942 0.00346566) 14479
(0.00759767 0.00374165 0.00369269) 14535
(0.00828731 0.00372961 0.00369511) 14536
(0.00879767 0.00372364 0.00370034) 14537
(0.00926126 0.00371911 0.0037059) 14538
(0.00976667 0.00372039 0.00370783) 14539
(0.0071257 0.00397598 0.00395954) 14594
(0.00765234 0.00393138 0.00392791) 14595
(0.0081422 0.00391512 0.00392266) 14596
(0.00719267 0.00472255 0.00438675) 14774
(0.00784324 0.00500674 0.00443436) 14835
(0.00824436 0.00500065 0.00444439) 14836
(0.00865566 0.00499492 0.0044483) 14837
(0.0091015 0.00499454 0.00444849) 14838
(0.00730451 0.00528167 0.00438749) 14894
(0.00772793 0.00528439 0.00439872) 14895
(0.00811889 0.00528752 0.00440991) 14896
(0.00852818 0.00528628 0.00441547) 14897
(0.00727679 0.00636122 0.00339484) 15194
(0.00748961 0.00642651 0.00311026) 15254
(0.00748961 0.00642651 0.00311026) 15254
(0.00748961 0.00642651 0.00311026) 15254
(0.00840935 0.0064403 0.00312706) 15256
(0.00887943 0.00643891 0.00312991) 15257
(0.00935689 0.00643662 0.00313182) 15258
(0.00984708 0.00643392 0.00313338) 15259
(-5.02784e-05 0.0064685 0.00291098) 35709
(0.00196125 0.00648084 0.0029013) 13503
(0.0042572 0.00634971 0.00257731) 13568
(0.00594203 0.00642124 0.00292003) 13511
(0.00658364 0.00642689 0.00291089) 13513
(0.0049579 0.00439968 0.00158928) 5709
(0.00495572 0.00443176 0.00156293) 5709
(0.00584382 0.0044645 0.00166521) 14051
(0.00679 0.00444357 0.00171178) 14053
(0.00498347 0.00417449 0.00184638) 14109
(0.00484556 0.00407286 0.00179293) 5649
(0.00465111 0.00408028 0.00175942) 5649
(0.00506729 0.00413537 0.00166968) 5650
(0.00466661 0.00358056 0.00337568) 14469
(0.00478341 0.00353745 0.00330073) 14409
(0.00485485 0.00349001 0.00327185) 5409
(0.00482649 0.00367429 0.00366094) 14529
(0.00505103 0.00364291 0.00362962) 14530
(0.00506588 0.00372296 0.00364912) 14530
(0.00432181 0.0050528 0.00440632) 14828
(0.00323887 0.00498247 0.00445281) 14826
(0.00524502 0.00495509 0.00441842) 14830
(0.00666873 0.00634241 0.00335113) 15193
(0.00469645 0.00645825 0.00293396) 13509
(0.00525358 0.00645063 0.00313473) 15250
(0.00596962 0.00642555 0.00316442) 15251
(0.00679141 0.00639111 0.00309818) 15253
(0.0205964 0.00694673 0.00356407) 2021
(0.0121277 0.00649404 0.00418534) 6684
(0.0131733 0.0064556 0.00416169) 6686
(0.013992 0.00643074 0.00415384) 6687
(0.014671 0.0064181 0.0041453) 6689
(0.015249 0.006411 0.0041404) 6690
(0.0157686 0.00640873 0.00413606) 6691
(0.0162753 0.00640843 0.0041315) 6692
(0.0167969 0.00640665 0.00412759) 6693
(0.022632 0.00637983 0.0020564) 13425
(0.0238938 0.00661479 0.00225582) 6107
(0.0247892 0.00669238 0.00220246) 13429
(0.0187499 0.00665441 0.00427583) 6637
(0.0214826 0.00664939 0.00415313) 6642
(0.0233204 0.0067568 0.00408101) 1966
(0.0192458 0.00635242 0.00113623) 12458
(0.0200969 0.00362847 0.00465549) 7180
(0.0215712 0.00366648 0.00471245) 10543
(0.0202459 0.00334373 0.00167058) 460
(0.0220078 0.00328857 0.00172807) 464
(0.019059 0.00610636 0.00481677) 12218
(0.0209348 0.00615518 0.00474648) 12221
(0.0187037 0.005843 0.00509121) 12577
(0.0187037 0.005843 0.00509121) 12577
(0.0187037 0.005843 0.00509121) 12577
(0.0207652 0.00585392 0.00502621) 12581
(0.0207652 0.00585392 0.00502621) 12581
(0.0207652 0.00585392 0.00502621) 12581
(0.0223579 0.00589614 0.00500567) 12584
(0.0223579 0.00589614 0.00500567) 12584
(0.0223579 0.00589614 0.00500567) 12584
(0.0186887 0.00396972 0.00486072) 10537
(0.0204317 0.00401501 0.00491493) 10540
(0.0209797 0.00375009 0.00143041) 9221
(0.0213258 0.00410931 0.00126795) 11502
(0.0187378 0.00484322 0.000900394) 11617
(0.0207461 0.0047717 0.000946675) 11621
(0.0222425 0.00466103 0.000932858) 11564
(0.0197516 0.00596333 0.00100929) 12279
(0.0187868 0.00540358 0.00080735) 11857
(0.0209246 0.00530905 0.000837561) 10121
(0.022412 0.0052431 0.000801985) 11924
(0.0201123 0.0052635 0.00521563) 11440
(0.0215749 0.00529303 0.00521064) 11443
(0.0201542 0.00372144 0.00120142) 13000
(0.0189855 0.00292797 0.00319637) 32400
(0.023099 0.00304309 0.00320612) 766
(0.0247908 0.00296852 0.00318052) 34128
(0.0204863 0.00670582 0.00168768) 2500
(0.0204863 0.00670582 0.00168768) 2500
(0.0204863 0.00670582 0.00168768) 2500
(0.0224765 0.00667768 0.0017073) 2504
(0.0234787 0.00665202 0.00163098) 2506
(0.0220568 0.00612786 0.0016405) 6044
(0.0230785 0.00628714 0.00171554) 13486
(0.00737494 0.00643693 0.00287446) 13514
(0.00737494 0.00643693 0.00287446) 13514
(0.00737494 0.00643693 0.00287446) 13514
(0.0078991 0.00643992 0.00286852) 13515
(0.00836304 0.00644203 0.00286519) 13516
(0.00880045 0.0064445 0.00286589) 13517
(0.00925576 0.00644512 0.00286937) 13518
(0.00974142 0.00644279 0.00287012) 13519
(0.00765499 0.00636364 0.00258357) 13575
(0.0190731 0.00621975 0.00236009) 13658
(0.0195751 0.00621126 0.00236038) 13659
(0.0201118 0.00619828 0.00235685) 13660
(0.0206631 0.00618405 0.00234761) 13661
(0.02118 0.00617357 0.00233461) 13662
(0.00772369 0.00584277 0.0018702) 13755
(0.00810537 0.00584301 0.00185508) 13756
(0.00762821 0.00558974 0.00170339) 13815
(0.00799145 0.00559104 0.00169183) 13815
(0.00714667 0.00466998 0.00162237) 13994
(0.00742065 0.00439868 0.00170361) 14054
(0.00742065 0.00439868 0.00170361) 14054
(0.00742065 0.00439868 0.00170361) 14054
(0.00866138 0.00438721 0.00168302) 14057
(0.00909616 0.00438806 0.0016828) 14058
(0.00954137 0.00438937 0.00168293) 14059
(0.00789471 0.00416092 0.00182214) 14115
(0.00826786 0.00415193 0.00181672) 14116
(0.00868177 0.00415227 0.00181438) 14117
(0.00912697 0.00415544 0.0018139) 14118
(0.00959124 0.00415558 0.00181661) 14119
(0.00770187 0.00395501 0.00203906) 14175
(0.00801791 0.00394461 0.00202826) 14176
(0.0076843 0.0035883 0.00318857) 14415
(0.01221 0.00361363 0.00319131) 14424
(0.0127796 0.0036277 0.00319127) 14425
(0.0133046 0.00363343 0.00318969) 14426
(0.0137919 0.00363178 0.00318873) 14427
(0.0078406 0.0036601 0.0034731) 14475
(0.00836285 0.00363781 0.00346594) 14476
(0.00878643 0.00362248 0.00346667) 14477
(0.00919798 0.00361104 0.00346786) 14478
(0.00968527 0.00360916 0.0034659) 14479
(0.00756065 0.00374275 0.00369333) 14535
(0.00825877 0.00372989 0.00369507) 14536
(0.00877349 0.00372384 0.00370027) 14537
(0.00923662 0.00371914 0.00370585) 14538
(0.00974019 0.00372012 0.00370799) 14539
(0.00710182 0.00397881 0.00396183) 14594
(0.00762718 0.00393263 0.00392885) 14595
(0.00811809 0.00391551 0.00392282) 14596
(0.00716795 0.00472261 0.00438705) 14774
(0.00782193 0.00500708 0.00443417) 14835
(0.00822102 0.00500096 0.00444453) 14836
(0.00863153 0.00499512 0.00444858) 14837
(0.00907703 0.00499441 0.00444874) 14838
(0.00728428 0.00528167 0.00438733) 14894
(0.00770661 0.00528437 0.00439855) 14895
(0.00809534 0.00528771 0.00440993) 14896
(0.00850404 0.00528643 0.00441567) 14897
(0.00725454 0.00636112 0.00339453) 15194
(0.00746564 0.00642647 0.00311) 15254
(0.00746564 0.00642647 0.00311) 15254
(0.00746564 0.00642647 0.00311) 15254
(0.00838436 0.00644049 0.003127) 15256
(0.00885458 0.00643917 0.00312988) 15257
(0.00933283 0.00643681 0.00313177) 15258
(0.00982287 0.0064341 0.00313337) 15259
(0.00226409 0.00647946 0.0028992) 13504
(0.00418758 0.00635182 0.00257839) 13568
(0.005929 0.00641893 0.00291885) 13511
(0.00655975 0.00642666 0.0029111) 13513
(0.00496586 0.00440883 0.00159614) 5709
(0.00496164 0.00442917 0.00156571) 5709
(0.0058076 0.00446544 0.0016633) 14051
(0.00676439 0.00444239 0.00170974) 14053
(0.00498795 0.00418186 0.00184877) 14109
(0.00486656 0.00408033 0.00179383) 5649
(0.00466582 0.0040736 0.00176) 5649
(0.00501753 0.00411007 0.001672) 5650
(0.00593907 0.00423459 0.00180016) 14111
(0.0047893 0.0035444 0.00333003) 14469
(0.00477854 0.00353993 0.00330744) 14409
(0.00489791 0.00346879 0.00325741) 5409
(0.00484197 0.00368449 0.00366279) 14529
(0.00504737 0.00363559 0.00363089) 5290
(0.00507114 0.00373873 0.00364782) 14530
(0.00439346 0.00505733 0.00439991) 14828
(0.00321188 0.00498715 0.00445288) 14826
(0.0052095 0.00495557 0.00442072) 14830
(0.00664602 0.00634326 0.00335227) 15193
(0.0046963 0.00645701 0.00293322) 13509
(0.00523412 0.00645155 0.00313153) 15250
(0.00594625 0.00642588 0.00316437) 15251
(0.00676727 0.00639256 0.00309885) 15253
(0.0205531 0.00694195 0.00356965) 2021
(0.0120899 0.00649562 0.0041863) 6684
(0.0131465 0.00645642 0.00416169) 6686
(0.0139705 0.00643109 0.00415377) 6687
(0.0146534 0.00641812 0.00414522) 6689
(0.0152338 0.00641085 0.00414026) 6690
(0.0157544 0.00640848 0.00413582) 6691
(0.0162604 0.00640819 0.00413125) 6692
(0.0167805 0.00640651 0.00412746) 6693
(0.0225437 0.00637014 0.00204269) 13485
(0.0238495 0.00660824 0.00225397) 6107
(0.0247755 0.00669048 0.00220681) 13429
(0.0186512 0.00665901 0.00428157) 6637
(0.0213863 0.00664874 0.00415522) 6642
(0.023283 0.00675149 0.00408368) 1966
(0.0192156 0.00635556 0.00113803) 12458
(0.0200385 0.0036269 0.00465411) 7180
(0.0215468 0.0036625 0.0047068) 10543
(0.0201729 0.00334595 0.0016665) 460
(0.0219705 0.00329309 0.00172502) 463
(0.0189845 0.00610458 0.00482169) 12217
(0.0208781 0.00615173 0.00474801) 12221
(0.0206927 0.00585273 0.00502765) 12581
(0.0206927 0.00585273 0.00502765) 12581
(0.0206927 0.00585273 0.00502765) 12581
(0.0223251 0.00589178 0.00500652) 12584
(0.0223251 0.00589178 0.00500652) 12584
(0.0223251 0.00589178 0.00500652) 12584
(0.0230332 0.00603423 0.00494065) 12346
(0.0186156 0.00396507 0.0048569) 10537
(0.0203751 0.00401365 0.00491204) 10540
(0.0208726 0.00375217 0.00142923) 9221
(0.0212249 0.0041139 0.00126825) 11502
(0.0186596 0.00484349 0.000898083) 11617
(0.0206797 0.00477574 0.000946475) 11621
(0.0222133 0.00466718 0.000934128) 11564
(0.0196984 0.00596347 0.00100972) 12279
(0.0208483 0.00531152 0.000837869) 10121
(0.0223915 0.00524794 0.000806211) 11924
(0.0200575 0.00526304 0.00521626) 11440
(0.0215425 0.00528882 0.00520965) 11443
(0.0201211 0.00372795 0.00119907) 13000
(0.018883 0.00292475 0.00319155) 32400
(0.0229574 0.00304493 0.00320761) 765
(0.0247747 0.00297168 0.00317974) 34128
(0.020389 0.00670872 0.00168461) 2500
(0.020389 0.00670872 0.00168461) 2500
(0.020389 0.00670872 0.00168461) 2500
(0.0224279 0.00667825 0.00170945) 2504
(0.0234644 0.0066556 0.00163698) 2506
(0.0219232 0.00612327 0.00163536) 6043
(0.0230689 0.00628255 0.00171664) 13486
(0.00734841 0.00643713 0.0028747) 13514
(0.00734841 0.00643713 0.0028747) 13514
(0.00734841 0.00643713 0.0028747) 13514
(0.00787431 0.00644002 0.00286874) 13515
(0.00833934 0.00644211 0.00286521) 13516
(0.00877681 0.00644459 0.00286572) 13517
(0.00923189 0.00644525 0.0028693) 13518
(0.00971702 0.006443 0.00287011) 13519
(0.00763349 0.00636368 0.00258445) 13575
(0.0190512 0.00622008 0.00236012) 13658
(0.0195527 0.00621174 0.00236052) 13659
(0.0200878 0.00619896 0.00235719) 13660
(0.0206396 0.0061847 0.00234823) 13661
(0.021158 0.00617402 0.00233533) 13662
(0.0077026 0.00584267 0.00187044) 13755
(0.00808354 0.00584309 0.00185521) 13756
(0.00760598 0.00558973 0.00170354) 13815
(0.0079689 0.00559098 0.00169179) 13815
(0.00712431 0.00466983 0.00162243) 13994
(0.00739747 0.00439893 0.00170353) 14054
(0.00739747 0.00439893 0.00170353) 14054
(0.00739747 0.00439893 0.00170353) 14054
(0.00863651 0.00438709 0.00168275) 14057
(0.00907249 0.00438798 0.00168263) 14058
(0.00951755 0.0043892 0.00168277) 14059
(0.00787224 0.00416116 0.00182215) 14115
(0.00824392 0.00415176 0.00181664) 14116
(0.00865708 0.00415188 0.00181428) 14117
(0.00910263 0.00415523 0.00181371) 14118
(0.00956676 0.00415551 0.00181634) 14119
(0.00768133 0.00395533 0.0020392) 14175
(0.00799554 0.0039446 0.00202835) 14175
(0.00766199 0.00358858 0.00318882) 14415
(0.0121848 0.00361294 0.00319133) 14424
(0.0127558 0.00362725 0.00319136) 14425
(0.0132824 0.00363331 0.00318982) 14426
(0.0137713 0.00363194 0.0031888) 14427
(0.00781411 0.00366127 0.00347377) 14475
(0.00833952 0.00363852 0.00346618) 14476
(0.00876556 0.00362304 0.0034667) 14477
(0.00917513 0.0036113 0.00346796) 14478
(0.0096586 0.00360892 0.00346614) 14479
(0.00752334 0.00374391 0.00369407) 14535
(0.00822997 0.00373018 0.00369505) 14536
(0.00874922 0.00372406 0.00370021) 14537
(0.00921207 0.00371919 0.00370579) 14538
(0.00971374 0.00371986 0.00370813) 14539
(0.00707797 0.00398171 0.00396413) 14594
(0.00760206 0.00393393 0.00392984) 14595
(0.00809394 0.00391593 0.003923) 14596
(0.00714321 0.00472268 0.00438735) 14774
(0.00780065 0.00500741 0.00443396) 14835
(0.00819773 0.00500127 0.00444465) 14836
(0.00860737 0.00499534 0.00444886) 14837
(0.00905255 0.00499429 0.004449) 14838
(0.00726401 0.00528167 0.00438717) 14894
(0.00768536 0.00528435 0.00439837) 14895
(0.00807186 0.00528789 0.00440993) 14896
(0.00847985 0.00528659 0.00441586) 14896
(0.00723238 0.00636101 0.00339423) 15194
(0.00744169 0.00642644 0.00310973) 15254
(0.00744169 0.00642644 0.00310973) 15254
(0.00744169 0.00642644 0.00310973) 15254
(0.00835943 0.00644066 0.00312694) 15256
(0.00882966 0.00643943 0.00312985) 15257
(0.00930873 0.00643701 0.00313173) 15258
(0.00979868 0.00643429 0.00313336) 15259
(0.00235865 0.00647754 0.00289784) 13504
(0.00412344 0.00635391 0.00258532) 13568
(0.00593218 0.00641595 0.00291684) 13511
(0.00653606 0.00642642 0.00291124) 13513
(0.0049768 0.00441812 0.00160349) 5709
(0.00496966 0.00442821 0.00156946) 5709
(0.00577222 0.00446644 0.00166133) 14051
(0.00673911 0.00444124 0.00170792) 14053
(0.00499503 0.00419189 0.00185221) 14109
(0.00488547 0.00408766 0.00179488) 5649
(0.0046788 0.00406777 0.001761) 5649
(0.00498959 0.00409621 0.00167606) 5649
(0.00587938 0.00423601 0.0017946) 14111
(0.00486598 0.00350659 0.00329191) 5409
(0.00477977 0.00353907 0.0033106) 14409
(0.0049458 0.003449 0.00324592) 5409
(0.00484342 0.00369258 0.0036665) 14529
(0.00504346 0.00362973 0.00363183) 5290
(0.00507527 0.00375175 0.00364801) 14530
(0.00444703 0.0050606 0.0043943) 14828
(0.00319626 0.00499153 0.00445284) 14826
(0.00516479 0.00495627 0.00442379) 14830
(0.00662246 0.00634421 0.00335364) 15193
(0.00469471 0.0064557 0.00293174) 13509
(0.00521434 0.00645256 0.00312806) 15250
(0.00592587 0.0064258 0.00316451) 15251
(0.00674253 0.00639399 0.00309915) 15253
(0.0205088 0.00693732 0.00357517) 2021
(0.0120515 0.00649726 0.00418731) 6684
(0.0131193 0.00645726 0.00416173) 6686
(0.0139489 0.00643145 0.00415371) 6687
(0.0146357 0.00641814 0.00414515) 6689
(0.0152185 0.00641072 0.00414012) 6690
(0.0157402 0.00640822 0.00413557) 6691
(0.0162456 0.00640796 0.00413099) 6692
(0.0167641 0.00640637 0.00412732) 6693
(0.0224475 0.00636121 0.00202873) 13484
(0.0238055 0.00660129 0.00225145) 6107
(0.02476 0.00668858 0.00221103) 13429
(0.0212869 0.00664851 0.00415732) 6642
(0.0232426 0.00674639 0.00408627) 1966
(0.0191853 0.00635863 0.00113972) 12458
(0.0199802 0.00362528 0.00465271) 7179
(0.0215211 0.00365874 0.00470138) 10543
(0.0200989 0.00334808 0.00166225) 400
(0.0219318 0.00329744 0.00172214) 463
(0.0189059 0.00610319 0.00482671) 12217
(0.0208198 0.00614848 0.00474956) 12221
(0.0206194 0.0058516 0.00502919) 12581
(0.0206194 0.0058516 0.00502919) 12581
(0.0206194 0.0058516 0.00502919) 12581
(0.0222911 0.00588759 0.00500733) 12584
(0.0222911 0.00588759 0.00500733) 12584
(0.0222911 0.00588759 0.00500733) 12584
(0.0230242 0.00602529 0.00494732) 12346
(0.0203185 0.00401219 0.00490919) 10540
(0.0207644 0.00375426 0.00142777) 9221
(0.0211235 0.00411849 0.00126832) 11502
(0.020612 0.00477966 0.000946162) 11621
(0.0221828 0.0046733 0.000935392) 11564
(0.0196451 0.00596361 0.00101009) 12279
(0.0207702 0.00531406 0.000838002) 10121
(0.022368 0.00525245 0.00081028) 11924
(0.0200026 0.00526255 0.00521695) 11440
(0.0215091 0.00528487 0.00520872) 11443
(0.0200876 0.00373425 0.00119675) 13000
(0.0187832 0.00292194 0.00318668) 32400
(0.0228135 0.00304625 0.00320897) 765
(0.0247569 0.00297483 0.00317916) 34128
(0.0249544 0.00293585 0.00323087) 34128
(0.0202844 0.00671192 0.00168095) 2500
(0.0202844 0.00671192 0.00168095) 2500
(0.0202844 0.00671192 0.00168095) 2500
(0.0223779 0.00667871 0.00171131) 2504
(0.0234502 0.00665902 0.00164315) 2506
(0.0217717 0.00612119 0.0016318) 6043
(0.0230593 0.00627787 0.00171743) 13486
(0.00732181 0.00643733 0.00287494) 13514
(0.00732181 0.00643733 0.00287494) 13514
(0.00732181 0.00643733 0.00287494) 13514
(0.00784945 0.00644011 0.00286897) 13515
(0.00831563 0.00644219 0.00286525) 13516
(0.00875317 0.00644468 0.00286556) 13517
(0.00920801 0.00644539 0.00286922) 13518
(0.00969263 0.0064432 0.0028701) 13519
(0.00761203 0.00636371 0.00258536) 13575
(0.0190292 0.0062204 0.00236015) 13658
(0.0195304 0.00621221 0.00236065) 13659
(0.0200637 0.00619964 0.00235752) 13660
(0.020616 0.00618536 0.00234885) 13661
(0.0211359 0.00617448 0.00233605) 13662
(0.00768152 0.00584257 0.00187067) 13755
(0.00806181 0.00584317 0.00185535) 13756
(0.00758377 0.00558973 0.00170369) 13815
(0.00794641 0.00559093 0.00169176) 13815
(0.007102 0.00466966 0.00162249) 13994
(0.00737432 0.00439917 0.00170345) 14054
(0.00737432 0.00439917 0.00170345) 14054
(0.00737432 0.00439917 0.00170345) 14054
(0.00861156 0.00438696 0.00168247) 14057
(0.00904878 0.00438791 0.00168245) 14058
(0.00949377 0.00438903 0.00168262) 14058
(0.0078498 0.00416141 0.00182216) 14115
(0.00822008 0.00415162 0.00181656) 14116
(0.00863238 0.00415149 0.00181417) 14117
(0.00907826 0.004155 0.00181353) 14118
(0.00954232 0.00415544 0.00181606) 14119
(0.00766082 0.00395566 0.00203933) 14175
(0.00797328 0.0039446 0.00202846) 14175
(0.0076396 0.00358885 0.00318907) 14415
(0.0121596 0.00361227 0.00319137) 14424
(0.0127319 0.00362679 0.00319143) 14425
(0.0132602 0.00363317 0.00318995) 14426
(0.0137506 0.00363209 0.00318887) 14427
(0.00778751 0.00366245 0.00347446) 14475
(0.00831613 0.00363926 0.00346643) 14476
(0.0087447 0.00362361 0.00346673) 14477
(0.00915245 0.00361159 0.00346806) 14478
(0.0096321 0.0036087 0.00346637) 14479
(0.00748576 0.00374516 0.00369491) 14534
(0.00820092 0.00373049 0.00369504) 14536
(0.00872486 0.00372427 0.00370015) 14537
(0.0091876 0.00371926 0.00370573) 14538
(0.00968736 0.00371962 0.00370827) 14539
(0.00705414 0.0039847 0.00396647) 14594
(0.00757698 0.0039353 0.00393087) 14595
(0.00806974 0.00391639 0.00392322) 14596
(0.00711846 0.00472277 0.00438767) 14774
(0.00777941 0.00500775 0.00443375) 14835
(0.00817447 0.00500158 0.00444476) 14836
(0.0085832 0.00499557 0.00444914) 14837
(0.00902804 0.00499417 0.00444926) 14838
(0.00724369 0.00528167 0.00438702) 14894
(0.00766419 0.00528433 0.00439819) 14895
(0.00804845 0.00528806 0.00440993) 14896
(0.0084556 0.00528677 0.00441606) 14896
(0.00721027 0.0063609 0.00339396) 15194
(0.00741777 0.00642642 0.00310947) 15254
(0.00741777 0.00642642 0.00310947) 15254
(0.00741777 0.00642642 0.00310947) 15254
(0.00833459 0.00644083 0.00312687) 15256
(0.00880466 0.0064397 0.00312982) 15257
(0.00928456 0.00643721 0.00313168) 15258
(0.00977449 0.00643447 0.00313334) 15259
(0.00218727 0.00647961 0.00290202) 13504
(0.00410211 0.00635364 0.00259098) 13568
(0.00592403 0.00641209 0.00291433) 13511
(0.00652731 0.00642619 0.00291099) 13513
(0.00499134 0.00442717 0.00161125) 5709
(0.00497881 0.0044284 0.00157386) 5709
(0.00573715 0.00446757 0.00165928) 14051
(0.00671423 0.00444025 0.00170635) 14053
(0.00500063 0.00420256 0.00185668) 14110
(0.00490404 0.00409521 0.00179594) 5649
(0.00470476 0.0040581 0.00175895) 5649
(0.00498191 0.00409099 0.00167961) 5649
(0.00584078 0.00423606 0.00179004) 14111
(0.00495913 0.00347478 0.00326831) 5409
(0.00478634 0.00353558 0.00331025) 14409
(0.00498289 0.00343596 0.00323955) 5409
(0.0048397 0.00370028 0.00367033) 14529
(0.00503865 0.00362492 0.00363248) 5290
(0.00507629 0.00375992 0.00364699) 14530
(0.00448708 0.00506272 0.00438937) 14828
(0.00318802 0.00499475 0.00445273) 14826
(0.00509841 0.00495713 0.00442769) 14830
(0.00659838 0.00634529 0.00335526) 15193
(0.00468835 0.00645388 0.00292702) 13509
(0.00519882 0.00645314 0.00312519) 15250
(0.00590626 0.00642568 0.00316461) 15251
(0.00671742 0.00639527 0.00309963) 15253
(0.0197845 0.00298264 0.00222306) 32684
(0.0204636 0.00693285 0.00358063) 2020
(0.0120123 0.00649898 0.0041884) 6684
(0.0130919 0.00645811 0.0041618) 6686
(0.0139271 0.00643184 0.00415365) 6687
(0.0146179 0.00641818 0.00414509) 6689
(0.015203 0.0064106 0.00413999) 6690
(0.0157261 0.00640798 0.00413532) 6691
(0.0162309 0.00640773 0.00413072) 6692
(0.0167479 0.00640624 0.00412716) 6693
(0.022342 0.00635393 0.00201617) 13484
(0.0237619 0.00659395 0.00224823) 6107
(0.0247426 0.00668667 0.0022151) 13429
(0.0211846 0.0066487 0.00415946) 6642
(0.0231996 0.00674145 0.00408877) 1966
(0.0191547 0.00636168 0.00114132) 12458
(0.0199221 0.00362364 0.00465131) 7179
(0.0214937 0.00365519 0.00469617) 7182
(0.0200242 0.00335012 0.00165785) 400
(0.0218918 0.00330167 0.00171943) 463
(0.0188246 0.00610212 0.00483171) 12217
(0.0207601 0.00614544 0.00475114) 12221
(0.0205455 0.00585053 0.00503084) 12581
(0.0205455 0.00585053 0.00503084) 12581
(0.0205455 0.00585053 0.00503084) 12581
(0.0222554 0.00588359 0.00500811) 12584
(0.0222554 0.00588359 0.00500811) 12584
(0.0222554 0.00588359 0.00500811) 12584
(0.0230173 0.00601595 0.00495349) 12346
(0.0202621 0.00401065 0.00490636) 10540
(0.0206549 0.00375634 0.00142602) 9221
(0.0210218 0.0041231 0.00126815) 11502
(0.0205434 0.00478347 0.000945743) 11621
(0.0221508 0.00467944 0.000936664) 11564
(0.0195916 0.00596377 0.0010104) 12279
(0.0206905 0.00531672 0.000837994) 10121
(0.0223425 0.00525671 0.000814211) 11924
(0.0199475 0.00526204 0.00521771) 11439
(0.0214747 0.00528116 0.00520785) 11442
(0.0200537 0.00374038 0.00119444) 13000
(0.0186855 0.00291941 0.00318175) 32400
(0.0226684 0.00304708 0.00321012) 765
(0.0247373 0.00297798 0.00317879) 34128
(0.0249648 0.00293582 0.00322503) 34128
(0.0201719 0.00671555 0.00167664) 2500
(0.0201719 0.00671555 0.00167664) 2500
(0.0201719 0.00671555 0.00167664) 2500
(0.0223257 0.00667909 0.00171285) 2504
(0.023435 0.00666223 0.00164931) 2506
(0.0216036 0.00612195 0.00162978) 6043
(0.0230477 0.00627319 0.00171794) 13486
(0.00729516 0.00643753 0.00287519) 13514
(0.00729516 0.00643753 0.00287519) 13514
(0.00729516 0.00643753 0.00287519) 13514
(0.00782454 0.0064402 0.00286922) 13515
(0.00829191 0.00644227 0.00286529) 13516
(0.00872953 0.00644477 0.00286542) 13517
(0.00918411 0.00644553 0.00286913) 13518
(0.00966825 0.0064434 0.00287009) 13519
(0.00759058 0.00636375 0.00258628) 13575
(0.0190072 0.00622071 0.00236017) 13658
(0.0195081 0.00621267 0.00236078) 13659
(0.0200397 0.00620032 0.00235784) 13660
(0.0205924 0.00618603 0.00234946) 13661
(0.0211138 0.00617494 0.00233677) 13662
(0.00766044 0.00584245 0.00187089) 13755
(0.00804016 0.00584326 0.00185552) 13756
(0.00756158 0.00558973 0.00170386) 13815
(0.00792396 0.00559086 0.00169174) 13815
(0.00707974 0.00466949 0.00162254) 13994
(0.0073512 0.0043994 0.00170336) 14054
(0.0073512 0.0043994 0.00170336) 14054
(0.0073512 0.0043994 0.00170336) 14054
(0.00858655 0.00438683 0.0016822) 14057
(0.00902502 0.00438783 0.00168226) 14058
(0.00947002 0.00438886 0.00168247) 14058
(0.00782739 0.00416169 0.00182218) 14115
(0.00819634 0.00415149 0.00181649) 14116
(0.00860767 0.00415112 0.00181406) 14117
(0.00905384 0.00415476 0.00181336) 14118
(0.0095179 0.00415538 0.00181579) 14119
(0.00764033 0.00395601 0.00203946) 14175
(0.00795115 0.00394461 0.00202859) 14175
(0.00761713 0.0035891 0.00318931) 14415
(0.0121344 0.0036116 0.00319142) 14424
(0.012708 0.00362632 0.0031915) 14425
(0.0132379 0.00363301 0.00319007) 14426
(0.0137299 0.00363221 0.00318893) 14427
(0.0077608 0.00366366 0.00347522) 14475
(0.00829267 0.00364001 0.0034667) 14476
(0.00872384 0.00362419 0.00346676) 14477
(0.00912994 0.00361189 0.00346815) 14478
(0.00960573 0.0036085 0.00346661) 14479
(0.00744794 0.00374648 0.00369584) 14534
(0.0081716 0.00373083 0.00369504) 14536
(0.0087004 0.00372448 0.00370009) 14537
(0.00916323 0.00371933 0.00370566) 14538
(0.00966103 0.00371939 0.0037084) 14539
(0.00703036 0.00398777 0.00396885) 14594
(0.00755195 0.00393673 0.00393195) 14595
(0.0080455 0.00391687 0.00392346) 14596
(0.00709373 0.0047229 0.00438798) 14774
(0.00775819 0.00500808 0.00443353) 14835
(0.00815127 0.00500188 0.00444485) 14836
(0.00855901 0.00499582 0.00444942) 14837
(0.00900351 0.00499407 0.00444953) 14838
(0.00722331 0.00528166 0.00438688) 14894
(0.00764309 0.00528431 0.00439799) 14895
(0.00802514 0.00528821 0.0044099) 14896
(0.00843132 0.00528695 0.00441625) 14896
(0.00718821 0.0063608 0.00339368) 15194
(0.00753652 0.00637929 0.00340684) 15195
(0.00739387 0.00642639 0.00310922) 15254
(0.00739387 0.00642639 0.00310922) 15254
(0.00739387 0.00642639 0.00310922) 15254
(0.00786007 0.00643644 0.00312007) 15255
(0.00830981 0.00644098 0.00312678) 15256
(0.0087796 0.00643997 0.00312979) 15257
(0.00926034 0.00643742 0.00313164) 15258
(0.0097503 0.00643465 0.00313333) 15259
(0.0022251 0.00647841 0.00290158) 13504
(0.00408666 0.00635359 0.00259479) 13568
(0.00592738 0.00640793 0.00291129) 13511
(0.00650402 0.00642589 0.00291092) 13513
(0.00500928 0.00443613 0.00161971) 5710
(0.00498854 0.0044294 0.0015785) 5709
(0.00570164 0.00446874 0.00165704) 14051
(0.00668982 0.0044394 0.00170501) 14053
(0.00500113 0.00420957 0.00186092) 14110
(0.00493388 0.00410785 0.00179803) 5649
(0.00471582 0.00405399 0.00176018) 5649
(0.00494263 0.00407647 0.00168707) 5649
(0.00578544 0.00423799 0.00178425) 14111
(0.00479615 0.00352969 0.00330605) 5409
(0.00500823 0.00342863 0.00323625) 5410
(0.00484198 0.00370278 0.00367017) 14529
(0.00502601 0.0036225 0.0036338) 5290
(0.00508212 0.00377111 0.00364695) 14530
(0.00451281 0.00506363 0.00438554) 14829
(0.00320896 0.00499997 0.00445214) 14826
(0.00502416 0.00495795 0.00443174) 14830
(0.00657382 0.0063465 0.00335714) 15193
(0.00467624 0.00645137 0.00291952) 13509
(0.00518368 0.00645368 0.00312222) 15250
(0.00588959 0.00642526 0.00316483) 15251
(0.00669362 0.00639556 0.00310033) 15253
(0.0197474 0.00298554 0.00221916) 32684
(0.0204176 0.00692855 0.00358604) 2020
(0.0119727 0.00650074 0.00418954) 6683
(0.013064 0.00645898 0.00416191) 6686
(0.013905 0.00643223 0.0041536) 6687
(0.0145999 0.00641822 0.00414505) 6689
(0.0151875 0.00641049 0.00413985) 6690
(0.015712 0.00640774 0.00413506) 6691
(0.0162163 0.0064075 0.00413044) 6692
(0.0167317 0.0064061 0.004127) 6693
(0.0172628 0.00640172 0.00412315) 6694
(0.0222274 0.00634825 0.00200303) 13484
(0.0237184 0.00658627 0.00224434) 6107
(0.0247229 0.00668474 0.00221899) 13429
(0.0210795 0.00664924 0.0041617) 6642
(0.0231539 0.00673665 0.00409122) 1966
(0.0191237 0.00636471 0.00114285) 12458
(0.0198644 0.00362203 0.00464991) 7179
(0.0214648 0.00365186 0.0046912) 7182
(0.0199489 0.00335205 0.00165334) 399
(0.0218501 0.00330575 0.00171682) 463
(0.0187425 0.0061014 0.00483672) 12217
(0.0206991 0.00614261 0.00475276) 12221
(0.0204711 0.00584951 0.00503259) 12580
(0.0204711 0.00584951 0.00503259) 12580
(0.0204711 0.00584951 0.00503259) 12580
(0.022218 0.00587979 0.00500882) 12584
(0.022218 0.00587979 0.00500882) 12584
(0.022218 0.00587979 0.00500882) 12584
(0.0230117 0.00600641 0.00495913) 12346
(0.0202061 0.00400901 0.00490354) 10540
(0.0205443 0.00375841 0.00142396) 9221
(0.0209195 0.00412768 0.00126773) 11501
(0.0204739 0.00478712 0.000945233) 11620
(0.0221171 0.00468551 0.000937937) 11564
(0.0195382 0.00596394 0.00101067) 12279
(0.0211296 0.00596843 0.00100192) 12282
(0.0206092 0.00531957 0.000837873) 10121
(0.0223147 0.00526074 0.000817999) 11924
(0.0198924 0.00526156 0.00521855) 11079
(0.0214391 0.00527767 0.00520703) 11442
(0.0200194 0.00374634 0.00119214) 13000
(0.0185899 0.00291716 0.00317673) 32400
(0.0225214 0.00304735 0.00321105) 765
(0.0225214 0.00304735 0.00321105) 765
(0.0225214 0.00304735 0.00321105) 765
(0.0247157 0.0029811 0.00317859) 34128
(0.0249739 0.00293618 0.00321953) 34128
(0.0200523 0.00671968 0.00167159) 2500
(0.0200523 0.00671968 0.00167159) 2500
(0.0200523 0.00671968 0.00167159) 2500
(0.022272 0.00667951 0.00171425) 2504
(0.0234188 0.00666514 0.00165525) 2506
(0.0214194 0.00612606 0.00162958) 6042
(0.0230356 0.00626843 0.00171814) 13486
(0.00726847 0.00643773 0.00287547) 13514
(0.00726847 0.00643773 0.00287547) 13514
(0.00726847 0.00643773 0.00287547) 13514
(0.00779956 0.00644028 0.00286944) 13515
(0.00826818 0.00644235 0.00286535) 13516
(0.00870589 0.00644486 0.00286528) 13517
(0.00916018 0.00644567 0.00286903) 13518
(0.00964389 0.0064436 0.00287009) 13519
(0.00756915 0.00636378 0.00258722) 13575
(0.0189851 0.00622103 0.00236019) 13657
(0.0194858 0.00621313 0.0023609) 13658
(0.0200158 0.006201 0.00235815) 13660
(0.0205687 0.00618671 0.00235006) 13661
(0.0210917 0.00617542 0.00233748) 13662
(0.00763938 0.00584232 0.00187111) 13755
(0.00801861 0.00584335 0.0018557) 13756
(0.00753943 0.00558974 0.00170404) 13815
(0.00790156 0.00559079 0.00169173) 13815
(0.00705754 0.00466929 0.0016226) 13994
(0.0073281 0.00439962 0.00170327) 14054
(0.0073281 0.00439962 0.00170327) 14054
(0.0073281 0.00439962 0.00170327) 14054
(0.00856147 0.0043867 0.00168193) 14057
(0.0090012 0.00438777 0.00168206) 14058
(0.0094463 0.00438869 0.00168233) 14058
(0.00780502 0.00416197 0.0018222) 14115
(0.00817271 0.00415139 0.00181644) 14116
(0.00858297 0.00415075 0.00181395) 14117
(0.00902939 0.00415448 0.0018132) 14118
(0.00949351 0.00415533 0.00181552) 14118
(0.00761985 0.00395636 0.00203959) 14175
(0.00792914 0.00394464 0.00202873) 14175
(0.00759459 0.00358935 0.00318954) 14415
(0.0121092 0.00361093 0.00319145) 14424
(0.0126839 0.00362583 0.00319157) 14425
(0.0132155 0.00363285 0.00319019) 14426
(0.013709 0.00363233 0.003189) 14427
(0.00773396 0.00366489 0.00347603) 14475
(0.00826913 0.00364078 0.00346697) 14476
(0.00870297 0.00362478 0.0034668) 14477
(0.0091076 0.00361221 0.00346824) 14478
(0.00957949 0.00360832 0.00346684) 14479
(0.00740983 0.00374789 0.00369689) 14534
(0.00814201 0.0037312 0.00369507) 14536
(0.00867583 0.0037247 0.00370003) 14537
(0.00913893 0.00371942 0.00370559) 14538
(0.00963475 0.00371918 0.00370851) 14539
(0.00700662 0.00399093 0.00397124) 14594
(0.00752696 0.00393822 0.00393308) 14595
(0.00802122 0.0039174 0.00392372) 14596
(0.00706903 0.00472305 0.00438831) 14774
(0.007737 0.00500841 0.00443331) 14835
(0.00812812 0.00500219 0.00444492) 14836
(0.0085348 0.00499609 0.0044497) 14837
(0.00897894 0.00499397 0.00444981) 14837
(0.00720286 0.00528167 0.00438673) 14894
(0.00762207 0.0052843 0.00439779) 14895
(0.00800191 0.00528834 0.00440987) 14896
(0.00840699 0.00528715 0.00441643) 14896
(0.00716618 0.00636071 0.00339337) 15194
(0.0075133 0.00637919 0.00340645) 15195
(0.00736999 0.00642638 0.00310899) 15254
(0.00736999 0.00642638 0.00310899) 15254
(0.00736999 0.00642638 0.00310899) 15254
(0.00783618 0.00643637 0.00311979) 15255
(0.00828512 0.00644112 0.00312669) 15256
(0.00875448 0.00644023 0.00312975) 15257
(0.00923606 0.00643763 0.0031316) 15258
(0.0097261 0.00643484 0.00313332) 15259
(0.00226174 0.00647703 0.00290133) 13504
(0.0041062 0.00635134 0.00259165) 13568
(0.0059194 0.00640297 0.00290788) 13511
(0.00648108 0.00642552 0.00291078) 13512
(0.00502935 0.00444491 0.00162903) 14050
(0.00499805 0.00443071 0.00158288) 5709
(0.00566415 0.0044698 0.0016544) 14051
(0.00666579 0.00443849 0.00170379) 14053
(0.00500294 0.00421777 0.00186543) 14110
(0.00495237 0.00411703 0.00180285) 5649
(0.00474024 0.00404868 0.00175797) 5649
(0.00495049 0.00407719 0.00168999) 5649
(0.0057316 0.00424008 0.00177815) 14111
(0.00481171 0.00352118 0.00329882) 5409
(0.00500013 0.00343066 0.00323582) 5410
(0.00484306 0.00370645 0.00367004) 14529
(0.0050104 0.00362516 0.00363708) 5290
(0.00508835 0.00378057 0.0036468) 14530
(0.00451753 0.00506305 0.00438358) 14829
(0.00324528 0.00500449 0.00445132) 14826
(0.00494377 0.00495866 0.00443588) 14829
(0.00466189 0.0064482 0.00291145) 13509
(0.00516407 0.0064547 0.00311814) 15250
(0.0058711 0.00642504 0.00316493) 15251
(0.0066713 0.00639485 0.00310158) 15253
(0.0197096 0.00298826 0.00221544) 32684
(0.020371 0.00692445 0.00359138) 2020
(0.0119326 0.00650252 0.00419071) 6683
(0.0130358 0.00645986 0.00416207) 6686
(0.0138829 0.00643264 0.00415356) 6687
(0.0145818 0.00641828 0.00414502) 6689
(0.0151718 0.0064104 0.00413971) 6690
(0.015698 0.00640751 0.00413478) 6691
(0.0162017 0.00640728 0.00413015) 6692
(0.0167156 0.00640595 0.00412682) 6693
(0.0172462 0.00640165 0.00412305) 6694
(0.0221017 0.00634552 0.00199206) 13484
(0.0236749 0.00657831 0.00223983) 6107
(0.024701 0.00668276 0.00222266) 13429
(0.0209719 0.00665016 0.00416403) 6641
(0.0231056 0.00673199 0.00409362) 1966
(0.0190924 0.00636774 0.00114431) 12458
(0.0198071 0.00362051 0.00464858) 7179
(0.0214342 0.00364875 0.00468646) 7182
(0.0198729 0.00335386 0.00164873) 399
(0.0218069 0.00330971 0.00171431) 463
(0.0186624 0.00610093 0.00484172) 12217
(0.0206369 0.00613992 0.00475444) 12221
(0.0203962 0.00584849 0.00503444) 12580
(0.0203962 0.00584849 0.00503444) 12580
(0.0203962 0.00584849 0.00503444) 12580
(0.0221791 0.00587619 0.00500947) 12584
(0.0221791 0.00587619 0.00500947) 12584
(0.0221791 0.00587619 0.00500947) 12584
(0.0230063 0.00599699 0.00496422) 12346
(0.0201501 0.00400724 0.00490071) 10540
(0.0204329 0.00376047 0.00142159) 12760
(0.0208166 0.00413215 0.00126706) 11501
(0.0204039 0.00479064 0.000944633) 11620
(0.0220817 0.00469143 0.000939196) 11624
(0.019485 0.00596413 0.00101088) 12278
(0.0210921 0.00597037 0.00100481) 12282
(0.0205251 0.0053225 0.000837536) 10121
(0.0222849 0.00526455 0.000821648) 11924
(0.0198375 0.00526111 0.00521947) 11079
(0.0214024 0.00527441 0.00520626) 11442
(0.0199849 0.00375213 0.00118987) 12999
(0.0223756 0.00304717 0.00321171) 764
(0.0223756 0.00304717 0.00321171) 764
(0.0223756 0.00304717 0.00321171) 764
(0.0246921 0.00298419 0.00317858) 34128
(0.0249821 0.00293687 0.00321431) 34128
(0.0199296 0.00672452 0.00166617) 2499
(0.0199296 0.00672452 0.00166617) 2499
(0.0199296 0.00672452 0.00166617) 2499
(0.0222164 0.00668 0.0017155) 2504
(0.0234025 0.00666787 0.00166114) 2506
(0.0212207 0.00613355 0.00163104) 6042
(0.0230219 0.00626363 0.00171808) 13486
(0.00724175 0.00643793 0.00287576) 13514
(0.00724175 0.00643793 0.00287576) 13514
(0.00724175 0.00643793 0.00287576) 13514
(0.00777452 0.00644036 0.00286968) 13515
(0.00824443 0.00644242 0.0028654) 13516
(0.00868225 0.00644495 0.00286515) 13517
(0.00913624 0.0064458 0.00286892) 13518
(0.00961953 0.0064438 0.00287008) 13519
(0.00754775 0.0063638 0.00258816) 13575
(0.018963 0.00622134 0.0023602) 13657
(0.0194636 0.00621358 0.00236102) 13658
(0.0199919 0.00620167 0.00235845) 13659
(0.0205449 0.00618739 0.00235066) 13661
(0.0210695 0.0061759 0.00233818) 13662
(0.0076183 0.00584216 0.00187131) 13755
(0.00799715 0.00584345 0.0018559) 13755
(0.00751731 0.00558977 0.00170424) 13815
(0.0078792 0.00559072 0.00169173) 13815
(0.0070354 0.00466909 0.00162265) 13994
(0.00730502 0.00439983 0.00170318) 14054
(0.00730502 0.00439983 0.00170318) 14054
(0.00730502 0.00439983 0.00170318) 14054
(0.00853638 0.00438652 0.00168168) 14057
(0.0089773 0.00438776 0.00168184) 14057
(0.0094226 0.00438853 0.00168219) 14058
(0.00778267 0.00416225 0.00182224) 14115
(0.00814917 0.0041513 0.00181639) 14116
(0.00855828 0.00415043 0.00181381) 14117
(0.0090049 0.00415414 0.00181309) 14118
(0.00946914 0.00415527 0.00181524) 14118
(0.00759938 0.00395673 0.00203972) 14175
(0.00790725 0.00394468 0.00202889) 14175
(0.00757198 0.00358958 0.00318976) 14415
(0.0120841 0.00361027 0.00319146) 14424
(0.0126598 0.00362534 0.00319165) 14425
(0.0131931 0.00363266 0.00319031) 14426
(0.0136881 0.00363243 0.00318907) 14427
(0.014144 0.00362632 0.00318896) 14428
(0.00770701 0.00366613 0.00347688) 14475
(0.00824551 0.00364157 0.00346726) 14476
(0.00868209 0.00362537 0.00346684) 14477
(0.00908542 0.00361256 0.00346832) 14478
(0.00955338 0.00360817 0.00346707) 14479
(0.00737156 0.00374937 0.00369805) 14534
(0.00811213 0.0037316 0.00369511) 14536
(0.00865114 0.00372493 0.00369999) 14537
(0.00911471 0.00371951 0.0037055) 14538
(0.00960853 0.00371898 0.00370862) 14539
(0.0069829 0.00399416 0.00397364) 14593
(0.00750201 0.00393978 0.00393426) 14595
(0.00799689 0.00391795 0.00392402) 14595
(0.00704433 0.00472322 0.00438863) 14774
(0.00771582 0.00500874 0.00443308) 14835
(0.00810505 0.0050025 0.00444498) 14836
(0.00851058 0.00499636 0.00444997) 14837
(0.00895435 0.00499388 0.00445009) 14837
(0.00718232 0.00528171 0.00438659) 14894
(0.00760112 0.00528428 0.00439759) 14895
(0.0079788 0.00528845 0.00440982) 14895
(0.00838264 0.00528735 0.00441661) 14896
(0.0071442 0.00636062 0.00339307) 15194
(0.00749029 0.00637909 0.00340604) 15194
(0.00734614 0.00642636 0.00310877) 15254
(0.00734614 0.00642636 0.00310877) 15254
(0.00734614 0.00642636 0.00310877) 15254
(0.00781233 0.0064363 0.00311949) 15255
(0.00826051 0.00644125 0.00312659) 15256
(0.00872931 0.0064405 0.00312972) 15257
(0.00921171 0.00643784 0.00313155) 15258
(0.00970189 0.00643502 0.00313331) 15259
(0.00219113 0.00647702 0.00290312) 13504
(0.00414389 0.00634784 0.00258707) 13568
(0.00463021 0.00633134 0.00266434) 13569
(0.00645843 0.00642507 0.00291053) 13512
(0.00505059 0.00445345 0.00163935) 14050
(0.00500675 0.00443226 0.00158693) 5710
(0.0056243 0.00447074 0.00165132) 14051
(0.00664161 0.00443754 0.00170272) 14053
(0.00500175 0.00422477 0.00187075) 14110
(0.00496045 0.00412274 0.00180905) 14109
(0.00475197 0.0040467 0.0017596) 5649
(0.00495346 0.0040769 0.00169405) 5649
(0.00569992 0.00424006 0.00177369) 14111
(0.00481731 0.00351886 0.00329956) 5409
(0.00502522 0.00342426 0.00323275) 5410
(0.00484302 0.00371072 0.00367012) 14529
(0.00499344 0.00362941 0.00364009) 5289
(0.00508849 0.00378023 0.00364371) 14530
(0.00452218 0.0050624 0.00438155) 14829
(0.00333567 0.00501024 0.00444969) 14826
(0.00485844 0.00495923 0.00444002) 14829
(0.00463747 0.00644296 0.00289858) 13509
(0.00514224 0.00645597 0.00311333) 15250
(0.00585336 0.00642475 0.00316509) 15251
(0.00664881 0.00639413 0.00310288) 15253
(0.0196711 0.0029908 0.00221187) 32684
(0.0203236 0.00692053 0.00359667) 2020
(0.0118918 0.00650436 0.00419195) 6683
(0.0130071 0.00646077 0.00416228) 6686
(0.0138605 0.00643306 0.00415354) 6687
(0.0145634 0.00641834 0.00414502) 6689
(0.015156 0.00641032 0.00413956) 6690
(0.0156839 0.00640731 0.00413446) 6691
(0.0161871 0.00640706 0.00412983) 6692
(0.0166996 0.00640578 0.00412664) 6693
(0.0172295 0.00640158 0.00412298) 6694
(0.0219662 0.0063455 0.00198205) 13483
(0.0236314 0.00657011 0.00223478) 6107
(0.0246765 0.00668068 0.00222609) 13429
(0.0208627 0.00665117 0.00416661) 6641
(0.023055 0.00672742 0.00409599) 1966
(0.0190609 0.00637077 0.00114572) 12458
(0.0197501 0.00361915 0.00464735) 7179
(0.021402 0.00364583 0.00468193) 7182
(0.0197966 0.0033556 0.001644) 399
(0.021762 0.00331354 0.00171189) 463
(0.0185869 0.00610064 0.00484667) 12217
(0.0205733 0.00613737 0.0047562) 12221
(0.0203211 0.00584752 0.00503637) 12580
(0.0203211 0.00584752 0.00503637) 12580
(0.0203211 0.00584752 0.00503637) 12580
(0.0221388 0.00587274 0.00501009) 12584
(0.0221388 0.00587274 0.00501009) 12584
(0.0221388 0.00587274 0.00501009) 12584
(0.0230021 0.00598756 0.00496884) 12346
(0.0200945 0.00400534 0.00489785) 10540
(0.0203211 0.00376249 0.00141898) 12760
(0.0207134 0.00413652 0.00126615) 11501
(0.0233494 0.00405563 0.00123155) 11506
(0.0203335 0.00479403 0.000943944) 11620
(0.0220444 0.00469714 0.000940438) 11624
(0.0194322 0.00596434 0.00101106) 12278
(0.0210533 0.00597213 0.00100754) 12282
(0.0204397 0.00532555 0.00083706) 12100
(0.0222526 0.00526817 0.00082514) 11924
(0.0197828 0.00526068 0.00522049) 11079
(0.0213645 0.00527137 0.00520555) 11442
(0.0222467 0.00540146 0.00522129) 11444
(0.0199503 0.00375777 0.00118762) 12999
(0.0222294 0.00304643 0.00321212) 764
(0.0222294 0.00304643 0.00321212) 764
(0.0222294 0.00304643 0.00321212) 764
(0.0246661 0.00298723 0.00317874) 34128
(0.0249891 0.00293786 0.0032094) 34128
(0.019811 0.00673011 0.00166097) 2499
(0.019811 0.00673011 0.00166097) 2499
(0.019811 0.00673011 0.00166097) 2499
(0.0221588 0.00668056 0.0017166) 2504
(0.0233857 0.00667043 0.00166692) 2506
(0.0210091 0.00614428 0.00163386) 6042
(0.0230075 0.00625877 0.00171772) 13486
(0.007215 0.00643812 0.00287606) 13514
(0.007215 0.00643812 0.00287606) 13514
(0.007215 0.00643812 0.00287606) 13514
(0.00774943 0.00644044 0.00286993) 13515
(0.00822066 0.0064425 0.00286546) 13516
(0.00865862 0.00644503 0.00286503) 13517
(0.00911227 0.00644594 0.00286879) 13518
(0.00959518 0.006444 0.00287008) 13519
(0.00752637 0.00636382 0.00258912) 13575
(0.0189408 0.00622165 0.00236021) 13657
(0.0194414 0.00621402 0.00236112) 13658
(0.019968 0.00620234 0.00235873) 13659
(0.0205211 0.00618807 0.00235123) 13661
(0.0210472 0.00617639 0.00233889) 13662
(0.00759722 0.00584197 0.00187147) 13755
(0.00797578 0.00584354 0.00185612) 13755
(0.00749524 0.00558983 0.00170447) 13814
(0.0078569 0.00559065 0.00169174) 13815
(0.00701328 0.00466891 0.00162268) 13994
(0.00735397 0.00466761 0.00160609) 13994
(0.007282 0.00440002 0.00170309) 14054
(0.007282 0.00440002 0.00170309) 14054
(0.007282 0.00440002 0.00170309) 14054
(0.00851123 0.00438635 0.00168143) 14057
(0.00895338 0.00438769 0.00168163) 14057
(0.00939887 0.00438844 0.00168202) 14058
(0.00776035 0.00416255 0.00182228) 14115
(0.00812575 0.00415124 0.00181636) 14116
(0.00853361 0.00415012 0.00181367) 14117
(0.00898038 0.00415383 0.00181296) 14117
(0.00944477 0.00415514 0.00181502) 14118
(0.00757891 0.0039571 0.00203984) 14175
(0.00788548 0.00394473 0.00202906) 14175
(0.00754933 0.0035898 0.00318997) 14415
(0.012059 0.00360961 0.00319146) 14424
(0.0126356 0.00362483 0.00319172) 14425
(0.0131706 0.00363247 0.00319042) 14426
(0.013667 0.00363252 0.00318914) 14427
(0.0141246 0.00362664 0.00318899) 14428
(0.00767993 0.00366739 0.00347776) 14475
(0.0082218 0.00364238 0.00346757) 14476
(0.0086612 0.00362597 0.00346688) 14477
(0.00906341 0.00361292 0.0034684) 14478
(0.00952741 0.00360804 0.00346728) 14479
(0.00733308 0.00375093 0.00369932) 14534
(0.00808192 0.00373202 0.00369518) 14536
(0.00862632 0.00372516 0.00369995) 14537
(0.00909057 0.00371962 0.00370541) 14538
(0.00958237 0.0037188 0.00370872) 14539
(0.0069592 0.00399747 0.00397604) 14593
(0.0074771 0.0039414 0.00393549) 14594
(0.00797251 0.00391854 0.00392435) 14595
(0.00701962 0.00472342 0.00438897) 14774
(0.00769465 0.00500906 0.00443285) 14835
(0.00808205 0.0050028 0.00444502) 14836
(0.00848636 0.00499665 0.00445024) 14836
(0.00892972 0.00499381 0.00445038) 14837
(0.00716168 0.00528176 0.00438645) 14894
(0.00758026 0.00528425 0.00439738) 14895
(0.0079558 0.00528856 0.00440975) 14895
(0.00835827 0.00528755 0.00441679) 14896
(0.00712226 0.00636054 0.00339281) 15194
(0.00746746 0.00637897 0.00340561) 15194
(0.00732233 0.00642635 0.00310858) 15254
(0.00732233 0.00642635 0.00310858) 15254
(0.00732233 0.00642635 0.00310858) 15254
(0.00778853 0.00643622 0.0031192) 15255
(0.00823596 0.00644137 0.00312648) 15256
(0.0087041 0.00644077 0.00312969) 15257
(0.0091873 0.00643806 0.00313151) 15258
(0.00967767 0.00643521 0.00313329) 15259
(0.0020193 0.00647731 0.0029061) 13504
(0.0041909 0.00634281 0.00258572) 13568
(0.00459112 0.00633577 0.00264885) 13569
(0.00643586 0.00642455 0.00291021) 13512
(0.00507269 0.00446131 0.00165059) 14050
(0.00501434 0.00443394 0.00159063) 5710
(0.0055836 0.00447144 0.00164795) 14051
(0.00661729 0.00443668 0.00170175) 14053
(0.00500111 0.00423257 0.00187669) 14110
(0.00496587 0.00412783 0.00181524) 14109
(0.00476524 0.00404581 0.00176144) 5649
(0.00495455 0.0040765 0.00169862) 5649
(0.00564976 0.00424196 0.00176723) 14111
(0.00482641 0.00351523 0.00329802) 5409
(0.00504326 0.0034206 0.00323022) 5410
(0.00566618 0.00375476 0.00352859) 14471
(0.00483898 0.00371849 0.00367215) 14529
(0.00497528 0.00363611 0.00364545) 5289
(0.00509451 0.0037881 0.00364357) 14530
(0.00454128 0.00506258 0.00437798) 14829
(0.00348763 0.00501602 0.00444739) 14826
(0.0047705 0.00495982 0.00444409) 14829
(0.00460853 0.00643668 0.00288689) 13509
(0.00512264 0.00645705 0.00310874) 15250
(0.00583459 0.00642459 0.00316516) 15251
(0.00662535 0.00639418 0.0031035) 15253
(0.0196316 0.00299322 0.00220839) 32684
(0.0202756 0.00691678 0.0036019) 2020
(0.0118508 0.00650626 0.00419322) 6683
(0.012978 0.0064617 0.00416251) 6685
(0.013838 0.0064335 0.00415353) 6687
(0.0145448 0.00641839 0.00414509) 6689
(0.0151403 0.00641024 0.00413941) 6690
(0.0156698 0.00640711 0.00413412) 6691
(0.0161727 0.00640685 0.00412951) 6692
(0.0166836 0.00640563 0.00412645) 6693
(0.0172128 0.0064015 0.00412291) 6694
(0.0218167 0.00634885 0.00197354) 13483
(0.0235875 0.00656166 0.00222915) 6107
(0.0246489 0.00667835 0.00222935) 6109
(0.0207521 0.00665235 0.00416938) 6641
(0.0230019 0.00672292 0.00409837) 1966
(0.0190291 0.0063738 0.00114707) 12458
(0.0201838 0.00630418 0.00111802) 12460
(0.0196935 0.00361798 0.00464628) 7179
(0.021368 0.00364309 0.00467761) 7182
(0.01972 0.00335729 0.00163914) 399
(0.0217154 0.00331724 0.00170956) 463
(0.0205084 0.00613492 0.00475806) 12221
(0.020246 0.00584658 0.00503838) 12580
(0.020246 0.00584658 0.00503838) 12580
(0.020246 0.00584658 0.00503838) 12580
(0.0220969 0.00586945 0.00501066) 12584
(0.0220969 0.00586945 0.00501066) 12584
(0.0220969 0.00586945 0.00501066) 12584
(0.0229971 0.00597846 0.00497303) 12345
(0.0200393 0.00400331 0.00489497) 10540
(0.0202093 0.00376437 0.00141624) 12760
(0.0206094 0.00414074 0.00126501) 11501
(0.0232777 0.00405815 0.00123383) 11506
(0.0202629 0.00479731 0.000943167) 11620
(0.0220052 0.00470273 0.000941675) 11624
(0.01938 0.00596458 0.00101122) 12278
(0.0210133 0.00597372 0.00101011) 12282
(0.0203539 0.00532876 0.000836483) 12100
(0.0222177 0.0052716 0.000828462) 11924
(0.0197284 0.00526026 0.00522162) 11079
(0.0213253 0.00526858 0.0052049) 11442
(0.0222451 0.00539011 0.00522036) 11444
(0.0199156 0.00376327 0.00118539) 12999
(0.0220848 0.00304523 0.00321228) 764
(0.0220848 0.00304523 0.00321228) 764
(0.0220848 0.00304523 0.00321228) 764
(0.0246378 0.00299022 0.00317906) 34128
(0.0249951 0.00293914 0.00320478) 34128
(0.0197084 0.00673574 0.00165694) 2499
(0.0197084 0.00673574 0.00165694) 2499
(0.0197084 0.00673574 0.00165694) 2499
(0.0220993 0.00668119 0.00171756) 2504
(0.0233686 0.00667282 0.00167261) 2506
(0.0207893 0.00615737 0.00163731) 13481
(0.0229911 0.00625389 0.00171711) 13485
(0.00718827 0.00643831 0.00287635) 13514
(0.00718827 0.00643831 0.00287635) 13514
(0.00718827 0.00643831 0.00287635) 13514
(0.00772428 0.00644051 0.00287018) 13515
(0.00819686 0.00644256 0.00286552) 13516
(0.00863498 0.00644512 0.00286492) 13517
(0.00908829 0.00644608 0.00286866) 13518
(0.00957082 0.0064442 0.00287007) 13519
(0.00750501 0.00636384 0.00259009) 13575
(0.0189185 0.00622195 0.00236021) 13657
(0.0194192 0.00621445 0.00236122) 13658
(0.0199441 0.00620299 0.002359) 13659
(0.0204972 0.00618875 0.00235178) 13660
(0.0210249 0.0061769 0.0023396) 13662
(0.00757614 0.00584177 0.00187164) 13755
(0.00795449 0.00584362 0.00185636) 13755
(0.00747319 0.0055899 0.00170471) 13814
(0.00783465 0.00559058 0.00169177) 13815
(0.0069912 0.00466875 0.0016227) 13993
(0.00733277 0.00466741 0.00160643) 13994
(0.00725902 0.00440021 0.00170299) 14054
(0.00725902 0.00440021 0.00170299) 14054
(0.00725902 0.00440021 0.00170299) 14054
(0.00848605 0.00438618 0.00168118) 14056
(0.0089294 0.00438761 0.00168142) 14057
(0.00937516 0.00438837 0.00168184) 14058
(0.00810245 0.00415121 0.00181633) 14116
(0.00850896 0.00414982 0.00181354) 14117
(0.00895584 0.00415352 0.00181282) 14117
(0.00942041 0.004155 0.0018148) 14118
(0.00755844 0.00395749 0.00203995) 14175
(0.00786385 0.0039448 0.00202925) 14175
(0.012034 0.00360896 0.00319146) 14424
(0.0126113 0.00362431 0.00319179) 14425
(0.013148 0.00363226 0.00319053) 14426
(0.0136459 0.00363259 0.00318921) 14427
(0.014105 0.00362696 0.00318903) 14428
(0.00765274 0.00366866 0.00347868) 14475
(0.00819802 0.00364322 0.0034679) 14476
(0.00864028 0.00362657 0.00346693) 14477
(0.00904156 0.00361331 0.00346849) 14478
(0.0095016 0.00360793 0.0034675) 14479
(0.0072944 0.00375257 0.00370071) 14534
(0.00805141 0.00373247 0.00369528) 14536
(0.00860137 0.0037254 0.00369993) 14537
(0.00906649 0.00371973 0.00370531) 14538
(0.00955628 0.00371864 0.00370881) 14539
(0.00693551 0.00400085 0.00397843) 14593
(0.00745223 0.00394309 0.00393675) 14594
(0.00794808 0.00391918 0.00392472) 14595
(0.0069949 0.00472364 0.0043893) 14773
(0.00767348 0.00500939 0.00443262) 14835
(0.00805913 0.00500311 0.00444504) 14836
(0.00846214 0.00499695 0.00445051) 14836
(0.00890506 0.00499374 0.00445067) 14837
(0.00714094 0.00528185 0.00438631) 14894
(0.00755948 0.00528421 0.00439716) 14895
(0.00793292 0.00528865 0.00440967) 14895
(0.0083339 0.00528775 0.00441696) 14896
(0.00710036 0.00636045 0.00339257) 15194
(0.00744484 0.00637884 0.00340517) 15194
(0.00781739 0.00638966 0.00341324) 15195
(0.00729855 0.00642633 0.0031084) 15254
(0.00729855 0.00642633 0.0031084) 15254
(0.00729855 0.00642633 0.0031084) 15254
(0.00776477 0.00643614 0.0031189) 15255
(0.00821149 0.00644147 0.00312635) 15256
(0.00867885 0.00644104 0.00312966) 15257
(0.00916282 0.00643829 0.00313147) 15258
(0.00965343 0.0064354 0.00313328) 15259
(0.00186391 0.00647638 0.0029084) 13503
(0.00417931 0.00634279 0.00258802) 13568
(0.00456784 0.00633886 0.00263988) 13569
(0.00641364 0.00642386 0.00291) 13512
(0.00378706 0.00436826 0.00164497) 5707
(0.00509828 0.00446826 0.00166358) 14050
(0.00502237 0.00443609 0.00159436) 5710
(0.00554273 0.0044718 0.00164432) 14051
(0.006593 0.00443595 0.0017009) 14053
(0.0049981 0.00423913 0.00188286) 14109
(0.00497171 0.00413352 0.00182098) 14109
(0.00479421 0.00404737 0.00176073) 5649
(0.00495494 0.00407642 0.00170344) 5649
(0.00562204 0.00424154 0.00176292) 14111
(0.00483806 0.00351073 0.00329549) 5409
(0.00505631 0.00341867 0.0032281) 5410
(0.00563067 0.00373568 0.00350756) 14471
(0.00483279 0.003729 0.0036739) 14529
(0.00495667 0.00364435 0.00365299) 5289
(0.0050974 0.00379239 0.00364203) 14530
(0.00455896 0.00506258 0.00437442) 14829
(0.0036694 0.00502083 0.00444486) 14827
(0.00468629 0.00495999 0.00444771) 14829
(0.00457389 0.00642959 0.00287719) 13509
(0.00510621 0.00645781 0.00310465) 15250
(0.0058147 0.00642458 0.00316505) 15251
(0.00660211 0.00639426 0.0031052) 15253
(0.0195914 0.0029955 0.00220503) 32684
(0.0202272 0.00691314 0.00360707) 2020
(0.0118087 0.00650823 0.00419465) 6683
(0.0129485 0.00646264 0.00416281) 6685
(0.0138152 0.00643398 0.00415348) 6687
(0.0145262 0.00641846 0.00414514) 6689
(0.0151246 0.00641015 0.00413925) 6690
(0.0156557 0.00640693 0.00413377) 6691
(0.0161582 0.00640665 0.00412918) 6692
(0.0166677 0.00640547 0.00412626) 6693
(0.017196 0.00640143 0.00412286) 6694
(0.021653 0.00635626 0.00196854) 13483
(0.0235435 0.00655301 0.00222305) 6107
(0.0246189 0.00667593 0.00223243) 6109
(0.0206421 0.00665316 0.00417264) 6641
(0.0229468 0.00671843 0.00410078) 1965
(0.0189972 0.00637686 0.00114838) 12457
(0.0201616 0.00630957 0.00112237) 12460
(0.019637 0.00361697 0.00464539) 7179
(0.0213321 0.00364054 0.0046735) 7182
(0.0196443 0.00335915 0.00163417) 399
(0.0216672 0.0033208 0.00170729) 463
(0.0204424 0.00613258 0.00475999) 12220
(0.0201713 0.00584566 0.00504047) 12580
(0.0201713 0.00584566 0.00504047) 12580
(0.0201713 0.00584566 0.00504047) 12580
(0.0220534 0.00586632 0.00501119) 12584
(0.0220534 0.00586632 0.00501119) 12584
(0.0220534 0.00586632 0.00501119) 12584
(0.0229904 0.00596982 0.00497683) 12345
(0.0199848 0.00400118 0.00489208) 10539
(0.0200978 0.00376613 0.00141338) 12760
(0.0205052 0.00414477 0.0012637) 11501
(0.0232032 0.00406068 0.00123611) 11506
(0.0201923 0.0048005 0.000942298) 11620
(0.021964 0.0047082 0.0009429) 11623
(0.0195209 0.00561541 0.000959364) 12159
(0.0193286 0.00596484 0.00101136) 12278
(0.0209719 0.00597515 0.00101251) 12281
(0.0202679 0.00533211 0.000835798) 12100
(0.0221799 0.00527485 0.000831611) 11924
(0.0196738 0.00525989 0.00522286) 11079
(0.021285 0.00526601 0.0052043) 11442
(0.0222414 0.00537939 0.00521935) 11444
(0.0198808 0.00376866 0.00118317) 12999
(0.0219416 0.00304361 0.00321222) 763
(0.0219416 0.00304361 0.00321222) 763
(0.0219416 0.00304361 0.00321222) 763
(0.0246065 0.00299315 0.0031795) 34128
(0.0249997 0.00294067 0.00320046) 34128
(0.0196309 0.00674029 0.0016547) 2499
(0.0196309 0.00674029 0.0016547) 2499
(0.0196309 0.00674029 0.0016547) 2499
(0.0220375 0.00668188 0.00171833) 2504
(0.0233503 0.006675 0.00167811) 2506
(0.0205677 0.00617176 0.00164053) 13481
(0.0229734 0.00624891 0.00171615) 13485
(0.00716156 0.0064385 0.00287666) 13514
(0.00716156 0.0064385 0.00287666) 13514
(0.00716156 0.0064385 0.00287666) 13514
(0.00769909 0.00644059 0.00287045) 13515
(0.00817303 0.00644263 0.00286559) 13516
(0.00861134 0.0064452 0.00286482) 13517
(0.00906428 0.00644622 0.00286851) 13518
(0.00954645 0.0064444 0.00287007) 13519
(0.00748368 0.00636385 0.00259106) 13574
(0.0188961 0.00622225 0.0023602) 13657
(0.0193971 0.00621488 0.00236131) 13658
(0.0199204 0.00620363 0.00235926) 13659
(0.0204733 0.00618942 0.00235231) 13660
(0.0210025 0.00617742 0.00234031) 13662
(0.00755505 0.00584158 0.00187181) 13755
(0.0079333 0.0058437 0.0018566) 13755
(0.00781246 0.00559051 0.00169181) 13815
(0.00696915 0.0046686 0.00162272) 13993
(0.00731167 0.00466723 0.00160676) 13994
(0.0072361 0.0044004 0.00170289) 14054
(0.0072361 0.0044004 0.00170289) 14054
(0.0072361 0.0044004 0.00170289) 14054
(0.00846087 0.00438601 0.00168094) 14056
(0.00890537 0.00438753 0.00168121) 14057
(0.00935147 0.00438829 0.00168167) 14058
(0.00807926 0.00415121 0.0018163) 14116
(0.00848437 0.00414953 0.00181342) 14116
(0.00893128 0.00415321 0.0018127) 14117
(0.00939605 0.00415487 0.00181458) 14118
(0.00753796 0.00395789 0.00204004) 14175
(0.00784234 0.00394487 0.00202946) 14175
(0.0129524 0.00366179 0.00289643) 14365
(0.012009 0.00360832 0.00319146) 14424
(0.0125869 0.00362378 0.00319185) 14425
(0.0131254 0.00363204 0.00319064) 14426
(0.0136248 0.00363265 0.00318928) 14427
(0.0140855 0.00362727 0.0031891) 14428
(0.00762542 0.00366994 0.00347964) 14475
(0.00817416 0.00364407 0.00346825) 14476
(0.00861933 0.00362718 0.00346697) 14477
(0.00901986 0.00361371 0.00346857) 14478
(0.00947597 0.00360786 0.00346775) 14478
(0.0072556 0.00375429 0.00370221) 14534
(0.0080206 0.00373297 0.0036954) 14536
(0.00857628 0.00372565 0.00369991) 14537
(0.00904248 0.00371986 0.0037052) 14538
(0.00953027 0.00371847 0.00370885) 14539
(0.00691181 0.00400429 0.0039808) 14593
(0.0074274 0.00394483 0.00393806) 14594
(0.00792361 0.00391985 0.00392511) 14595
(0.0069702 0.00472391 0.00438965) 14773
(0.0076523 0.00500971 0.00443239) 14835
(0.00803632 0.00500342 0.00444504) 14836
(0.00843794 0.00499726 0.00445077) 14836
(0.00888035 0.0049937 0.00445097) 14837
(0.0071201 0.00528195 0.00438618) 14894
(0.00753876 0.00528416 0.00439694) 14895
(0.00791016 0.00528874 0.00440957) 14895
(0.00830954 0.00528795 0.00441712) 14896
(0.00707849 0.00636037 0.00339235) 15194
(0.0074224 0.0063787 0.00340471) 15194
(0.00779167 0.00638981 0.00341311) 15195
(0.0072748 0.00642633 0.00310824) 15254
(0.0072748 0.00642633 0.00310824) 15254
(0.0072748 0.00642633 0.00310824) 15254
(0.00774104 0.00643605 0.00311859) 15255
(0.00818708 0.00644157 0.00312622) 15256
(0.00865356 0.00644131 0.00312963) 15257
(0.00913827 0.00643852 0.00313144) 15258
(0.00962917 0.00643559 0.00313327) 15259
(0.00170852 0.006475 0.00291074) 13503
(0.00414575 0.00634448 0.0025966) 13568
(0.00453622 0.00634103 0.00262984) 13569
(0.00639175 0.00642307 0.00290977) 13512
(0.0022882 0.00436183 0.00161758) 5704
(0.00511621 0.00447217 0.0016759) 14050
(0.00503045 0.00443848 0.00159802) 5710
(0.00550392 0.00447164 0.00164079) 14051
(0.00656876 0.00443536 0.00170013) 14053
(0.00499682 0.00424659 0.00188947) 14109
(0.00498229 0.00414177 0.00182559) 14109
(0.00481371 0.00405074 0.00176322) 5649
(0.00496385 0.00407912 0.00170467) 5649
(0.00557441 0.0042422 0.00175617) 14111
(0.00485025 0.00350608 0.00329289) 5409
(0.00506457 0.00341788 0.00322634) 5410
(0.0056005 0.00371071 0.00347386) 14471
(0.00482655 0.0037405 0.00367508) 14529
(0.00493767 0.00365402 0.00365957) 14529
(0.00510003 0.00379464 0.00364063) 14530
(0.0045553 0.00506124 0.00437312) 14829
(0.00391701 0.00502601 0.00444102) 14827
(0.00459899 0.00496042 0.00445125) 14829
(0.00453408 0.00642223 0.00286965) 13509
(0.0050888 0.00645871 0.00310008) 15250
(0.00579507 0.00642456 0.00316496) 15251
(0.00657887 0.00639651 0.00310993) 15253
(0.0195503 0.00299765 0.00220175) 32684
(0.0201786 0.00690961 0.00361221) 2020
(0.0117658 0.00651023 0.00419627) 6683
(0.0129185 0.00646358 0.00416322) 6685
(0.0137923 0.00643453 0.00415336) 6687
(0.0145075 0.00641856 0.00414512) 6689
(0.0151087 0.0064101 0.00413908) 6690
(0.0156414 0.00640677 0.00413342) 6691
(0.0161437 0.00640644 0.00412888) 6692
(0.0166519 0.00640531 0.00412607) 6693
(0.0171792 0.00640136 0.0041228) 6694
(0.0214746 0.00636749 0.00196597) 13482
(0.0234993 0.00654421 0.00221657) 6106
(0.0245866 0.00667345 0.0022353) 6109
(0.0205321 0.00665381 0.00417633) 6641
(0.0228897 0.00671396 0.0041032) 1965
(0.0189651 0.00637993 0.00114966) 12457
(0.0201385 0.00631469 0.00112646) 12460
(0.0195802 0.00361604 0.00464475) 7179
(0.0212945 0.00363816 0.0046696) 7182
(0.0195754 0.00336232 0.00162897) 399
(0.0216173 0.00332422 0.00170509) 463
(0.0203757 0.00613033 0.00476202) 12220
(0.0200971 0.00584475 0.00504262) 12580
(0.0200971 0.00584475 0.00504262) 12580
(0.0200971 0.00584475 0.00504262) 12580
(0.0220082 0.00586333 0.0050117) 12584
(0.0220082 0.00586333 0.0050117) 12584
(0.0220082 0.00586333 0.0050117) 12584
(0.0229823 0.00596155 0.00498029) 12345
(0.0199309 0.00399897 0.00488921) 10539
(0.0199874 0.00376777 0.00141045) 12759
(0.022799 0.00373866 0.0014187) 9225
(0.0204006 0.00414865 0.00126223) 11500
(0.0231257 0.00406324 0.00123838) 11506
(0.0202078 0.00448092 0.00111055) 11560
(0.0201221 0.00480367 0.000941335) 11620
(0.0219209 0.00471355 0.00094411) 11623
(0.0194682 0.00561885 0.000961196) 12158
(0.0192781 0.00596514 0.00101149) 12278
(0.0209292 0.0059764 0.00101475) 12281
(0.020183 0.00533573 0.000835079) 12100
(0.0221396 0.00527793 0.000834587) 11924
(0.0196185 0.00525962 0.00522423) 11079
(0.0212436 0.00526368 0.00520377) 11442
(0.0222357 0.00536927 0.00521829) 11444
(0.019846 0.00377396 0.00118095) 12999
(0.0218031 0.00304176 0.00321185) 763
(0.0218031 0.00304176 0.00321185) 763
(0.0218031 0.00304176 0.00321185) 763
(0.0245721 0.00299599 0.00318006) 34128
(0.0250032 0.00294243 0.00319642) 34272
(0.019562 0.00674438 0.00165287) 2499
(0.019562 0.00674438 0.00165287) 2499
(0.019562 0.00674438 0.00165287) 2499
(0.021974 0.00668266 0.00171896) 2503
(0.0233298 0.0066769 0.00168328) 2506
(0.0229536 0.00624382 0.00171488) 13485
(0.0071349 0.00643867 0.00287696) 13514
(0.0071349 0.00643867 0.00287696) 13514
(0.0071349 0.00643867 0.00287696) 13514
(0.00767386 0.00644066 0.00287072) 13515
(0.00814918 0.00644269 0.00286567) 13516
(0.0085877 0.00644528 0.00286472) 13517
(0.00904026 0.00644636 0.00286835) 13518
(0.00952207 0.0064446 0.00287006) 13519
(0.00746237 0.00636386 0.00259205) 13574
(0.0188737 0.00622255 0.00236018) 13657
(0.0193749 0.0062153 0.00236139) 13658
(0.0198967 0.00620427 0.00235951) 13659
(0.0204493 0.0061901 0.00235284) 13660
(0.02098 0.00617793 0.002341) 13661
(0.00753397 0.00584138 0.00187198) 13755
(0.00791219 0.00584376 0.00185685) 13755
(0.00779032 0.00559043 0.00169186) 13815
(0.00694712 0.00466848 0.00162272) 13993
(0.00729065 0.00466704 0.00160709) 13994
(0.00721324 0.00440059 0.00170278) 14054
(0.00721324 0.00440059 0.00170278) 14054
(0.00721324 0.00440059 0.00170278) 14054
(0.00843569 0.00438584 0.0016807) 14056
(0.00888129 0.00438744 0.001681) 14057
(0.00932777 0.00438821 0.00168151) 14058
(0.0080562 0.00415124 0.00181628) 14116
(0.00845986 0.00414924 0.0018133) 14116
(0.0089067 0.00415288 0.00181258) 14117
(0.00937169 0.00415473 0.00181436) 14118
(0.00751747 0.0039583 0.00204012) 14175
(0.00782096 0.00394496 0.00202968) 14175
(0.0129297 0.00366147 0.00289645) 14365
(0.0119841 0.00360768 0.00319146) 14423
(0.0125624 0.00362324 0.00319192) 14425
(0.0131027 0.00363181 0.00319074) 14426
(0.0136035 0.00363271 0.00318935) 14427
(0.0140658 0.00362758 0.00318917) 14428
(0.00759799 0.00367123 0.00348064) 14475
(0.00815021 0.00364495 0.00346863) 14476
(0.00859834 0.0036278 0.00346702) 14477
(0.00899831 0.00361414 0.00346865) 14477
(0.00945051 0.00360781 0.003468) 14478
(0.00721668 0.00375609 0.00370383) 14534
(0.00798951 0.0037335 0.00369556) 14535
(0.00855103 0.0037259 0.0036999) 14537
(0.00901853 0.00371999 0.00370509) 14538
(0.00950435 0.00371831 0.00370887) 14539
(0.00688809 0.00400778 0.00398312) 14593
(0.0074026 0.00394664 0.0039394) 14594
(0.00789909 0.00392056 0.00392555) 14595
(0.00694551 0.0047242 0.00439) 14773
(0.00763109 0.00501003 0.00443215) 14835
(0.00801363 0.00500373 0.00444501) 14836
(0.00841375 0.00499758 0.00445102) 14836
(0.00885561 0.00499366 0.00445128) 14837
(0.00709916 0.00528207 0.00438605) 14894
(0.00751813 0.0052841 0.00439672) 14895
(0.00788754 0.00528881 0.00440946) 14895
(0.00828524 0.00528815 0.00441727) 14896
(0.00705664 0.00636029 0.00339215) 15194
(0.00740015 0.00637855 0.00340425) 15194
(0.00776615 0.00638993 0.00341297) 15195
(0.00725109 0.00642632 0.0031081) 15254
(0.00725109 0.00642632 0.0031081) 15254
(0.00725109 0.00642632 0.0031081) 15254
(0.00771736 0.00643595 0.00311828) 15255
(0.00816275 0.00644165 0.00312607) 15256
(0.00862825 0.00644158 0.0031296) 15257
(0.00911364 0.00643875 0.0031314) 15258
(0.00960489 0.00643578 0.00313325) 15259
(0.00167934 0.00647433 0.00291124) 13503
(0.00408948 0.0063477 0.00262294) 13568
(0.00449978 0.00634319 0.00261819) 13568
(0.00636994 0.00642221 0.00290957) 13512
(0.00503822 0.00444097 0.00160149) 5710
(0.00546814 0.00447089 0.00163749) 14050
(0.00654456 0.00443488 0.00169944) 14053
(0.00499439 0.00425358 0.00189687) 14109
(0.00498965 0.0041494 0.00183038) 14109
(0.00484971 0.00405903 0.00176249) 5649
(0.00495415 0.00407607 0.00170499) 5649
(0.00554863 0.00423984 0.0017526) 14111
(0.00486303 0.00350116 0.00329024) 5409
(0.00506918 0.00341767 0.0032249) 5410
(0.00556288 0.00368094 0.00343006) 14471
(0.00482114 0.00375396 0.00367638) 14529
(0.00492046 0.003665 0.00366778) 14529
(0.00509922 0.00379339 0.00363796) 14530
(0.00455085 0.00505998 0.00437186) 14829
(0.0041616 0.00503234 0.00443492) 14828
(0.00450695 0.00496135 0.00445459) 14829
(0.00569243 0.00496843 0.00440298) 14831
(0.00447858 0.0064145 0.00286351) 13508
(0.00507272 0.00645945 0.00309574) 15250
(0.00577505 0.00642462 0.0031648) 15251
(0.00655572 0.00640108 0.00311755) 15253
(0.0195086 0.00299965 0.00219853) 32684
(0.0201296 0.00690624 0.00361726) 2020
(0.0117218 0.00651232 0.00419805) 6683
(0.0128881 0.00646453 0.00416368) 6685
(0.0137694 0.0064351 0.00415319) 6687
(0.0144887 0.0064187 0.00414507) 6688
(0.0150928 0.00641005 0.0041389) 6690
(0.015627 0.00640657 0.00413318) 6691
(0.0161292 0.00640619 0.00412867) 6692
(0.0166362 0.00640517 0.00412582) 6693
(0.0171626 0.00640134 0.00412266) 6694
(0.0212774 0.00638321 0.00196659) 13482
(0.0234547 0.00653532 0.00220975) 6106
(0.0245519 0.00667092 0.00223798) 6109
(0.0204266 0.0066535 0.00418079) 6640
(0.0228303 0.00670941 0.00410579) 1965
(0.0189329 0.00638304 0.00115098) 12457
(0.0201146 0.00631954 0.00113031) 12460
(0.0195231 0.00361516 0.00464435) 7179
(0.0212549 0.00363594 0.00466591) 7182
(0.0195085 0.00336568 0.00162352) 399
(0.0215656 0.00332749 0.00170294) 463
(0.0203083 0.00612819 0.00476414) 12220
(0.0200234 0.00584386 0.00504486) 12580
(0.0200234 0.00584386 0.00504486) 12580
(0.0200234 0.00584386 0.00504486) 12580
(0.0219612 0.0058605 0.00501218) 12583
(0.0219612 0.0058605 0.00501218) 12583
(0.0219612 0.0058605 0.00501218) 12583
(0.022974 0.00595346 0.00498344) 12345
(0.0198777 0.0039967 0.00488638) 10539
(0.0198789 0.0037693 0.00140746) 12759
(0.0227229 0.00374064 0.00141987) 9225
(0.0202958 0.00415247 0.00126068) 11500
(0.023046 0.00406593 0.00124064) 11506
(0.0201403 0.00448483 0.00110864) 11560
(0.0200524 0.00480688 0.00094028) 11620
(0.0218759 0.00471879 0.000945297) 11623
(0.0194161 0.00562234 0.000963051) 12158
(0.0192286 0.00596549 0.00101165) 12278
(0.0208853 0.0059775 0.00101682) 12281
(0.0201087 0.00534002 0.000834837) 12100
(0.0220965 0.00528087 0.000837396) 11924
(0.0195624 0.00525942 0.0052257) 11079
(0.021201 0.00526158 0.00520329) 11442
(0.0222281 0.00535967 0.00521719) 11444
(0.0198112 0.00377917 0.00117873) 12999
(0.0216662 0.00303962 0.00321126) 763
(0.0216662 0.00303962 0.00321126) 763
(0.0216662 0.00303962 0.00321126) 763
(0.0245341 0.00299879 0.00318069) 34128
(0.0250055 0.00294442 0.00319267) 34272
(0.0194961 0.00674842 0.00165107) 2498
(0.0194961 0.00674842 0.00165107) 2498
(0.0194961 0.00674842 0.00165107) 2498
(0.0219083 0.00668352 0.00171938) 2503
(0.0233075 0.00667854 0.00168816) 2506
(0.0229308 0.00623863 0.00171328) 13485
(0.00710829 0.00643885 0.00287726) 13514
(0.00710829 0.00643885 0.00287726) 13514
(0.00710829 0.00643885 0.00287726) 13514
(0.00764859 0.00644074 0.002871) 13515
(0.00812529 0.00644275 0.00286575) 13516
(0.00856406 0.00644536 0.00286464) 13517
(0.00901622 0.0064465 0.00286819) 13518
(0.00949768 0.0064448 0.00287005) 13518
(0.00744108 0.00636386 0.00259304) 13574
(0.0188512 0.00622284 0.00236014) 13657
(0.0193528 0.00621572 0.00236147) 13658
(0.019873 0.00620489 0.00235975) 13659
(0.0204253 0.00619077 0.00235335) 13660
(0.0209575 0.00617846 0.00234169) 13661
(0.00751287 0.00584117 0.00187214) 13755
(0.00789117 0.00584382 0.00185712) 13755
(0.00776824 0.00559036 0.00169193) 13815
(0.00692511 0.00466838 0.0016227) 13993
(0.00726969 0.00466684 0.00160743) 13994
(0.00719044 0.00440077 0.00170268) 14054
(0.00719044 0.00440077 0.00170268) 14054
(0.00719044 0.00440077 0.00170268) 14054
(0.00841051 0.00438569 0.00168047) 14056
(0.00885716 0.00438734 0.00168078) 14057
(0.00930409 0.00438813 0.00168134) 14058
(0.00803326 0.00415128 0.00181628) 14116
(0.00843542 0.00414898 0.00181318) 14116
(0.0088821 0.00415255 0.00181246) 14117
(0.00934733 0.0041546 0.00181413) 14118
(0.00749697 0.00395873 0.00204018) 14174
(0.00779972 0.00394507 0.00202991) 14175
(0.012907 0.00366113 0.00289647) 14365
(0.0125378 0.0036227 0.00319199) 14425
(0.01308 0.00363157 0.00319083) 14426
(0.0135822 0.00363275 0.00318942) 14427
(0.0140461 0.00362787 0.00318924) 14428
(0.00757042 0.00367253 0.00348169) 14475
(0.00812619 0.00364584 0.00346903) 14476
(0.00857731 0.00362842 0.00346707) 14477
(0.00897691 0.00361458 0.00346874) 14477
(0.00942525 0.0036078 0.00346825) 14478
(0.00717773 0.00375795 0.00370557) 14534
(0.00795812 0.00373407 0.00369574) 14535
(0.00852563 0.00372617 0.00369991) 14537
(0.00899464 0.00372013 0.00370497) 14537
(0.00947853 0.00371817 0.00370887) 14538
(0.00686435 0.00401133 0.0039854) 14593
(0.00737785 0.00394852 0.00394079) 14594
(0.00787452 0.00392132 0.00392602) 14595
(0.00692083 0.0047245 0.00439034) 14773
(0.00760986 0.00501033 0.00443193) 14835
(0.00799105 0.00500406 0.00444497) 14835
(0.00838958 0.00499787 0.00445127) 14836
(0.00883085 0.00499368 0.00445158) 14837
(0.00707811 0.00528219 0.00438592) 14894
(0.00749756 0.00528405 0.0043965) 14894
(0.00786508 0.00528884 0.00440934) 14895
(0.00826092 0.00528842 0.00441739) 14896
(0.00703482 0.00636022 0.00339198) 15194
(0.00737812 0.00637838 0.00340377) 15194
(0.00774085 0.00639003 0.00341281) 15195
(0.0072274 0.00642632 0.00310797) 15254
(0.0072274 0.00642632 0.00310797) 15254
(0.0072274 0.00642632 0.00310797) 15254
(0.00769372 0.00643584 0.00311798) 15255
(0.00813848 0.00644172 0.00312591) 15256
(0.00860291 0.00644184 0.00312957) 15257
(0.00908894 0.00643899 0.00313137) 15258
(0.00958058 0.00643598 0.00313323) 15259
(0.00162318 0.00647352 0.00291217) 13503
(0.00400531 0.00635687 0.00267422) 13568
(0.00446059 0.00634529 0.00260669) 13568
(0.00634831 0.00642125 0.00290941) 13512
(0.0050453 0.00444352 0.00160477) 5710
(0.00543741 0.00446943 0.0016348) 14050
(0.00652048 0.00443453 0.00169881) 14053
(0.00499199 0.00426095 0.00190463) 14109
(0.00500071 0.00415938 0.00183421) 14110
(0.00487485 0.00406735 0.00176447) 5649
(0.0049444 0.00407314 0.00170571) 5649
(0.00552379 0.00423704 0.00174931) 14111
(0.00487714 0.00349625 0.00328776) 5409
(0.00507173 0.00341758 0.00322374) 5410
(0.00550175 0.00364166 0.00338548) 14471
(0.00481141 0.00377086 0.00367684) 14529
(0.00490399 0.00367688 0.00367482) 14529
(0.00510043 0.00379262 0.00363696) 14530
(0.00454989 0.00505896 0.00437009) 14829
(0.00434566 0.00504216 0.00442699) 14828
(0.00441882 0.00496315 0.00445697) 14828
(0.00565747 0.00496839 0.0044056) 14831
(0.00218176 0.0065114 0.00295682) 6124
(0.00439768 0.00640903 0.00286051) 13508
(0.00505763 0.00646005 0.00309163) 15250
(0.00575498 0.00642472 0.00316462) 15251
(0.00653532 0.00640599 0.00312556) 15253
(0.0194662 0.00300149 0.00219537) 518
(0.0200803 0.00690302 0.00362226) 2020
(0.0116778 0.00651442 0.00419988) 6683
(0.0128573 0.00646552 0.00416416) 6685
(0.0137463 0.00643568 0.00415301) 6687
(0.0144697 0.00641885 0.004145) 6688
(0.0150769 0.00641001 0.00413872) 6690
(0.0156126 0.00640636 0.00413297) 6691
(0.0161147 0.00640592 0.00412851) 6692
(0.0166205 0.00640502 0.00412557) 6693
(0.0171459 0.00640132 0.0041225) 6694
(0.021062 0.00640389 0.00197131) 13482
(0.0234097 0.00652632 0.0022026) 6106
(0.0245147 0.00666835 0.00224047) 6109
(0.0203258 0.00665275 0.00418562) 6640
(0.0227686 0.00670482 0.00410851) 1965
(0.0200899 0.00632415 0.00113393) 12460
(0.0194654 0.00361428 0.00464421) 7178
(0.0212135 0.00363389 0.00466243) 7182
(0.0194431 0.00336924 0.00161778) 398
(0.0215123 0.00333063 0.00170083) 463
(0.0202408 0.00612613 0.00476637) 12220
(0.0199504 0.00584297 0.00504717) 12579
(0.0199504 0.00584297 0.00504717) 12579
(0.0199504 0.00584297 0.00504717) 12579
(0.0219125 0.00585781 0.00501264) 12583
(0.0219125 0.00585781 0.00501264) 12583
(0.0219125 0.00585781 0.00501264) 12583
(0.0229652 0.00594561 0.00498633) 12585
(0.0198252 0.0039944 0.0048836) 10539
(0.0197731 0.00377076 0.00140439) 12759
(0.0226444 0.00374265 0.00142099) 9225
(0.0201914 0.00415632 0.00125908) 11500
(0.0229637 0.00406874 0.00124289) 11505
(0.0200733 0.00448892 0.00110655) 11560
(0.0199835 0.00481018 0.000939115) 11619
(0.0218289 0.00472392 0.000946457) 11623
(0.0193646 0.00562587 0.000964922) 12158
(0.0191804 0.00596588 0.00101183) 12278
(0.0208401 0.00597843 0.00101874) 12281
(0.0200364 0.00534451 0.00083463) 12100
(0.0220507 0.00528367 0.000840031) 11924
(0.0195055 0.00525931 0.00522727) 11079
(0.0211572 0.00525969 0.00520287) 11442
(0.0222188 0.00535059 0.00521604) 11444
(0.0197763 0.00378435 0.00117649) 12999
(0.0215319 0.00303731 0.00321044) 763
(0.0215319 0.00303731 0.00321044) 763
(0.0215319 0.00303731 0.00321044) 763
(0.024492 0.00300156 0.00318136) 768
(0.0250064 0.00294658 0.00318918) 34272
(0.0194326 0.00675236 0.0016493) 2498
(0.0194326 0.00675236 0.0016493) 2498
(0.0194326 0.00675236 0.0016493) 2498
(0.0218409 0.00668449 0.00171965) 2503
(0.0232836 0.00667998 0.0016928) 2506
(0.0229049 0.00623337 0.00171139) 13485
(0.00708173 0.00643901 0.00287757) 13514
(0.00708173 0.00643901 0.00287757) 13514
(0.00708173 0.00643901 0.00287757) 13514
(0.00762328 0.00644081 0.00287129) 13515
(0.00810138 0.00644281 0.00286585) 13516
(0.00854041 0.00644544 0.00286456) 13517
(0.00899215 0.00644664 0.00286801) 13517
(0.00947328 0.006445 0.00287004) 13518
(0.00741979 0.00636386 0.00259402) 13574
(0.0188287 0.00622312 0.00236009) 13657
(0.0193307 0.00621614 0.00236154) 13658
(0.0198495 0.00620551 0.00235998) 13659
(0.0204013 0.00619145 0.00235385) 13660
(0.0209349 0.00617899 0.00234237) 13661
(0.00749177 0.00584096 0.00187229) 13754
(0.00787026 0.00584386 0.00185739) 13755
(0.00774622 0.00559029 0.00169201) 13815
(0.0069031 0.00466833 0.00162267) 13993
(0.00724879 0.00466662 0.00160776) 13994
(0.0071677 0.00440096 0.00170256) 14054
(0.0071677 0.00440096 0.00170256) 14054
(0.0071677 0.00440096 0.00170256) 14054
(0.00757494 0.00439341 0.00169277) 14055
(0.00838535 0.00438553 0.00168024) 14056
(0.00883299 0.00438725 0.00168057) 14057
(0.0092804 0.00438806 0.00168117) 14058
(0.00801044 0.00415134 0.00181629) 14116
(0.00841105 0.00414872 0.00181307) 14116
(0.00885752 0.00415222 0.00181236) 14117
(0.00932296 0.00415446 0.00181391) 14118
(0.00747644 0.00395917 0.00204022) 14174
(0.0077786 0.00394519 0.00203015) 14175
(0.0128842 0.00366078 0.00289648) 14365
(0.0125132 0.00362213 0.00319203) 14425
(0.0130573 0.00363132 0.00319094) 14426
(0.0135609 0.00363277 0.0031895) 14427
(0.0140264 0.00362815 0.0031893) 14428
(0.00754274 0.00367383 0.00348279) 14475
(0.00810209 0.00364677 0.00346945) 14476
(0.00855623 0.00362905 0.00346712) 14477
(0.00895566 0.00361504 0.00346882) 14477
(0.00940018 0.00360782 0.00346851) 14478
(0.00713877 0.00375986 0.00370741) 14534
(0.00792637 0.00373469 0.00369597) 14535
(0.00850006 0.00372645 0.00369993) 14537
(0.0089708 0.00372028 0.00370485) 14537
(0.00945282 0.00371803 0.00370885) 14538
(0.00684059 0.00401492 0.0039876) 14593
(0.00735313 0.00395045 0.00394221) 14594
(0.00784991 0.00392212 0.00392653) 14595
(0.0068962 0.00472484 0.00439069) 14773
(0.00758861 0.00501063 0.0044317) 14835
(0.0079686 0.00500441 0.0044449) 14835
(0.00836547 0.00499815 0.0044515) 14836
(0.00880605 0.00499371 0.00445189) 14837
(0.00705694 0.00528236 0.0043858) 14894
(0.00747706 0.00528397 0.00439627) 14894
(0.00784277 0.00528886 0.0044092) 14895
(0.00823664 0.0052887 0.0044175) 14896
(0.00701302 0.00636014 0.00339183) 15194
(0.00735627 0.00637821 0.00340328) 15194
(0.00771576 0.00639011 0.00341264) 15195
(0.00720373 0.00642631 0.00310787) 15254
(0.00720373 0.00642631 0.00310787) 15254
(0.00720373 0.00642631 0.00310787) 15254
(0.0076701 0.00643573 0.00311768) 15255
(0.0081143 0.00644177 0.00312573) 15256
(0.00857758 0.0064421 0.00312954) 15257
(0.00906416 0.00643924 0.00313134) 15258
(0.00955624 0.00643617 0.00313321) 15259
(0.00153668 0.00647254 0.00291337) 13503
(0.0038468 0.00637482 0.0027294) 13567
(0.0044169 0.00634743 0.00259609) 13568
(0.00634008 0.00642032 0.00290903) 13512
(0.0050513 0.00444618 0.00160774) 5710
(0.00541296 0.00446733 0.00163306) 14050
(0.00649588 0.004434 0.00169814) 14052
(0.00498956 0.00426713 0.00191142) 14109
(0.00501178 0.00416989 0.0018375) 14110
(0.00490019 0.00407686 0.00176629) 5649
(0.00493459 0.0040704 0.00170725) 5649
(0.00548106 0.00423545 0.00174323) 14110
(0.00489487 0.00349008 0.00328465) 5409
(0.00506928 0.00341783 0.00322288) 5410
(0.00544894 0.00359434 0.00335472) 14470
(0.00480309 0.00378863 0.0036778) 14529
(0.00489107 0.00369024 0.00368222) 14529
(0.00509888 0.00378848 0.00363463) 14530
(0.00454988 0.00505807 0.00436816) 14829
(0.00443625 0.00505169 0.00441845) 14828
(0.00434155 0.00496582 0.00445818) 14828
(0.00562254 0.00496846 0.0044082) 14831
(0.00246552 0.00650607 0.00293976) 6124
(0.00428929 0.00640744 0.0028607) 13508
(0.00504597 0.00646019 0.00308846) 15250
(0.00573561 0.00642478 0.00316439) 15251
(0.00652097 0.00640921 0.00313072) 15253
(0.0194231 0.00300316 0.00219224) 518
(0.0200307 0.00689997 0.00362722) 2020
(0.021471 0.00701077 0.00350934) 23502
(0.0116324 0.00651665 0.00420185) 6683
(0.0128261 0.00646655 0.00416467) 6685
(0.0137231 0.00643631 0.00415283) 6687
(0.0144506 0.00641902 0.00414493) 6688
(0.0150608 0.00640999 0.00413854) 6690
(0.0155981 0.00640616 0.00413277) 6691
(0.0161001 0.00640564 0.00412836) 6692
(0.016605 0.00640486 0.00412532) 6693
(0.0171291 0.00640131 0.00412235) 6694
(0.0208256 0.00643066 0.00197981) 13421
(0.0233645 0.00651723 0.00219519) 6106
(0.0244755 0.00666573 0.00224278) 6108
(0.0202293 0.00665178 0.00419078) 6640
(0.0227053 0.00670012 0.00411137) 1965
(0.0200644 0.00632852 0.00113732) 12460
(0.0194068 0.0036133 0.00464431) 7178
(0.0211702 0.00363199 0.00465917) 7182
(0.0193795 0.00337302 0.00161173) 398
(0.0214571 0.00333361 0.00169876) 462
(0.0201738 0.00612413 0.0047687) 12220
(0.0198782 0.00584211 0.00504956) 12579
(0.0198782 0.00584211 0.00504956) 12579
(0.0198782 0.00584211 0.00504956) 12579
(0.021862 0.00585528 0.00501308) 12583
(0.021862 0.00585528 0.00501308) 12583
(0.021862 0.00585528 0.00501308) 12583
(0.022955 0.00593809 0.00498897) 12585
(0.0197732 0.0039921 0.00488087) 10539
(0.021453 0.00401317 0.00493277) 10542
(0.0196708 0.00377218 0.00140123) 12759
(0.022564 0.00374469 0.00142207) 9225
(0.0200879 0.00416022 0.00125744) 11500
(0.0228794 0.00407172 0.00124511) 11505
(0.0200067 0.00449322 0.00110425) 11560
(0.0199156 0.00481361 0.00093783) 11619
(0.0217802 0.00472893 0.000947584) 11623
(0.0193136 0.00562944 0.000966812) 12158
(0.0191335 0.00596631 0.00101204) 12278
(0.0207937 0.0059792 0.00102049) 12281
(0.0199661 0.00534915 0.000834447) 12099
(0.0220024 0.00528634 0.000842494) 11924
(0.0194486 0.00525919 0.00522894) 11078
(0.0211123 0.00525802 0.00520251) 11442
(0.0222077 0.005342 0.00521489) 11444
(0.0197414 0.0037895 0.00117422) 12999
(0.0213992 0.00303499 0.0032094) 762
(0.0213992 0.00303499 0.0032094) 762
(0.0213992 0.00303499 0.0032094) 762
(0.0244451 0.00300434 0.00318202) 768
(0.0250062 0.00294893 0.00318596) 34272
(0.0193708 0.00675614 0.00164751) 2498
(0.0217719 0.00668556 0.00171978) 2503
(0.0232587 0.00668126 0.0016973) 2506
(0.0228767 0.00622787 0.00170907) 13485
(0.00705523 0.00643917 0.00287787) 13514
(0.00705523 0.00643917 0.00287787) 13514
(0.00705523 0.00643917 0.00287787) 13514
(0.00759793 0.00644087 0.00287156) 13515
(0.00807745 0.00644287 0.00286599) 13516
(0.00851676 0.00644552 0.0028645) 13517
(0.00896808 0.00644678 0.00286783) 13517
(0.00944885 0.0064452 0.00287002) 13518
(0.00739849 0.00636384 0.00259498) 13574
(0.0188061 0.00622339 0.00236001) 13657
(0.0193086 0.00621655 0.00236161) 13658
(0.019826 0.00620612 0.00236019) 13659
(0.0203772 0.00619213 0.00235433) 13660
(0.0209123 0.00617953 0.00234304) 13661
(0.00747065 0.00584074 0.00187245) 13754
(0.00784942 0.0058439 0.00185768) 13755
(0.00772426 0.00559022 0.0016921) 13815
(0.00688111 0.00466828 0.00162263) 13993
(0.00722794 0.00466642 0.00160809) 13994
(0.007145 0.00440117 0.00170244) 14054
(0.007145 0.00440117 0.00170244) 14054
(0.007145 0.00440117 0.00170244) 14054
(0.00755282 0.00439376 0.00169286) 14055
(0.00836023 0.00438539 0.00168002) 14056
(0.00880877 0.00438715 0.00168035) 14057
(0.00925671 0.00438798 0.00168101) 14058
(0.00798774 0.00415142 0.00181631) 14115
(0.00838676 0.00414848 0.00181297) 14116
(0.00883294 0.00415188 0.00181225) 14117
(0.00929859 0.00415432 0.00181369) 14118
(0.00745589 0.00395962 0.00204025) 14174
(0.0077576 0.00394532 0.0020304) 14175
(0.0128613 0.0036604 0.00289649) 14365
(0.0124885 0.00362156 0.00319205) 14424
(0.0130345 0.00363107 0.00319105) 14426
(0.0135395 0.00363279 0.00318958) 14427
(0.0140066 0.00362842 0.00318936) 14428
(0.00751493 0.00367515 0.00348393) 14475
(0.00807789 0.00364771 0.0034699) 14476
(0.0085351 0.00362968 0.00346718) 14477
(0.00893452 0.00361551 0.00346889) 14477
(0.00937529 0.00360786 0.00346876) 14478
(0.00709988 0.00376187 0.00370937) 14534
(0.00789432 0.00373535 0.00369623) 14535
(0.00847433 0.00372673 0.00369995) 14536
(0.00894701 0.00372045 0.00370473) 14537
(0.00942722 0.00371792 0.00370882) 14538
(0.00681678 0.00401854 0.00398975) 14593
(0.00732844 0.00395245 0.00394367) 14594
(0.00782526 0.00392296 0.00392707) 14595
(0.00687165 0.0047252 0.00439103) 14773
(0.00756734 0.00501092 0.00443148) 14835
(0.00794627 0.00500475 0.00444481) 14835
(0.0083414 0.00499844 0.00445172) 14836
(0.00878122 0.00499375 0.00445221) 14837
(0.00703565 0.00528255 0.00438567) 14894
(0.00745663 0.00528387 0.00439605) 14894
(0.0078206 0.00528887 0.00440905) 14895
(0.00821242 0.00528897 0.0044176) 14896
(0.00699126 0.00636007 0.00339171) 15193
(0.00733457 0.00637802 0.0034028) 15194
(0.00769091 0.00639017 0.00341244) 15195
(0.00718009 0.00642631 0.00310778) 15254
(0.00718009 0.00642631 0.00310778) 15254
(0.00718009 0.00642631 0.00310778) 15254
(0.00764649 0.00643562 0.00311744) 15255
(0.00809024 0.00644182 0.00312549) 15256
(0.00855227 0.00644235 0.0031295) 15257
(0.00903929 0.00643949 0.00313131) 15258
(0.00953186 0.00643638 0.00313319) 15259
(0.00144738 0.00647196 0.00291415) 13502
(0.00370231 0.0063892 0.00276547) 13507
(0.0043619 0.00634897 0.00258709) 13568
(0.00631871 0.00641913 0.0029089) 13512
(0.00505933 0.00444898 0.00161118) 5710
(0.00539569 0.00446532 0.00163229) 14050
(0.00647099 0.00443332 0.00169744) 14052
(0.00501841 0.00417883 0.00184094) 14110
(0.00492466 0.00408693 0.00176832) 5649
(0.00492416 0.00406775 0.0017096) 5649
(0.00545892 0.00423198 0.00174034) 14110
(0.00495761 0.00346949 0.00326993) 5409
(0.00506102 0.0034192 0.00322626) 5410
(0.00541765 0.00355141 0.00333607) 14470
(0.00479771 0.00380762 0.00367922) 14529
(0.00488536 0.00369999 0.00368406) 14529
(0.00509566 0.00378479 0.00363308) 14530
(0.00456248 0.00505734 0.00436477) 14829
(0.0044965 0.00505843 0.00441143) 14828
(0.00428343 0.00496947 0.00445838) 14828
(0.00559003 0.00496862 0.00441026) 14831
(0.00268802 0.00649931 0.00292322) 6125
(0.00415447 0.00640578 0.00286514) 13508
(0.0050361 0.00646012 0.00308584) 15250
(0.00571676 0.00642481 0.00316414) 15251
(0.00650706 0.00641078 0.00313343) 15253
(0.0193795 0.00300464 0.00218914) 518
(0.0199809 0.00689708 0.00363218) 2019
(0.0214378 0.00700477 0.00351481) 23502
(0.011586 0.00651897 0.00420395) 6683
(0.0127945 0.00646761 0.00416521) 6685
(0.0136995 0.00643697 0.00415263) 6687
(0.0144313 0.00641923 0.00414484) 6688
(0.0150447 0.00640998 0.00413835) 6690
(0.0155835 0.00640595 0.00413259) 6691
(0.0160856 0.00640534 0.00412823) 6692
(0.0165894 0.0064047 0.00412508) 6693
(0.0171124 0.00640129 0.00412221) 6694
(0.0205604 0.00646655 0.00199285) 13421
(0.0233183 0.00650809 0.00218756) 13426
(0.0244342 0.00666302 0.00224487) 6108
(0.0201359 0.00665073 0.00419629) 6640
(0.0226403 0.00669536 0.00411436) 1965
(0.0200382 0.00633267 0.00114049) 12460
(0.0193469 0.00361215 0.00464466) 7178
(0.0211251 0.00363024 0.00465612) 7182
(0.0221764 0.0036977 0.00475636) 10544
(0.0193175 0.00337688 0.00160541) 398
(0.0214004 0.00333647 0.0016967) 462
(0.0201074 0.00612214 0.00477118) 12220
(0.0198068 0.00584126 0.005052) 12579
(0.0198068 0.00584126 0.005052) 12579
(0.0198068 0.00584126 0.005052) 12579
(0.0218095 0.00585292 0.00501351) 12583
(0.0218095 0.00585292 0.00501351) 12583
(0.0218095 0.00585292 0.00501351) 12583
(0.0229429 0.00593097 0.00499135) 12585
(0.0197215 0.00398981 0.00487822) 10539
(0.021407 0.00401225 0.00492922) 10542
(0.019573 0.00377353 0.00139796) 12759
(0.0224812 0.0037467 0.00142311) 9224
(0.0199859 0.00416418 0.00125571) 11499
(0.0227929 0.00407484 0.00124727) 11505
(0.0199403 0.00449766 0.00110177) 11559
(0.0198485 0.00481724 0.000936417) 11619
(0.0217296 0.00473382 0.000948677) 11623
(0.019088 0.00596676 0.00101229) 12278
(0.0207462 0.00597982 0.00102209) 12281
(0.0198967 0.00535393 0.000834272) 12099
(0.0219514 0.0052889 0.000844784) 10123
(0.0193925 0.00525902 0.00523069) 11078
(0.0210663 0.00525656 0.00520221) 11442
(0.0221948 0.00533391 0.00521371) 11444
(0.0197066 0.00379466 0.0011719) 12999
(0.021266 0.00303278 0.00320814) 762
(0.021266 0.00303278 0.00320814) 762
(0.021266 0.00303278 0.00320814) 762
(0.0243928 0.00300724 0.00318267) 768
(0.0250048 0.00295142 0.00318298) 34272
(0.01931 0.0067597 0.00164565) 2498
(0.0217016 0.00668676 0.00171977) 2503
(0.0232322 0.0066824 0.00170159) 2506
(0.0228437 0.00622225 0.00170642) 13485
(0.00702881 0.00643931 0.00287817) 13514
(0.00702881 0.00643931 0.00287817) 13514
(0.00702881 0.00643931 0.00287817) 13514
(0.00757256 0.00644094 0.00287183) 13515
(0.00805347 0.00644292 0.00286613) 13516
(0.00849311 0.00644559 0.00286444) 13516
(0.00894399 0.00644691 0.00286764) 13517
(0.00942442 0.0064454 0.00287001) 13518
(0.00737717 0.00636382 0.0025959) 13574
(0.0187835 0.00622366 0.00235993) 13657
(0.0192865 0.00621696 0.00236167) 13658
(0.0198025 0.00620671 0.0023604) 13659
(0.0203531 0.0061928 0.0023548) 13660
(0.0208896 0.00618007 0.00234371) 13661
(0.00744953 0.00584051 0.00187259) 13754
(0.00782866 0.00584392 0.00185798) 13755
(0.00770236 0.00559015 0.00169221) 13815
(0.00685915 0.00466824 0.00162259) 13993
(0.00720712 0.00466621 0.00160841) 13994
(0.00712237 0.00440137 0.00170231) 14054
(0.00712237 0.00440137 0.00170231) 14054
(0.00712237 0.00440137 0.00170231) 14054
(0.00753082 0.0043941 0.00169295) 14055
(0.00833514 0.00438525 0.00167981) 14056
(0.00878451 0.00438705 0.00168013) 14057
(0.00923302 0.0043879 0.00168084) 14058
(0.00796517 0.00415152 0.00181634) 14115
(0.00836256 0.00414826 0.00181287) 14116
(0.00880836 0.00415154 0.00181216) 14117
(0.00927421 0.00415418 0.00181347) 14118
(0.00743531 0.00396008 0.00204027) 14174
(0.00773673 0.00394547 0.00203065) 14175
(0.0128383 0.00366002 0.00289649) 14365
(0.0124637 0.00362098 0.00319208) 14424
(0.0130117 0.0036308 0.00319117) 14426
(0.013518 0.0036328 0.00318967) 14427
(0.0139867 0.00362868 0.00318943) 14427
(0.00748701 0.00367646 0.00348512) 14474
(0.0080536 0.00364867 0.00347038) 14476
(0.00851393 0.00363033 0.00346726) 14477
(0.0089135 0.00361599 0.00346894) 14477
(0.00935059 0.00360793 0.00346901) 14478
(0.00706113 0.00376393 0.00371142) 14534
(0.00786193 0.00373605 0.00369653) 14535
(0.00844841 0.00372703 0.00369998) 14536
(0.00892325 0.00372063 0.00370463) 14537
(0.00940174 0.00371782 0.00370879) 14538
(0.00679289 0.00402218 0.00399179) 14593
(0.00730378 0.00395451 0.00394516) 14594
(0.00780056 0.00392384 0.00392765) 14595
(0.0068472 0.0047256 0.00439136) 14773
(0.00754604 0.0050112 0.00443127) 14835
(0.00792406 0.00500509 0.00444471) 14835
(0.00831741 0.00499875 0.00445193) 14836
(0.00875637 0.00499381 0.00445252) 14837
(0.00701426 0.00528275 0.00438556) 14894
(0.00743625 0.00528377 0.00439582) 14894
(0.00779858 0.00528889 0.00440889) 14895
(0.00818831 0.0052892 0.00441769) 14896
(0.00696951 0.00636 0.00339162) 15193
(0.00731305 0.00637782 0.00340232) 15194
(0.00766631 0.00639021 0.00341223) 15195
(0.00715646 0.00642632 0.00310772) 15254
(0.00715646 0.00642632 0.00310772) 15254
(0.00715646 0.00642632 0.00310772) 15254
(0.00762292 0.0064355 0.00311721) 15255
(0.00806624 0.00644185 0.00312525) 15256
(0.00852697 0.0064426 0.00312946) 15257
(0.00901435 0.00643975 0.00313129) 15258
(0.00950745 0.00643658 0.00313317) 15259
(0.00133215 0.00647136 0.00291515) 13502
(0.0036441 0.00639448 0.00277785) 13507
(0.00430405 0.00635115 0.00258088) 13568
(0.0062976 0.00641781 0.00290874) 13512
(0.00506864 0.00445187 0.00161512) 5710
(0.00538385 0.00446325 0.00163242) 14050
(0.00644613 0.00443273 0.00169681) 14052
(0.00502672 0.00418815 0.00184253) 14110
(0.00494787 0.00409712 0.00177037) 5649
(0.00493447 0.00407089 0.00170999) 5649
(0.00543838 0.00422814 0.00173804) 14110
(0.00506699 0.00344227 0.00325547) 5410
(0.00505511 0.00342092 0.00323087) 5410
(0.00510249 0.00340968 0.00327381) 5410
(0.00539071 0.00352719 0.00332897) 5350
(0.00488445 0.00371067 0.00368529) 14529
(0.00509342 0.00377757 0.00363122) 14530
(0.0045799 0.00505659 0.00436058) 14829
(0.00454102 0.00506239 0.00440577) 14829
(0.00424326 0.00497362 0.00445805) 14828
(0.0055606 0.004969 0.00441158) 14831
(0.00290513 0.00648984 0.00290282) 13505
(0.00400391 0.00640586 0.00287495) 13508
(0.00502455 0.00646021 0.00308265) 15250
(0.00569729 0.00642494 0.00316383) 15251
(0.00649094 0.00641147 0.00313494) 15252
(0.0193353 0.00300592 0.00218605) 518
(0.0199311 0.00689428 0.00363715) 2019
(0.0214031 0.0069988 0.00352022) 2022
(0.0115388 0.00652135 0.00420616) 6683
(0.0127626 0.0064687 0.00416578) 6685
(0.0136757 0.00643766 0.00415244) 6687
(0.0144119 0.00641946 0.00414473) 6688
(0.0150284 0.00641 0.00413814) 6690
(0.0155689 0.00640574 0.00413243) 6691
(0.0160712 0.00640504 0.00412812) 6692
(0.016574 0.00640452 0.00412485) 6693
(0.0170957 0.00640127 0.00412207) 6694
(0.0232709 0.00649882 0.00217961) 13426
(0.0243913 0.00666021 0.00224681) 6108
(0.0200444 0.00664952 0.00420227) 6640
(0.0225731 0.00669052 0.00411751) 1965
(0.0200112 0.0063366 0.00114344) 12460
(0.0192853 0.0036107 0.00464517) 7178
(0.0210781 0.00362863 0.00465329) 7182
(0.0221701 0.0036911 0.00474838) 10544
(0.0192571 0.0033808 0.00159887) 398
(0.0213419 0.00333919 0.00169464) 462
(0.0200422 0.00612013 0.00477382) 12220
(0.0197363 0.00584037 0.00505449) 12579
(0.0197363 0.00584037 0.00505449) 12579
(0.0197363 0.00584037 0.00505449) 12579
(0.0217552 0.00585069 0.00501395) 12583
(0.0217552 0.00585069 0.00501395) 12583
(0.0217552 0.00585069 0.00501395) 12583
(0.0229289 0.00592422 0.00499349) 12585
(0.0196697 0.00398754 0.00487563) 10539
(0.0213596 0.00401136 0.00492577) 10542
(0.0194797 0.0037747 0.00139462) 12758
(0.022396 0.00374868 0.00142409) 9224
(0.0198855 0.00416803 0.00125378) 11499
(0.0227045 0.00407811 0.00124937) 11505
(0.0198742 0.00450219 0.00109909) 11559
(0.0197823 0.00482111 0.000934911) 11619
(0.0216773 0.00473861 0.00094972) 11623
(0.0190436 0.00596723 0.00101259) 12278
(0.0206977 0.0059803 0.00102354) 12281
(0.019828 0.00535881 0.000834103) 12099
(0.0218977 0.00529136 0.00084689) 10123
(0.0193373 0.00525872 0.00523248) 11078
(0.0210193 0.00525529 0.00520198) 11442
(0.0221801 0.00532629 0.00521253) 11444
(0.019672 0.00379986 0.00116953) 12999
(0.0211255 0.00303015 0.00320669) 762
(0.0211255 0.00303015 0.00320669) 762
(0.0211255 0.00303015 0.00320669) 762
(0.0243342 0.0030103 0.00318326) 768
(0.025002 0.00295406 0.00318026) 34272
(0.0192498 0.00676311 0.00164379) 2498
(0.0216302 0.00668807 0.00171966) 2503
(0.0232042 0.00668341 0.00170567) 2506
(0.022806 0.0062164 0.00170335) 13485
(0.00700248 0.00643945 0.00287848) 13514
(0.00700248 0.00643945 0.00287848) 13514
(0.00700248 0.00643945 0.00287848) 13514
(0.00754717 0.00644101 0.00287211) 13515
(0.00802946 0.00644296 0.00286627) 13516
(0.00846946 0.00644566 0.00286439) 13516
(0.00891989 0.00644705 0.00286744) 13517
(0.00939997 0.0064456 0.00286999) 13518
(0.00735583 0.00636379 0.00259678) 13574
(0.0187609 0.00622392 0.00235984) 13657
(0.0192643 0.00621736 0.00236173) 13658
(0.0197791 0.0062073 0.00236059) 13659
(0.020329 0.00619346 0.00235525) 13660
(0.0208668 0.00618062 0.00234437) 13661
(0.0213719 0.00617203 0.00233092) 13662
(0.00780799 0.00584393 0.00185829) 13755
(0.00768052 0.00559008 0.00169233) 13815
(0.0068372 0.00466822 0.00162254) 13993
(0.00718634 0.00466601 0.00160872) 13994
(0.0070998 0.00440158 0.00170217) 14054
(0.0070998 0.00440158 0.00170217) 14054
(0.0070998 0.00440158 0.00170217) 14054
(0.00750892 0.00439445 0.00169304) 14055
(0.00831007 0.00438519 0.00167957) 14056
(0.00876023 0.00438691 0.00167993) 14057
(0.00920933 0.00438781 0.00168068) 14058
(0.00794272 0.00415166 0.00181638) 14115
(0.00833848 0.004148 0.00181282) 14116
(0.00878383 0.00415124 0.00181204) 14117
(0.00924982 0.00415403 0.00181324) 14118
(0.00741469 0.00396055 0.00204027) 14174
(0.00771598 0.00394564 0.0020309) 14175
(0.0128152 0.00365961 0.00289648) 14365
(0.0124388 0.00362039 0.0031921) 14424
(0.0129888 0.00363052 0.00319128) 14425
(0.0134964 0.00363279 0.00318976) 14426
(0.0139668 0.00362893 0.00318949) 14427
(0.00745895 0.00367778 0.00348636) 14474
(0.00802922 0.00364966 0.00347088) 14476
(0.00849268 0.00363099 0.00346735) 14476
(0.0088926 0.00361649 0.00346899) 14477
(0.00932605 0.003608 0.00346921) 14478
(0.00702258 0.00376603 0.00371357) 14534
(0.0078292 0.00373679 0.00369688) 14535
(0.00842231 0.00372733 0.00370001) 14536
(0.00889952 0.00372081 0.00370452) 14537
(0.00937638 0.00371777 0.00370878) 14538
(0.00676889 0.00402582 0.00399373) 14593
(0.00727914 0.00395663 0.00394669) 14594
(0.00777582 0.00392478 0.00392826) 14595
(0.00682286 0.00472602 0.00439168) 14773
(0.00752471 0.00501147 0.00443106) 14835
(0.00790198 0.00500543 0.00444458) 14835
(0.00829348 0.00499907 0.00445212) 14836
(0.00873149 0.00499389 0.00445284) 14837
(0.00699277 0.00528295 0.00438544) 14893
(0.00741591 0.00528365 0.00439559) 14894
(0.00777671 0.00528889 0.00440871) 14895
(0.00816428 0.00528942 0.00441776) 14896
(0.00694778 0.00635994 0.00339156) 15193
(0.00729169 0.00637761 0.00340184) 15194
(0.00764194 0.00639023 0.003412) 15195
(0.00713286 0.00642632 0.00310768) 15254
(0.00713286 0.00642632 0.00310768) 15254
(0.00713286 0.00642632 0.00310768) 15254
(0.00759939 0.00643538 0.00311698) 15255
(0.00804231 0.00644187 0.003125) 15256
(0.00850169 0.00644284 0.00312942) 15257
(0.00898932 0.00644001 0.00313127) 15257
(0.009483 0.00643679 0.00313315) 15258
(0.00117531 0.00647108 0.00291575) 13502
(0.00363928 0.00639449 0.00277922) 13507
(0.00428678 0.00635085 0.00258046) 13568
(0.00627742 0.00641611 0.00290826) 13512
(0.00507969 0.00445489 0.00161965) 14050
(0.0053767 0.00446117 0.00163338) 14050
(0.00642147 0.00443229 0.00169623) 14052
(0.00503072 0.00419569 0.00184505) 14110
(0.00496098 0.00410435 0.00177408) 5649
(0.00494301 0.00407377 0.0017113) 5649
(0.00541948 0.00422404 0.00173644) 14110
(0.00638354 0.00421128 0.00182769) 14112
(0.00517385 0.00343184 0.00324946) 5410
(0.00505394 0.00342233 0.00323552) 5410
(0.00507476 0.00341478 0.00327339) 5410
(0.00533661 0.00349383 0.00332483) 5410
(0.00488223 0.00371551 0.00368459) 14529
(0.00510451 0.0038122 0.00363478) 14530
(0.00459423 0.00505573 0.00435649) 14829
(0.00457978 0.00506495 0.00440038) 14829
(0.0042139 0.00497767 0.00445753) 14828
(0.00553041 0.00496961 0.00441307) 14831
(0.00292788 0.0064885 0.00289893) 13505
(0.00383361 0.00641346 0.00289182) 13507
(0.00501233 0.00646039 0.00307906) 15250
(0.00567742 0.00642514 0.00316345) 15251
(0.0064729 0.00641177 0.00313593) 15252
(0.0192906 0.003007 0.00218293) 518
(0.0198808 0.00689168 0.00364208) 2019
(0.0213671 0.00699288 0.0035256) 2022
(0.0114912 0.00652377 0.00420843) 6682
(0.0127302 0.00646984 0.00416636) 6685
(0.0136517 0.00643837 0.00415226) 6687
(0.0143924 0.00641971 0.00414462) 6688
(0.0150121 0.00641002 0.00413794) 6690
(0.0155541 0.00640553 0.00413229) 6691
(0.0160567 0.00640473 0.00412802) 6692
(0.0165585 0.00640434 0.00412462) 6693
(0.017079 0.00640125 0.00412193) 6694
(0.0232226 0.00648947 0.00217131) 13426
(0.0243467 0.00665734 0.0022486) 6108
(0.0199543 0.00664823 0.00420869) 6639
(0.0225041 0.00668564 0.00412081) 1965
(0.0199836 0.00634032 0.00114618) 12459
(0.0192218 0.00360885 0.00464576) 7178
(0.0210293 0.00362715 0.00465068) 7182
(0.0221619 0.00368494 0.00474074) 10544
(0.0191979 0.00338457 0.00159223) 398
(0.0212818 0.00334183 0.00169251) 462
(0.0199783 0.00611812 0.00477661) 12219
(0.019667 0.00583945 0.00505701) 12579
(0.019667 0.00583945 0.00505701) 12579
(0.019667 0.00583945 0.00505701) 12579
(0.0216989 0.00584863 0.0050144) 12583
(0.0216989 0.00584863 0.0050144) 12583
(0.0216989 0.00584863 0.0050144) 12583
(0.022913 0.00591784 0.0049954) 12585
(0.022913 0.00591784 0.0049954) 12585
(0.022913 0.00591784 0.0049954) 12585
(0.0196176 0.00398528 0.00487308) 10539
(0.0213108 0.0040105 0.00492242) 10542
(0.0193913 0.0037758 0.00139113) 12758
(0.0223084 0.00375059 0.001425) 9224
(0.0197871 0.0041716 0.00125163) 11499
(0.0226142 0.00408149 0.00125139) 11505
(0.0198076 0.00450663 0.00109624) 11559
(0.0197168 0.0048252 0.000933325) 11619
(0.0216234 0.0047433 0.000950708) 11623
(0.0190002 0.0059677 0.00101295) 12278
(0.0206483 0.00598063 0.00102484) 12281
(0.01976 0.00536377 0.000833946) 12099
(0.0218417 0.00529374 0.000848826) 10123
(0.0228115 0.0052045 0.00078682) 11925
(0.0192834 0.00525824 0.0052343) 11078
(0.0209713 0.0052542 0.00520182) 11441
(0.0221636 0.00531913 0.00521134) 11444
(0.0196378 0.00380512 0.00116709) 12999
(0.020971 0.00302667 0.00320506) 761
(0.020971 0.00302667 0.00320506) 761
(0.020971 0.00302667 0.00320506) 761
(0.0242691 0.00301363 0.00318383) 768
(0.0249978 0.00295682 0.00317779) 34128
(0.0191901 0.00676626 0.00164186) 2498
(0.0215582 0.00668948 0.0017195) 2503
(0.0231742 0.00668426 0.0017095) 2506
(0.0227638 0.00621039 0.00169993) 13485
(0.00697624 0.00643957 0.00287879) 13513
(0.00697624 0.00643957 0.00287879) 13513
(0.00697624 0.00643957 0.00287879) 13513
(0.00752175 0.00644108 0.00287239) 13515
(0.00800542 0.006443 0.00286642) 13516
(0.00844582 0.00644573 0.00286435) 13516
(0.00889579 0.00644718 0.00286724) 13517
(0.0093755 0.0064458 0.00286996) 13518
(0.00733447 0.00636375 0.00259762) 13574
(0.0187382 0.00622418 0.00235975) 13657
(0.0192422 0.00621776 0.00236179) 13658
(0.0197558 0.00620787 0.00236078) 13659
(0.0203048 0.00619413 0.00235568) 13660
(0.0208439 0.00618118 0.00234502) 13661
(0.0213504 0.00617241 0.00233164) 13662
(0.00778739 0.00584394 0.0018586) 13755
(0.00765873 0.00559002 0.00169246) 13815
(0.00681525 0.0046682 0.00162248) 13993
(0.00716563 0.00466581 0.00160903) 13994
(0.00707729 0.0044018 0.00170203) 14054
(0.00707729 0.0044018 0.00170203) 14054
(0.00707729 0.0044018 0.00170203) 14054
(0.00748713 0.00439477 0.00169315) 14054
(0.00828505 0.00438516 0.00167933) 14056
(0.00873591 0.00438676 0.00167974) 14057
(0.00918563 0.00438772 0.00168051) 14058
(0.00792039 0.00415181 0.00181642) 14115
(0.0083145 0.00414775 0.00181278) 14116
(0.00875933 0.00415093 0.00181194) 14117
(0.00922543 0.00415388 0.00181302) 14118
(0.00739403 0.00396103 0.00204024) 14174
(0.00769534 0.00394583 0.00203116) 14175
(0.012792 0.00365919 0.00289647) 14365
(0.012414 0.00361979 0.00319212) 14424
(0.0129659 0.00363023 0.00319138) 14425
(0.0134748 0.00363278 0.00318986) 14426
(0.0139468 0.00362917 0.00318955) 14427
(0.00743077 0.0036791 0.00348765) 14474
(0.00800473 0.00365067 0.00347142) 14476
(0.00847137 0.00363167 0.00346745) 14476
(0.00887181 0.00361701 0.00346905) 14477
(0.00930166 0.00360808 0.00346936) 14478
(0.00698415 0.00376821 0.00371584) 14533
(0.00779617 0.00373758 0.00369726) 14535
(0.00839602 0.00372765 0.00370004) 14536
(0.00887582 0.003721 0.0037044) 14537
(0.00935116 0.00371776 0.00370881) 14538
(0.00674477 0.00402946 0.00399556) 14593
(0.00725451 0.00395882 0.00394825) 14594
(0.00775104 0.00392575 0.00392891) 14595
(0.00679863 0.00472648 0.00439199) 14773
(0.00750333 0.00501168 0.00443086) 14835
(0.00788004 0.00500579 0.00444443) 14835
(0.00826964 0.00499939 0.00445229) 14836
(0.00870659 0.00499398 0.00445316) 14837
(0.0069712 0.00528311 0.00438533) 14893
(0.00739555 0.00528362 0.00439536) 14894
(0.00775501 0.00528886 0.00440852) 14895
(0.00814035 0.00528965 0.00441782) 14896
(0.00692606 0.00635988 0.00339155) 15193
(0.0072705 0.0063774 0.00340135) 15194
(0.00761779 0.00639023 0.00341175) 15195
(0.00710926 0.00642633 0.00310767) 15254
(0.00710926 0.00642633 0.00310767) 15254
(0.00710926 0.00642633 0.00310767) 15254
(0.00757591 0.00643525 0.00311675) 15255
(0.00801844 0.00644188 0.00312474) 15256
(0.00847643 0.00644307 0.00312937) 15256
(0.00896422 0.00644028 0.00313125) 15257
(0.00945851 0.006437 0.00313313) 15258
(0.00101341 0.00647052 0.00291595) 13502
(0.00361217 0.00639599 0.00278417) 13507
(0.00430579 0.00634831 0.00258232) 13568
(0.00625757 0.00641421 0.00290747) 13512
(0.00509202 0.00445791 0.00162479) 14050
(0.0053736 0.00445912 0.00163514) 14050
(0.00639698 0.00443196 0.0016957) 14052
(0.00503241 0.00420152 0.00184713) 14110
(0.00499643 0.00412063 0.00177716) 5649
(0.00493091 0.0040707 0.00171544) 5649
(0.00540241 0.00421998 0.00173559) 14110
(0.00635448 0.00420988 0.00182651) 14112
(0.00524915 0.00344076 0.00324718) 5410
(0.0050435 0.00342496 0.00323906) 5410
(0.0052571 0.00344921 0.00327577) 5410
(0.00543622 0.00358233 0.0033512) 14470
(0.00488314 0.00371315 0.00368293) 14529
(0.00511948 0.00383027 0.00363682) 14530
(0.00527001 0.00391917 0.00368585) 14530
(0.00460408 0.0050547 0.00435266) 14829
(0.00461169 0.00506658 0.00439538) 14829
(0.00419253 0.00498166 0.00445694) 14828
(0.005497 0.00497043 0.00441541) 14830
(0.0029973 0.00648499 0.00289031) 13505
(0.00499715 0.0064609 0.00307418) 15249
(0.00565732 0.00642542 0.003163) 15251
(0.00645311 0.00641199 0.00313663) 15252
(0.0192454 0.00300785 0.00217979) 518
(0.0198295 0.00688937 0.00364691) 2019
(0.0213297 0.00698701 0.00353093) 2022
(0.0114438 0.00652618 0.00421072) 6682
(0.0126973 0.00647103 0.00416698) 6685
(0.0136274 0.0064391 0.00415208) 6687
(0.0143727 0.00641996 0.00414452) 6688
(0.0149957 0.00641004 0.00413774) 6689
(0.0155393 0.00640533 0.00413215) 6691
(0.0160421 0.00640442 0.00412793) 6692
(0.0165431 0.00640415 0.00412438) 6693
(0.0170623 0.00640122 0.0041218) 6694
(0.0231727 0.00648005 0.00216256) 13426
(0.0243011 0.00665434 0.00225024) 6108
(0.0198654 0.00664685 0.00421553) 6639
(0.022433 0.00668073 0.00412424) 1964
(0.0199554 0.00634384 0.00114873) 12459
(0.019156 0.00360634 0.00464633) 7178
(0.0209786 0.00362578 0.00464829) 7181
(0.0221518 0.00367919 0.00473344) 10544
(0.0191398 0.00338812 0.00158562) 398
(0.0212199 0.00334438 0.00169027) 462
(0.0199156 0.00611611 0.00477954) 12219
(0.0195987 0.00583851 0.00505958) 12579
(0.0195987 0.00583851 0.00505958) 12579
(0.0195987 0.00583851 0.00505958) 12579
(0.0216407 0.00584671 0.00501487) 12583
(0.0216407 0.00584671 0.00501487) 12583
(0.0216407 0.00584671 0.00501487) 12583
(0.0228952 0.00591178 0.0049971) 12585
(0.0228952 0.00591178 0.0049971) 12585
(0.0228952 0.00591178 0.0049971) 12585
(0.0195648 0.00398304 0.00487057) 10539
(0.0212607 0.00400965 0.00491916) 10542
(0.0193077 0.00377682 0.00138757) 12758
(0.0222185 0.00375244 0.00142583) 9224
(0.01969 0.00417445 0.00124921) 11499
(0.0225221 0.004085 0.00125333) 11505
(0.0197402 0.00451085 0.0010932) 11559
(0.0196518 0.00482943 0.000931686) 11619
(0.0215681 0.0047479 0.000951641) 11623
(0.0189576 0.00596816 0.00101339) 12277
(0.0205981 0.00598082 0.00102599) 12281
(0.0196918 0.00536878 0.000833764) 12099
(0.0217831 0.00529606 0.000850585) 10123
(0.0228141 0.00521192 0.000791853) 11925
(0.019231 0.00525755 0.00523612) 11078
(0.0209225 0.00525328 0.00520171) 11441
(0.0221454 0.00531241 0.00521016) 11444
(0.019604 0.00381049 0.00116457) 12999
(0.0208 0.00302213 0.00320326) 761
(0.0208 0.00302213 0.00320326) 761
(0.0208 0.00302213 0.00320326) 761
(0.0241966 0.00301723 0.0031844) 768
(0.0249924 0.00295967 0.00317554) 34128
(0.0191307 0.00676914 0.00163984) 2498
(0.0214859 0.00669098 0.00171928) 2502
(0.0214859 0.00669098 0.00171928) 2502
(0.0214859 0.00669098 0.00171928) 2502
(0.023142 0.00668499 0.00171306) 2506
(0.022715 0.00620414 0.0016961) 13485
(0.0069501 0.00643968 0.0028791) 13513
(0.0069501 0.00643968 0.0028791) 13513
(0.0069501 0.00643968 0.0028791) 13513
(0.0074963 0.00644114 0.00287266) 13514
(0.00798136 0.00644304 0.00286661) 13515
(0.00842219 0.0064458 0.00286433) 13516
(0.00887167 0.00644732 0.00286703) 13517
(0.00935102 0.00644599 0.00286993) 13518
(0.00731309 0.0063637 0.00259842) 13574
(0.0187155 0.00622442 0.00235962) 13657
(0.0192201 0.00621817 0.00236185) 13658
(0.0197326 0.00620845 0.00236097) 13659
(0.0202806 0.00619481 0.00235612) 13660
(0.020821 0.00618174 0.00234565) 13661
(0.0213288 0.00617281 0.00233235) 13662
(0.00776686 0.00584393 0.00185893) 13755
(0.007637 0.00558996 0.00169261) 13815
(0.00679334 0.00466819 0.00162243) 13993
(0.00714488 0.00466566 0.00160932) 13994
(0.00705482 0.00440201 0.00170189) 14054
(0.00705482 0.00440201 0.00170189) 14054
(0.00705482 0.00440201 0.00170189) 14054
(0.00746543 0.0043951 0.00169325) 14054
(0.00826011 0.00438514 0.00167911) 14056
(0.00871156 0.00438663 0.00167953) 14057
(0.00916192 0.00438763 0.00168035) 14058
(0.00789817 0.004152 0.00181645) 14115
(0.00829065 0.00414753 0.00181275) 14116
(0.00873486 0.00415062 0.00181184) 14117
(0.00920103 0.00415373 0.0018128) 14118
(0.00737332 0.00396151 0.00204021) 14174
(0.00767482 0.00394604 0.00203141) 14175
(0.0127687 0.00365875 0.00289646) 14365
(0.013286 0.0036628 0.00289557) 14366
(0.012389 0.00361919 0.00319214) 14424
(0.0129429 0.00362993 0.00319148) 14425
(0.0134532 0.00363275 0.00318996) 14426
(0.0139267 0.0036294 0.00318961) 14427
(0.00740244 0.00368043 0.00348901) 14474
(0.00798013 0.0036517 0.00347198) 14475
(0.00845 0.00363236 0.00346757) 14476
(0.00885114 0.00361753 0.00346909) 14477
(0.00927746 0.00360819 0.0034695) 14478
(0.00694604 0.00377045 0.0037182) 14533
(0.00776281 0.00373842 0.00369769) 14535
(0.00836952 0.00372798 0.00370008) 14536
(0.00885212 0.00372121 0.0037043) 14537
(0.00932608 0.00371776 0.00370883) 14538
(0.00672051 0.00403307 0.00399726) 14593
(0.00722989 0.00396107 0.00394982) 14594
(0.00772623 0.00392678 0.0039296) 14595
(0.00677451 0.00472696 0.00439227) 14773
(0.00748189 0.00501182 0.00443069) 14834
(0.00785823 0.00500616 0.00444427) 14835
(0.00824587 0.00499971 0.00445246) 14836
(0.00868169 0.00499409 0.00445347) 14837
(0.00694955 0.00528323 0.00438524) 14893
(0.00737516 0.00528364 0.00439511) 14894
(0.00773349 0.0052888 0.00440832) 14895
(0.00811652 0.00528987 0.00441786) 14896
(0.00690435 0.00635981 0.00339158) 15193
(0.00724946 0.00637717 0.00340091) 15194
(0.0075939 0.00639022 0.00341144) 15195
(0.00708567 0.00642634 0.00310768) 15254
(0.00708567 0.00642634 0.00310768) 15254
(0.00708567 0.00642634 0.00310768) 15254
(0.00755247 0.00643513 0.00311653) 15255
(0.00799463 0.00644188 0.00312449) 15255
(0.0084512 0.00644329 0.00312931) 15256
(0.00893903 0.00644055 0.00313123) 15257
(0.00943397 0.00643722 0.0031331) 15258
(0.000835456 0.00646879 0.00291549) 13501
(0.00358257 0.00639779 0.00278944) 13507
(0.004319 0.00634445 0.00258601) 13568
(0.00623771 0.0064121 0.00290656) 13512
(0.00608167 0.00557759 0.00178839) 13812
(0.00510632 0.00446097 0.0016307) 14050
(0.00537365 0.00445719 0.00163749) 14050
(0.00637257 0.00443167 0.0016952) 14052
(0.00503346 0.00420776 0.00185032) 14110
(0.00502006 0.00413311 0.00178176) 5650
(0.00493924 0.0040737 0.0017178) 5649
(0.0053871 0.00421608 0.0017354) 14110
(0.00632577 0.00420869 0.00182549) 14112
(0.00503557 0.00342725 0.00324179) 5410
(0.00527969 0.00354237 0.00328144) 14410
(0.00542248 0.00355404 0.0033442) 14470
(0.00488503 0.00371259 0.00368233) 14529
(0.00510373 0.00381904 0.00363524) 14530
(0.00528973 0.00392573 0.00367776) 14530
(0.0046095 0.00505359 0.00434921) 14829
(0.00463533 0.00506739 0.00439103) 14829
(0.0041786 0.00498611 0.00445627) 14828
(0.00545992 0.00497151 0.00441812) 14830
(0.00306635 0.00648031 0.00288191) 13506
(0.00497745 0.00646168 0.00306838) 15249
(0.00563846 0.00642556 0.00316271) 15251
(0.0064325 0.00641202 0.0031373) 15252
(0.0191996 0.00300845 0.00217663) 518
(0.0197763 0.00688744 0.00365157) 2019
(0.0212909 0.00698121 0.00353623) 2022
(0.0113953 0.00652872 0.00421316) 6682
(0.0126642 0.00647225 0.00416762) 6685
(0.0136029 0.00643985 0.00415191) 6687
(0.0143528 0.00642024 0.00414441) 6688
(0.0149792 0.00641007 0.00413753) 6689
(0.0155244 0.00640513 0.00413203) 6691
(0.0160276 0.00640412 0.00412784) 6692
(0.0165278 0.00640398 0.00412415) 6693
(0.0170456 0.0064012 0.00412167) 6694
(0.0175698 0.006396 0.00411835) 6695
(0.0231209 0.00647043 0.00215317) 13426
(0.0242548 0.0066512 0.00225171) 6108
(0.019777 0.00664535 0.00422281) 6639
(0.02236 0.00667586 0.00412777) 1964
(0.0199267 0.00634722 0.00115112) 12459
(0.0190883 0.00360298 0.00464673) 7178
(0.0209262 0.0036245 0.00464613) 7181
(0.0221398 0.00367381 0.00472645) 10544
(0.0190822 0.00339138 0.00157907) 398
(0.0211563 0.00334682 0.00168793) 462
(0.0198541 0.00611409 0.00478266) 12219
(0.0195317 0.00583759 0.00506218) 12579
(0.0195317 0.00583759 0.00506218) 12579
(0.0195317 0.00583759 0.00506218) 12579
(0.0215807 0.0058449 0.00501539) 12583
(0.0215807 0.0058449 0.00501539) 12583
(0.0215807 0.0058449 0.00501539) 12583
(0.0228756 0.00590605 0.00499861) 12585
(0.0228756 0.00590605 0.00499861) 12585
(0.0228756 0.00590605 0.00499861) 12585
(0.0195107 0.00398081 0.0048681) 10539
(0.0212094 0.0040088 0.004916) 10542
(0.0192282 0.00377774 0.001384) 12758
(0.0221265 0.00375422 0.00142656) 9224
(0.0195938 0.00417623 0.00124654) 11499
(0.0224283 0.00408861 0.00125518) 11504
(0.0196719 0.00451472 0.00108999) 11559
(0.0195866 0.00483363 0.000930005) 11619
(0.0215112 0.00475242 0.000952504) 11623
(0.0189157 0.0059686 0.00101393) 12277
(0.0205471 0.00598089 0.00102701) 12281
(0.0196223 0.00537379 0.000833501) 12099
(0.0217223 0.00529831 0.000852181) 10123
(0.0228139 0.00521884 0.000796756) 11925
(0.0191802 0.00525659 0.00523792) 11078
(0.020873 0.00525253 0.00520166) 11441
(0.0221254 0.00530612 0.00520897) 11444
(0.0195707 0.00381594 0.00116198) 12999
(0.0206052 0.00301573 0.0032014) 761
(0.0206052 0.00301573 0.0032014) 761
(0.0206052 0.00301573 0.0032014) 761
(0.024116 0.00302109 0.00318504) 768
(0.0249857 0.00296261 0.0031735) 34128
(0.0190717 0.00677187 0.0016377) 2498
(0.0214123 0.00669255 0.00171888) 2502
(0.0214123 0.00669255 0.00171888) 2502
(0.0214123 0.00669255 0.00171888) 2502
(0.0231077 0.00668559 0.00171637) 2506
(0.0237047 0.0066196 0.00159916) 2507
(0.0226603 0.00619766 0.00169184) 13485
(0.0232572 0.00632293 0.00171007) 13486
(0.00692407 0.00643977 0.0028794) 13513
(0.00692407 0.00643977 0.0028794) 13513
(0.00692407 0.00643977 0.0028794) 13513
(0.00747083 0.0064412 0.00287293) 13514
(0.00795728 0.00644308 0.0028668) 13515
(0.00839857 0.00644586 0.00286432) 13516
(0.00884756 0.00644745 0.00286682) 13517
(0.00932651 0.00644619 0.0028699) 13518
(0.00729169 0.00636365 0.00259919) 13574
(0.0186926 0.00622468 0.00235952) 13657
(0.0191979 0.00621855 0.0023619) 13658
(0.0197095 0.006209 0.00236114) 13659
(0.0202564 0.00619549 0.00235654) 13660
(0.020798 0.00618232 0.00234628) 13661
(0.0213072 0.00617321 0.00233307) 13662
(0.0077464 0.00584391 0.00185926) 13755
(0.00761532 0.0055899 0.00169277) 13815
(0.00677147 0.00466819 0.00162236) 13993
(0.00712415 0.00466551 0.00160961) 13994
(0.00703239 0.00440222 0.00170174) 14054
(0.00703239 0.00440222 0.00170174) 14054
(0.00703239 0.00440222 0.00170174) 14054
(0.0074438 0.00439543 0.00169335) 14054
(0.00823524 0.00438512 0.0016789) 14056
(0.00868718 0.00438651 0.00167933) 14057
(0.0091382 0.00438754 0.00168019) 14058
(0.00787606 0.00415222 0.00181649) 14115
(0.00826692 0.00414733 0.00181272) 14116
(0.00871042 0.00415029 0.00181176) 14117
(0.00917663 0.00415357 0.00181259) 14118
(0.00735254 0.00396198 0.00204017) 14174
(0.00765442 0.00394628 0.00203165) 14175
(0.0127453 0.0036583 0.00289643) 14365
(0.0132652 0.00366279 0.00289564) 14366
(0.0123641 0.00361858 0.00319216) 14424
(0.0129198 0.00362962 0.00319158) 14425
(0.0134315 0.00363272 0.00319007) 14426
(0.0139066 0.00362962 0.00318968) 14427
(0.00737398 0.00368175 0.00349042) 14474
(0.00795541 0.00365276 0.00347257) 14475
(0.00842854 0.00363306 0.00346771) 14476
(0.00883056 0.00361807 0.00346913) 14477
(0.00925346 0.00360832 0.00346963) 14478
(0.00690826 0.00377272 0.00372065) 14533
(0.0077291 0.00373931 0.00369817) 14535
(0.00834281 0.00372832 0.00370013) 14536
(0.00882842 0.00372142 0.00370421) 14537
(0.00930113 0.00371778 0.00370884) 14538
(0.00669613 0.00403665 0.00399882) 14593
(0.00720526 0.00396337 0.00395141) 14594
(0.00770139 0.00392785 0.00393032) 14595
(0.00675048 0.00472745 0.00439253) 14773
(0.00718513 0.00472202 0.00440068) 14774
(0.00746042 0.00501195 0.00443052) 14834
(0.00783655 0.00500653 0.00444408) 14835
(0.00822221 0.00500003 0.0044526) 14836
(0.0086568 0.00499422 0.00445379) 14837
(0.00692781 0.00528335 0.00438514) 14893
(0.00735479 0.00528366 0.00439487) 14894
(0.00771212 0.00528873 0.00440811) 14895
(0.00809282 0.00529009 0.00441787) 14896
(0.00688265 0.00635975 0.00339165) 15193
(0.00722856 0.00637693 0.00340048) 15194
(0.00757024 0.0063902 0.00341113) 15195
(0.00706208 0.00642634 0.00310773) 15254
(0.00706208 0.00642634 0.00310773) 15254
(0.00706208 0.00642634 0.00310773) 15254
(0.00752907 0.006435 0.00311632) 15255
(0.00797091 0.00644186 0.00312423) 15255
(0.00842602 0.00644351 0.00312925) 15256
(0.00891377 0.00644082 0.00313123) 15257
(0.00940939 0.00643744 0.00313307) 15258
(0.000637047 0.00646679 0.00291364) 13501
(0.00355413 0.00639945 0.0027945) 13507
(0.00430284 0.00634356 0.00258516) 13568
(0.00471209 0.00633267 0.00269575) 13569
(0.00621758 0.00640993 0.00290552) 13512
(0.00605683 0.00557779 0.0017865) 13812
(0.00491496 0.00443129 0.00164969) 14049
(0.00512207 0.00446383 0.00163736) 14050
(0.00537522 0.00445554 0.0016401) 14050
(0.00634812 0.00443137 0.0016947) 14052
(0.00503393 0.00421442 0.0018544) 14110
(0.00503156 0.00414065 0.00178788) 14110
(0.00496641 0.00408295 0.00171882) 5649
(0.00537341 0.00421249 0.00173581) 14110
(0.00629731 0.00420769 0.0018246) 14112
(0.00503028 0.00342898 0.00324391) 5410
(0.00527554 0.00360466 0.00329474) 14410
(0.00546588 0.00363093 0.00337667) 14470
(0.00485694 0.00379206 0.00353339) 15909
(0.00488376 0.00371278 0.00368083) 14529
(0.00508811 0.0038078 0.00363476) 14530
(0.00527268 0.00391658 0.00367511) 14530
(0.00464796 0.00506713 0.00438782) 14829
(0.00418618 0.00499268 0.00445526) 14828
(0.00541881 0.00497298 0.00442096) 14830
(0.00298896 0.00648468 0.00288923) 13505
(0.00495456 0.00646289 0.00306003) 15249
(0.00561748 0.00642603 0.00316213) 15251
(0.00641115 0.00641203 0.00313793) 15252
(0.0191535 0.00300878 0.00217347) 518
(0.0197212 0.00688594 0.003656) 2019
(0.0212509 0.0069755 0.0035415) 2022
(0.0113468 0.00653131 0.00421567) 6682
(0.0126306 0.00647352 0.00416829) 6685
(0.0135781 0.00644063 0.00415176) 6687
(0.0143328 0.00642052 0.00414431) 6688
(0.0149625 0.00641011 0.00413732) 6689
(0.0155096 0.00640493 0.0041319) 6691
(0.016013 0.00640382 0.00412774) 6692
(0.0165125 0.0064038 0.00412392) 6693
(0.0170288 0.00640116 0.00412155) 6694
(0.0175534 0.00639596 0.00411821) 6695
(0.0230671 0.00646057 0.00214303) 13426
(0.0242081 0.00664786 0.00225301) 6108
(0.0196886 0.00664369 0.0042305) 6639
(0.0222846 0.00667112 0.00413135) 1964
(0.0198975 0.00635046 0.00115337) 12459
(0.0190202 0.00359867 0.00464679) 7178
(0.0208723 0.00362331 0.00464417) 7181
(0.0221259 0.00366879 0.00471977) 10544
(0.0190251 0.00339434 0.00157267) 398
(0.0210912 0.00334913 0.00168549) 462
(0.0197933 0.00611204 0.00478599) 12219
(0.021618 0.00616137 0.0047367) 12223
(0.0194657 0.00583669 0.00506479) 12578
(0.0194657 0.00583669 0.00506479) 12578
(0.0194657 0.00583669 0.00506479) 12578
(0.0215188 0.00584321 0.00501595) 12583
(0.0215188 0.00584321 0.00501595) 12583
(0.0215188 0.00584321 0.00501595) 12583
(0.022854 0.00590063 0.00499993) 12585
(0.022854 0.00590063 0.00499993) 12585
(0.022854 0.00590063 0.00499993) 12585
(0.019455 0.00397856 0.00486563) 10538
(0.0211569 0.00400796 0.00491292) 10542
(0.0191516 0.00377848 0.0013805) 12758
(0.0220324 0.00375591 0.00142718) 9224
(0.0194981 0.0041766 0.00124367) 11498
(0.0223331 0.00409232 0.00125693) 11504
(0.0196024 0.00451803 0.00108664) 11559
(0.0195205 0.00483756 0.000928283) 11619
(0.021453 0.00475685 0.000953299) 11622
(0.0188745 0.00596902 0.00101458) 12277
(0.0204957 0.00598084 0.0010279) 12280
(0.0195513 0.00537878 0.000833158) 12099
(0.0216594 0.00530053 0.000853612) 10123
(0.022811 0.00522533 0.000801539) 11925
(0.0208228 0.00525192 0.00520168) 11441
(0.0221037 0.00530023 0.00520779) 11444
(0.0195381 0.00382143 0.00115935) 12999
(0.0203844 0.00300657 0.00319948) 760
(0.0203844 0.00300657 0.00319948) 760
(0.0203844 0.00300657 0.00319948) 760
(0.0240277 0.00302513 0.00318575) 768
(0.0249776 0.00296561 0.00317168) 34128
(0.0213376 0.00669423 0.00171829) 2502
(0.0213376 0.00669423 0.00171829) 2502
(0.0213376 0.00669423 0.00171829) 2502
(0.0230711 0.00668608 0.00171942) 2506
(0.0237241 0.00662829 0.00161108) 2507
(0.0225984 0.00619093 0.00168708) 13485
(0.0232416 0.0063201 0.00171265) 13486
(0.00689814 0.00643985 0.00287971) 13513
(0.00689814 0.00643985 0.00287971) 13513
(0.00689814 0.00643985 0.00287971) 13513
(0.00744535 0.00644126 0.0028732) 13514
(0.00793317 0.00644312 0.00286701) 13515
(0.00837495 0.00644593 0.00286431) 13516
(0.00882344 0.00644758 0.00286661) 13517
(0.00930199 0.00644639 0.00286987) 13518
(0.00727027 0.00636359 0.00259992) 13574
(0.0186698 0.00622493 0.00235941) 13657
(0.0191757 0.00621894 0.00236194) 13658
(0.0196864 0.00620954 0.0023613) 13659
(0.0202321 0.00619617 0.00235695) 13660
(0.0207748 0.00618291 0.00234692) 13661
(0.0212855 0.00617362 0.00233378) 13662
(0.007726 0.00584388 0.00185959) 13755
(0.00759369 0.00558985 0.00169294) 13815
(0.00674966 0.00466821 0.00162229) 13993
(0.00710344 0.00466538 0.00160988) 13994
(0.00701002 0.00440242 0.0017016) 14054
(0.00701002 0.00440242 0.0017016) 14054
(0.00701002 0.00440242 0.0017016) 14054
(0.00742226 0.00439576 0.00169345) 14054
(0.00821048 0.00438508 0.00167871) 14056
(0.00866276 0.00438642 0.00167911) 14057
(0.00911448 0.00438744 0.00168003) 14058
(0.00785407 0.00415244 0.00181655) 14115
(0.00824332 0.00414717 0.00181268) 14116
(0.00868601 0.00414995 0.0018117) 14117
(0.00915222 0.00415341 0.00181238) 14118
(0.00733171 0.00396245 0.00204014) 14174
(0.00763411 0.00394653 0.00203188) 14175
(0.0127218 0.00365783 0.00289641) 14365
(0.0132442 0.00366276 0.00289571) 14366
(0.0123391 0.00361797 0.00319218) 14424
(0.0128967 0.00362929 0.00319167) 14425
(0.0134097 0.00363267 0.00319018) 14426
(0.0138864 0.00362984 0.00318974) 14427
(0.00734539 0.00368308 0.0034919) 14474
(0.00793056 0.00365383 0.00347319) 14475
(0.00840701 0.00363377 0.00346786) 14476
(0.00881007 0.00361862 0.00346916) 14477
(0.00922966 0.00360847 0.00346976) 14478
(0.00687077 0.00377506 0.00372318) 14533
(0.00769506 0.00374026 0.00369871) 14535
(0.00831588 0.00372867 0.00370019) 14536
(0.00880471 0.00372164 0.00370412) 14537
(0.00927628 0.00371781 0.00370884) 14538
(0.0071806 0.00396573 0.00395303) 14594
(0.00767653 0.00392897 0.00393108) 14595
(0.00672656 0.00472797 0.00439278) 14773
(0.00716131 0.00472212 0.00440075) 14774
(0.0074389 0.00501206 0.00443036) 14834
(0.00781499 0.0050069 0.00444388) 14835
(0.00819866 0.00500035 0.00445273) 14836
(0.00863191 0.00499437 0.0044541) 14837
(0.00733442 0.00528368 0.00439463) 14894
(0.00769091 0.00528865 0.00440789) 14895
(0.00806924 0.0052903 0.00441787) 14896
(0.00686096 0.00635969 0.00339176) 15193
(0.00720781 0.00637669 0.00340003) 15194
(0.0075468 0.00639014 0.00341082) 15195
(0.00703849 0.00642635 0.00310781) 15254
(0.00703849 0.00642635 0.00310781) 15254
(0.00703849 0.00642635 0.00310781) 15254
(0.00750568 0.00643487 0.00311612) 15255
(0.00794727 0.00644183 0.00312395) 15255
(0.00840089 0.00644371 0.00312918) 15256
(0.00888843 0.0064411 0.00313122) 15257
(0.00938476 0.00643767 0.00313303) 15258
(0.000445034 0.006465 0.0029109) 13500
(0.0035231 0.00640143 0.00279983) 13507
(0.0042859 0.00634285 0.00258434) 13568
(0.00468469 0.00633401 0.00268611) 13569
(0.0061969 0.00640779 0.00290423) 13512
(0.00619003 0.00576067 0.00189393) 13752
(0.0060327 0.00557773 0.00178448) 13812
(0.00491151 0.00440858 0.00162521) 5709
(0.0051397 0.00446653 0.00164491) 14050
(0.00537644 0.00445443 0.0016426) 14050
(0.00632333 0.00443084 0.00169419) 14052
(0.00503546 0.00422256 0.00185908) 14110
(0.00503771 0.00414603 0.00179415) 14110
(0.00497482 0.00408655 0.00172217) 5649
(0.00536101 0.00420927 0.00173672) 14110
(0.00626944 0.00420686 0.00182383) 14112
(0.00502324 0.00343225 0.00324885) 5410
(0.0052924 0.00364407 0.00330502) 14410
(0.0054584 0.00362191 0.00337311) 14470
(0.00488033 0.00378428 0.00352551) 14469
(0.0048834 0.00371497 0.00368024) 14529
(0.00507382 0.00379598 0.00363518) 14530
(0.00529766 0.00392333 0.00366702) 14530
(0.00465598 0.00506668 0.004385) 14829
(0.00419711 0.00499743 0.00445426) 14828
(0.00537445 0.00497486 0.00442403) 14830
(0.00285136 0.00649331 0.00290055) 6125
(0.00493213 0.00646403 0.00305089) 15249
(0.00559648 0.00642656 0.00316142) 15251
(0.00638916 0.0064121 0.00313852) 15252
(0.0191068 0.00300883 0.00217033) 518
(0.0196635 0.00688498 0.00366013) 2019
(0.0212097 0.00696988 0.00354673) 2022
(0.0112979 0.00653395 0.00421826) 6682
(0.0125965 0.00647483 0.00416901) 6685
(0.0135531 0.0064414 0.00415163) 6687
(0.0143125 0.00642083 0.00414421) 6688
(0.0149458 0.00641016 0.00413712) 6689
(0.0154947 0.00640475 0.00413177) 6690
(0.0159985 0.00640352 0.00412764) 6691
(0.0164972 0.00640363 0.00412369) 6692
(0.0170122 0.00640113 0.00412142) 6694
(0.017537 0.00639591 0.00411807) 6695
(0.0230106 0.00645054 0.00213206) 13426
(0.0241613 0.00664432 0.0022541) 6108
(0.0195996 0.00664193 0.00423848) 6639
(0.0222069 0.00666658 0.00413492) 1964
(0.019868 0.00635356 0.00115547) 12459
(0.0189541 0.00359356 0.00464633) 7177
(0.0208169 0.00362219 0.00464241) 7181
(0.02211 0.0036641 0.00471338) 10544
(0.0189688 0.0033971 0.00156657) 397
(0.0210247 0.00335133 0.00168293) 462
(0.0197326 0.00610994 0.00478956) 12219
(0.0215686 0.00615766 0.00473778) 12223
(0.0194009 0.0058358 0.00506739) 12578
(0.0194009 0.0058358 0.00506739) 12578
(0.0194009 0.0058358 0.00506739) 12578
(0.0214552 0.00584162 0.00501659) 12582
(0.0214552 0.00584162 0.00501659) 12582
(0.0214552 0.00584162 0.00501659) 12582
(0.0228305 0.00589549 0.00500109) 12585
(0.0228305 0.00589549 0.00500109) 12585
(0.0228305 0.00589549 0.00500109) 12585
(0.0193971 0.00397624 0.00486314) 10538
(0.0211033 0.00400712 0.00490994) 10542
(0.0190779 0.00377909 0.00137717) 12758
(0.0219365 0.00375752 0.00142768) 9223
(0.0194019 0.00417531 0.00124065) 11498
(0.0222363 0.00409611 0.00125856) 11504
(0.0195312 0.00452061 0.00108313) 11559
(0.0194526 0.00484102 0.000926513) 11618
(0.0213935 0.0047612 0.00095401) 11622
(0.0204438 0.00598074 0.00102868) 12280
(0.0194787 0.00538375 0.000832753) 12098
(0.0215943 0.00530272 0.000854872) 10123
(0.0228052 0.00523139 0.000806193) 11925
(0.0207717 0.00525141 0.00520177) 11441
(0.0220804 0.00529474 0.00520662) 11444
(0.0195061 0.00382698 0.00115666) 12999
(0.0201411 0.00299394 0.00319745) 32832
(0.0201411 0.00299394 0.00319745) 32832
(0.0201411 0.00299394 0.00319745) 32832
(0.0239306 0.00302919 0.00318658) 767
(0.0249681 0.00296868 0.00317006) 34128
(0.0212611 0.00669603 0.00171747) 2502
(0.0212611 0.00669603 0.00171747) 2502
(0.0212611 0.00669603 0.00171747) 2502
(0.0230328 0.00668655 0.00172229) 2506
(0.0237419 0.00663625 0.00162257) 2507
(0.0225289 0.00618401 0.00168186) 13485
(0.0232264 0.006317 0.00171494) 13486
(0.00687233 0.00643992 0.00288002) 13513
(0.00687233 0.00643992 0.00288002) 13513
(0.00687233 0.00643992 0.00288002) 13513
(0.00741986 0.00644132 0.00287348) 13514
(0.00790903 0.00644315 0.00286723) 13515
(0.00835133 0.00644599 0.00286431) 13516
(0.00879932 0.00644771 0.0028664) 13517
(0.00927744 0.00644659 0.00286982) 13518
(0.00724882 0.00636353 0.00260061) 13574
(0.0186469 0.00622517 0.00235928) 13657
(0.0191535 0.00621933 0.00236199) 13658
(0.0196634 0.00621009 0.00236148) 13659
(0.0202079 0.00619686 0.00235735) 13660
(0.0207517 0.0061835 0.00234753) 13661
(0.0212637 0.00617404 0.0023345) 13662
(0.00770566 0.00584383 0.00185992) 13755
(0.00757211 0.00558981 0.00169312) 13815
(0.0067279 0.00466827 0.0016222) 13993
(0.00708276 0.00466522 0.00161015) 13994
(0.00698767 0.00440263 0.00170145) 14053
(0.00698767 0.00440263 0.00170145) 14053
(0.00698767 0.00440263 0.00170145) 14053
(0.00740079 0.00439603 0.00169357) 14054
(0.0081858 0.00438505 0.00167854) 14056
(0.00863832 0.00438634 0.00167889) 14057
(0.00909075 0.00438734 0.00167987) 14058
(0.00783218 0.00415267 0.00181662) 14115
(0.00821984 0.00414703 0.00181265) 14116
(0.00866164 0.0041496 0.00181165) 14117
(0.00912779 0.00415325 0.00181217) 14118
(0.0073108 0.0039629 0.0020401) 14174
(0.0076139 0.00394681 0.00203211) 14175
(0.0126982 0.00365734 0.00289637) 14365
(0.0132231 0.00366271 0.00289577) 14366
(0.012314 0.00361735 0.0031922) 14424
(0.0128735 0.00362895 0.00319176) 14425
(0.0133879 0.00363261 0.00319029) 14426
(0.0138662 0.00363004 0.0031898) 14427
(0.00731668 0.0036844 0.00349345) 14474
(0.00790557 0.00365492 0.00347384) 14475
(0.00838539 0.0036345 0.00346803) 14476
(0.00878966 0.00361918 0.00346918) 14477
(0.00920606 0.00360865 0.00346988) 14478
(0.00608969 0.00384115 0.00379308) 14592
(0.00683366 0.00377741 0.00372577) 14533
(0.00766067 0.00374126 0.00369932) 14535
(0.00828872 0.00372904 0.00370025) 14536
(0.00878098 0.00372188 0.00370405) 14537
(0.00925154 0.00371786 0.00370882) 14538
(0.0071559 0.00396816 0.00395466) 14594
(0.00765165 0.00393013 0.00393186) 14595
(0.00670273 0.0047285 0.00439302) 14773
(0.00713752 0.00472223 0.00440081) 14774
(0.00741733 0.00501217 0.00443021) 14834
(0.00779354 0.00500726 0.00444366) 14835
(0.00817522 0.00500068 0.00445284) 14836
(0.00860704 0.00499453 0.00445441) 14837
(0.00731407 0.00528369 0.0043944) 14894
(0.00766983 0.00528857 0.00440765) 14895
(0.00804579 0.00529051 0.00441785) 14896
(0.00683927 0.00635963 0.00339193) 15193
(0.00718719 0.00637644 0.00339959) 15194
(0.00752359 0.00639008 0.00341049) 15195
(0.00701491 0.00642635 0.00310793) 15254
(0.00701491 0.00642635 0.00310793) 15254
(0.00701491 0.00642635 0.00310793) 15254
(0.00748233 0.00643474 0.00311594) 15254
(0.00792369 0.00644179 0.00312368) 15255
(0.00837581 0.0064439 0.0031291) 15256
(0.00886301 0.00644139 0.00313122) 15257
(0.00936007 0.0064379 0.00313299) 15258
(0.000296137 0.00646451 0.00290802) 13500
(0.0034917 0.00640345 0.00280513) 13506
(0.00426896 0.00634242 0.00258383) 13568
(0.00466558 0.00633605 0.00267858) 13569
(0.00617562 0.00640572 0.00290278) 13512
(0.00617307 0.00576147 0.00189094) 13752
(0.00600915 0.00557742 0.00178235) 13812
(0.00485944 0.00439105 0.00160827) 5709
(0.005159 0.00446888 0.00165333) 14050
(0.0053765 0.00445376 0.00164477) 14050
(0.00629815 0.00443008 0.00169368) 14052
(0.00503411 0.00422931 0.00186444) 14110
(0.00504172 0.00415085 0.00180066) 14110
(0.0049836 0.00409053 0.00172585) 5649
(0.00534981 0.00420645 0.00173795) 5650
(0.00624182 0.0042062 0.00182315) 14112
(0.00502909 0.00343208 0.00325154) 5410
(0.0052755 0.00362825 0.00329745) 14410
(0.00550165 0.00367741 0.00340868) 14471
(0.00489106 0.00377381 0.00351687) 14469
(0.00488052 0.00372012 0.00367979) 14529
(0.00506196 0.00378583 0.00363822) 14530
(0.00528312 0.00391544 0.00366494) 14530
(0.00466117 0.005066 0.00438243) 14829
(0.00422937 0.00500365 0.00445276) 14828
(0.00532911 0.00497673 0.00442697) 14830
(0.00276887 0.00649902 0.00290601) 6125
(0.00266135 0.00650034 0.0029461) 6125
(0.00490256 0.00646569 0.00303754) 15249
(0.00557492 0.00642722 0.00316058) 15251
(0.00636678 0.00641219 0.0031391) 15252
(0.0190599 0.00300865 0.00216723) 518
(0.0196031 0.00688462 0.00366385) 2019
(0.0211673 0.00696438 0.00355194) 2022
(0.0112494 0.0065366 0.0042209) 6682
(0.012562 0.00647617 0.00416977) 6685
(0.013528 0.00644218 0.00415152) 6687
(0.0142922 0.00642114 0.00414411) 6688
(0.014929 0.00641022 0.00413691) 6689
(0.0154797 0.00640457 0.00413164) 6690
(0.0159839 0.00640324 0.00412753) 6691
(0.016482 0.00640345 0.00412347) 6692
(0.0169955 0.00640109 0.00412127) 6693
(0.0175206 0.00639587 0.00411795) 6695
(0.022951 0.00644024 0.00212025) 13425
(0.0241148 0.0066405 0.00225494) 6108
(0.0195082 0.0066407 0.00424633) 6639
(0.022127 0.00666236 0.00413838) 1964
(0.0198381 0.00635655 0.00115744) 12459
(0.018893 0.00358823 0.00464534) 7177
(0.0207603 0.00362112 0.00464083) 7181
(0.0220925 0.0036597 0.00470726) 10544
(0.0189142 0.00339984 0.0015609) 397
(0.0209569 0.00335342 0.00168025) 461
(0.0196713 0.00610779 0.00479339) 12219
(0.0215174 0.0061541 0.00473886) 12223
(0.0193368 0.00583494 0.00506996) 12578
(0.0193368 0.00583494 0.00506996) 12578
(0.0193368 0.00583494 0.00506996) 12578
(0.0213901 0.00584014 0.00501729) 12582
(0.0213901 0.00584014 0.00501729) 12582
(0.0213901 0.00584014 0.00501729) 12582
(0.022805 0.00589062 0.00500211) 12585
(0.022805 0.00589062 0.00500211) 12585
(0.022805 0.00589062 0.00500211) 12585
(0.0193368 0.00397381 0.00486058) 10538
(0.0210487 0.00400629 0.00490705) 10542
(0.0190075 0.00377977 0.00137415) 12758
(0.0218387 0.00375905 0.00142802) 9223
(0.0193043 0.00417229 0.00123758) 11498
(0.022138 0.00409997 0.00126006) 11504
(0.0194581 0.00452234 0.00107944) 11558
(0.0193825 0.00484385 0.000924675) 11618
(0.0213326 0.00476547 0.000954632) 11622
(0.0203916 0.00598061 0.00102939) 12280
(0.0194056 0.0053887 0.000832335) 12098
(0.0215272 0.00530491 0.000855969) 10123
(0.0227967 0.00523709 0.000810724) 11925
(0.0207199 0.00525101 0.00520193) 11441
(0.0220553 0.00528962 0.00520545) 11444
(0.0194748 0.00383257 0.00115391) 12998
(0.0198902 0.0029783 0.0031954) 32688
(0.0198902 0.0029783 0.0031954) 32688
(0.0198902 0.0029783 0.0031954) 32688
(0.0238251 0.00303314 0.00318757) 767
(0.0249574 0.00297179 0.00316864) 34128
(0.0211824 0.00669795 0.00171637) 2502
(0.0211824 0.00669795 0.00171637) 2502
(0.0211824 0.00669795 0.00171637) 2502
(0.022993 0.00668699 0.00172501) 2505
(0.0237552 0.00664325 0.00163309) 2507
(0.0224504 0.00617692 0.00167612) 13484
(0.0232116 0.00631372 0.00171705) 13486
(0.00684662 0.00643997 0.00288033) 13513
(0.00684662 0.00643997 0.00288033) 13513
(0.00684662 0.00643997 0.00288033) 13513
(0.00739434 0.00644137 0.00287376) 13514
(0.00788486 0.00644318 0.00286746) 13515
(0.00832772 0.00644604 0.00286433) 13516
(0.0087752 0.00644783 0.0028662) 13517
(0.00925288 0.00644679 0.00286978) 13518
(0.00722733 0.00636347 0.00260125) 13574
(0.0186239 0.00622541 0.00235916) 13657
(0.0191313 0.00621971 0.00236203) 13658
(0.0196405 0.00621062 0.00236164) 13659
(0.0201837 0.00619755 0.00235774) 13660
(0.0207284 0.00618411 0.00234815) 13661
(0.021242 0.00617447 0.00233521) 13662
(0.00768537 0.00584377 0.00186025) 13755
(0.00755058 0.00558978 0.00169332) 13815
(0.00670618 0.00466837 0.0016221) 13993
(0.00706211 0.00466505 0.00161041) 13994
(0.00696536 0.00440284 0.00170129) 14053
(0.00696536 0.00440284 0.00170129) 14053
(0.00696536 0.00440284 0.00170129) 14053
(0.00737937 0.00439632 0.00169368) 14054
(0.00774298 0.00438752 0.0016829) 14055
(0.00816122 0.00438504 0.00167838) 14056
(0.00861388 0.00438626 0.00167867) 14057
(0.00906701 0.00438724 0.0016797) 14058
(0.00781039 0.00415293 0.00181669) 14115
(0.00819649 0.00414691 0.00181263) 14116
(0.00863733 0.00414925 0.00181161) 14117
(0.00910336 0.00415307 0.00181197) 14118
(0.00759379 0.00394712 0.00203231) 14175
(0.0126744 0.00365684 0.00289633) 14365
(0.0132019 0.00366264 0.00289583) 14366
(0.0122889 0.00361673 0.00319222) 14424
(0.0128503 0.0036286 0.00319184) 14425
(0.0133661 0.00363254 0.0031904) 14426
(0.0138459 0.00363022 0.00318986) 14427
(0.0142892 0.00362286 0.00319005) 14428
(0.00728787 0.00368571 0.00349505) 14474
(0.00788044 0.00365604 0.00347452) 14475
(0.00836367 0.00363524 0.00346822) 14476
(0.00876931 0.00361974 0.00346921) 14477
(0.00918266 0.00360884 0.00346999) 14478
(0.00607056 0.00384411 0.00379554) 14592
(0.00679696 0.00377981 0.00372842) 14533
(0.00762594 0.00374233 0.00369999) 14535
(0.00826133 0.00372942 0.00370033) 14536
(0.00875721 0.00372212 0.00370399) 14537
(0.00922692 0.00371792 0.0037088) 14538
(0.00713117 0.00397064 0.00395631) 14594
(0.00762675 0.00393134 0.00393267) 14595
(0.00667899 0.00472906 0.00439326) 14773
(0.00711368 0.00472224 0.00440088) 14774
(0.00739571 0.00501228 0.00443007) 14834
(0.00777221 0.00500761 0.00444343) 14835
(0.00815189 0.005001 0.00445292) 14836
(0.00858223 0.0049947 0.00445471) 14837
(0.00729375 0.00528366 0.00439417) 14894
(0.00764887 0.00528851 0.0044074) 14895
(0.00802249 0.00529069 0.00441782) 14896
(0.00681759 0.00635957 0.00339213) 15193
(0.0071667 0.00637619 0.00339917) 15194
(0.00750066 0.00639 0.00341014) 15195
(0.00699132 0.00642635 0.00310808) 15253
(0.00699132 0.00642635 0.00310808) 15253
(0.00699132 0.00642635 0.00310808) 15253
(0.007459 0.00643462 0.00311577) 15254
(0.00790017 0.00644174 0.0031234) 15255
(0.0083508 0.00644409 0.00312902) 15256
(0.00883754 0.00644167 0.00313122) 15257
(0.00933534 0.00643813 0.00313294) 15258
(0.000194266 0.00646508 0.00290566) 13500
(0.00346511 0.00640492 0.00280961) 13506
(0.00425524 0.00634236 0.00258458) 13568
(0.0045949 0.00634818 0.00264419) 13569
(0.00615382 0.00640368 0.00290123) 13512
(0.00615478 0.00576215 0.00188843) 13752
(0.00598507 0.00557688 0.00178014) 13811
(0.00472386 0.00437898 0.001607) 5709
(0.00518042 0.00447076 0.00166275) 14050
(0.00537584 0.0044535 0.00164676) 14050
(0.00627279 0.00442906 0.00169322) 14052
(0.0050317 0.00423589 0.00187015) 14110
(0.00504531 0.00415582 0.0018069) 14110
(0.0049929 0.00409505 0.0017299) 5649
(0.00533971 0.00420408 0.00173945) 5650
(0.00621471 0.00420568 0.00182255) 14112
(0.00523164 0.00344872 0.00323511) 5410
(0.00529439 0.00366057 0.00330566) 14410
(0.0054949 0.00367531 0.00340531) 14470
(0.00489237 0.0037632 0.00350675) 14469
(0.00487576 0.00372748 0.00367935) 14529
(0.00504918 0.00377288 0.00363998) 14530
(0.0052692 0.00390806 0.00366278) 14530
(0.00467289 0.00506565 0.0043789) 14829
(0.0042914 0.00501142 0.00445023) 14828
(0.00528381 0.00497865 0.00442969) 14830
(0.00264148 0.00650561 0.00291418) 6125
(0.00279497 0.00649296 0.00293241) 13505
(0.00486403 0.00646752 0.00301946) 15249
(0.00555452 0.00642775 0.00315987) 15251
(0.00634424 0.00641224 0.00313972) 15252
(0.0190124 0.00300823 0.00216423) 518
(0.0195401 0.00688492 0.00366712) 2019
(0.0211237 0.00695902 0.00355713) 2022
(0.0112 0.00653936 0.00422367) 6682
(0.012527 0.00647755 0.00417057) 6685
(0.0135026 0.00644298 0.00415144) 6687
(0.0142716 0.00642146 0.00414402) 6688
(0.0149121 0.00641028 0.00413672) 6689
(0.0154647 0.00640441 0.00413151) 6690
(0.0159694 0.00640297 0.00412741) 6691
(0.0164668 0.00640328 0.00412325) 6692
(0.016979 0.00640106 0.00412111) 6693
(0.0175041 0.00639583 0.00411783) 6695
(0.022887 0.00642969 0.00210746) 13425
(0.0240686 0.00663639 0.00225546) 6108
(0.0194126 0.00664071 0.00425363) 6638
(0.0220444 0.00665862 0.00414165) 1964
(0.0237034 0.00675713 0.00408766) 1967
(0.0198079 0.00635942 0.0011593) 12459
(0.0207025 0.00362005 0.00463941) 7181
(0.0220733 0.00365557 0.00470139) 10544
(0.0208878 0.0033554 0.00167741) 461
(0.0225192 0.00330431 0.00172284) 465
(0.0196083 0.00610563 0.00479747) 12219
(0.0214647 0.00615066 0.00473994) 12222
(0.0192733 0.00583411 0.00507246) 12578
(0.0192733 0.00583411 0.00507246) 12578
(0.0192733 0.00583411 0.00507246) 12578
(0.0213233 0.00583876 0.00501807) 12582
(0.0213233 0.00583876 0.00501807) 12582
(0.0213233 0.00583876 0.00501807) 12582
(0.0227776 0.005886 0.00500299) 12585
(0.0227776 0.005886 0.00500299) 12585
(0.0227776 0.005886 0.00500299) 12585
(0.0192735 0.00397116 0.00485788) 10538
(0.0209934 0.00400543 0.00490424) 10541
(0.0189418 0.00378062 0.00137147) 12757
(0.021739 0.00376058 0.00142817) 9223
(0.0192031 0.00416722 0.0012348) 11498
(0.0220384 0.0041039 0.00126144) 11504
(0.0193827 0.00452307 0.00107565) 11558
(0.0193097 0.00484596 0.000922783) 11618
(0.0212705 0.00476968 0.000955157) 11622
(0.0203391 0.00598047 0.00103001) 12280
(0.0193342 0.00539372 0.000832015) 12098
(0.0214584 0.00530714 0.000856904) 10122
(0.0227854 0.00524244 0.000815134) 11925
(0.0206674 0.00525069 0.00520215) 11441
(0.0220287 0.00528484 0.00520431) 11444
(0.0194441 0.00383822 0.00115112) 12998
(0.0208548 0.00375036 0.00117856) 13001
(0.0196717 0.00296319 0.00319302) 32688
(0.0237111 0.00303684 0.00318874) 767
(0.0249455 0.00297492 0.00316737) 34128
(0.0211015 0.0067 0.00171497) 2502
(0.0211015 0.0067 0.00171497) 2502
(0.0211015 0.0067 0.00171497) 2502
(0.0229517 0.00668744 0.00172761) 2505
(0.0237618 0.00664917 0.00164225) 2507
(0.0223628 0.00616977 0.00166992) 13484
(0.0231969 0.0063102 0.00171887) 13486
(0.00682101 0.00644002 0.00288064) 13513
(0.00682101 0.00644002 0.00288064) 13513
(0.00682101 0.00644002 0.00288064) 13513
(0.00736882 0.00644143 0.00287403) 13514
(0.00786067 0.00644321 0.00286771) 13515
(0.00830412 0.00644609 0.00286435) 13516
(0.00875109 0.00644796 0.00286599) 13517
(0.00922829 0.00644698 0.00286973) 13518
(0.0072058 0.00636341 0.00260185) 13574
(0.0186008 0.00622565 0.00235905) 13657
(0.019109 0.00622008 0.00236206) 13658
(0.0196176 0.00621113 0.00236179) 13659
(0.0201595 0.00619824 0.00235812) 13660
(0.020705 0.00618473 0.00234878) 13661
(0.0212201 0.00617491 0.00233592) 13662
(0.00766512 0.00584368 0.00186058) 13755
(0.00752909 0.00558976 0.00169353) 13815
(0.00668453 0.00466845 0.00162201) 13993
(0.00704144 0.00466495 0.00161065) 13994
(0.00694309 0.00440304 0.00170114) 14053
(0.00694309 0.00440304 0.00170114) 14053
(0.00694309 0.00440304 0.00170114) 14053
(0.00735797 0.00439661 0.00169377) 14054
(0.00772073 0.00438775 0.00168301) 14055
(0.00813673 0.00438504 0.00167823) 14056
(0.00858942 0.00438618 0.00167845) 14057
(0.00904325 0.00438715 0.00167953) 14058
(0.00778869 0.00415322 0.00181675) 14115
(0.00817326 0.00414681 0.00181262) 14116
(0.00861306 0.00414892 0.00181157) 14117
(0.00907892 0.00415286 0.00181179) 14118
(0.00757376 0.00394745 0.00203249) 14175
(0.0126506 0.00365632 0.00289629) 14365
(0.0131806 0.00366256 0.00289589) 14366
(0.0122638 0.00361611 0.00319224) 14424
(0.0128269 0.00362824 0.00319193) 14425
(0.0133441 0.00363246 0.00319051) 14426
(0.0138256 0.0036304 0.00318992) 14427
(0.01427 0.00362322 0.00319005) 14428
(0.00725899 0.00368702 0.00349671) 14474
(0.00785516 0.00365717 0.00347524) 14475
(0.00834185 0.00363599 0.00346842) 14476
(0.00874901 0.00362032 0.00346923) 14477
(0.00915946 0.00360906 0.00347009) 14478
(0.00605218 0.00384699 0.00379783) 14592
(0.00676072 0.00378221 0.0037311) 14533
(0.00759089 0.00374345 0.00370075) 14535
(0.00823369 0.00372981 0.00370041) 14536
(0.00873341 0.00372237 0.00370394) 14537
(0.0092024 0.00371799 0.00370877) 14538
(0.00710639 0.00397319 0.00395798) 14594
(0.00760184 0.0039326 0.00393351) 14595
(0.00665531 0.00472962 0.00439348) 14773
(0.00708987 0.00472225 0.00440095) 14774
(0.00737404 0.00501238 0.00442994) 14834
(0.00775097 0.00500795 0.00444319) 14835
(0.00812869 0.00500133 0.00445299) 14836
(0.00855746 0.00499492 0.00445501) 14837
(0.00727343 0.00528362 0.00439395) 14894
(0.00762804 0.00528844 0.00440714) 14895
(0.00799934 0.00529086 0.00441776) 14895
(0.00679591 0.00635951 0.00339236) 15193
(0.00714631 0.00637593 0.00339878) 15194
(0.00747796 0.00638991 0.00340975) 15194
(0.00696772 0.00642634 0.00310827) 15253
(0.00696772 0.00642634 0.00310827) 15253
(0.00696772 0.00642634 0.00310827) 15253
(0.0074357 0.00643449 0.00311561) 15254
(0.00787673 0.00644168 0.00312313) 15255
(0.00832585 0.00644426 0.00312893) 15256
(0.008812 0.00644196 0.00313122) 15257
(0.00931054 0.00643837 0.00313289) 15258
(0.000112587 0.00646582 0.00290373) 13500
(0.00343211 0.00640716 0.00281491) 13506
(0.00422474 0.00634348 0.00258921) 13568
(0.00457817 0.00634909 0.00263879) 13569
(0.00613545 0.0057628 0.00188626) 13752
(0.00596102 0.00557624 0.00177791) 13811
(0.00442705 0.00437279 0.0016221) 5708
(0.0052021 0.00447171 0.00167337) 14050
(0.00537457 0.00445359 0.00164856) 14050
(0.00624745 0.00442782 0.00169284) 14052
(0.00502811 0.00424191 0.00187626) 14110
(0.00504913 0.00416124 0.00181273) 14110
(0.00500385 0.00410046 0.00173437) 5650
(0.00534599 0.00420337 0.00174257) 14110
(0.00618776 0.00420505 0.0018221) 14112
(0.00523205 0.00343924 0.00323677) 5410
(0.00531121 0.0036825 0.00331058) 14410
(0.00551249 0.00370763 0.00343405) 14471
(0.00489339 0.00375378 0.00349685) 14469
(0.00487143 0.00373732 0.00367961) 14529
(0.00503753 0.00376498 0.0036437) 14530
(0.00529621 0.00391547 0.00365492) 14530
(0.00467738 0.00506494 0.00437617) 14829
(0.00437819 0.00502073 0.00444615) 14828
(0.00523843 0.00498076 0.00443225) 14830
(0.000949301 0.00649136 0.00309947) 4561
(0.00252142 0.00651072 0.00292028) 6125
(0.00298178 0.00648161 0.00291346) 13505
(0.00482876 0.00646853 0.00300023) 13509
(0.0055325 0.00642857 0.00315881) 15251
(0.00632139 0.00641233 0.00314033) 15252
(0.0189646 0.00300756 0.00216139) 517
(0.019475 0.0068859 0.00366988) 2018
(0.0210791 0.00695382 0.00356227) 2022
(0.0111511 0.0065421 0.00422646) 6682
(0.0124914 0.00647898 0.00417141) 6684
(0.0134769 0.00644378 0.00415138) 6686
(0.0142509 0.0064218 0.00414394) 6688
(0.0148951 0.00641033 0.00413654) 6689
(0.0154496 0.00640425 0.00413138) 6690
(0.0159548 0.00640271 0.00412727) 6691
(0.0164516 0.00640311 0.00412302) 6692
(0.0169624 0.00640102 0.00412093) 6693
(0.0174875 0.00639581 0.00411771) 6694
(0.0228187 0.00641893 0.00209382) 13425
(0.0240226 0.00663194 0.00225559) 6108
(0.0193132 0.0066422 0.00426021) 6638
(0.0219587 0.00665546 0.00414466) 1963
(0.0236758 0.00675186 0.00408976) 1967
(0.0197776 0.00636222 0.00116105) 12459
(0.0206438 0.00361895 0.00463811) 7181
(0.0220523 0.0036517 0.00469577) 7184
(0.0208172 0.00335729 0.00167435) 461
(0.0224865 0.00330861 0.0017198) 464
(0.0195424 0.00610356 0.00480177) 12219
(0.0214103 0.00614735 0.00474103) 12222
(0.0192102 0.00583328 0.00507482) 12578
(0.0192102 0.00583328 0.00507482) 12578
(0.0192102 0.00583328 0.00507482) 12578
(0.0212552 0.00583748 0.00501893) 12582
(0.0212552 0.00583748 0.00501893) 12582
(0.0212552 0.00583748 0.00501893) 12582
(0.0227482 0.00588161 0.00500375) 12585
(0.0227482 0.00588161 0.00500375) 12585
(0.0227482 0.00588161 0.00500375) 12585
(0.019207 0.00396819 0.00485499) 10538
(0.0209374 0.00400455 0.00490151) 10541
(0.0188817 0.0037819 0.00136914) 12757
(0.0216374 0.00376212 0.00142811) 9223
(0.0190994 0.00416043 0.00123266) 11498
(0.0219375 0.00410789 0.00126267) 11503
(0.0193035 0.00452248 0.00107181) 11558
(0.0192347 0.00484728 0.000920863) 11618
(0.0212072 0.00477378 0.000955571) 11622
(0.022654 0.00467305 0.000933515) 11565
(0.0202863 0.00598031 0.00103056) 12280
(0.0192679 0.00539892 0.000831944) 12098
(0.0213876 0.00530938 0.000857675) 10122
(0.0227709 0.00524746 0.000819412) 11925
(0.0206142 0.00525044 0.00520243) 11441
(0.0220005 0.00528039 0.00520318) 11444
(0.0208233 0.00375689 0.00117673) 13001
(0.0195359 0.00295689 0.00318931) 32688
(0.0235893 0.00304018 0.00319008) 767
(0.0249325 0.00297809 0.00316625) 34128
(0.0210176 0.00670216 0.00171319) 2502
(0.0210176 0.00670216 0.00171319) 2502
(0.0210176 0.00670216 0.00171319) 2502
(0.0229086 0.00668789 0.00173007) 2505
(0.0237624 0.00665418 0.0016502) 2507
(0.0222608 0.00616307 0.00166369) 13484
(0.023183 0.00630653 0.00172056) 13486
(0.00679553 0.00644004 0.00288095) 13513
(0.00679553 0.00644004 0.00288095) 13513
(0.00679553 0.00644004 0.00288095) 13513
(0.00734327 0.00644148 0.00287431) 13514
(0.00783645 0.00644323 0.00286797) 13515
(0.00828053 0.00644614 0.00286438) 13516
(0.00872699 0.00644807 0.00286579) 13517
(0.0092037 0.00644718 0.00286967) 13518
(0.0185776 0.0062259 0.00235893) 13657
(0.0190868 0.00622045 0.00236209) 13658
(0.0195949 0.00621164 0.00236193) 13659
(0.0201354 0.00619892 0.00235847) 13660
(0.0206816 0.00618537 0.00234939) 13661
(0.0211982 0.00617536 0.00233664) 13662
(0.00764492 0.00584359 0.0018609) 13755
(0.00750765 0.00558974 0.00169375) 13815
(0.0066629 0.00466854 0.00162191) 13993
(0.00702078 0.00466486 0.00161088) 13994
(0.00692083 0.00440324 0.00170098) 14053
(0.00692083 0.00440324 0.00170098) 14053
(0.00692083 0.00440324 0.00170098) 14053
(0.00733662 0.0043969 0.00169387) 14054
(0.00769865 0.00438799 0.00168314) 14055
(0.00811236 0.00438506 0.00167809) 14056
(0.00856496 0.0043861 0.00167823) 14057
(0.00901949 0.00438708 0.00167936) 14058
(0.00776709 0.00415354 0.00181681) 14115
(0.00815017 0.00414673 0.00181262) 14116
(0.00858884 0.00414859 0.00181153) 14117
(0.00905447 0.00415264 0.00181162) 14118
(0.0075538 0.00394781 0.00203266) 14175
(0.0126266 0.00365579 0.00289624) 14365
(0.0131592 0.00366245 0.00289594) 14366
(0.0122387 0.00361549 0.00319226) 14424
(0.0128035 0.00362786 0.00319201) 14425
(0.0133221 0.00363236 0.00319063) 14426
(0.0138051 0.00363056 0.00318998) 14427
(0.0142507 0.00362357 0.00319006) 14428
(0.00723 0.00368833 0.00349845) 14474
(0.00782973 0.00365832 0.003476) 14475
(0.00831991 0.00363676 0.00346864) 14476
(0.00872875 0.00362091 0.00346925) 14477
(0.00913646 0.00360931 0.00347019) 14478
(0.00603443 0.00384988 0.00379988) 14592
(0.00672512 0.00378465 0.0037338) 14533
(0.00755555 0.00374464 0.00370158) 14535
(0.00820581 0.00373023 0.00370051) 14536
(0.00870955 0.00372262 0.00370389) 14537
(0.009178 0.00371807 0.00370872) 14538
(0.00708157 0.00397579 0.00395967) 14594
(0.00757693 0.0039339 0.00393438) 14595
(0.0066317 0.00473019 0.00439367) 14773
(0.0070661 0.00472228 0.00440101) 14774
(0.00735231 0.00501247 0.00442982) 14834
(0.00772983 0.00500829 0.00444294) 14835
(0.00810561 0.00500166 0.00445304) 14836
(0.00853274 0.00499516 0.0044553) 14837
(0.0072531 0.00528357 0.00439374) 14894
(0.00760733 0.00528838 0.00440687) 14895
(0.00797635 0.00529101 0.00441769) 14895
(0.00677423 0.00635945 0.00339261) 15193
(0.00712604 0.00637566 0.00339843) 15194
(0.00745549 0.00638981 0.00340934) 15194
(0.00694412 0.00642634 0.00310849) 15253
(0.00694412 0.00642634 0.00310849) 15253
(0.00694412 0.00642634 0.00310849) 15253
(0.00741244 0.00643436 0.00311547) 15254
(0.00785334 0.0064416 0.00312285) 15255
(0.00830097 0.00644442 0.00312883) 15256
(0.0087864 0.00644225 0.00313123) 15257
(0.00928569 0.00643862 0.00313283) 15258
(5.89342e-05 0.00646643 0.00290266) 13500
(0.00339117 0.0064104 0.00282115) 13506
(0.00419183 0.0063466 0.0026011) 13568
(0.00455118 0.00634876 0.00263154) 13569
(0.00611534 0.00576341 0.00188437) 13752
(0.00593645 0.00557552 0.00177568) 13811
(0.00400861 0.0043716 0.00164027) 5708
(0.00522554 0.00447157 0.00168465) 14050
(0.00537316 0.00445394 0.00165027) 14050
(0.0062223 0.00442641 0.00169258) 14052
(0.00502375 0.00424792 0.00188272) 14110
(0.00505283 0.00416694 0.00181812) 14110
(0.00501601 0.00410704 0.00173944) 5650
(0.00533191 0.00420198 0.00174001) 5650
(0.0061606 0.0042041 0.0018219) 14112
(0.00522604 0.00343533 0.00323959) 5410
(0.00529088 0.00366896 0.00330304) 14410
(0.00550673 0.00370586 0.00342978) 14471
(0.00486196 0.00374313 0.00349044) 14469
(0.00486369 0.00375063 0.0036802) 14529
(0.00502233 0.00375697 0.00364719) 14530
(0.00532339 0.003922 0.00364627) 14530
(0.00467138 0.00506364 0.0043748) 14829
(0.00448991 0.00503277 0.00443971) 14828
(0.00519302 0.00498305 0.00443468) 14830
(0.00161564 0.00649055 0.00309086) 15243
(0.00243713 0.00651337 0.00292446) 6124
(0.00313975 0.00647124 0.0028957) 13506
(0.00479633 0.00646863 0.00298146) 13509
(0.00551026 0.00642949 0.00315756) 15251
(0.00629853 0.00641239 0.00314099) 15252
(0.0189161 0.00300676 0.00215863) 517
(0.020359 0.00298636 0.00222208) 32828
(0.0194082 0.00688756 0.00367211) 2018
(0.0210335 0.00694878 0.00356738) 2022
(0.0111028 0.00654482 0.00422929) 6682
(0.0124552 0.00648047 0.00417232) 6684
(0.0134509 0.00644459 0.00415135) 6686
(0.01423 0.00642214 0.00414386) 6688
(0.014878 0.00641038 0.00413639) 6689
(0.0154344 0.0064041 0.00413126) 6690
(0.0159403 0.00640247 0.00412711) 6691
(0.0164364 0.00640296 0.00412278) 6692
(0.016946 0.00640099 0.00412073) 6693
(0.017471 0.00639579 0.00411758) 6694
(0.0227442 0.0064081 0.00207957) 13425
(0.0239775 0.00662716 0.00225532) 6107
(0.0248413 0.00668775 0.00220127) 13429
(0.0192121 0.00664523 0.00426608) 6638
(0.0218699 0.006653 0.00414733) 1903
(0.0236451 0.00674677 0.00409182) 1967
(0.0197471 0.00636495 0.00116271) 12459
(0.0205846 0.00361782 0.0046369) 7181
(0.0220296 0.00364808 0.00469038) 7184
(0.0207453 0.00335912 0.00167107) 461
(0.0224526 0.00331279 0.00171695) 464
(0.0194729 0.00610168 0.00480623) 12218
(0.0213546 0.00614417 0.00474215) 12222
(0.0191473 0.00583243 0.00507702) 12578
(0.0191473 0.00583243 0.00507702) 12578
(0.0191473 0.00583243 0.00507702) 12578
(0.0211857 0.0058363 0.00501988) 12582
(0.0211857 0.0058363 0.00501988) 12582
(0.0211857 0.0058363 0.00501988) 12582
(0.0227177 0.00587738 0.00500441) 12585
(0.0227177 0.00587738 0.00500441) 12585
(0.0227177 0.00587738 0.00500441) 12585
(0.0233194 0.00602019 0.00493539) 12346
(0.0191373 0.00396478 0.00485183) 10538
(0.0208809 0.00400362 0.00489885) 10541
(0.0188277 0.00378382 0.001367) 12757
(0.0215341 0.00376368 0.00142783) 12763
(0.0189981 0.00415306 0.00123135) 11497
(0.021836 0.00411197 0.00126374) 11503
(0.0192208 0.00452058 0.00106793) 11558
(0.0191584 0.00484788 0.000918975) 11618
(0.0211426 0.00477773 0.000955869) 11622
(0.0226262 0.00467854 0.000934989) 11565
(0.0202332 0.00598015 0.00103103) 12280
(0.0192098 0.00540444 0.000832292) 12098
(0.0213152 0.00531167 0.000858293) 10122
(0.0227537 0.00525216 0.000823571) 11925
(0.0205608 0.00525025 0.00520277) 11441
(0.0219709 0.00527621 0.00520207) 11443
(0.0207908 0.00376313 0.00117497) 13001
(0.0194309 0.00295457 0.00318461) 32544
(0.0234607 0.00304306 0.00319157) 766
(0.0249183 0.00298128 0.0031653) 34128
(0.0209302 0.00670443 0.00171097) 2501
(0.0209302 0.00670443 0.00171097) 2501
(0.0209302 0.00670443 0.00171097) 2501
(0.0228639 0.00668833 0.00173239) 2505
(0.023757 0.00665844 0.00165702) 2507
(0.0221445 0.0061569 0.00165733) 13484
(0.0231698 0.00630271 0.00172206) 13486
(0.00677013 0.00644006 0.00288125) 13513
(0.00677013 0.00644006 0.00288125) 13513
(0.00677013 0.00644006 0.00288125) 13513
(0.00731771 0.00644153 0.00287458) 13514
(0.00781221 0.00644326 0.00286825) 13515
(0.00825695 0.00644618 0.00286442) 13516
(0.0087029 0.00644819 0.00286559) 13517
(0.00917908 0.00644737 0.00286961) 13518
(0.0185544 0.00622614 0.00235882) 13657
(0.0190645 0.00622081 0.00236212) 13658
(0.0195722 0.00621213 0.00236206) 13659
(0.0201112 0.0061996 0.00235881) 13660
(0.0206581 0.00618601 0.00235) 13661
(0.0211763 0.00617582 0.00233735) 13662
(0.00762475 0.00584347 0.00186122) 13755
(0.00748624 0.00558974 0.00169398) 13814
(0.0066413 0.00466866 0.00162181) 13993
(0.00700013 0.00466477 0.0016111) 13994
(0.00689859 0.00440345 0.00170081) 14053
(0.00689859 0.00440345 0.00170081) 14053
(0.00689859 0.00440345 0.00170081) 14053
(0.00731529 0.00439717 0.00169396) 14054
(0.00767672 0.00438824 0.00168327) 14055
(0.0080881 0.00438509 0.00167796) 14056
(0.00854049 0.00438602 0.00167802) 14057
(0.00899571 0.004387 0.00167918) 14057
(0.00774558 0.00415388 0.00181687) 14115
(0.0081272 0.00414666 0.00181262) 14116
(0.00856468 0.00414827 0.00181149) 14117
(0.00903002 0.00415241 0.00181147) 14118
(0.00753392 0.00394818 0.00203281) 14175
(0.0126025 0.00365524 0.00289618) 14365
(0.0131377 0.00366233 0.00289599) 14366
(0.0122136 0.00361486 0.00319227) 14424
(0.01278 0.00362747 0.00319208) 14425
(0.0133001 0.00363225 0.00319074) 14426
(0.0137846 0.00363071 0.00319004) 14427
(0.0142314 0.00362391 0.00319008) 14428
(0.00720094 0.00368963 0.00350024) 14474
(0.00780413 0.00365949 0.00347678) 14475
(0.00829787 0.00363753 0.00346889) 14476
(0.00870852 0.0036215 0.00346927) 14477
(0.00911368 0.00360957 0.00347028) 14478
(0.00601701 0.00385274 0.00380166) 14592
(0.00669003 0.00378708 0.0037365) 14533
(0.00751992 0.0037459 0.00370249) 14535
(0.00817766 0.00373066 0.00370062) 14536
(0.00868562 0.00372289 0.00370386) 14537
(0.0091537 0.00371816 0.00370868) 14538
(0.00705669 0.00397845 0.00396135) 14594
(0.00755202 0.00393525 0.00393528) 14595
(0.00660816 0.00473077 0.00439385) 14773
(0.00704242 0.00472233 0.00440108) 14774
(0.00733052 0.00501254 0.00442971) 14834
(0.00770879 0.00500863 0.00444267) 14835
(0.00808267 0.00500198 0.00445307) 14836
(0.00850806 0.00499541 0.00445558) 14837
(0.00723276 0.00528351 0.00439353) 14894
(0.00758674 0.00528833 0.00440659) 14895
(0.00795352 0.00529114 0.0044176) 14895
(0.00675256 0.0063594 0.00339286) 15193
(0.00710586 0.00637539 0.00339811) 15194
(0.00743324 0.0063897 0.0034089) 15194
(0.00692052 0.00642634 0.00310877) 15253
(0.00692052 0.00642634 0.00310877) 15253
(0.00692052 0.00642634 0.00310877) 15253
(0.00738919 0.00643424 0.00311535) 15254
(0.00783002 0.00644152 0.00312258) 15255
(0.00827617 0.00644457 0.00312872) 15256
(0.00876074 0.00644255 0.00313124) 15257
(0.00926078 0.00643887 0.00313277) 15258
(1.38954e-05 0.00646723 0.00290174) 13500
(0.00331978 0.00641631 0.00283074) 13506
(0.00413015 0.00635292 0.00263994) 13568
(0.00452747 0.00634971 0.0026234) 13569
(0.00609455 0.00576395 0.00188275) 13752
(0.00591177 0.00557471 0.00177345) 13811
(0.00363063 0.00436976 0.00164603) 5707
(0.00524816 0.00447087 0.00169613) 14050
(0.00537086 0.00445456 0.00165181) 14050
(0.0061975 0.0044249 0.00169248) 14052
(0.0050208 0.00425483 0.00188951) 14110
(0.00505696 0.00417325 0.00182318) 14110
(0.00504254 0.00411975 0.00174405) 5650
(0.00531862 0.00420056 0.00173773) 5650
(0.00613423 0.00420327 0.00182178) 14112
(0.00521986 0.00343306 0.00324273) 5410
(0.00530755 0.0036886 0.00330743) 14410
(0.00550232 0.00370761 0.00342887) 14471
(0.00477466 0.00372317 0.00350384) 14469
(0.004855 0.00376621 0.00368056) 14529
(0.00501035 0.00375345 0.00365126) 14530
(0.00530531 0.00391421 0.00364574) 14530
(0.00466784 0.00506247 0.00437299) 14829
(0.00459304 0.00504455 0.00443194) 14829
(0.00514973 0.00498529 0.00443678) 14830
(0.00205509 0.00647891 0.00308405) 15244
(0.00224262 0.00651736 0.00293115) 6124
(0.00338585 0.00645349 0.00286457) 13506
(0.00475904 0.00646797 0.00295993) 13509
(0.00548787 0.00643047 0.00315614) 15250
(0.00627574 0.00641241 0.0031417) 15252
(0.0203229 0.00298954 0.00221799) 32828
(0.0209872 0.00694384 0.0035725) 2021
(0.011054 0.00654759 0.00423222) 6682
(0.0124185 0.006482 0.00417329) 6684
(0.0134246 0.00644542 0.00415136) 6686
(0.0142089 0.00642249 0.00414379) 6688
(0.0148607 0.00641042 0.00413627) 6689
(0.0154191 0.00640396 0.00413115) 6690
(0.0159257 0.00640225 0.00412694) 6691
(0.0164213 0.0064028 0.00412252) 6692
(0.0169297 0.00640094 0.00412052) 6693
(0.0174544 0.00639578 0.00411746) 6694
(0.022663 0.00639742 0.00206444) 13425
(0.0239327 0.00662199 0.00225453) 6107
(0.0248274 0.00668595 0.00220528) 13429
(0.0191144 0.00664945 0.00427129) 6638
(0.0217784 0.00665118 0.00414975) 6643
(0.0236112 0.00674184 0.00409383) 1967
(0.0197166 0.00636761 0.00116426) 12459
(0.0205247 0.0036166 0.00463572) 7181
(0.0220055 0.00364467 0.0046852) 7184
(0.0206722 0.00336088 0.00166757) 461
(0.0224175 0.00331685 0.00171429) 464
(0.0193992 0.00610007 0.00481082) 12218
(0.0212973 0.00614113 0.00474331) 12222
(0.0190851 0.00583152 0.005079) 12578
(0.0190851 0.00583152 0.005079) 12578
(0.0190851 0.00583152 0.005079) 12578
(0.021115 0.0058352 0.00502093) 12582
(0.021115 0.0058352 0.00502093) 12582
(0.021115 0.0058352 0.00502093) 12582
(0.022687 0.00587322 0.00500504) 12585
(0.022687 0.00587322 0.00500504) 12585
(0.022687 0.00587322 0.00500504) 12585
(0.0233144 0.00601124 0.00494222) 12346
(0.0190648 0.00396073 0.00484829) 10538
(0.020824 0.00400263 0.00489624) 10541
(0.0187768 0.00378579 0.00136497) 12757
(0.0214296 0.0037653 0.00142733) 12762
(0.0189057 0.00414673 0.00123071) 11497
(0.021734 0.00411612 0.00126464) 11503
(0.0191364 0.00451774 0.00106408) 11558
(0.019083 0.00484803 0.000917167) 11618
(0.0210768 0.00478157 0.000956055) 11622
(0.0225969 0.004684 0.000936471) 11565
(0.0201796 0.00597996 0.00103139) 12280
(0.0191565 0.00541016 0.000832909) 12098
(0.0212409 0.00531401 0.000858751) 10122
(0.0227339 0.00525653 0.000827608) 11925
(0.020507 0.00525006 0.00520317) 11441
(0.0219402 0.0052723 0.00520099) 11443
(0.0207575 0.00376909 0.00117325) 13001
(0.0193284 0.00295235 0.00317944) 32544
(0.0233274 0.00304551 0.00319312) 766
(0.0249027 0.00298448 0.00316456) 34128
(0.0250828 0.00295384 0.00321744) 34272
(0.0208377 0.00670687 0.00170827) 2501
(0.0208377 0.00670687 0.00170827) 2501
(0.0208377 0.00670687 0.00170827) 2501
(0.0228172 0.0066887 0.00173444) 2505
(0.0237517 0.00666252 0.00166404) 2507
(0.0220119 0.00615178 0.00165127) 13484
(0.0231562 0.00629879 0.00172339) 13486
(0.00674483 0.00644006 0.00288154) 13513
(0.00674483 0.00644006 0.00288154) 13513
(0.00674483 0.00644006 0.00288154) 13513
(0.00729214 0.00644158 0.00287487) 13514
(0.00778794 0.00644328 0.00286853) 13515
(0.00823338 0.00644622 0.00286447) 13516
(0.00867883 0.0064483 0.0028654) 13517
(0.00915446 0.00644757 0.00286954) 13518
(0.0185311 0.00622638 0.0023587) 13657
(0.0190421 0.00622116 0.00236214) 13658
(0.0195495 0.00621261 0.00236218) 13659
(0.0200872 0.00620026 0.00235914) 13660
(0.0206345 0.00618667 0.00235061) 13661
(0.0211543 0.00617628 0.00233807) 13662
(0.0076046 0.00584334 0.00186153) 13755
(0.00746487 0.00558974 0.00169421) 13814
(0.0066197 0.0046688 0.00162171) 13993
(0.00697949 0.0046647 0.0016113) 13993
(0.00687635 0.00440365 0.00170064) 14053
(0.00687635 0.00440365 0.00170064) 14053
(0.00687635 0.00440365 0.00170064) 14053
(0.00729399 0.00439744 0.00169405) 14054
(0.00765495 0.00438851 0.00168341) 14055
(0.00806396 0.00438514 0.00167784) 14056
(0.00851603 0.00438595 0.00167781) 14057
(0.00897191 0.00438694 0.001679) 14057
(0.00772414 0.00415423 0.00181693) 14115
(0.00810435 0.00414661 0.00181264) 14116
(0.00854057 0.00414796 0.00181145) 14117
(0.00900558 0.00415215 0.00181133) 14118
(0.00751409 0.00394858 0.00203295) 14175
(0.0125783 0.00365468 0.00289612) 14365
(0.013116 0.00366219 0.00289603) 14366
(0.0121885 0.00361423 0.00319229) 14424
(0.0127564 0.00362707 0.00319216) 14425
(0.0132779 0.00363213 0.00319085) 14426
(0.013764 0.00363085 0.0031901) 14427
(0.0142121 0.00362425 0.0031901) 14428
(0.00717186 0.00369091 0.00350209) 14474
(0.00777837 0.00366068 0.00347761) 14475
(0.00827572 0.00363833 0.00346916) 14476
(0.00868831 0.0036221 0.00346929) 14477
(0.00909109 0.00360986 0.00347036) 14478
(0.00600018 0.00385549 0.00380326) 14592
(0.00665558 0.00378953 0.00373923) 14533
(0.00748401 0.00374723 0.00370349) 14534
(0.00814925 0.00373112 0.00370075) 14536
(0.00866161 0.00372316 0.00370384) 14537
(0.0091295 0.00371827 0.00370862) 14538
(0.00703178 0.00398116 0.00396305) 14594
(0.00752712 0.00393664 0.00393619) 14595
(0.00658472 0.00473135 0.00439401) 14773
(0.0070188 0.00472239 0.00440114) 14774
(0.00730867 0.0050126 0.00442961) 14834
(0.00768783 0.00500895 0.0044424) 14835
(0.00805985 0.00500231 0.00445308) 14836
(0.00848343 0.00499568 0.00445586) 14836
(0.00721241 0.00528344 0.00439333) 14894
(0.00756627 0.00528827 0.0044063) 14895
(0.00793085 0.00529125 0.0044175) 14895
(0.00673089 0.00635935 0.00339314) 15193
(0.00708577 0.00637511 0.00339781) 15194
(0.00741122 0.00638958 0.00340844) 15194
(0.0068969 0.00642633 0.0031091) 15253
(0.0068969 0.00642633 0.0031091) 15253
(0.0068969 0.00642633 0.0031091) 15253
(0.00736598 0.00643411 0.00311523) 15254
(0.00780675 0.00644142 0.00312232) 15255
(0.00825146 0.00644471 0.0031286) 15256
(0.00873504 0.00644284 0.00313125) 15257
(0.0092358 0.00643912 0.00313271) 15258
(-1.69404e-05 0.00646775 0.00290078) 35709
(0.00323363 0.00642413 0.00284119) 13506
(0.00403533 0.00636389 0.0026861) 13568
(0.00449273 0.00635023 0.00261356) 13568
(0.00607334 0.00576444 0.00188137) 13752
(0.00588746 0.00557384 0.00177123) 13811
(0.00323853 0.00436808 0.00164281) 5706
(0.00536772 0.00445537 0.00165312) 14050
(0.00617337 0.00442337 0.00169256) 14052
(0.00501631 0.0042608 0.00189617) 14110
(0.00506117 0.00418004 0.00182778) 14110
(0.00505534 0.00412749 0.00174914) 5650
(0.00530576 0.00419902 0.00173561) 5650
(0.00610855 0.00420261 0.00182169) 14112
(0.00522434 0.00343377 0.0032457) 5410
(0.00531742 0.00370301 0.00330919) 14410
(0.00549846 0.00371095 0.00342943) 14470
(0.00470388 0.00370573 0.00352042) 14469
(0.00484877 0.00378338 0.00368086) 14529
(0.00500003 0.00375455 0.00365622) 14530
(0.00528791 0.00390653 0.00364479) 14530
(0.00466566 0.00506147 0.00437089) 14829
(0.00467894 0.00505455 0.0044238) 14829
(0.00510562 0.00498802 0.00443881) 14830
(0.00237871 0.00646243 0.00306733) 15244
(0.00357576 0.00644002 0.00283559) 13507
(0.00471849 0.00646624 0.00293685) 13509
(0.00546596 0.00643143 0.00315467) 15250
(0.0062531 0.00641239 0.00314244) 15252
(0.0202859 0.00299254 0.00221404) 32828
(0.0209398 0.00693899 0.00357763) 2021
(0.0123811 0.00648361 0.00417431) 6684
(0.0133981 0.00644626 0.00415139) 6686
(0.0141877 0.00642285 0.00414374) 6688
(0.0148433 0.00641047 0.00413616) 6689
(0.0154037 0.00640383 0.00413105) 6690
(0.0159112 0.00640201 0.00412676) 6691
(0.0164064 0.00640264 0.00412227) 6692
(0.0169134 0.00640089 0.00412028) 6693
(0.0174377 0.0063958 0.00411733) 6694
(0.0225736 0.00638756 0.00205025) 13425
(0.0238881 0.00661644 0.00225315) 6107
(0.0248121 0.00668414 0.00220923) 13429
(0.0190266 0.00665389 0.00427623) 6638
(0.0216842 0.00664981 0.00415211) 6643
(0.0235743 0.00673711 0.00409577) 1967
(0.019686 0.00637019 0.00116569) 12459
(0.0204646 0.00361529 0.00463453) 7180
(0.0219801 0.00364143 0.0046802) 7183
(0.0205981 0.00336257 0.00166385) 461
(0.022381 0.00332077 0.0017118) 464
(0.0193214 0.00609877 0.00481552) 12218
(0.0212385 0.00613827 0.00474449) 12222
(0.019024 0.00583053 0.00508071) 12578
(0.019024 0.00583053 0.00508071) 12578
(0.019024 0.00583053 0.00508071) 12578
(0.0210434 0.00583418 0.00502209) 12582
(0.0210434 0.00583418 0.00502209) 12582
(0.0210434 0.00583418 0.00502209) 12582
(0.0226549 0.00586921 0.00500563) 12585
(0.0226549 0.00586921 0.00500563) 12585
(0.0226549 0.00586921 0.00500563) 12585
(0.0233115 0.00600193 0.00494856) 12346
(0.0189909 0.00395586 0.00484426) 10537
(0.020767 0.00400157 0.00489368) 10541
(0.021324 0.00376696 0.00142657) 12762
(0.0216317 0.00412037 0.00126538) 11503
(0.0190108 0.00484814 0.000915494) 11618
(0.0210096 0.00478528 0.000956129) 11622
(0.0225661 0.00468943 0.000937955) 11565
(0.0201257 0.00597975 0.00103167) 12280
(0.021165 0.00531644 0.000859055) 10122
(0.0227115 0.00526062 0.000831505) 11925
(0.0204529 0.00524982 0.00520363) 11440
(0.0219087 0.00526862 0.00519996) 11443
(0.0207233 0.0037748 0.00117158) 13001
(0.0192285 0.00295049 0.00317406) 32544
(0.0231892 0.00304748 0.00319472) 766
(0.0248857 0.00298769 0.00316402) 34128
(0.0250913 0.00295321 0.00321187) 34272
(0.0207393 0.00670951 0.00170502) 2501
(0.0207393 0.00670951 0.00170502) 2501
(0.0207393 0.00670951 0.00170502) 2501
(0.0227687 0.00668894 0.00173617) 2505
(0.0237443 0.00666634 0.00167079) 2507
(0.0218603 0.00614863 0.00164636) 13483
(0.0231432 0.00629473 0.00172448) 13486
(0.00671964 0.00644005 0.00288183) 13513
(0.00671964 0.00644005 0.00288183) 13513
(0.00671964 0.00644005 0.00288183) 13513
(0.00726657 0.00644162 0.00287516) 13514
(0.00776365 0.00644329 0.00286881) 13515
(0.00820982 0.00644626 0.00286453) 13516
(0.00865478 0.00644841 0.00286521) 13517
(0.00912982 0.00644776 0.00286946) 13518
(0.0185077 0.00622662 0.00235859) 13657
(0.0190197 0.00622151 0.00236215) 13658
(0.0195269 0.00621308 0.0023623) 13659
(0.0200631 0.00620092 0.00235945) 13660
(0.0206109 0.00618734 0.00235121) 13661
(0.0211323 0.00617676 0.00233878) 13662
(0.00758448 0.0058432 0.00186183) 13755
(0.00744353 0.00558974 0.00169446) 13814
(0.00659811 0.00466894 0.0016216) 13993
(0.00695887 0.0046646 0.00161151) 13993
(0.00685413 0.00440385 0.00170047) 14053
(0.00685413 0.00440385 0.00170047) 14053
(0.00685413 0.00440385 0.00170047) 14053
(0.00727267 0.0043977 0.00169414) 14054
(0.00763332 0.00438877 0.00168357) 14055
(0.00803998 0.0043852 0.00167774) 14056
(0.00849158 0.00438587 0.0016776) 14056
(0.00894811 0.00438685 0.00167883) 14057
(0.00770279 0.0041546 0.001817) 14115
(0.00808163 0.00414657 0.00181267) 14116
(0.00851652 0.00414766 0.00181142) 14117
(0.00898114 0.00415191 0.00181118) 14117
(0.00749431 0.003949 0.00203306) 14174
(0.0125539 0.00365411 0.00289606) 14365
(0.0130943 0.00366202 0.00289607) 14366
(0.0121634 0.00361361 0.00319231) 14424
(0.0127327 0.00362665 0.00319223) 14425
(0.0132557 0.003632 0.00319097) 14426
(0.0137433 0.00363097 0.00319015) 14427
(0.0141928 0.00362458 0.00319012) 14428
(0.00714275 0.00369219 0.00350399) 14474
(0.00775245 0.00366189 0.00347847) 14475
(0.00825346 0.00363913 0.00346946) 14476
(0.00866811 0.00362271 0.0034693) 14477
(0.00906869 0.00361017 0.00347044) 14478
(0.00598377 0.00385812 0.00380469) 14591
(0.00662181 0.00379196 0.00374194) 14533
(0.00744791 0.00374863 0.00370458) 14534
(0.00812058 0.00373159 0.00370089) 14536
(0.00863752 0.00372345 0.00370383) 14537
(0.00910539 0.00371838 0.00370856) 14538
(0.00700683 0.00398393 0.00396474) 14594
(0.00750224 0.00393808 0.00393714) 14595
(0.00656133 0.00473193 0.00439415) 14773
(0.00699525 0.00472247 0.00440119) 14773
(0.00728676 0.00501267 0.00442952) 14834
(0.00766694 0.00500925 0.00444212) 14835
(0.00803718 0.00500263 0.00445306) 14836
(0.00845887 0.00499595 0.00445612) 14836
(0.00719202 0.00528335 0.00439314) 14894
(0.0075459 0.00528821 0.00440601) 14895
(0.00790834 0.00529134 0.00441738) 14895
(0.00670923 0.0063593 0.00339346) 15193
(0.00706576 0.00637483 0.00339752) 15194
(0.0073894 0.00638943 0.00340801) 15194
(0.00687329 0.00642633 0.00310947) 15253
(0.00687329 0.00642633 0.00310947) 15253
(0.00687329 0.00642633 0.00310947) 15253
(0.00734276 0.00643399 0.00311515) 15254
(0.00778355 0.00644132 0.00312205) 15255
(0.00822685 0.00644484 0.00312848) 15256
(0.00870929 0.00644313 0.00313126) 15257
(0.00921076 0.00643938 0.00313264) 15258
(-2.97587e-05 0.00646793 0.00290016) 35709
(0.00313865 0.00643267 0.00285163) 13506
(0.00396337 0.00637285 0.00271147) 13567
(0.00445525 0.0063512 0.00260422) 13568
(0.00605187 0.00576486 0.00188015) 13752
(0.00586278 0.00557291 0.00176905) 13811
(0.00274165 0.00436631 0.00163069) 5705
(0.00536425 0.0044563 0.00165435) 14050
(0.00615029 0.0044218 0.00169283) 14052
(0.00501102 0.00426627 0.00190256) 14110
(0.00506519 0.00418686 0.00183173) 14110
(0.00506735 0.00413466 0.00175383) 5650
(0.00529369 0.00419737 0.00173392) 5650
(0.00608356 0.00420211 0.00182164) 14112
(0.0052373 0.00343701 0.00324845) 5410
(0.00529891 0.00369143 0.00330246) 14410
(0.00549435 0.00371409 0.00342972) 14470
(0.00465091 0.00369039 0.00353521) 14469
(0.00483944 0.00379661 0.00368115) 14529
(0.00498748 0.00375673 0.00365987) 14529
(0.00527148 0.00389931 0.00364377) 14530
(0.00466398 0.00506052 0.00436865) 14829
(0.00472749 0.00506203 0.00441574) 14829
(0.00506248 0.00499134 0.00444064) 14830
(0.00262385 0.00644519 0.00304055) 15245
(0.00368599 0.00643339 0.00281593) 13507
(0.00467297 0.00646255 0.00291252) 13509
(0.00544465 0.00643233 0.00315317) 15250
(0.00623067 0.00641235 0.0031432) 15252
(0.0202481 0.00299538 0.00221024) 32828
(0.0208916 0.00693427 0.00358275) 2021
(0.0123432 0.00648526 0.0041754) 6684
(0.0133712 0.00644711 0.00415147) 6686
(0.0141664 0.00642322 0.00414367) 6688
(0.0148258 0.00641052 0.00413606) 6689
(0.0153882 0.00640372 0.00413097) 6690
(0.0158967 0.00640178 0.0041266) 6691
(0.0163914 0.00640247 0.00412202) 6692
(0.0168973 0.00640084 0.00412001) 6693
(0.017421 0.00639583 0.00411718) 6694
(0.0224762 0.00637867 0.00203586) 13484
(0.0238438 0.00661051 0.00225113) 6107
(0.0247951 0.00668232 0.00221306) 13429
(0.0215873 0.00664885 0.00415448) 6643
(0.0235344 0.00673256 0.00409762) 1967
(0.0196552 0.00637272 0.00116702) 12459
(0.0204044 0.00361389 0.00463333) 7180
(0.0219533 0.00363838 0.00467539) 7183
(0.0205231 0.0033642 0.00165992) 401
(0.0223432 0.00332457 0.00170949) 464
(0.0192408 0.00609784 0.00482035) 12218
(0.0211784 0.00613561 0.0047457) 12222
(0.0209709 0.00583324 0.00502336) 12581
(0.0209709 0.00583324 0.00502336) 12581
(0.0209709 0.00583324 0.00502336) 12581
(0.0226211 0.00586538 0.00500617) 12585
(0.0226211 0.00586538 0.00500617) 12585
(0.0226211 0.00586538 0.00500617) 12585
(0.023311 0.00599226 0.00495443) 12346
(0.0207099 0.00400041 0.00489114) 10541
(0.0212174 0.00376862 0.00142554) 12762
(0.0215296 0.0041247 0.00126592) 11503
(0.0209414 0.00478888 0.000956099) 11621
(0.0225338 0.00469487 0.000939452) 11625
(0.020256 0.0056103 0.00096533) 12160
(0.0200717 0.00597955 0.00103189) 12280
(0.0210874 0.00531899 0.000859214) 10122
(0.0226869 0.00526447 0.000835286) 11925
(0.0203986 0.00524955 0.00520414) 11440
(0.0218762 0.00526518 0.00519897) 11443
(0.0206885 0.00378027 0.00116994) 13001
(0.0191311 0.00294904 0.00316858) 32544
(0.0230483 0.00304902 0.00319622) 766
(0.0248673 0.0029909 0.00316371) 34128
(0.0250986 0.00295297 0.00320654) 34272
(0.0206338 0.00671247 0.00170117) 2501
(0.0206338 0.00671247 0.00170117) 2501
(0.0206338 0.00671247 0.00170117) 2501
(0.0227187 0.00668909 0.00173762) 2505
(0.0237358 0.00666988 0.00167744) 2507
(0.0216902 0.00614815 0.0016431) 13483
(0.0231292 0.00629059 0.00172531) 13486
(0.00669456 0.00644004 0.00288211) 13513
(0.00669456 0.00644004 0.00288211) 13513
(0.00669456 0.00644004 0.00288211) 13513
(0.007241 0.00644167 0.00287546) 13514
(0.00773933 0.00644331 0.00286909) 13515
(0.00818627 0.00644629 0.0028646) 13516
(0.00863075 0.00644851 0.00286504) 13517
(0.00910516 0.00644796 0.00286937) 13518
(0.0184842 0.00622685 0.00235847) 13656
(0.0189973 0.00622184 0.00236216) 13657
(0.0195043 0.00621354 0.0023624) 13659
(0.0200391 0.00620158 0.00235975) 13660
(0.0205872 0.00618801 0.0023518) 13661
(0.0211102 0.00617724 0.00233949) 13662
(0.00756437 0.00584304 0.00186213) 13755
(0.00742222 0.00558976 0.00169472) 13814
(0.00657655 0.0046691 0.0016215) 13993
(0.00693826 0.0046645 0.0016117) 13993
(0.00683191 0.00440406 0.00170029) 14053
(0.00683191 0.00440406 0.00170029) 14053
(0.00683191 0.00440406 0.00170029) 14053
(0.00725137 0.00439795 0.00169422) 14054
(0.00761181 0.00438905 0.00168373) 14055
(0.00801614 0.00438527 0.00167765) 14056
(0.00846714 0.0043858 0.0016774) 14056
(0.00892431 0.00438673 0.00167868) 14057
(0.0076815 0.00415497 0.00181707) 14115
(0.00805904 0.00414656 0.0018127) 14116
(0.00849252 0.00414737 0.00181138) 14116
(0.0089567 0.00415169 0.00181102) 14117
(0.00747457 0.00394944 0.00203315) 14174
(0.0125295 0.00365352 0.00289599) 14365
(0.0130724 0.00366184 0.0028961) 14366
(0.0121383 0.00361299 0.00319234) 14424
(0.0127089 0.00362622 0.00319229) 14425
(0.0132334 0.00363185 0.00319108) 14426
(0.0137225 0.00363108 0.00319021) 14427
(0.0141734 0.0036249 0.00319014) 14428
(0.00711361 0.00369345 0.00350594) 14474
(0.00772636 0.0036631 0.00347938) 14475
(0.00823113 0.00363996 0.00346978) 14476
(0.00864792 0.00362332 0.00346931) 14477
(0.00904647 0.00361051 0.00347052) 14478
(0.0059676 0.0038606 0.00380595) 14591
(0.00658866 0.00379439 0.00374466) 14533
(0.00741165 0.0037501 0.00370576) 14534
(0.00809164 0.00373209 0.00370105) 14536
(0.00861333 0.00372374 0.00370384) 14537
(0.00908137 0.0037185 0.00370849) 14538
(0.00698184 0.00398676 0.00396645) 14593
(0.00747739 0.00393956 0.00393811) 14594
(0.006538 0.00473244 0.00439425) 14773
(0.00697174 0.00472257 0.00440125) 14773
(0.00764611 0.00500956 0.00444183) 14835
(0.00801465 0.00500294 0.00445303) 14836
(0.00843438 0.00499624 0.00445637) 14836
(0.00717159 0.00528325 0.00439295) 14894
(0.00752565 0.00528815 0.00440571) 14895
(0.00788599 0.00529142 0.00441725) 14895
(0.00668757 0.00635925 0.0033938) 15193
(0.00704582 0.00637455 0.00339723) 15194
(0.00736779 0.00638926 0.0034076) 15194
(0.00684969 0.00642633 0.0031099) 15253
(0.00684969 0.00642633 0.0031099) 15253
(0.00684969 0.00642633 0.0031099) 15253
(0.00731956 0.00643387 0.00311509) 15254
(0.0077604 0.0064412 0.00312178) 15255
(0.00820234 0.00644495 0.00312835) 15256
(0.00868352 0.00644342 0.00313126) 15257
(0.00918565 0.00643965 0.00313258) 15258
(-3.48767e-05 0.00646797 0.00289969) 35709
(0.00302348 0.00644187 0.0028624) 13506
(0.00393788 0.00637619 0.00271935) 13567
(0.00441545 0.00635258 0.00259571) 13568
(0.00602927 0.00576502 0.00187967) 13752
(0.00583753 0.0055718 0.00176765) 13811
(0.00535955 0.00445751 0.00165533) 14050
(0.00612853 0.00441997 0.00169342) 14052
(0.0050069 0.00427214 0.0019086) 14110
(0.00506886 0.00419349 0.00183471) 14110
(0.00507791 0.0041412 0.00175817) 5650
(0.00528247 0.00419569 0.00173282) 5650
(0.00605918 0.00420178 0.00182159) 14112
(0.00527146 0.00345125 0.0032471) 5410
(0.0052834 0.0036812 0.00329825) 14410
(0.00548995 0.0037183 0.0034304) 14470
(0.00457234 0.0036726 0.00355421) 14469
(0.0048347 0.00381251 0.00368234) 14529
(0.00498278 0.0037566 0.00366215) 14529
(0.00525927 0.00389348 0.00364176) 14530
(0.0046623 0.00505966 0.00436627) 14829
(0.00476989 0.00506745 0.00440801) 14829
(0.00502109 0.00499478 0.00444225) 14830
(0.00604409 0.00498595 0.00439821) 14832
(0.00284318 0.00642586 0.0030147) 15245
(0.00375319 0.00642917 0.00280274) 13507
(0.00462046 0.00645574 0.00289075) 13509
(0.00542402 0.00643316 0.00315167) 15250
(0.00620843 0.00641229 0.00314397) 15252
(0.0202095 0.00299805 0.00220657) 32828
(0.0208427 0.0069297 0.00358785) 2021
(0.0123048 0.00648696 0.00417656) 6684
(0.0133439 0.00644797 0.00415159) 6686
(0.0141449 0.00642364 0.00414358) 6688
(0.0148081 0.0064106 0.00413598) 6689
(0.0153725 0.00640362 0.00413089) 6690
(0.0158822 0.00640154 0.00412645) 6691
(0.0163765 0.0064023 0.00412179) 6692
(0.0168812 0.00640079 0.00411972) 6693
(0.0174043 0.00639588 0.00411702) 6694
(0.0223686 0.00637142 0.00202244) 13484
(0.0237997 0.0066042 0.00224849) 6107
(0.0247762 0.00668049 0.00221677) 13429
(0.0214877 0.00664828 0.00415691) 6642
(0.0234913 0.00672821 0.00409939) 1966
(0.0196241 0.00637523 0.00116829) 12459
(0.0203445 0.00361245 0.00463212) 7180
(0.021925 0.00363553 0.00467078) 7183
(0.0204474 0.00336573 0.00165582) 400
(0.0223037 0.00332824 0.0017073) 464
(0.0191601 0.00609713 0.00482511) 12218
(0.0211169 0.00613315 0.00474694) 12222
(0.0208976 0.00583237 0.00502475) 12581
(0.0208976 0.00583237 0.00502475) 12581
(0.0208976 0.00583237 0.00502475) 12581
(0.0225855 0.00586172 0.00500665) 12585
(0.0225855 0.00586172 0.00500665) 12585
(0.0225855 0.00586172 0.00500665) 12585
(0.0233101 0.00598275 0.00495981) 12346
(0.0206531 0.00399916 0.00488863) 10541
(0.0211097 0.00377028 0.00142423) 12762
(0.0214274 0.00412912 0.00126624) 11502
(0.0209979 0.004467 0.00112456) 11561
(0.0208725 0.00479236 0.000955973) 11621
(0.0224998 0.00470026 0.000940957) 11624
(0.0202013 0.00561312 0.000967134) 12160
(0.0200176 0.00597935 0.00103206) 12280
(0.0215784 0.00598653 0.00102306) 12283
(0.021008 0.00532169 0.000859229) 10122
(0.0226603 0.00526809 0.000838936) 11925
(0.0203443 0.00524928 0.00520472) 11440
(0.0218426 0.00526195 0.00519802) 11443
(0.020653 0.00378554 0.00116833) 13001
(0.0190359 0.00294792 0.00316297) 32544
(0.0229051 0.00305012 0.00319761) 765
(0.0229051 0.00305012 0.00319761) 765
(0.0229051 0.00305012 0.00319761) 765
(0.0248473 0.00299408 0.00316358) 34128
(0.0251049 0.00295311 0.0032015) 34272
(0.020521 0.00671583 0.00169662) 2501
(0.020521 0.00671583 0.00169662) 2501
(0.020521 0.00671583 0.00169662) 2501
(0.0226668 0.00668923 0.00173889) 2505
(0.0237268 0.00667316 0.00168391) 2507
(0.0215048 0.00615036 0.00164127) 13483
(0.0231149 0.00628634 0.00172589) 13486
(0.00666958 0.00644001 0.00288239) 13513
(0.00666958 0.00644001 0.00288239) 13513
(0.00666958 0.00644001 0.00288239) 13513
(0.00721542 0.00644172 0.00287576) 13514
(0.00771499 0.00644332 0.00286939) 13515
(0.00816272 0.00644632 0.00286467) 13516
(0.00860674 0.00644861 0.00286488) 13517
(0.00908048 0.00644815 0.00286926) 13518
(0.0184606 0.00622708 0.00235835) 13656
(0.0189749 0.00622218 0.00236216) 13657
(0.0194818 0.00621399 0.00236251) 13658
(0.0200152 0.00620223 0.00236004) 13660
(0.0205634 0.00618869 0.00235238) 13661
(0.021088 0.00617773 0.00234019) 13662
(0.00754428 0.00584285 0.0018624) 13755
(0.00740095 0.00558977 0.00169498) 13814
(0.00655493 0.00466926 0.0016214) 13993
(0.00691765 0.00466442 0.00161188) 13993
(0.00680969 0.00440426 0.00170011) 14053
(0.00680969 0.00440426 0.00170011) 14053
(0.00680969 0.00440426 0.00170011) 14053
(0.00723007 0.0043982 0.00169429) 14054
(0.00759042 0.00438933 0.0016839) 14055
(0.00799244 0.00438535 0.00167758) 14055
(0.00844272 0.00438574 0.0016772) 14056
(0.00890049 0.00438661 0.00167852) 14057
(0.00766029 0.00415537 0.00181714) 14115
(0.00803656 0.00414657 0.00181275) 14116
(0.00846859 0.00414709 0.00181136) 14116
(0.00893228 0.00415146 0.00181087) 14117
(0.00745486 0.00394991 0.00203321) 14174
(0.0125049 0.00365291 0.00289591) 14365
(0.0130504 0.00366164 0.00289613) 14366
(0.0121132 0.00361238 0.0031924) 14424
(0.012685 0.00362578 0.00319234) 14425
(0.0132111 0.00363168 0.00319119) 14426
(0.0137016 0.00363117 0.00319026) 14427
(0.014154 0.00362521 0.00319017) 14428
(0.00708451 0.00369471 0.00350796) 14474
(0.0077001 0.00366433 0.00348032) 14475
(0.00820868 0.0036408 0.00347012) 14476
(0.00862777 0.00362395 0.00346933) 14477
(0.00902443 0.00361086 0.00347059) 14478
(0.00595173 0.00386304 0.00380688) 14591
(0.00655622 0.00379681 0.00374736) 14533
(0.00737507 0.00375163 0.00370704) 14534
(0.00806243 0.00373262 0.00370123) 14536
(0.00858903 0.00372404 0.00370385) 14537
(0.00905742 0.00371863 0.00370841) 14538
(0.00695686 0.00398965 0.00396816) 14593
(0.00745255 0.0039411 0.0039391) 14594
(0.00651481 0.00473294 0.00439434) 14773
(0.00694827 0.00472269 0.00440131) 14773
(0.00762535 0.00500987 0.00444153) 14835
(0.00799227 0.00500326 0.00445297) 14835
(0.00841 0.00499654 0.00445661) 14836
(0.00715111 0.00528315 0.00439278) 14894
(0.0075055 0.00528809 0.0044054) 14895
(0.00786379 0.00529149 0.0044171) 14895
(0.00666589 0.00635919 0.00339419) 15193
(0.00702594 0.00637427 0.00339697) 15194
(0.00734641 0.00638908 0.00340717) 15194
(0.00682606 0.00642633 0.00311037) 15253
(0.00682606 0.00642633 0.00311037) 15253
(0.00682606 0.00642633 0.00311037) 15253
(0.0072964 0.00643375 0.00311505) 15254
(0.00773729 0.00644108 0.0031215) 15255
(0.00817793 0.00644505 0.00312822) 15256
(0.00865773 0.00644372 0.00313125) 15257
(0.00916046 0.00643992 0.00313252) 15258
(-5.27401e-05 0.00646825 0.0028987) 35709
(0.00293231 0.00644904 0.00286992) 13505
(0.00392068 0.00637703 0.00272268) 13567
(0.00439888 0.00635134 0.00259302) 13568
(0.00600733 0.00576544 0.00187867) 13752
(0.00581464 0.00557147 0.0017658) 13811
(0.00535595 0.00445857 0.00165662) 14050
(0.00610809 0.00441851 0.00169412) 14052
(0.00506977 0.00419729 0.0018352) 14110
(0.00509061 0.00414896 0.00176373) 5650
(0.00527242 0.00419399 0.00173224) 5650
(0.00603547 0.0042016 0.00182154) 14112
(0.00516622 0.00351861 0.00324065) 5410
(0.0052637 0.00348405 0.00324935) 5410
(0.005271 0.0036728 0.00329547) 14410
(0.00548546 0.00372274 0.00343066) 14470
(0.00581389 0.00377676 0.00357148) 14531
(0.00448353 0.00365752 0.00357068) 14468
(0.00482898 0.0038248 0.00368378) 14529
(0.00497935 0.00375197 0.00366223) 14529
(0.00524608 0.00388726 0.00363995) 14530
(0.00467461 0.00505853 0.00436179) 14829
(0.00478455 0.00506876 0.00440407) 14829
(0.00498984 0.00499872 0.00444274) 14829
(0.006016 0.00498637 0.0043995) 14832
(0.00308958 0.00640044 0.00298572) 13506
(0.00379251 0.00642636 0.00279468) 13507
(0.00454995 0.00644619 0.00287322) 13509
(0.00540688 0.00643351 0.00315059) 15250
(0.00618652 0.00641221 0.00314474) 15252
(0.0201702 0.00300053 0.00220307) 520
(0.0207929 0.00692534 0.0035929) 2021
(0.0122657 0.00648871 0.00417778) 6684
(0.0133163 0.00644884 0.00415175) 6686
(0.0141232 0.00642409 0.00414349) 6688
(0.0147902 0.00641069 0.00413589) 6689
(0.0153567 0.00640352 0.00413082) 6690
(0.0158676 0.0064013 0.00412632) 6691
(0.0163616 0.00640212 0.00412157) 6692
(0.0168652 0.00640074 0.00411942) 6693
(0.0173877 0.00639592 0.00411684) 6694
(0.022252 0.00636661 0.00201066) 13484
(0.0237559 0.00659755 0.00224524) 6107
(0.0247553 0.00667864 0.00222034) 13429
(0.0213856 0.00664811 0.00415937) 6642
(0.0234449 0.00672404 0.00410108) 1966
(0.0195928 0.00637772 0.0011695) 12459
(0.0207226 0.00631156 0.00113818) 12461
(0.0202851 0.00361106 0.00463093) 7180
(0.021895 0.00363287 0.00466637) 7183
(0.020371 0.00336714 0.00165157) 400
(0.0222626 0.00333181 0.00170522) 464
(0.0190821 0.00609661 0.00482984) 12218
(0.0210541 0.00613084 0.00474824) 12222
(0.0208237 0.00583154 0.00502623) 12581
(0.0208237 0.00583154 0.00502623) 12581
(0.0208237 0.00583154 0.00502623) 12581
(0.0225485 0.00585825 0.00500707) 12585
(0.0225485 0.00585825 0.00500707) 12585
(0.0225485 0.00585825 0.00500707) 12585
(0.02331 0.00597327 0.00496468) 12346
(0.0205962 0.00399778 0.00488612) 10541
(0.021001 0.00377191 0.00142264) 12762
(0.0213251 0.00413351 0.0012663) 11502
(0.0239012 0.00406706 0.00121905) 11507
(0.0209307 0.00447108 0.00112383) 11561
(0.0208029 0.00479573 0.000955751) 11621
(0.0224639 0.00470547 0.000942444) 11624
(0.0201465 0.00561597 0.000968895) 12160
(0.0199636 0.00597918 0.00103218) 12279
(0.0215431 0.00598834 0.00102594) 12283
(0.0209274 0.00532456 0.000859121) 10121
(0.022631 0.00527147 0.000842436) 11925
(0.0202899 0.00524904 0.00520536) 11440
(0.0218079 0.00525893 0.00519712) 11443
(0.020617 0.0037906 0.00116675) 13001
(0.018943 0.00294712 0.00315722) 32400
(0.0227619 0.00305087 0.00319881) 765
(0.0227619 0.00305087 0.00319881) 765
(0.0227619 0.00305087 0.00319881) 765
(0.0248257 0.00299724 0.00316364) 34128
(0.0251101 0.00295361 0.00319673) 34272
(0.0204034 0.00671976 0.00169156) 2500
(0.0204034 0.00671976 0.00169156) 2500
(0.0204034 0.00671976 0.00169156) 2500
(0.0226131 0.00668941 0.00174001) 2505
(0.023717 0.00667623 0.00169016) 2507
(0.0213044 0.00615596 0.00164115) 13482
(0.0230997 0.00628199 0.00172624) 13486
(0.00664472 0.00643997 0.00288268) 13513
(0.00664472 0.00643997 0.00288268) 13513
(0.00664472 0.00643997 0.00288268) 13513
(0.00718986 0.00644177 0.00287607) 13514
(0.00769063 0.00644332 0.00286969) 13515
(0.00813919 0.00644635 0.00286476) 13516
(0.00858277 0.00644871 0.00286474) 13517
(0.00905578 0.00644834 0.00286913) 13518
(0.018437 0.00622731 0.00235823) 13656
(0.0189524 0.0062225 0.00236216) 13657
(0.0194593 0.00621444 0.0023626) 13658
(0.0199913 0.00620288 0.00236031) 13659
(0.0205396 0.00618937 0.00235294) 13661
(0.0210657 0.00617822 0.00234088) 13662
(0.00752419 0.00584265 0.00186266) 13755
(0.00737972 0.0055898 0.00169525) 13814
(0.00653323 0.00466943 0.0016213) 13993
(0.00689702 0.00466437 0.00161205) 13993
(0.00678745 0.00440445 0.00169993) 14053
(0.00678745 0.00440445 0.00169993) 14053
(0.00678745 0.00440445 0.00169993) 14053
(0.00720878 0.00439845 0.00169435) 14054
(0.00756913 0.00438962 0.00168408) 14055
(0.00796888 0.00438544 0.00167753) 14055
(0.00841833 0.00438566 0.001677) 14056
(0.00887666 0.0043865 0.00167836) 14057
(0.00763914 0.00415578 0.00181721) 14115
(0.0080142 0.00414659 0.0018128) 14116
(0.00844473 0.00414682 0.00181134) 14116
(0.00890786 0.00415122 0.00181073) 14117
(0.00743517 0.0039504 0.00203325) 14174
(0.0124802 0.0036523 0.00289583) 14364
(0.0130282 0.00366142 0.00289615) 14366
(0.0135135 0.00366042 0.00289456) 14367
(0.0120882 0.00361178 0.00319243) 14424
(0.012661 0.00362532 0.0031924) 14425
(0.0131887 0.00363151 0.0031913) 14426
(0.0136807 0.00363125 0.00319031) 14427
(0.0141346 0.00362552 0.0031902) 14428
(0.0070554 0.00369597 0.00351004) 14474
(0.00767367 0.00366558 0.00348132) 14475
(0.00818611 0.00364165 0.00347047) 14476
(0.0086076 0.00362459 0.00346935) 14477
(0.00900257 0.00361123 0.00347066) 14478
(0.00593626 0.00386545 0.00380754) 14591
(0.00652449 0.00379919 0.00375004) 14533
(0.00733834 0.00375322 0.0037084) 14534
(0.00803295 0.00373318 0.00370145) 14536
(0.00856461 0.00372435 0.00370387) 14537
(0.00903355 0.00371878 0.00370832) 14538
(0.00693187 0.00399258 0.00396987) 14593
(0.00742774 0.00394268 0.00394012) 14594
(0.00649175 0.00473343 0.0043944) 14772
(0.00692485 0.00472283 0.00440136) 14773
(0.00760463 0.00501015 0.00444123) 14835
(0.00797003 0.00500356 0.0044529) 14835
(0.00838572 0.00499685 0.00445683) 14836
(0.00713058 0.00528303 0.00439261) 14894
(0.00748546 0.005288 0.0044051) 14894
(0.00784174 0.00529156 0.00441693) 14895
(0.00664423 0.00635913 0.0033946) 15193
(0.00700612 0.00637399 0.00339674) 15194
(0.00732523 0.00638889 0.00340673) 15194
(0.00680245 0.00642634 0.00311089) 15253
(0.00680245 0.00642634 0.00311089) 15253
(0.00680245 0.00642634 0.00311089) 15253
(0.00727327 0.00643363 0.00311504) 15254
(0.00771423 0.00644095 0.00312124) 15255
(0.00815362 0.00644514 0.00312809) 15256
(0.00863193 0.00644401 0.00313123) 15257
(0.0091352 0.00644019 0.00313247) 15258
(-7.57426e-05 0.00646865 0.00289746) 35709
(0.00279369 0.00645783 0.00287924) 13505
(0.00390516 0.00637728 0.00272529) 13567
(0.0044004 0.00634924 0.00259405) 13568
(0.00598444 0.00576672 0.00187706) 13751
(0.00579202 0.00557151 0.00176259) 13811
(0.00535351 0.00445946 0.00165829) 14050
(0.00608867 0.00441737 0.0016949) 14052
(0.00507048 0.00420101 0.00183523) 14110
(0.00511163 0.00415983 0.00176979) 5650
(0.00526297 0.00419235 0.00173219) 5650
(0.00601241 0.00420157 0.00182148) 14112
(0.00512451 0.00352357 0.00323989) 5410
(0.00523787 0.00352523 0.00325621) 5410
(0.00525841 0.00366433 0.00329165) 14410
(0.00547899 0.00374474 0.00344548) 14470
(0.00579471 0.00377652 0.00357245) 14531
(0.00432092 0.00364571 0.00358429) 14468
(0.00497659 0.00374124 0.00366107) 14529
(0.00526554 0.00389387 0.00363438) 14530
(0.00468413 0.0050573 0.0043574) 14829
(0.00479856 0.00506935 0.00440029) 14829
(0.00496372 0.00500257 0.00444285) 14829
(0.0059875 0.00498694 0.00440062) 14831
(0.00377561 0.00642783 0.00279611) 13507
(0.00351229 0.00644001 0.00288884) 13507
(0.00447286 0.00643764 0.00286433) 13508
(0.00538835 0.00643409 0.00314912) 15250
(0.00616454 0.00641213 0.0031455) 15252
(0.0201301 0.00300283 0.00219973) 520
(0.0207426 0.00692116 0.00359792) 2021
(0.0122259 0.00649053 0.00417907) 6684
(0.0132884 0.00644973 0.00415195) 6686
(0.0141012 0.00642456 0.0041434) 6688
(0.0147722 0.00641079 0.00413581) 6689
(0.015341 0.00640343 0.00413074) 6690
(0.015853 0.00640107 0.0041262) 6691
(0.0163467 0.00640193 0.00412136) 6692
(0.0168492 0.00640068 0.00411913) 6693
(0.0173711 0.00639597 0.00411665) 6694
(0.0221248 0.00636437 0.00199927) 13484
(0.0237119 0.00659063 0.0022414) 6107
(0.0247322 0.00667671 0.00222373) 13429
(0.0212814 0.00664819 0.004162) 6642
(0.0233954 0.00672005 0.00410272) 1966
(0.0195613 0.00638021 0.00117065) 12459
(0.0207023 0.00631708 0.00114281) 12461
(0.0202263 0.00360976 0.00462979) 7180
(0.0218634 0.0036304 0.00466216) 7183
(0.0202942 0.00336846 0.0016472) 400
(0.0222197 0.00333524 0.00170325) 464
(0.0190097 0.00609624 0.00483446) 12218
(0.0209897 0.00612865 0.00474961) 12221
(0.0207493 0.00583079 0.00502778) 12581
(0.0207493 0.00583079 0.00502778) 12581
(0.0207493 0.00583079 0.00502778) 12581
(0.02251 0.00585493 0.00500745) 12585
(0.02251 0.00585493 0.00500745) 12585
(0.02251 0.00585493 0.00500745) 12585
(0.0233094 0.00596408 0.00496908) 12346
(0.0205394 0.00399627 0.00488358) 10541
(0.0208913 0.0037735 0.00142076) 12761
(0.0212227 0.00413789 0.00126608) 11502
(0.0238425 0.00407072 0.0012218) 11507
(0.0208628 0.00447503 0.00112296) 11561
(0.0207327 0.00479898 0.000955434) 11621
(0.0224262 0.00471055 0.000943928) 11624
(0.0200916 0.00561888 0.000970619) 12160
(0.01991 0.00597902 0.00103226) 12279
(0.0215066 0.00598996 0.00102867) 12283
(0.0208445 0.00532749 0.000858815) 10121
(0.0225993 0.00527466 0.000845786) 11925
(0.0202358 0.0052488 0.00520609) 11440
(0.0217721 0.00525611 0.00519627) 11443
(0.0205805 0.00379549 0.00116519) 13001
(0.0226183 0.00305118 0.00319981) 765
(0.0226183 0.00305118 0.00319981) 765
(0.0226183 0.00305118 0.00319981) 765
(0.0248025 0.00300035 0.00316386) 769
(0.0251143 0.00295444 0.00319225) 34272
(0.020286 0.00672441 0.00168645) 2500
(0.020286 0.00672441 0.00168645) 2500
(0.020286 0.00672441 0.00168645) 2500
(0.0225573 0.00668962 0.00174099) 2505
(0.0237059 0.00667909 0.00169615) 2507
(0.0210925 0.00616497 0.00164226) 13482
(0.0230843 0.00627756 0.00172635) 13486
(0.00661996 0.00643991 0.00288297) 13513
(0.00661996 0.00643991 0.00288297) 13513
(0.00661996 0.00643991 0.00288297) 13513
(0.00716431 0.00644181 0.00287639) 13514
(0.00766624 0.00644333 0.00287) 13515
(0.00811567 0.00644636 0.00286484) 13516
(0.00855883 0.0064488 0.00286461) 13517
(0.00903106 0.00644853 0.00286898) 13518
(0.0184133 0.00622753 0.00235809) 13656
(0.0189299 0.00622282 0.00236215) 13657
(0.0194368 0.00621489 0.00236271) 13658
(0.0199674 0.00620353 0.00236059) 13659
(0.0205157 0.00619005 0.00235349) 13661
(0.0210434 0.00617871 0.00234156) 13662
(0.00750411 0.00584241 0.0018629) 13755
(0.00735857 0.00558988 0.00169555) 13814
(0.00651143 0.0046696 0.0016212) 13993
(0.00687637 0.00466434 0.00161219) 13993
(0.00676519 0.00440464 0.00169974) 14053
(0.00676519 0.00440464 0.00169974) 14053
(0.00676519 0.00440464 0.00169974) 14053
(0.00718749 0.00439871 0.0016944) 14054
(0.00754794 0.00438992 0.00168425) 14055
(0.00794545 0.00438553 0.00167749) 14055
(0.00839396 0.00438557 0.00167682) 14056
(0.0088528 0.00438641 0.00167819) 14057
(0.00761807 0.0041562 0.00181727) 14115
(0.00799196 0.00414663 0.00181287) 14115
(0.00842094 0.00414658 0.00181131) 14116
(0.00888345 0.00415094 0.00181062) 14117
(0.00741549 0.00395091 0.00203327) 14174
(0.0124555 0.00365167 0.00289576) 14364
(0.013006 0.00366118 0.00289617) 14366
(0.013494 0.00366059 0.00289463) 14366
(0.00653511 0.00359777 0.00319663) 14413
(0.0120632 0.00361117 0.00319244) 14424
(0.012637 0.00362486 0.00319246) 14425
(0.0131662 0.00363132 0.0031914) 14426
(0.0136597 0.00363132 0.00319037) 14427
(0.0141151 0.00362581 0.00319023) 14428
(0.00638636 0.00372691 0.00356432) 14532
(0.00638636 0.00372691 0.00356432) 14532
(0.00638636 0.00372691 0.00356432) 14532
(0.00702623 0.00369722 0.00351217) 14474
(0.00764707 0.00366684 0.00348235) 14475
(0.00816343 0.00364251 0.00347085) 14476
(0.00858743 0.00362523 0.00346938) 14477
(0.00898087 0.00361162 0.00347073) 14477
(0.00592109 0.00386775 0.00380806) 14591
(0.00649356 0.00380152 0.00375265) 14532
(0.00730152 0.00375488 0.00370985) 14534
(0.00800319 0.00373376 0.0037017) 14536
(0.00854007 0.00372466 0.0037039) 14537
(0.00900975 0.00371893 0.00370824) 14538
(0.0069069 0.00399556 0.00397156) 14593
(0.00740296 0.00394431 0.00394117) 14594
(0.00646883 0.00473392 0.00439443) 14772
(0.00690147 0.00472297 0.00440141) 14773
(0.00758396 0.00501043 0.00444093) 14835
(0.00794792 0.00500387 0.00445281) 14835
(0.00836153 0.00499717 0.00445704) 14836
(0.00710998 0.00528293 0.00439245) 14894
(0.00746553 0.0052879 0.0044048) 14894
(0.00781984 0.00529162 0.00441675) 14895
(0.00662259 0.00635907 0.00339504) 15193
(0.00698635 0.0063737 0.00339654) 15193
(0.00730424 0.00638869 0.00340628) 15194
(0.00677886 0.00642634 0.00311145) 15253
(0.00677886 0.00642634 0.00311145) 15253
(0.00677886 0.00642634 0.00311145) 15253
(0.00725018 0.00643352 0.00311504) 15254
(0.0076912 0.00644081 0.00312098) 15255
(0.00812942 0.00644521 0.00312796) 15256
(0.00860617 0.0064443 0.00313121) 15257
(0.00910986 0.00644047 0.00313242) 15258
(0.00265701 0.00646493 0.00288639) 13505
(0.00390055 0.00637733 0.0027259) 13567
(0.00438406 0.00634814 0.00259185) 13568
(0.00596112 0.00576814 0.00187549) 13751
(0.00576813 0.00557121 0.00175863) 13811
(0.00488718 0.00446357 0.00168595) 14049
(0.00535249 0.00446018 0.00166043) 14050
(0.00607 0.00441655 0.00169568) 14052
(0.00507122 0.00420557 0.00183653) 14110
(0.00512212 0.00416675 0.00177593) 14110
(0.00525427 0.0041908 0.00173267) 5650
(0.00598985 0.00420171 0.00182135) 14111
(0.00507634 0.00353218 0.00324181) 14410
(0.00524575 0.00365547 0.00328721) 14410
(0.00547073 0.00376178 0.00345475) 14470
(0.00577803 0.00377649 0.00357272) 14531
(0.00403423 0.00363905 0.00359055) 14468
(0.00497547 0.00373897 0.0036622) 14529
(0.00524427 0.00388623 0.00363498) 14530
(0.00468855 0.00505596 0.00435334) 14829
(0.00481111 0.00506948 0.00439654) 14829
(0.00494067 0.00500616 0.00444281) 14829
(0.0059586 0.00498774 0.0044019) 14831
(0.00371915 0.00643302 0.00280277) 13507
(0.00376736 0.00641441 0.00284882) 13507
(0.00438334 0.00643219 0.00286089) 13508
(0.00536829 0.00643495 0.0031472) 15250
(0.00614257 0.00641205 0.00314626) 15252
(0.0200891 0.00300498 0.00219653) 520
(0.0206916 0.00691718 0.00360288) 2021
(0.012186 0.00649235 0.00418039) 6684
(0.01326 0.00645064 0.00415219) 6686
(0.0140791 0.00642506 0.0041433) 6688
(0.014754 0.00641089 0.00413574) 6689
(0.0153252 0.00640335 0.00413065) 6690
(0.0158384 0.00640084 0.00412607) 6691
(0.0163318 0.00640174 0.00412117) 6692
(0.0168333 0.00640061 0.00411884) 6693
(0.0173544 0.00639602 0.00411645) 6694
(0.0219864 0.00636593 0.00199073) 13483
(0.023668 0.00658343 0.00223701) 6107
(0.0247068 0.00667464 0.00222698) 6109
(0.0211755 0.00664842 0.00416483) 6642
(0.0233431 0.0067162 0.00410432) 1966
(0.0195296 0.00638268 0.00117173) 12459
(0.0206811 0.00632233 0.00114718) 12461
(0.0201681 0.00360859 0.00462873) 7180
(0.0218301 0.0036281 0.00465813) 7183
(0.020217 0.00336968 0.00164269) 400
(0.0221751 0.00333855 0.00170135) 464
(0.0209241 0.00612658 0.00475106) 12221
(0.0206747 0.0058301 0.00502939) 12581
(0.0206747 0.0058301 0.00502939) 12581
(0.0206747 0.0058301 0.00502939) 12581
(0.0224699 0.00585175 0.00500778) 12584
(0.0224699 0.00585175 0.00500778) 12584
(0.0224699 0.00585175 0.00500778) 12584
(0.0233071 0.00595534 0.00497306) 12346
(0.020483 0.00399462 0.00488102) 10540
(0.0207807 0.00377497 0.00141866) 12761
(0.0211202 0.00414208 0.00126562) 11502
(0.0237777 0.00407406 0.00122446) 11507
(0.0207946 0.0044789 0.00112195) 11561
(0.0206622 0.00480209 0.000955026) 11621
(0.0223866 0.00471553 0.000945407) 11624
(0.020037 0.00562184 0.000972324) 12160
(0.0198568 0.00597888 0.0010323) 12279
(0.0214687 0.00599142 0.00103124) 12282
(0.0207602 0.00533054 0.000858362) 12101
(0.0225649 0.00527767 0.000848984) 10125
(0.020182 0.00524855 0.0052069) 11440
(0.0217353 0.00525352 0.00519547) 11443
(0.0225947 0.00536804 0.00520968) 11445
(0.0205436 0.00380023 0.00116365) 13001
(0.0224751 0.00305107 0.00320053) 764
(0.0224751 0.00305107 0.00320053) 764
(0.0224751 0.00305107 0.00320053) 764
(0.0247774 0.00300339 0.00316426) 769
(0.0251175 0.00295558 0.00318804) 34272
(0.0201783 0.00672946 0.00168206) 2500
(0.0201783 0.00672946 0.00168206) 2500
(0.0201783 0.00672946 0.00168206) 2500
(0.0224995 0.00668986 0.00174182) 2504
(0.0236932 0.00668167 0.00170185) 2507
(0.0208746 0.00617665 0.00164395) 13481
(0.0230673 0.00627307 0.00172622) 13486
(0.00659531 0.00643985 0.00288329) 13513
(0.00659531 0.00643985 0.00288329) 13513
(0.00659531 0.00643985 0.00288329) 13513
(0.00713879 0.00644186 0.0028767) 13514
(0.00764184 0.00644333 0.00287032) 13515
(0.00809215 0.00644638 0.00286494) 13516
(0.00853494 0.00644888 0.0028645) 13517
(0.00900633 0.00644872 0.00286882) 13518
(0.0183895 0.00622775 0.00235796) 13656
(0.0189073 0.00622313 0.00236213) 13657
(0.0194143 0.00621533 0.00236281) 13658
(0.0199437 0.00620417 0.00236085) 13659
(0.0204918 0.00619074 0.00235404) 13660
(0.021021 0.00617921 0.00234224) 13662
(0.0215186 0.00617207 0.00232929) 13663
(0.00748404 0.00584216 0.00186312) 13754
(0.00733746 0.00558998 0.00169586) 13814
(0.00648953 0.00466978 0.0016211) 13992
(0.0068557 0.00466434 0.00161231) 13993
(0.0067429 0.00440483 0.00169956) 14053
(0.0067429 0.00440483 0.00169956) 14053
(0.0067429 0.00440483 0.00169956) 14053
(0.00716618 0.00439897 0.00169444) 14054
(0.00752684 0.00439023 0.00168443) 14055
(0.00792217 0.00438563 0.00167747) 14055
(0.00836964 0.00438545 0.00167666) 14056
(0.0088289 0.00438637 0.001678) 14057
(0.00678236 0.0041762 0.00183099) 14113
(0.00678236 0.0041762 0.00183099) 14113
(0.00678236 0.0041762 0.00183099) 14113
(0.00759706 0.00415664 0.00181733) 14115
(0.00796983 0.00414669 0.00181294) 14115
(0.00839722 0.00414637 0.00181127) 14116
(0.00885905 0.00415063 0.00181053) 14117
(0.00739581 0.00395143 0.00203327) 14174
(0.0124307 0.00365104 0.00289568) 14364
(0.0129837 0.00366092 0.00289619) 14365
(0.0134743 0.00366075 0.00289469) 14366
(0.00651417 0.00359758 0.00319698) 14413
(0.0120382 0.00361056 0.00319244) 14424
(0.0126128 0.00362439 0.00319253) 14425
(0.0131437 0.00363113 0.0031915) 14426
(0.0136386 0.00363138 0.00319042) 14427
(0.0140955 0.0036261 0.00319029) 14428
(0.0063614 0.00372821 0.00356731) 14532
(0.0063614 0.00372821 0.00356731) 14532
(0.0063614 0.00372821 0.00356731) 14532
(0.00699723 0.00369849 0.00351443) 14473
(0.00762029 0.00366811 0.00348343) 14475
(0.00814062 0.0036434 0.00347124) 14476
(0.00856723 0.00362588 0.00346941) 14477
(0.00895934 0.00361203 0.0034708) 14477
(0.00590598 0.00386992 0.00380848) 14591
(0.00646349 0.00380386 0.00375523) 14532
(0.00726447 0.00375659 0.0037114) 14534
(0.00797314 0.00373439 0.00370197) 14535
(0.00851539 0.00372499 0.00370395) 14537
(0.00898601 0.00371909 0.00370814) 14537
(0.00688196 0.00399856 0.00397323) 14593
(0.00737822 0.003946 0.00394224) 14594
(0.00644604 0.00473439 0.00439443) 14772
(0.00687817 0.00472314 0.00440145) 14773
(0.00756331 0.00501069 0.00444063) 14835
(0.00792596 0.00500417 0.0044527) 14835
(0.00833744 0.0049975 0.00445724) 14836
(0.00708931 0.00528283 0.00439229) 14894
(0.00744568 0.00528777 0.0044045) 14894
(0.00779811 0.00529168 0.00441655) 14895
(0.00660095 0.006359 0.00339551) 15193
(0.00696662 0.00637341 0.00339636) 15193
(0.00728344 0.00638848 0.00340582) 15194
(0.00675526 0.00642634 0.00311204) 15253
(0.00675526 0.00642634 0.00311204) 15253
(0.00675526 0.00642634 0.00311204) 15253
(0.00722713 0.0064334 0.00311506) 15254
(0.00766821 0.00644066 0.00312073) 15255
(0.0081053 0.00644527 0.00312781) 15256
(0.00858041 0.00644458 0.00313118) 15257
(0.00908443 0.00644076 0.00313238) 15258
(0.00246143 0.00647245 0.00289338) 13504
(0.00388335 0.00637767 0.00272899) 13567
(0.0043681 0.00634703 0.00259001) 13568
(0.00476764 0.00633264 0.00271488) 13569
(0.00593737 0.00576968 0.00187395) 13751
(0.00574464 0.00557062 0.00175398) 13811
(0.00491803 0.00445361 0.00167016) 14049
(0.00535316 0.00446068 0.00166312) 14050
(0.00605192 0.00441603 0.00169644) 14052
(0.00507161 0.00421067 0.00183904) 14110
(0.00513109 0.00417304 0.00178202) 14110
(0.0052464 0.00418938 0.00173358) 5650
(0.00596783 0.00420201 0.00182117) 14111
(0.00502116 0.00355023 0.00325104) 14410
(0.00523278 0.00364514 0.00328226) 14410
(0.0054615 0.00377436 0.00345884) 14470
(0.00576222 0.00377591 0.00357293) 14531
(0.00334762 0.00363466 0.00358343) 14466
(0.00497183 0.00373583 0.00366242) 14529
(0.00522526 0.00387894 0.00363582) 14530
(0.00468877 0.00505468 0.00434963) 14829
(0.00481936 0.0050689 0.00439337) 14829
(0.00492175 0.0050108 0.00444248) 14829
(0.0059292 0.00498877 0.00440335) 14831
(0.00368113 0.00643676 0.00280719) 13507
(0.0039021 0.0064017 0.00282497) 13507
(0.00425405 0.00643122 0.00286455) 13508
(0.00534695 0.00643605 0.00314495) 15250
(0.00612079 0.00641196 0.00314701) 15252
(0.0200472 0.00300698 0.00219346) 520
(0.0206401 0.00691335 0.00360778) 2021
(0.0121453 0.00649425 0.0041818) 6684
(0.0132312 0.00645158 0.00415247) 6686
(0.0140568 0.00642554 0.00414328) 6688
(0.0147357 0.00641096 0.00413579) 6689
(0.0153095 0.00640329 0.00413049) 6690
(0.0158239 0.00640066 0.00412584) 6691
(0.0163169 0.00640154 0.00412098) 6692
(0.0168174 0.00640053 0.00411855) 6693
(0.0173378 0.00639607 0.00411624) 6694
(0.0218351 0.00637118 0.00198395) 13483
(0.023624 0.00657598 0.0022321) 6107
(0.0246793 0.00667251 0.00223008) 6109
(0.0210688 0.00664873 0.0041679) 6642
(0.0232878 0.00671249 0.0041059) 1966
(0.0194977 0.00638515 0.00117276) 12458
(0.0206591 0.00632731 0.00115131) 12461
(0.0201106 0.00360761 0.00462779) 7180
(0.021795 0.00362598 0.00465429) 7183
(0.0201397 0.00337087 0.00163805) 400
(0.0221288 0.00334175 0.00169953) 464
(0.0208573 0.00612459 0.00475262) 12221
(0.0206004 0.00582946 0.00503107) 12581
(0.0206004 0.00582946 0.00503107) 12581
(0.0206004 0.00582946 0.00503107) 12581
(0.0224281 0.00584872 0.00500808) 12584
(0.0224281 0.00584872 0.00500808) 12584
(0.0224281 0.00584872 0.00500808) 12584
(0.0233029 0.00594704 0.00497665) 12346
(0.0204271 0.00399284 0.00487845) 10540
(0.0206698 0.00377635 0.00141636) 12761
(0.0210174 0.00414602 0.00126495) 11502
(0.0237071 0.00407702 0.00122702) 11507
(0.0207261 0.00448271 0.0011208) 11561
(0.0205917 0.00480509 0.00095453) 11621
(0.0223452 0.00472041 0.000946877) 11624
(0.0199826 0.00562486 0.000974025) 12159
(0.0198044 0.00597876 0.00103233) 12279
(0.0214294 0.0059927 0.00103364) 12282
(0.0206756 0.00533374 0.000857819) 12101
(0.0225279 0.00528051 0.00085202) 10125
(0.0201286 0.0052483 0.00520782) 11440
(0.0216972 0.00525115 0.00519471) 11443
(0.0225929 0.00535777 0.00520888) 11445
(0.0205064 0.00380483 0.00116212) 13001
(0.0223347 0.00305065 0.00320097) 764
(0.0223347 0.00305065 0.00320097) 764
(0.0223347 0.00305065 0.00320097) 764
(0.0247504 0.00300635 0.00316482) 769
(0.0251195 0.00295698 0.00318411) 34272
(0.0200923 0.00673397 0.00167927) 2500
(0.0200923 0.00673397 0.00167927) 2500
(0.0200923 0.00673397 0.00167927) 2500
(0.0224397 0.00669015 0.00174248) 2504
(0.0236787 0.00668396 0.00170725) 2507
(0.0206533 0.0061908 0.00164616) 13481
(0.0230494 0.00626848 0.00172578) 13486
(0.00657077 0.00643978 0.00288362) 13513
(0.00657077 0.00643978 0.00288362) 13513
(0.00657077 0.00643978 0.00288362) 13513
(0.00711329 0.0064419 0.00287703) 13514
(0.00761742 0.00644333 0.00287064) 13515
(0.00806865 0.00644639 0.00286505) 13516
(0.00851107 0.00644896 0.00286439) 13517
(0.00898158 0.0064489 0.00286865) 13517
(0.0183656 0.00622797 0.00235782) 13656
(0.0188847 0.00622344 0.0023621) 13657
(0.0193919 0.00621577 0.0023629) 13658
(0.01992 0.00620481 0.00236111) 13659
(0.0204679 0.00619141 0.00235454) 13660
(0.0209985 0.00617971 0.00234292) 13661
(0.0214973 0.00617243 0.00233002) 13662
(0.00746398 0.00584191 0.00186334) 13754
(0.00731638 0.00559008 0.00169618) 13814
(0.00646752 0.00466994 0.00162101) 13992
(0.00683499 0.00466436 0.00161242) 13993
(0.00672058 0.00440502 0.00169936) 14053
(0.00672058 0.00440502 0.00169936) 14053
(0.00672058 0.00440502 0.00169936) 14053
(0.00714488 0.00439921 0.00169448) 14054
(0.00750582 0.00439054 0.00168461) 14055
(0.00789902 0.00438574 0.00167746) 14055
(0.00834536 0.00438534 0.00167651) 14056
(0.00880499 0.00438632 0.00167781) 14057
(0.00675915 0.00417628 0.00183099) 14113
(0.00675915 0.00417628 0.00183099) 14113
(0.00675915 0.00417628 0.00183099) 14113
(0.00757611 0.00415709 0.00181739) 14115
(0.00794781 0.00414676 0.00181302) 14115
(0.00837359 0.00414618 0.00181123) 14116
(0.00883467 0.00415031 0.00181046) 14117
(0.00737613 0.00395196 0.00203326) 14174
(0.0124058 0.0036504 0.0028956) 14364
(0.0129612 0.00366064 0.0028962) 14365
(0.0134546 0.00366089 0.00289476) 14366
(0.00649332 0.00359737 0.0031973) 14412
(0.0120132 0.00360996 0.00319244) 14424
(0.0125886 0.0036239 0.00319259) 14425
(0.0131211 0.00363092 0.00319159) 14426
(0.0136175 0.00363143 0.00319047) 14427
(0.0140759 0.00362638 0.00319036) 14428
(0.00633656 0.00372953 0.00357022) 14532
(0.00633656 0.00372953 0.00357022) 14532
(0.00633656 0.00372953 0.00357022) 14532
(0.00696816 0.00369976 0.00351673) 14473
(0.00759333 0.00366939 0.00348456) 14475
(0.00811769 0.0036443 0.00347167) 14476
(0.008547 0.00362653 0.00346945) 14477
(0.00893797 0.00361246 0.00347087) 14477
(0.00589095 0.00387195 0.00380878) 14591
(0.00643409 0.00380613 0.00375773) 14532
(0.00722755 0.00375834 0.00371301) 14534
(0.00794281 0.00373505 0.00370228) 14535
(0.00849057 0.00372533 0.00370401) 14536
(0.00896232 0.00371926 0.00370805) 14537
(0.00685707 0.00400159 0.00397487) 14593
(0.00735352 0.00394773 0.00394333) 14594
(0.00642339 0.00473486 0.0043944) 14772
(0.00685493 0.00472332 0.0044015) 14773
(0.00754269 0.00501094 0.00444033) 14835
(0.00790413 0.00500448 0.00445257) 14835
(0.00831345 0.00499783 0.00445743) 14836
(0.00706855 0.00528275 0.00439214) 14894
(0.00742593 0.00528763 0.0044042) 14894
(0.00777652 0.00529173 0.00441634) 14895
(0.00657932 0.00635892 0.003396) 15193
(0.00694693 0.00637312 0.00339622) 15193
(0.00726282 0.00638827 0.00340536) 15194
(0.00673168 0.00642634 0.00311268) 15253
(0.00673168 0.00642634 0.00311268) 15253
(0.00673168 0.00642634 0.00311268) 15253
(0.00720411 0.00643329 0.0031151) 15254
(0.00764526 0.00644051 0.00312049) 15255
(0.00808129 0.00644532 0.00312766) 15256
(0.00855467 0.00644486 0.00313114) 15257
(0.00905893 0.00644105 0.00313234) 15258
(0.002285 0.00647615 0.00289758) 13504
(0.00386526 0.00637814 0.00273237) 13567
(0.0043511 0.00634612 0.00258812) 13568
(0.00475084 0.00633379 0.00270882) 13569
(0.00591323 0.0057714 0.00187243) 13751
(0.00572184 0.00557006 0.00174872) 13811
(0.00494792 0.00443988 0.00165273) 14049
(0.00535561 0.00446098 0.00166642) 14050
(0.00603419 0.00441578 0.00169716) 14052
(0.00506932 0.00421475 0.0018423) 14110
(0.00513524 0.00417725 0.00178798) 14110
(0.00525417 0.00419114 0.00173721) 5650
(0.00596408 0.00420114 0.00182174) 14111
(0.00495451 0.00358131 0.00326897) 14409
(0.00522278 0.00363391 0.00327847) 14410
(0.00545086 0.00378483 0.00346) 14470
(0.00574685 0.0037761 0.003573) 14531
(0.00246944 0.00360383 0.00357805) 5344
(0.00496846 0.00373352 0.00366258) 14529
(0.00520844 0.00387219 0.00363703) 14530
(0.00482363 0.00506814 0.00439051) 14829
(0.00490861 0.00501635 0.0044418) 14829
(0.00589865 0.00499012 0.0044058) 14831
(0.00361317 0.00644251 0.00281565) 13507
(0.00397802 0.00639614 0.00280973) 13507
(0.00411088 0.00643451 0.0028716) 13508
(0.0053243 0.00643743 0.00314213) 15250
(0.00609899 0.00641192 0.0031477) 15252
(0.0200047 0.00300882 0.00219051) 520
(0.0205881 0.00690966 0.00361266) 2021
(0.0121038 0.0064962 0.00418336) 6684
(0.013202 0.00645255 0.00415282) 6686
(0.0140344 0.00642606 0.0041432) 6688
(0.0147172 0.00641105 0.00413581) 6689
(0.0152938 0.00640323 0.00413035) 6690
(0.0158093 0.00640049 0.00412562) 6691
(0.016302 0.00640136 0.0041208) 6692
(0.0168016 0.00640044 0.00411827) 6693
(0.0173212 0.00639612 0.00411603) 6694
(0.017839 0.00639015 0.00411289) 6695
(0.0216697 0.00638063 0.0019794) 13483
(0.0235799 0.00656832 0.00222674) 6107
(0.0246496 0.00667034 0.00223298) 6109
(0.020962 0.00664873 0.00417151) 6641
(0.0232307 0.00670887 0.0041074) 1966
(0.0194657 0.00638762 0.00117373) 6818
(0.0206361 0.00633203 0.0011552) 12461
(0.0200532 0.00360674 0.00462699) 7180
(0.0217581 0.00362401 0.00465064) 7183
(0.0200674 0.00337316 0.00163328) 400
(0.0220806 0.00334481 0.00169778) 464
(0.0207896 0.00612269 0.00475429) 12221
(0.0205264 0.00582886 0.00503281) 12581
(0.0205264 0.00582886 0.00503281) 12581
(0.0205264 0.00582886 0.00503281) 12581
(0.0223847 0.00584583 0.00500835) 12584
(0.0223847 0.00584583 0.00500835) 12584
(0.0223847 0.00584583 0.00500835) 12584
(0.0232982 0.00593899 0.00497989) 12586
(0.0203717 0.00399095 0.00487588) 10540
(0.0205588 0.0037776 0.00141391) 12761
(0.023305 0.00376308 0.0014101) 12766
(0.0209144 0.00414976 0.0012641) 11501
(0.0236316 0.00407957 0.00122948) 11507
(0.0206576 0.00448653 0.0011195) 11561
(0.0205213 0.00480803 0.000953934) 11621
(0.0223018 0.0047252 0.000948334) 11624
(0.0199288 0.00562795 0.000975736) 12159
(0.0197529 0.00597866 0.00103235) 12279
(0.0213887 0.00599382 0.0010359) 12282
(0.0205912 0.00533713 0.000857193) 12101
(0.0224883 0.00528321 0.000854902) 10124
(0.0200752 0.00524808 0.00520885) 11440
(0.021658 0.005249 0.00519399) 11443
(0.0225893 0.00534807 0.00520801) 11445
(0.0204689 0.00380931 0.0011606) 13000
(0.0221964 0.00304989 0.00320112) 764
(0.0221964 0.00304989 0.00320112) 764
(0.0221964 0.00304989 0.00320112) 764
(0.0247211 0.0030092 0.00316554) 769
(0.0251205 0.00295862 0.00318042) 34272
(0.0200217 0.0067377 0.00167748) 2500
(0.0200217 0.0067377 0.00167748) 2500
(0.0200217 0.0067377 0.00167748) 2500
(0.0223779 0.00669048 0.00174299) 2504
(0.0236625 0.00668597 0.00171241) 2507
(0.0230293 0.00626388 0.00172506) 13486
(0.00654632 0.0064397 0.00288394) 13513
(0.00654632 0.0064397 0.00288394) 13513
(0.00654632 0.0064397 0.00288394) 13513
(0.00708783 0.00644193 0.00287736) 13514
(0.00759298 0.00644333 0.00287097) 13515
(0.00804515 0.0064464 0.00286517) 13516
(0.00848724 0.00644904 0.0028643) 13516
(0.00895683 0.00644909 0.00286846) 13517
(0.0183417 0.0062282 0.00235769) 13656
(0.018862 0.00622373 0.00236205) 13657
(0.0193694 0.00621621 0.00236299) 13658
(0.0198964 0.00620543 0.00236135) 13659
(0.0204439 0.00619207 0.00235503) 13660
(0.020976 0.00618023 0.0023436) 13661
(0.0214758 0.00617279 0.00233074) 13662
(0.00744394 0.00584165 0.00186355) 13754
(0.00729533 0.00559018 0.0016965) 13814
(0.00644537 0.00467011 0.00162092) 13992
(0.00681426 0.0046644 0.00161251) 13993
(0.00669822 0.0044052 0.00169917) 14053
(0.00669822 0.0044052 0.00169917) 14053
(0.00669822 0.0044052 0.00169917) 14053
(0.00712356 0.00439945 0.0016945) 14054
(0.00748487 0.00439086 0.00168479) 14054
(0.00787601 0.00438586 0.00167746) 14055
(0.00832112 0.00438524 0.00167637) 14056
(0.00878106 0.00438627 0.00167762) 14057
(0.00673596 0.00417638 0.00183098) 14113
(0.00673596 0.00417638 0.00183098) 14113
(0.00673596 0.00417638 0.00183098) 14113
(0.00755521 0.00415755 0.00181745) 14115
(0.0079259 0.00414686 0.0018131) 14115
(0.00835005 0.004146 0.00181119) 14116
(0.00881031 0.00414999 0.00181039) 14117
(0.00735643 0.0039525 0.00203322) 14174
(0.0123809 0.00364975 0.00289552) 14364
(0.0129387 0.00366034 0.0028962) 14365
(0.0134347 0.00366101 0.00289482) 14366
(0.0064726 0.00359713 0.00319761) 14412
(0.0119883 0.00360937 0.00319244) 14423
(0.0125643 0.00362341 0.00319265) 14425
(0.0130985 0.0036307 0.00319168) 14426
(0.0135962 0.00363146 0.00319053) 14427
(0.0140562 0.00362665 0.00319042) 14428
(0.0063119 0.00373091 0.00357308) 14532
(0.0063119 0.00373091 0.00357308) 14532
(0.0063119 0.00373091 0.00357308) 14532
(0.00693916 0.00370102 0.00351907) 14473
(0.0075662 0.00367068 0.00348573) 14475
(0.00809462 0.00364522 0.00347211) 14476
(0.00852675 0.00362719 0.0034695) 14477
(0.00891674 0.00361291 0.00347093) 14477
(0.00587596 0.00387384 0.00380897) 14591
(0.00640544 0.00380837 0.00376016) 14532
(0.00719053 0.00376016 0.0037147) 14534
(0.00791222 0.00373574 0.00370262) 14535
(0.00846559 0.00372569 0.00370409) 14536
(0.00893867 0.00371943 0.00370795) 14537
(0.0068322 0.00400465 0.00397647) 14593
(0.00732886 0.00394951 0.00394444) 14594
(0.00640089 0.00473535 0.00439434) 14772
(0.00683174 0.00472349 0.00440154) 14773
(0.00752209 0.00501117 0.00444003) 14835
(0.00788245 0.00500479 0.00445242) 14835
(0.00828957 0.00499817 0.0044576) 14836
(0.00704769 0.00528271 0.004392) 14894
(0.00740625 0.00528747 0.00440391) 14894
(0.0077551 0.00529177 0.00441612) 14895
(0.0065577 0.00635884 0.00339652) 15193
(0.00692725 0.00637283 0.00339611) 15193
(0.00724236 0.00638804 0.00340489) 15194
(0.00670811 0.00642635 0.00311334) 15253
(0.00670811 0.00642635 0.00311334) 15253
(0.00670811 0.00642635 0.00311334) 15253
(0.00718112 0.00643318 0.00311516) 15254
(0.00762235 0.00644036 0.00312026) 15255
(0.00805737 0.00644535 0.0031275) 15256
(0.00852896 0.00644513 0.0031311) 15257
(0.00903336 0.00644134 0.00313231) 15258
(0.00213214 0.0064782 0.00289999) 13504
(0.00384754 0.00637847 0.00273569) 13567
(0.00433412 0.00634554 0.00258665) 13568
(0.00473639 0.00633428 0.00270451) 13569
(0.00588868 0.00577321 0.00187096) 13751
(0.00569944 0.00556953 0.00174339) 13811
(0.00496122 0.00442402 0.00163439) 14049
(0.00536049 0.004461 0.00167056) 14050
(0.00601679 0.00441581 0.00169782) 14052
(0.00506935 0.0042207 0.00184624) 14110
(0.00513112 0.00417836 0.00179354) 14110
(0.00524795 0.00419037 0.00173922) 5650
(0.00594299 0.00420173 0.00182145) 14111
(0.00486769 0.00363072 0.00330388) 14409
(0.00521643 0.00362118 0.00327544) 14410
(0.00544086 0.00379296 0.0034574) 15910
(0.00573187 0.0037768 0.00357307) 14531
(0.0020231 0.00359553 0.00358578) 5344
(0.00496426 0.00373055 0.00366336) 14529
(0.0051936 0.00386597 0.00363792) 14530
(0.00482704 0.0050675 0.00438755) 14829
(0.00490276 0.00502221 0.00444061) 14829
(0.0058689 0.00499188 0.00440848) 14831
(0.0035416 0.00644845 0.00282466) 13507
(0.00402134 0.00639395 0.00279944) 13508
(0.00530067 0.00643897 0.00313896) 15250
(0.00607731 0.00641187 0.00314837) 15252
(0.0199615 0.00301052 0.00218765) 519
(0.0205359 0.00690608 0.00361751) 2021
(0.0219932 0.00702325 0.00351263) 23503
(0.0120612 0.00649822 0.00418513) 6684
(0.0131723 0.00645352 0.00415326) 6686
(0.0140118 0.00642663 0.00414306) 6688
(0.0146986 0.00641116 0.00413578) 6689
(0.015278 0.00640317 0.00413022) 6690
(0.0157947 0.00640033 0.00412541) 6691
(0.0162871 0.00640117 0.00412061) 6692
(0.0167858 0.00640035 0.004118) 6693
(0.0173045 0.00639616 0.00411582) 6694
(0.017823 0.00639016 0.00411266) 6695
(0.0214885 0.00639513 0.00197884) 13482
(0.0235352 0.00656047 0.00222097) 6107
(0.0246177 0.00666815 0.00223569) 6109
(0.0208565 0.0066485 0.00417551) 6641
(0.0231711 0.0067053 0.00410891) 1966
(0.0194336 0.00639009 0.00117468) 6818
(0.0206124 0.0063365 0.00115885) 12461
(0.019996 0.00360595 0.00462638) 7179
(0.0217194 0.0036222 0.00464719) 7183
(0.0199979 0.0033758 0.00162828) 399
(0.0220308 0.00334775 0.00169607) 464
(0.0207211 0.00612087 0.00475608) 12221
(0.0204529 0.00582828 0.00503464) 12580
(0.0204529 0.00582828 0.00503464) 12580
(0.0204529 0.00582828 0.00503464) 12580
(0.0223396 0.00584308 0.00500859) 12584
(0.0223396 0.00584308 0.00500859) 12584
(0.0223396 0.00584308 0.00500859) 12584
(0.0232926 0.00593121 0.00498283) 12586
(0.0203171 0.00398896 0.00487333) 10540
(0.0219572 0.00400154 0.0049207) 10543
(0.0204483 0.00377874 0.00141134) 12760
(0.0232304 0.00376365 0.00141154) 12766
(0.0208112 0.00415338 0.00126311) 11501
(0.0235517 0.0040817 0.00123187) 11507
(0.0205894 0.00449043 0.00111804) 11561
(0.0204514 0.00481097 0.000953243) 11620
(0.0222565 0.00472988 0.000949772) 11624
(0.0198757 0.00563109 0.000977459) 12159
(0.0197026 0.0059786 0.00103237) 12279
(0.0213467 0.00599477 0.001038) 12282
(0.0205084 0.00534077 0.000856556) 12101
(0.022446 0.00528576 0.000857621) 10124
(0.0200211 0.00524792 0.00520998) 11440
(0.0216176 0.00524706 0.00519333) 11443
(0.0225838 0.00533888 0.00520706) 11445
(0.0204313 0.00381368 0.00115909) 13000
(0.0220599 0.00304881 0.00320093) 764
(0.0220599 0.00304881 0.00320093) 764
(0.0220599 0.00304881 0.00320093) 764
(0.0246895 0.00301191 0.00316638) 769
(0.0251205 0.0029605 0.00317698) 34272
(0.0199547 0.00674135 0.00167577) 2499
(0.0199547 0.00674135 0.00167577) 2499
(0.0199547 0.00674135 0.00167577) 2499
(0.0223142 0.00669085 0.00174331) 2504
(0.0236449 0.00668777 0.00171738) 2507
(0.0230075 0.00625912 0.00172394) 13486
(0.00652198 0.00643962 0.00288425) 13513
(0.00652198 0.00643962 0.00288425) 13513
(0.00652198 0.00643962 0.00288425) 13513
(0.00706241 0.00644197 0.0028777) 13514
(0.00756852 0.00644333 0.0028713) 13515
(0.00802166 0.0064464 0.0028653) 13516
(0.00846345 0.00644911 0.00286422) 13516
(0.00893207 0.00644927 0.00286826) 13517
(0.0064757 0.00635445 0.00259011) 13572
(0.0183176 0.00622843 0.00235757) 13656
(0.0188394 0.00622402 0.002362) 13657
(0.0193471 0.00621663 0.00236307) 13658
(0.0198728 0.00620605 0.00236159) 13659
(0.02042 0.00619273 0.0023555) 13660
(0.0209533 0.00618075 0.00234426) 13661
(0.0214543 0.00617316 0.00233145) 13662
(0.00742391 0.00584138 0.00186376) 13754
(0.0064963 0.0055907 0.00172396) 13812
(0.00642309 0.00467028 0.00162082) 13992
(0.00679353 0.00466443 0.00161259) 13993
(0.00667579 0.00440539 0.00169898) 14053
(0.00667579 0.00440539 0.00169898) 14053
(0.00667579 0.00440539 0.00169898) 14053
(0.00710222 0.00439969 0.00169452) 14054
(0.007464 0.00439118 0.00168497) 14054
(0.00785314 0.004386 0.00167748) 14055
(0.00829692 0.00438515 0.00167622) 14056
(0.00875711 0.00438623 0.00167743) 14057
(0.00671279 0.00417649 0.00183096) 14113
(0.00671279 0.00417649 0.00183096) 14113
(0.00671279 0.00417649 0.00183096) 14113
(0.00753436 0.00415802 0.00181751) 14115
(0.0079041 0.00414698 0.00181319) 14115
(0.0083266 0.00414584 0.00181115) 14116
(0.00878598 0.00414965 0.00181034) 14117
(0.00733671 0.00395306 0.00203318) 14174
(0.0123559 0.00364909 0.00289543) 14364
(0.0129161 0.00366003 0.00289621) 14365
(0.0134148 0.00366112 0.00289488) 14366
(0.00645201 0.00359688 0.0031979) 14412
(0.0119634 0.00360878 0.00319244) 14423
(0.0125399 0.00362291 0.0031927) 14425
(0.0130758 0.00363047 0.00319177) 14426
(0.0135749 0.00363149 0.00319058) 14427
(0.0140365 0.00362691 0.00319048) 14428
(0.00628772 0.00373216 0.00357571) 14532
(0.00628772 0.00373216 0.00357571) 14532
(0.00628772 0.00373216 0.00357571) 14532
(0.00691034 0.00370227 0.00352148) 14473
(0.00753893 0.00367197 0.00348695) 14475
(0.00807141 0.00364616 0.00347258) 14476
(0.00850645 0.00362785 0.00346955) 14477
(0.00889568 0.00361338 0.00347101) 14477
(0.00586101 0.00387571 0.00380891) 14591
(0.00637744 0.00381056 0.00376251) 14532
(0.00715358 0.00376202 0.00371646) 14534
(0.0078813 0.00373647 0.00370299) 14535
(0.00844044 0.00372606 0.00370419) 14536
(0.00891506 0.00371961 0.00370784) 14537
(0.00680737 0.0040077 0.003978) 14593
(0.00730426 0.00395134 0.00394556) 14594
(0.00637855 0.00473586 0.00439426) 14772
(0.00680864 0.00472368 0.00440157) 14773
(0.00750149 0.00501139 0.00443973) 14835
(0.00786089 0.0050051 0.00445225) 14835
(0.00826582 0.00499852 0.00445775) 14836
(0.00702674 0.00528269 0.00439185) 14894
(0.00738668 0.00528729 0.00440361) 14894
(0.00773382 0.0052918 0.00441589) 14895
(0.00653608 0.00635875 0.00339706) 15193
(0.00690759 0.00637254 0.00339604) 15193
(0.00722207 0.00638781 0.00340442) 15194
(0.00668456 0.00642635 0.00311404) 15253
(0.00668456 0.00642635 0.00311404) 15253
(0.00668456 0.00642635 0.00311404) 15253
(0.00715816 0.00643308 0.00311524) 15254
(0.00759948 0.0064402 0.00312004) 15255
(0.00803354 0.00644537 0.00312733) 15256
(0.00850329 0.00644539 0.00313107) 15257
(0.00900772 0.00644164 0.00313227) 15258
(0.000120498 0.00645994 0.0028515) 13500
(0.00191899 0.00647828 0.00290274) 13503
(0.00382811 0.00637895 0.00273933) 13567
(0.00430716 0.00634551 0.00258634) 13568
(0.00472155 0.00633502 0.00269976) 13569
(0.00586357 0.00577517 0.00186952) 13751
(0.00567775 0.00556905 0.0017381) 13811
(0.00495151 0.00440965 0.00161881) 5709
(0.00537149 0.00446056 0.0016766) 14050
(0.00599985 0.00441619 0.00169836) 14051
(0.00506883 0.00422681 0.00185055) 14110
(0.00513292 0.00418168 0.00179899) 14110
(0.00524315 0.00418998 0.00174219) 5650
(0.00592216 0.00420265 0.00182091) 14111
(0.00478068 0.00369461 0.00337468) 14469
(0.00521316 0.00360662 0.00327243) 14410
(0.00543284 0.00379887 0.00345194) 15910
(0.00571748 0.00377805 0.00357329) 14531
(0.00487716 0.00378285 0.00352936) 14469
(0.00495914 0.0037292 0.00366426) 14529
(0.00517497 0.00385914 0.00363853) 14530
(0.00482728 0.00506666 0.00438492) 14829
(0.0049038 0.00502812 0.00443885) 14829
(0.00584457 0.00499419 0.00441077) 14831
(0.00506464 0.00529831 0.00432686) 14890
(0.00346326 0.00645468 0.00283456) 13506
(0.00405064 0.0063932 0.0027918) 13508
(0.00527588 0.00644076 0.00313515) 15250
(0.00605566 0.00641186 0.00314899) 15252
(0.0199177 0.00301207 0.00218485) 519
(0.0204841 0.00690252 0.00362243) 2020
(0.0219604 0.00701759 0.00351716) 23503
(0.0120186 0.00650023 0.00418695) 6684
(0.0131422 0.00645453 0.00415374) 6686
(0.0139891 0.00642723 0.00414292) 6687
(0.0146799 0.00641129 0.00413577) 6689
(0.0152621 0.00640311 0.0041301) 6690
(0.01578 0.00640018 0.00412519) 6691
(0.0162722 0.00640098 0.00412042) 6692
(0.0167701 0.00640025 0.00411774) 6693
(0.0172879 0.0063962 0.00411561) 6694
(0.017807 0.00639017 0.00411244) 6695
(0.0212887 0.00641492 0.00198197) 13482
(0.0234906 0.0065524 0.00221482) 6106
(0.0245836 0.00666595 0.00223822) 6109
(0.0207542 0.00664772 0.00418006) 6641
(0.0231093 0.00670174 0.00411053) 1966
(0.0194014 0.00639258 0.00117566) 6818
(0.0205878 0.00634073 0.00116228) 12461
(0.0199386 0.00360519 0.00462596) 7179
(0.0216789 0.00362055 0.00464393) 7183
(0.0199302 0.00337865 0.00162303) 399
(0.0219792 0.00335058 0.0016944) 463
(0.0206522 0.00611913 0.00475798) 12221
(0.02038 0.00582772 0.00503654) 12580
(0.02038 0.00582772 0.00503654) 12580
(0.02038 0.00582772 0.00503654) 12580
(0.0222927 0.00584048 0.0050088) 12584
(0.0222927 0.00584048 0.0050088) 12584
(0.0222927 0.00584048 0.0050088) 12584
(0.0232858 0.00592373 0.00498551) 12586
(0.0202632 0.00398691 0.00487082) 10540
(0.0219161 0.00400069 0.00491722) 10543
(0.020339 0.00377978 0.00140869) 12760
(0.0231537 0.00376433 0.00141293) 12766
(0.0207079 0.00415696 0.00126199) 11501
(0.0234684 0.00408352 0.0012342) 11506
(0.0205215 0.00449446 0.00111641) 11561
(0.0203823 0.00481398 0.000952461) 11620
(0.0222094 0.00473447 0.000951184) 11624
(0.0198232 0.00563428 0.000979207) 12159
(0.0196536 0.00597858 0.00103241) 12279
(0.0213033 0.00599557 0.00103995) 12282
(0.020436 0.00534507 0.000856396) 12100
(0.0224012 0.00528819 0.000860183) 10124
(0.0199663 0.00524782 0.00521121) 11439
(0.021576 0.00524534 0.00519271) 11443
(0.0225766 0.00533019 0.00520605) 11445
(0.0203936 0.00381796 0.00115758) 13000
(0.021927 0.00304758 0.00320043) 763
(0.021927 0.00304758 0.00320043) 763
(0.021927 0.00304758 0.00320043) 763
(0.0246549 0.00301447 0.00316734) 769
(0.0251193 0.00296258 0.00317379) 34272
(0.0198906 0.00674496 0.00167417) 2499
(0.0198906 0.00674496 0.00167417) 2499
(0.0198906 0.00674496 0.00167417) 2499
(0.0222488 0.00669129 0.00174349) 2504
(0.0236261 0.00668937 0.00172216) 2507
(0.022983 0.00625429 0.00172245) 13485
(0.00649773 0.00643952 0.00288456) 13512
(0.00649773 0.00643952 0.00288456) 13512
(0.00649773 0.00643952 0.00288456) 13512
(0.00703703 0.006442 0.00287805) 13514
(0.00754404 0.00644333 0.00287163) 13515
(0.00799818 0.0064464 0.00286544) 13515
(0.0084397 0.00644917 0.00286416) 13516
(0.00890728 0.00644945 0.00286803) 13517
(0.0064511 0.00635437 0.00258885) 13572
(0.0182934 0.00622868 0.00235746) 13656
(0.0188167 0.00622429 0.0023619) 13657
(0.0193247 0.00621706 0.00236314) 13658
(0.0198493 0.00620666 0.00236182) 13659
(0.0203959 0.00619339 0.00235596) 13660
(0.0209306 0.00618127 0.00234492) 13661
(0.0214328 0.00617353 0.00233215) 13662
(0.00651901 0.00583059 0.00188001) 13753
(0.00740389 0.0058411 0.00186396) 13754
(0.00647294 0.00559064 0.00172378) 13812
(0.00640066 0.00467046 0.00162072) 13992
(0.00677276 0.00466446 0.00161267) 13993
(0.00665332 0.00440559 0.00169878) 14053
(0.00665332 0.00440559 0.00169878) 14053
(0.00665332 0.00440559 0.00169878) 14053
(0.00708087 0.00439992 0.00169452) 14054
(0.00744316 0.00439155 0.00168512) 14054
(0.00783044 0.00438611 0.00167753) 14055
(0.00827278 0.00438507 0.00167609) 14056
(0.00873315 0.00438618 0.00167723) 14057
(0.00668963 0.00417664 0.00183092) 14113
(0.00668963 0.00417664 0.00183092) 14113
(0.00668963 0.00417664 0.00183092) 14113
(0.0078824 0.00414714 0.00181326) 14115
(0.00830323 0.00414569 0.00181112) 14116
(0.00876168 0.00414932 0.00181029) 14117
(0.00731695 0.00395361 0.00203313) 14174
(0.0123309 0.00364842 0.00289533) 14364
(0.0128933 0.0036597 0.00289622) 14365
(0.0133947 0.00366121 0.00289494) 14366
(0.00643157 0.0035966 0.00319817) 14412
(0.0119385 0.00360821 0.00319244) 14423
(0.0125155 0.0036224 0.00319276) 14425
(0.0130531 0.00363024 0.00319185) 14426
(0.0135536 0.0036315 0.00319064) 14427
(0.0140167 0.00362716 0.00319054) 14428
(0.00626376 0.00373342 0.00357825) 14532
(0.00626376 0.00373342 0.00357825) 14532
(0.00626376 0.00373342 0.00357825) 14532
(0.0068816 0.00370349 0.00352388) 14473
(0.00751152 0.00367328 0.00348823) 14475
(0.00804805 0.00364712 0.00347307) 14476
(0.00848608 0.00362851 0.0034696) 14476
(0.00887475 0.00361387 0.00347109) 14477
(0.00584623 0.00387743 0.0038087) 14591
(0.00635014 0.00381271 0.00376478) 14532
(0.00711668 0.0037639 0.00371828) 14534
(0.00785011 0.00373723 0.0037034) 14535
(0.00841512 0.00372645 0.0037043) 14536
(0.00889148 0.0037198 0.00370774) 14537
(0.00678256 0.00401075 0.00397947) 14593
(0.0072797 0.00395321 0.00394671) 14594
(0.00635641 0.00473638 0.00439414) 14772
(0.00678563 0.00472388 0.0044016) 14773
(0.0074809 0.00501159 0.00443944) 14834
(0.00783948 0.00500542 0.00445207) 14835
(0.00824219 0.00499884 0.00445789) 14836
(0.0070057 0.00528269 0.00439172) 14894
(0.00736717 0.0052871 0.00440332) 14894
(0.0077127 0.0052918 0.00441564) 14895
(0.00651448 0.00635865 0.00339762) 15193
(0.00688794 0.00637225 0.00339599) 15193
(0.00720193 0.00638756 0.00340395) 15194
(0.00666103 0.00642634 0.00311477) 15253
(0.00666103 0.00642634 0.00311477) 15253
(0.00666103 0.00642634 0.00311477) 15253
(0.00713523 0.00643297 0.00311535) 15254
(0.00757665 0.00644003 0.00311984) 15255
(0.00800981 0.00644538 0.00312716) 15256
(0.00847769 0.00644564 0.00313101) 15256
(0.00898199 0.00644194 0.00313227) 15257
(0.000345767 0.0064555 0.00285359) 13500
(0.00167677 0.00647724 0.0029057) 13503
(0.00380829 0.0063795 0.00274314) 13567
(0.00428194 0.00634706 0.002588) 13568
(0.00469907 0.00633521 0.00269284) 13569
(0.00583817 0.00577725 0.00186817) 13751
(0.00565713 0.00556846 0.00173361) 13811
(0.00492463 0.0043975 0.00160705) 5709
(0.00538411 0.00445986 0.00168343) 14050
(0.00598322 0.00441675 0.00169884) 14051
(0.00506761 0.00423294 0.00185528) 14110
(0.0051344 0.0041852 0.00180424) 14110
(0.00525251 0.00419249 0.00174745) 5650
(0.00590173 0.0042035 0.00182046) 14111
(0.0045736 0.00372714 0.00344809) 14469
(0.00521319 0.00359281 0.00327) 14410
(0.00542605 0.003803 0.00344491) 15910
(0.0057044 0.00377976 0.00357318) 14531
(0.004889 0.00377037 0.00352055) 14469
(0.004955 0.00373163 0.00366576) 14529
(0.00516067 0.00385305 0.00363993) 14530
(0.00482922 0.00506604 0.00438182) 14829
(0.0049041 0.00503258 0.00443717) 14829
(0.00582023 0.00499684 0.00441298) 14831
(0.00502886 0.00529915 0.00432986) 14890
(0.0034229 0.00645816 0.00283927) 13506
(0.00406951 0.0063929 0.00278615) 13508
(0.00524627 0.00644335 0.00312975) 15250
(0.00603405 0.00641188 0.00314955) 15252
(0.0198735 0.00301346 0.00218212) 519
(0.0204327 0.006899 0.00362742) 2020
(0.021926 0.00701197 0.0035216) 23503
(0.011975 0.00650232 0.00418889) 6683
(0.0131117 0.00645556 0.00415425) 6686
(0.0139661 0.00642785 0.00414279) 6687
(0.0146611 0.00641142 0.00413577) 6689
(0.0152461 0.00640305 0.00413) 6690
(0.0157653 0.00640004 0.00412496) 6691
(0.0162573 0.00640081 0.00412022) 6692
(0.0167543 0.00640014 0.00411747) 6693
(0.0172712 0.00639624 0.0041154) 6694
(0.017791 0.00639019 0.00411222) 6695
(0.0210689 0.00644077 0.001989) 13422
(0.0234461 0.00654413 0.00220836) 6106
(0.0245472 0.00666374 0.00224055) 6109
(0.0206576 0.00664662 0.00418486) 6641
(0.023045 0.00669816 0.00411228) 1966
(0.0193691 0.0063951 0.00117659) 6818
(0.0205623 0.00634472 0.00116549) 12461
(0.0198809 0.00360441 0.00462575) 7179
(0.0216366 0.00361904 0.00464086) 7183
(0.0226079 0.00368215 0.00473598) 10545
(0.0198643 0.00338175 0.00161748) 399
(0.021926 0.00335327 0.00169276) 463
(0.0205835 0.00611746 0.00476) 12221
(0.0203078 0.00582719 0.00503851) 12580
(0.0203078 0.00582719 0.00503851) 12580
(0.0203078 0.00582719 0.00503851) 12580
(0.022244 0.00583802 0.00500899) 12584
(0.022244 0.00583802 0.00500899) 12584
(0.022244 0.00583802 0.00500899) 12584
(0.023277 0.00591664 0.00498791) 12586
(0.0202101 0.00398482 0.00486835) 10540
(0.0218733 0.0039999 0.00491383) 10543
(0.0202319 0.00378076 0.00140595) 12760
(0.0230747 0.00376513 0.00141429) 12766
(0.020605 0.00416057 0.0012608) 11501
(0.0233828 0.0040852 0.00123652) 11506
(0.020454 0.00449868 0.0011146) 11560
(0.0203143 0.00481713 0.000951585) 11620
(0.0221605 0.00473896 0.000952568) 11624
(0.0197716 0.00563752 0.000980983) 12159
(0.0196061 0.0059786 0.00103249) 12279
(0.0212586 0.00599621 0.00104175) 12282
(0.0203657 0.00534955 0.000856279) 12100
(0.0223538 0.00529052 0.000862585) 10124
(0.0199109 0.00524777 0.00521253) 11079
(0.0215333 0.00524381 0.00519214) 11443
(0.0225676 0.00532198 0.005205) 11445
(0.020356 0.00382215 0.00115607) 13000
(0.0217967 0.00304623 0.00319966) 763
(0.0217967 0.00304623 0.00319966) 763
(0.0217967 0.00304623 0.00319966) 763
(0.0246171 0.00301688 0.00316838) 769
(0.025117 0.00296485 0.00317084) 34272
(0.0198286 0.00674846 0.00167262) 2499
(0.0221816 0.00669181 0.00174348) 2504
(0.0236053 0.00669075 0.00172668) 2507
(0.0229552 0.00624936 0.00172056) 13485
(0.00647357 0.00643943 0.00288486) 13512
(0.00647357 0.00643943 0.00288486) 13512
(0.00647357 0.00643943 0.00288486) 13512
(0.0070117 0.00644203 0.00287841) 13514
(0.00751954 0.00644333 0.00287192) 13515
(0.00797472 0.00644639 0.00286563) 13515
(0.00841601 0.00644923 0.00286412) 13516
(0.00888251 0.00644962 0.0028678) 13517
(0.00642646 0.00635424 0.0025875) 13572
(0.0182692 0.00622892 0.00235735) 13656
(0.0187939 0.00622455 0.0023618) 13657
(0.0193023 0.00621748 0.00236321) 13658
(0.0198259 0.00620727 0.00236203) 13659
(0.0203719 0.00619405 0.00235641) 13660
(0.0209078 0.0061818 0.00234557) 13661
(0.0214112 0.0061739 0.00233284) 13662
(0.00649543 0.00583039 0.00187973) 13752
(0.00738386 0.00584082 0.00186416) 13754
(0.00644965 0.00559058 0.00172358) 13812
(0.00637811 0.00467065 0.00162063) 13992
(0.00675192 0.00466449 0.00161273) 13993
(0.00663081 0.00440579 0.00169857) 14053
(0.00663081 0.00440579 0.00169857) 14053
(0.00663081 0.00440579 0.00169857) 14053
(0.00705949 0.00440015 0.00169452) 14054
(0.00742238 0.00439195 0.00168526) 14054
(0.00780789 0.00438621 0.00167761) 14055
(0.00824869 0.00438499 0.00167596) 14056
(0.00870916 0.00438614 0.00167704) 14057
(0.0066665 0.00417683 0.00183085) 14113
(0.0066665 0.00417683 0.00183085) 14113
(0.0066665 0.00417683 0.00183085) 14113
(0.0078608 0.00414734 0.00181332) 14115
(0.00827996 0.00414556 0.00181109) 14116
(0.00873743 0.00414898 0.00181025) 14117
(0.00729717 0.00395415 0.00203308) 14174
(0.0123058 0.00364775 0.00289523) 14364
(0.0128705 0.00365935 0.00289623) 14365
(0.0133745 0.00366129 0.002895) 14366
(0.00641125 0.0035963 0.00319843) 14412
(0.0119138 0.00360764 0.00319242) 14423
(0.0124909 0.00362187 0.00319279) 14424
(0.0130304 0.00362999 0.00319195) 14426
(0.0135322 0.00363151 0.00319071) 14427
(0.0139969 0.0036274 0.0031906) 14427
(0.0144313 0.00361915 0.00319153) 14428
(0.0062397 0.00373474 0.00358079) 14532
(0.0062397 0.00373474 0.00358079) 14532
(0.0062397 0.00373474 0.00358079) 14532
(0.00685297 0.00370467 0.00352628) 14473
(0.00748396 0.00367459 0.00348955) 14474
(0.00802454 0.00364809 0.00347359) 14476
(0.00846567 0.00362919 0.00346967) 14476
(0.00885396 0.00361437 0.00347115) 14477
(0.00583155 0.00387898 0.00380839) 14591
(0.0063236 0.00381483 0.00376695) 14532
(0.00707994 0.00376583 0.00372017) 14534
(0.00781864 0.00373804 0.00370384) 14535
(0.00838961 0.00372685 0.00370443) 14536
(0.00886791 0.00371999 0.00370763) 14537
(0.00675779 0.00401379 0.00398087) 14593
(0.00725521 0.00395514 0.00394786) 14594
(0.00633438 0.00473693 0.00439401) 14772
(0.00676273 0.0047241 0.00440163) 14773
(0.0074603 0.00501178 0.00443915) 14834
(0.00781819 0.00500576 0.00445187) 14835
(0.00821867 0.00499914 0.00445801) 14836
(0.00698456 0.00528272 0.00439158) 14893
(0.0073477 0.00528689 0.00440304) 14894
(0.00769175 0.00529177 0.0044154) 14895
(0.00649287 0.00635855 0.00339819) 15192
(0.0068683 0.00637197 0.00339598) 15193
(0.00718191 0.00638731 0.00340349) 15194
(0.00663753 0.00642634 0.00311553) 15253
(0.00663753 0.00642634 0.00311553) 15253
(0.00663753 0.00642634 0.00311553) 15253
(0.0071123 0.00643287 0.00311548) 15254
(0.00755381 0.00643986 0.00311971) 15255
(0.00798621 0.00644538 0.00312692) 15255
(0.00845215 0.00644589 0.00313095) 15256
(0.00895618 0.00644225 0.00313225) 15257
(0.00077084 0.00645449 0.00285844) 13501
(0.00141427 0.00647566 0.0029081) 13502
(0.00378732 0.00638018 0.00274715) 13567
(0.00424757 0.00634992 0.00259773) 13568
(0.00468373 0.00633651 0.0026875) 13569
(0.00581208 0.00577957 0.00186688) 13751
(0.00563736 0.00556773 0.0017299) 13811
(0.00484718 0.00438558 0.0016025) 5709
(0.00539709 0.00445901 0.00169089) 14050
(0.00596664 0.00441748 0.00169927) 14051
(0.00506555 0.00423922 0.00186036) 14110
(0.00513102 0.00418725 0.00180903) 14110
(0.00524854 0.00419267 0.00175085) 14110
(0.00588177 0.00420423 0.00182018) 14111
(0.00411403 0.0037085 0.00350412) 14468
(0.00521535 0.00358121 0.0032682) 14410
(0.00542061 0.00380566 0.00343738) 15910
(0.00569258 0.0037819 0.00357264) 14531
(0.00489172 0.00375791 0.0035122) 14469
(0.00494619 0.00373537 0.00366713) 14529
(0.00514618 0.00384703 0.00364166) 14530
(0.00482693 0.00506521 0.00437924) 14829
(0.00491142 0.00503765 0.00443484) 14829
(0.00579584 0.00499943 0.00441487) 14831
(0.00499482 0.00529955 0.00433246) 14889
(0.000928655 0.00649271 0.00309544) 4561
(0.00334085 0.00646421 0.00284935) 13506
(0.00408211 0.00639268 0.00278161) 13508
(0.00521373 0.00644646 0.00312307) 15250
(0.00601253 0.00641193 0.00315006) 15252
(0.0198288 0.00301468 0.00217944) 519
(0.0203816 0.00689551 0.00363252) 2020
(0.02189 0.00700638 0.00352596) 23503
(0.0119305 0.0065045 0.00419095) 6683
(0.013081 0.00645661 0.00415478) 6686
(0.0139429 0.0064285 0.00414265) 6687
(0.0146421 0.00641158 0.00413575) 6689
(0.0152299 0.006403 0.00412989) 6690
(0.0157505 0.00639989 0.00412477) 6691
(0.0162425 0.00640062 0.00412005) 6692
(0.0167387 0.00640003 0.00411722) 6693
(0.0172546 0.00639627 0.00411519) 6694
(0.0177749 0.00639021 0.004112) 6695
(0.0208245 0.00647483 0.00200088) 13421
(0.0234008 0.0065357 0.00220158) 6106
(0.0245085 0.0066615 0.00224268) 6109
(0.0205631 0.00664554 0.00418991) 6641
(0.022979 0.00669453 0.00411415) 1965
(0.0205361 0.0063485 0.00116848) 12461
(0.0198225 0.00360356 0.00462574) 7179
(0.0215924 0.00361767 0.00463797) 7183
(0.0226039 0.00367574 0.00472837) 10545
(0.0198005 0.00338507 0.00161162) 399
(0.021871 0.00335584 0.00169114) 463
(0.0205152 0.00611586 0.00476213) 12221
(0.0202364 0.00582669 0.00504054) 12580
(0.0202364 0.00582669 0.00504054) 12580
(0.0202364 0.00582669 0.00504054) 12580
(0.0221935 0.00583571 0.00500916) 12584
(0.0221935 0.00583571 0.00500916) 12584
(0.0221935 0.00583571 0.00500916) 12584
(0.0232666 0.0059099 0.00499006) 12586
(0.0201577 0.00398272 0.00486593) 10540
(0.0218288 0.00399919 0.00491053) 10543
(0.0201279 0.00378172 0.00140314) 12760
(0.0229939 0.00376605 0.00141559) 12765
(0.0205029 0.00416428 0.00125956) 11501
(0.0232952 0.00408689 0.00123882) 11506
(0.0203872 0.0045031 0.00111262) 11560
(0.0202473 0.00482048 0.000950585) 11620
(0.0221098 0.00474336 0.000953922) 11624
(0.0197208 0.00564079 0.000982795) 12159
(0.0195602 0.00597865 0.0010326) 12279
(0.0212126 0.00599671 0.0010434) 12282
(0.0202973 0.00535419 0.000856202) 12100
(0.022304 0.00529275 0.00086483) 10124
(0.0198558 0.0052477 0.00521391) 11079
(0.0214894 0.00524249 0.00519163) 11442
(0.0225567 0.00531425 0.00520391) 11445
(0.0203182 0.00382628 0.00115456) 13000
(0.0216684 0.00304495 0.00319865) 763
(0.0216684 0.00304495 0.00319865) 763
(0.0216684 0.00304495 0.00319865) 763
(0.0245752 0.00301912 0.00316947) 769
(0.0251138 0.00296728 0.00316811) 34272
(0.019768 0.0067518 0.00167109) 2499
(0.0221129 0.00669241 0.00174333) 2504
(0.0235826 0.00669193 0.00173095) 2507
(0.0229239 0.00624424 0.0017182) 13485
(0.00644949 0.00643932 0.00288514) 13512
(0.00644949 0.00643932 0.00288514) 13512
(0.00644949 0.00643932 0.00288514) 13512
(0.00698643 0.00644205 0.00287877) 13513
(0.00749502 0.00644332 0.00287223) 13514
(0.00795127 0.00644639 0.00286583) 13515
(0.00839235 0.00644928 0.00286407) 13516
(0.00885776 0.0064498 0.00286758) 13517
(0.00640179 0.00635407 0.00258608) 13572
(0.0127867 0.00619449 0.00236709) 13645
(0.0182449 0.00622917 0.00235725) 13656
(0.0187711 0.00622481 0.0023617) 13657
(0.01928 0.00621789 0.00236327) 13658
(0.0198026 0.00620786 0.00236224) 13659
(0.0203479 0.00619471 0.00235685) 13660
(0.0208849 0.00618233 0.00234622) 13661
(0.0213895 0.00617427 0.00233353) 13662
(0.00647188 0.0058302 0.00187947) 13752
(0.00736383 0.00584053 0.00186434) 13754
(0.00642639 0.00559051 0.00172339) 13812
(0.00635542 0.00467087 0.00162052) 13992
(0.00673101 0.00466455 0.00161277) 13993
(0.00660829 0.00440599 0.00169837) 14053
(0.00660829 0.00440599 0.00169837) 14053
(0.00660829 0.00440599 0.00169837) 14053
(0.00703807 0.00440038 0.00169451) 14054
(0.00740164 0.00439234 0.00168541) 14054
(0.00778546 0.00438632 0.00167769) 14055
(0.00822467 0.00438493 0.00167585) 14056
(0.00868516 0.00438611 0.00167684) 14057
(0.0066434 0.00417703 0.00183078) 14113
(0.0066434 0.00417703 0.00183078) 14113
(0.0066434 0.00417703 0.00183078) 14113
(0.00783931 0.00414755 0.00181338) 14115
(0.00825678 0.00414544 0.00181107) 14116
(0.00871321 0.00414864 0.00181023) 14117
(0.00727734 0.00395469 0.00203303) 14174
(0.0122808 0.00364708 0.00289513) 14364
(0.0128476 0.00365899 0.00289624) 14365
(0.0133542 0.00366134 0.00289507) 14366
(0.00639109 0.00359599 0.00319867) 14412
(0.0118891 0.00360709 0.00319241) 14423
(0.0124663 0.00362134 0.0031928) 14424
(0.0130076 0.00362974 0.00319206) 14426
(0.0135108 0.00363151 0.00319078) 14427
(0.013977 0.00362763 0.00319066) 14427
(0.0144121 0.00361951 0.00319148) 14428
(0.00621596 0.00373611 0.00358313) 14532
(0.00621596 0.00373611 0.00358313) 14532
(0.00621596 0.00373611 0.00358313) 14532
(0.00682469 0.00370593 0.00352884) 14473
(0.00745628 0.00367591 0.00349093) 14474
(0.00800087 0.00364908 0.00347414) 14476
(0.00844517 0.00362987 0.00346976) 14476
(0.00883329 0.00361488 0.00347122) 14477
(0.00581687 0.00388049 0.00380783) 14591
(0.00629782 0.0038169 0.00376901) 14532
(0.00704338 0.00376779 0.0037221) 14534
(0.00778689 0.00373888 0.00370432) 14535
(0.00836391 0.00372726 0.00370457) 14536
(0.00884434 0.00372019 0.00370753) 14537
(0.00673307 0.00401681 0.00398217) 14593
(0.00723076 0.0039571 0.00394904) 14594
(0.00631245 0.0047375 0.00439385) 14772
(0.00673993 0.00472433 0.00440166) 14773
(0.0074397 0.00501195 0.00443887) 14834
(0.00779703 0.00500609 0.00445165) 14835
(0.00819529 0.00499946 0.00445811) 14836
(0.00696331 0.00528278 0.00439146) 14893
(0.00732828 0.00528667 0.00440276) 14894
(0.00767094 0.00529174 0.00441514) 14895
(0.00647128 0.00635845 0.00339876) 15192
(0.00684865 0.00637167 0.00339603) 15193
(0.00716202 0.00638705 0.00340302) 15194
(0.00661406 0.00642635 0.00311631) 15253
(0.00661406 0.00642635 0.00311631) 15253
(0.00661406 0.00642635 0.00311631) 15253
(0.00708937 0.00643276 0.00311563) 15254
(0.00753099 0.00643969 0.0031196) 15255
(0.00796273 0.00644536 0.00312667) 15255
(0.00842665 0.00644612 0.0031309) 15256
(0.00893031 0.00644256 0.00313223) 15257
(0.00125435 0.00645248 0.00285604) 13502
(0.00113489 0.00647409 0.00290868) 13502
(0.00377849 0.00638031 0.00274906) 13567
(0.00421758 0.00635532 0.00261703) 13568
(0.00466812 0.0063381 0.00268176) 13569
(0.00578516 0.00578221 0.0018656) 13751
(0.00561899 0.00556716 0.00172648) 13811
(0.00466851 0.0043756 0.00160953) 5709
(0.00540951 0.00445804 0.00169861) 14050
(0.00594998 0.00441838 0.00169965) 14051
(0.00506225 0.00424548 0.00186585) 14110
(0.00513269 0.00419143 0.00181359) 14110
(0.00525658 0.0041951 0.00175613) 14110
(0.00586219 0.00420499 0.0018199) 14111
(0.00332846 0.0036393 0.00349518) 14466
(0.00521942 0.00357155 0.00326703) 14410
(0.00541996 0.00379759 0.00343007) 15910
(0.00568729 0.00379237 0.00356918) 14531
(0.00488204 0.00374796 0.00350335) 14469
(0.00493631 0.00374415 0.00366968) 14529
(0.00513111 0.00384087 0.0036438) 14530
(0.00482133 0.00506426 0.0043772) 14829
(0.00492923 0.00504375 0.0044314) 14829
(0.0057717 0.00500192 0.00441643) 14831
(0.0049658 0.00529949 0.00433371) 14889
(0.00146836 0.00649505 0.00308637) 4562
(0.00325829 0.00647002 0.00285918) 13506
(0.00409035 0.00639246 0.00277782) 13508
(0.00395206 0.00642965 0.00286517) 13507
(0.00517991 0.00644983 0.00311527) 15250
(0.00599111 0.00641196 0.00315054) 15251
(0.0197837 0.0030157 0.00217678) 519
(0.0203305 0.00689214 0.00363773) 2020
(0.0218525 0.00700084 0.00353024) 23503
(0.0118854 0.00650674 0.0041931) 6683
(0.0130498 0.00645769 0.00415534) 6686
(0.0139195 0.00642916 0.00414252) 6687
(0.014623 0.00641179 0.00413566) 6689
(0.0152137 0.00640299 0.00412971) 6690
(0.0157355 0.00639972 0.00412465) 6691
(0.0162276 0.00640038 0.00411997) 6692
(0.016723 0.0063999 0.00411698) 6693
(0.0172379 0.0063963 0.00411497) 6694
(0.0177587 0.00639023 0.00411177) 6695
(0.0233544 0.0065271 0.00219451) 6106
(0.0244681 0.00665918 0.00224461) 6108
(0.0204716 0.00664439 0.00419528) 6640
(0.0229118 0.00669083 0.00411613) 1965
(0.0205092 0.00635206 0.00117126) 12461
(0.0197629 0.00360255 0.00462595) 7179
(0.0215465 0.00361642 0.00463526) 7183
(0.0225982 0.00366975 0.00472107) 10545
(0.0197384 0.00338847 0.00160547) 399
(0.0218143 0.00335826 0.00168951) 463
(0.0204482 0.0061143 0.00476434) 12220
(0.020166 0.00582619 0.00504262) 12580
(0.020166 0.00582619 0.00504262) 12580
(0.020166 0.00582619 0.00504262) 12580
(0.0221411 0.00583354 0.00500933) 12584
(0.0221411 0.00583354 0.00500933) 12584
(0.0221411 0.00583354 0.00500933) 12584
(0.0232541 0.00590352 0.00499198) 12586
(0.0201055 0.00398064 0.00486357) 10540
(0.0217829 0.00399852 0.00490732) 10543
(0.0200283 0.00378267 0.00140022) 12760
(0.022911 0.0037671 0.00141686) 12765
(0.020402 0.00416814 0.00125825) 11500
(0.0232061 0.00408871 0.00124111) 11506
(0.0203208 0.00450771 0.00111049) 11560
(0.0201815 0.00482405 0.000949508) 11620
(0.0220574 0.00474767 0.00095523) 11624
(0.0196706 0.00564411 0.000984651) 12159
(0.0195156 0.00597872 0.00103275) 12279
(0.0211655 0.00599706 0.00104491) 12282
(0.0202298 0.00535893 0.000856149) 12100
(0.0222518 0.00529491 0.000866922) 10124
(0.0198016 0.00524753 0.00521535) 11079
(0.0214444 0.00524134 0.00519117) 11442
(0.022544 0.00530698 0.0052028) 11445
(0.0202804 0.00383037 0.00115303) 13000
(0.0215377 0.00304357 0.00319742) 763
(0.0215377 0.00304357 0.00319742) 763
(0.0215377 0.00304357 0.00319742) 763
(0.024529 0.00302126 0.00317053) 769
(0.0251094 0.00296988 0.00316561) 34272
(0.0197082 0.00675494 0.00166953) 2499
(0.0220433 0.0066931 0.00174309) 2504
(0.0235576 0.00669292 0.00173492) 2507
(0.0228883 0.00623893 0.00171537) 13485
(0.0064255 0.00643922 0.0028854) 13512
(0.0064255 0.00643922 0.0028854) 13512
(0.0064255 0.00643922 0.0028854) 13512
(0.0069612 0.00644207 0.00287914) 13513
(0.00747048 0.00644331 0.00287253) 13514
(0.00792782 0.00644638 0.00286604) 13515
(0.00836874 0.00644932 0.00286403) 13516
(0.00883302 0.00644996 0.00286736) 13517
(0.00637709 0.00635387 0.00258458) 13572
(0.0127637 0.0061948 0.00236699) 13645
(0.0182205 0.00622942 0.00235714) 13656
(0.0187483 0.00622507 0.00236158) 13657
(0.0192576 0.0062183 0.00236333) 13658
(0.0197793 0.00620845 0.00236244) 13659
(0.0203239 0.00619538 0.00235729) 13660
(0.0208619 0.00618288 0.00234686) 13661
(0.0213677 0.00617465 0.0023342) 13662
(0.00644836 0.00583002 0.00187921) 13752
(0.00734379 0.00584023 0.00186451) 13754
(0.00640317 0.00559043 0.00172319) 13812
(0.00633257 0.00467111 0.00162041) 13992
(0.00671001 0.00466463 0.0016128) 13993
(0.00658574 0.0044062 0.00169817) 14053
(0.00658574 0.0044062 0.00169817) 14053
(0.00658574 0.0044062 0.00169817) 14053
(0.00701661 0.00440061 0.00169448) 14054
(0.00738094 0.00439273 0.00168555) 14054
(0.00776315 0.00438646 0.00167778) 14055
(0.00820072 0.00438487 0.00167574) 14056
(0.00866114 0.00438609 0.00167664) 14057
(0.00662032 0.00417726 0.0018307) 14113
(0.00662032 0.00417726 0.0018307) 14113
(0.00662032 0.00417726 0.0018307) 14113
(0.0078179 0.00414778 0.00181346) 14115
(0.0082337 0.00414535 0.00181105) 14116
(0.00868902 0.0041483 0.00181021) 14117
(0.00725747 0.00395521 0.00203298) 14174
(0.0122557 0.00364641 0.00289503) 14364
(0.0128246 0.00365861 0.00289624) 14365
(0.0133338 0.00366138 0.00289513) 14366
(0.00637107 0.00359566 0.00319889) 14412
(0.00685284 0.00359232 0.00319848) 14413
(0.0118645 0.00360654 0.00319238) 14423
(0.0124416 0.00362079 0.00319281) 14424
(0.0129848 0.00362949 0.00319216) 14425
(0.0134893 0.00363149 0.00319086) 14426
(0.013957 0.00362785 0.0031907) 14427
(0.0143928 0.00361988 0.00319145) 14428
(0.00619252 0.00373756 0.00358529) 14532
(0.00619252 0.00373756 0.00358529) 14532
(0.00619252 0.00373756 0.00358529) 14532
(0.00679649 0.00370711 0.00353129) 14473
(0.0074285 0.00367723 0.00349236) 14474
(0.00797706 0.00365008 0.00347472) 14475
(0.0084246 0.00363057 0.00346986) 14476
(0.00881274 0.00361541 0.00347129) 14477
(0.00580211 0.00388183 0.00380717) 14591
(0.00627268 0.00381893 0.00377096) 14532
(0.00700706 0.00376978 0.00372409) 14534
(0.00775488 0.00373977 0.00370484) 14535
(0.00833802 0.00372768 0.00370471) 14536
(0.00882078 0.0037204 0.00370743) 14537
(0.00670839 0.00401981 0.0039834) 14593
(0.00720638 0.00395912 0.00395022) 14594
(0.00629061 0.00473809 0.00439366) 14772
(0.00671726 0.00472459 0.00440168) 14773
(0.00741909 0.00501212 0.00443859) 14834
(0.00777598 0.00500642 0.00445143) 14835
(0.00817205 0.00499979 0.0044582) 14836
(0.00694197 0.00528285 0.00439133) 14893
(0.0073089 0.00528643 0.00440248) 14894
(0.00765026 0.00529171 0.00441487) 14895
(0.00644969 0.00635835 0.00339934) 15192
(0.00682899 0.00637138 0.00339611) 15193
(0.00714228 0.00638678 0.00340257) 15194
(0.00659064 0.00642636 0.00311711) 15253
(0.00659064 0.00642636 0.00311711) 15253
(0.00659064 0.00642636 0.00311711) 15253
(0.00706645 0.00643266 0.0031158) 15254
(0.00750821 0.00643952 0.00311951) 15255
(0.00793934 0.00644533 0.00312642) 15255
(0.00840123 0.00644634 0.00313084) 15256
(0.00890437 0.00644287 0.00313221) 15257
(0.00167472 0.0064437 0.00284801) 13503
(0.000855732 0.00647173 0.0029071) 13501
(0.00375522 0.00638113 0.00275363) 13507
(0.00415659 0.00636289 0.00265316) 13568
(0.00465194 0.00633998 0.00267553) 13569
(0.00575813 0.00578487 0.00186448) 13751
(0.00560129 0.00556671 0.00172379) 13811
(0.00443184 0.00437294 0.00162239) 5708
(0.00542435 0.0044566 0.00170767) 14050
(0.0059335 0.00441946 0.00169998) 14051
(0.00505775 0.00425171 0.00187182) 14110
(0.0051345 0.00419601 0.00181791) 14110
(0.00525366 0.00419586 0.00176017) 14110
(0.00584291 0.00420583 0.00181957) 14111
(0.00196969 0.00357056 0.00347324) 5343
(0.00522532 0.00356481 0.00326718) 14410
(0.0054143 0.00379993 0.00342283) 15910
(0.00568348 0.00380196 0.00356508) 14531
(0.00486081 0.00373901 0.00349813) 14469
(0.00492583 0.00375453 0.00367183) 14529
(0.00511672 0.00383485 0.00364593) 14530
(0.00481781 0.00506348 0.00437462) 14829
(0.00494505 0.00504877 0.00442797) 14829
(0.00574787 0.00500429 0.00441771) 14831
(0.00493968 0.00529928 0.00433426) 14889
(0.00194506 0.00648851 0.00307494) 15243
(0.00317235 0.00647579 0.00286893) 13506
(0.00409811 0.00639215 0.0027742) 13508
(0.00410364 0.0064222 0.00284208) 13508
(0.00514323 0.00645363 0.00310586) 15250
(0.00596983 0.00641197 0.00315102) 15251
(0.0197381 0.00301652 0.00217412) 519
(0.0202792 0.00688892 0.00364291) 2020
(0.0218135 0.0069953 0.00353452) 2023
(0.0118391 0.00650909 0.00419539) 6683
(0.0130182 0.00645882 0.00415591) 6686
(0.0138959 0.00642985 0.0041424) 6687
(0.0146037 0.00641201 0.00413559) 6689
(0.0151975 0.00640298 0.00412954) 6690
(0.0157205 0.00639956 0.00412454) 6691
(0.0162127 0.00640015 0.00411989) 6692
(0.0167074 0.00639977 0.00411675) 6693
(0.0172212 0.00639634 0.00411475) 6694
(0.0177425 0.00639026 0.00411155) 6695
(0.0233075 0.0065183 0.00218713) 13426
(0.0244255 0.00665688 0.00224635) 6108
(0.020382 0.0066432 0.00420102) 6640
(0.0228429 0.00668705 0.00411827) 1965
(0.0204815 0.00635542 0.00117385) 12460
(0.0197015 0.00360123 0.00462633) 7179
(0.0214987 0.00361527 0.00463274) 7182
(0.0225908 0.00366417 0.00471407) 10545
(0.0196782 0.00339194 0.00159908) 399
(0.021756 0.00336056 0.00168789) 463
(0.0203825 0.00611273 0.0047667) 12220
(0.0200967 0.00582567 0.00504473) 12580
(0.0200967 0.00582567 0.00504473) 12580
(0.0200967 0.00582567 0.00504473) 12580
(0.0220869 0.00583152 0.0050095) 12584
(0.0220869 0.00583152 0.0050095) 12584
(0.0220869 0.00583152 0.0050095) 12584
(0.02324 0.00589746 0.00499367) 12586
(0.0200534 0.00397859 0.00486127) 10540
(0.0217355 0.00399787 0.0049042) 10543
(0.0199333 0.0037835 0.0013972) 12759
(0.0228263 0.00376823 0.00141807) 12765
(0.020303 0.00417202 0.00125681) 11500
(0.0231156 0.00409072 0.00124338) 11506
(0.0202548 0.00451241 0.00110817) 11560
(0.0201166 0.00482783 0.000948371) 11620
(0.0220035 0.0047519 0.000956496) 11624
(0.019621 0.00564746 0.000986557) 12159
(0.0194723 0.00597879 0.00103295) 12278
(0.0211173 0.00599727 0.00104627) 12282
(0.0201629 0.00536374 0.00085611) 12100
(0.0221973 0.00529701 0.000868856) 10124
(0.0197485 0.00524721 0.00521683) 11079
(0.0213983 0.00524038 0.00519076) 11442
(0.0225296 0.00530016 0.00520166) 11445
(0.0202427 0.00383443 0.00115148) 13000
(0.0213999 0.00304181 0.00319598) 762
(0.0213999 0.00304181 0.00319598) 762
(0.0213999 0.00304181 0.00319598) 762
(0.024477 0.00302333 0.00317155) 768
(0.0251039 0.0029726 0.00316332) 34272
(0.0196488 0.00675789 0.00166799) 2499
(0.0219727 0.00669389 0.00174275) 2503
(0.0235303 0.00669371 0.00173858) 2507
(0.0228481 0.00623346 0.00171213) 13485
(0.0234328 0.00633398 0.00170925) 13486
(0.00640161 0.00643911 0.00288563) 13512
(0.00640161 0.00643911 0.00288563) 13512
(0.00640161 0.00643911 0.00288563) 13512
(0.00693604 0.00644209 0.00287953) 13513
(0.00744594 0.00644331 0.00287286) 13514
(0.00790438 0.00644637 0.00286625) 13515
(0.00834517 0.00644936 0.002864) 13516
(0.00880831 0.00645013 0.00286713) 13517
(0.00635236 0.00635364 0.00258304) 13572
(0.0127405 0.00619512 0.00236689) 13645
(0.0181961 0.00622967 0.00235703) 13656
(0.0187254 0.00622531 0.00236145) 13657
(0.0192352 0.00621872 0.00236339) 13658
(0.019756 0.00620903 0.00236264) 13659
(0.0202998 0.00619604 0.00235771) 13660
(0.0208389 0.00618343 0.00234749) 13661
(0.0213459 0.00617503 0.00233488) 13662
(0.00642486 0.00582986 0.00187896) 13752
(0.00732374 0.00583992 0.00186467) 13754
(0.00637995 0.0055903 0.00172295) 13812
(0.00630956 0.00467134 0.00162031) 13992
(0.00668892 0.00466473 0.00161281) 13993
(0.00656316 0.00440643 0.00169796) 14053
(0.00656316 0.00440643 0.00169796) 14053
(0.00656316 0.00440643 0.00169796) 14053
(0.00699511 0.00440084 0.00169444) 14053
(0.00736027 0.00439312 0.00168568) 14054
(0.00774097 0.0043866 0.00167788) 14055
(0.00817685 0.00438482 0.00167564) 14056
(0.00863711 0.00438607 0.00167644) 14057
(0.00659725 0.0041775 0.0018306) 14113
(0.00659725 0.0041775 0.0018306) 14113
(0.00659725 0.0041775 0.0018306) 14113
(0.00779659 0.00414802 0.00181353) 14115
(0.00821072 0.00414526 0.00181103) 14116
(0.00866488 0.00414795 0.00181019) 14117
(0.00723756 0.00395573 0.00203294) 14174
(0.0122307 0.00364573 0.00289493) 14364
(0.0128015 0.00365822 0.00289623) 14365
(0.0133132 0.0036614 0.00289519) 14366
(0.0063512 0.0035953 0.00319907) 14412
(0.00683151 0.00359228 0.0031989) 14413
(0.0118399 0.003606 0.00319235) 14423
(0.0124169 0.00362024 0.00319283) 14424
(0.0129619 0.00362922 0.00319226) 14425
(0.0134677 0.00363147 0.00319094) 14426
(0.013937 0.00362806 0.00319076) 14427
(0.0143736 0.00362023 0.00319141) 14428
(0.0061688 0.00373902 0.00358737) 14532
(0.0061688 0.00373902 0.00358737) 14532
(0.0061688 0.00373902 0.00358737) 14532
(0.00676851 0.00370829 0.00353373) 14473
(0.00740061 0.00367856 0.00349383) 14474
(0.00795309 0.0036511 0.00347532) 14475
(0.00840393 0.00363127 0.00346998) 14476
(0.0087923 0.00361595 0.00347135) 14477
(0.00578733 0.003883 0.00380644) 14591
(0.00624814 0.0038209 0.0037728) 14532
(0.00697097 0.00377179 0.00372614) 14533
(0.00772258 0.00374069 0.0037054) 14535
(0.00831194 0.00372811 0.00370486) 14536
(0.0087972 0.00372062 0.00370734) 14537
(0.00668375 0.00402276 0.00398454) 14593
(0.00718205 0.00396118 0.00395141) 14594
(0.00626886 0.00473869 0.00439345) 14772
(0.00669471 0.00472488 0.00440169) 14773
(0.00739846 0.00501227 0.00443833) 14834
(0.00775504 0.00500674 0.00445118) 14835
(0.00814894 0.00500011 0.00445826) 14836
(0.00692052 0.00528295 0.00439121) 14893
(0.00728956 0.00528616 0.00440222) 14894
(0.00762972 0.00529166 0.00441459) 14895
(0.0064281 0.00635824 0.00339992) 15192
(0.00680932 0.00637109 0.00339623) 15193
(0.00712266 0.0063865 0.00340213) 15194
(0.00656727 0.00642636 0.00311795) 15253
(0.00656727 0.00642636 0.00311795) 15253
(0.00656727 0.00642636 0.00311795) 15253
(0.00704353 0.00643255 0.00311598) 15254
(0.00748548 0.00643935 0.00311941) 15254
(0.00791602 0.00644529 0.00312619) 15255
(0.00837589 0.00644655 0.00313078) 15256
(0.00887836 0.00644319 0.0031322) 15257
(0.00200604 0.00642906 0.00284424) 13504
(0.000601306 0.00646862 0.00290341) 13501
(0.00373134 0.0063821 0.00275835) 13507
(0.00410698 0.00636957 0.00267714) 13568
(0.004632 0.00634195 0.00266722) 13569
(0.00573142 0.00578749 0.00186355) 13751
(0.00558323 0.00556747 0.00172189) 13811
(0.00418379 0.00437249 0.00163461) 5708
(0.0054379 0.00445533 0.00171722) 14050
(0.00591714 0.00442066 0.00170029) 14051
(0.00505426 0.00425865 0.00187782) 14110
(0.00513646 0.00420101 0.00182189) 14110
(0.00526126 0.00419833 0.00176591) 14110
(0.00582387 0.00420678 0.00181915) 14111
(0.00523126 0.00351141 0.00324014) 5410
(0.00523155 0.00356181 0.00326826) 14410
(0.00540925 0.00380154 0.00341522) 15910
(0.00567198 0.00380317 0.00356416) 14531
(0.0048154 0.00372646 0.0035025) 14469
(0.00491552 0.00376619 0.00367342) 14529
(0.00510285 0.00382943 0.00364817) 14530
(0.00481238 0.00506261 0.00437231) 14829
(0.00497231 0.00505495 0.00442297) 14829
(0.0057243 0.00500651 0.00441874) 14831
(0.004914 0.00529883 0.0043348) 14889
(0.00227939 0.00647602 0.00305736) 15244
(0.00308734 0.00648131 0.00287797) 13506
(0.00413144 0.00639119 0.00276592) 13508
(0.00419165 0.00641831 0.00282655) 13508
(0.00510087 0.00645819 0.00309389) 15250
(0.00594873 0.00641193 0.00315151) 15251
(0.0196923 0.00301711 0.00217146) 519
(0.0202272 0.00688594 0.00364801) 2020
(0.0217734 0.00698977 0.0035388) 2023
(0.0117935 0.00651139 0.00419766) 6683
(0.0129863 0.00646 0.00415651) 6685
(0.013872 0.00643055 0.00414229) 6687
(0.0145843 0.00641223 0.00413553) 6689
(0.0151811 0.00640297 0.0041294) 6690
(0.0157055 0.0063994 0.00412442) 6691
(0.0161979 0.00639992 0.00411981) 6692
(0.0166918 0.00639963 0.00411653) 6693
(0.0172046 0.00639636 0.00411454) 6694
(0.0177262 0.00639028 0.00411135) 6695
(0.0232589 0.00650931 0.00217935) 13426
(0.0243816 0.00665451 0.00224796) 6108
(0.0202943 0.00664195 0.00420714) 6640
(0.0227724 0.0066832 0.00412058) 1965
(0.0204531 0.0063586 0.00117624) 12460
(0.0196378 0.00359941 0.00462682) 7179
(0.0214493 0.00361423 0.00463039) 7182
(0.0225813 0.00365898 0.00470738) 10545
(0.0196194 0.00339541 0.00159249) 399
(0.0216961 0.00336273 0.00168624) 463
(0.0203185 0.00611114 0.00476925) 12220
(0.0221097 0.0061553 0.00473184) 12224
(0.0200289 0.00582513 0.00504687) 12580
(0.0200289 0.00582513 0.00504687) 12580
(0.0200289 0.00582513 0.00504687) 12580
(0.0220308 0.00582964 0.00500969) 12584
(0.0220308 0.00582964 0.00500969) 12584
(0.0220308 0.00582964 0.00500969) 12584
(0.023224 0.00589172 0.00499517) 12586
(0.023224 0.00589172 0.00499517) 12586
(0.023224 0.00589172 0.00499517) 12586
(0.020001 0.00397657 0.00485902) 10540
(0.0216869 0.00399725 0.00490116) 10543
(0.0198437 0.00378428 0.00139405) 12759
(0.0227396 0.00376944 0.00141923) 12765
(0.0202059 0.00417573 0.00125519) 11500
(0.0230239 0.00409298 0.0012456) 11506
(0.0201885 0.004517 0.00110567) 11560
(0.0200524 0.00483181 0.000947172) 11620
(0.0219481 0.00475603 0.000957714) 11623
(0.0195718 0.00565085 0.000988522) 12159
(0.0194299 0.00597884 0.00103322) 12278
(0.0210681 0.00599735 0.0010475) 12282
(0.0200967 0.00536863 0.00085609) 12100
(0.0221405 0.00529905 0.000870635) 10124
(0.0196967 0.00524671 0.00521831) 11079
(0.0213513 0.00523958 0.00519041) 11442
(0.0225133 0.00529377 0.00520051) 11445
(0.0202051 0.00383849 0.00114988) 13000
(0.0212483 0.00303926 0.00319435) 762
(0.0212483 0.00303926 0.00319435) 762
(0.0212483 0.00303926 0.00319435) 762
(0.0244186 0.00302544 0.00317246) 768
(0.0250971 0.00297544 0.00316125) 34272
(0.0195899 0.00676062 0.00166643) 2499
(0.0219013 0.00669479 0.00174234) 2503
(0.0219013 0.00669479 0.00174234) 2503
(0.0219013 0.00669479 0.00174234) 2503
(0.0235006 0.00669433 0.00174193) 2507
(0.0228018 0.00622779 0.00170844) 13485
(0.0234117 0.00633234 0.00171249) 13486
(0.00637783 0.006439 0.00288583) 13512
(0.00637783 0.006439 0.00288583) 13512
(0.00637783 0.006439 0.00288583) 13512
(0.00691094 0.0064421 0.00287992) 13513
(0.00742138 0.00644331 0.0028732) 13514
(0.00788095 0.00644635 0.00286647) 13515
(0.00832167 0.00644939 0.00286398) 13516
(0.00878364 0.00645028 0.0028669) 13517
(0.00632767 0.00635339 0.00258145) 13572
(0.0127174 0.00619545 0.00236678) 13645
(0.0181716 0.00622992 0.00235692) 13656
(0.0187024 0.00622556 0.00236132) 13657
(0.0192128 0.00621912 0.00236344) 13658
(0.0197329 0.0062096 0.00236283) 13659
(0.0202758 0.00619671 0.00235813) 13660
(0.0208158 0.00618399 0.00234812) 13661
(0.0213241 0.00617543 0.00233556) 13662
(0.00640143 0.00582971 0.00187873) 13752
(0.00730368 0.00583961 0.00186482) 13754
(0.00635677 0.00559017 0.00172273) 13812
(0.0062864 0.00467155 0.00162021) 13992
(0.00666773 0.00466486 0.00161279) 13993
(0.00654056 0.00440667 0.00169775) 14053
(0.00654056 0.00440667 0.00169775) 14053
(0.00654056 0.00440667 0.00169775) 14053
(0.00697356 0.00440107 0.00169439) 14053
(0.00733962 0.0043935 0.00168582) 14054
(0.00771891 0.00438677 0.00167798) 14055
(0.00815307 0.00438478 0.00167555) 14056
(0.00861308 0.00438605 0.00167625) 14057
(0.0065742 0.00417777 0.0018305) 14113
(0.0065742 0.00417777 0.0018305) 14113
(0.0065742 0.00417777 0.0018305) 14113
(0.00777537 0.00414828 0.00181362) 14115
(0.00818784 0.00414519 0.00181102) 14116
(0.00864077 0.00414762 0.00181018) 14117
(0.00721759 0.00395623 0.0020329) 14174
(0.0122056 0.00364505 0.00289484) 14364
(0.0127783 0.00365781 0.00289622) 14365
(0.0132926 0.00366141 0.00289525) 14366
(0.0063314 0.00359493 0.00319918) 14412
(0.00681027 0.00359223 0.00319931) 14413
(0.0118154 0.00360547 0.00319231) 14423
(0.0123921 0.00361969 0.00319284) 14424
(0.012939 0.00362894 0.00319236) 14425
(0.0134461 0.00363143 0.00319102) 14426
(0.0139169 0.00362826 0.00319081) 14427
(0.0143544 0.00362058 0.00319138) 14428
(0.00614592 0.0037404 0.00358918) 14532
(0.00614592 0.0037404 0.00358918) 14532
(0.00614592 0.0037404 0.00358918) 14532
(0.00674081 0.00370945 0.00353616) 14473
(0.00737264 0.00367988 0.00349536) 14474
(0.00792896 0.00365214 0.00347596) 14475
(0.00838317 0.003632 0.00347013) 14476
(0.00877197 0.0036165 0.0034714) 14477
(0.00577259 0.003884 0.00380564) 14591
(0.00622424 0.00382282 0.00377453) 14532
(0.00693521 0.00377383 0.00372822) 14533
(0.00768999 0.00374166 0.00370601) 14535
(0.00828564 0.00372855 0.00370502) 14536
(0.00877361 0.00372085 0.00370727) 14537
(0.00665912 0.00402566 0.00398559) 14593
(0.00715778 0.00396328 0.00395261) 14594
(0.00624719 0.0047393 0.00439323) 14772
(0.0066723 0.0047252 0.00440171) 14773
(0.00737778 0.00501236 0.00443808) 14834
(0.00773422 0.00500708 0.00445093) 14835
(0.00812597 0.00500044 0.00445831) 14836
(0.00689898 0.00528303 0.0043911) 14893
(0.00727017 0.00528597 0.00440194) 14894
(0.00760932 0.00529156 0.00441431) 14895
(0.00640653 0.00635813 0.00340051) 15192
(0.00678961 0.0063708 0.00339639) 15193
(0.00710315 0.00638621 0.0034017) 15194
(0.00654396 0.00642637 0.00311881) 15253
(0.00654396 0.00642637 0.00311881) 15253
(0.00654396 0.00642637 0.00311881) 15253
(0.0070206 0.00643245 0.00311619) 15254
(0.00746277 0.00643917 0.00311933) 15254
(0.00789279 0.00644523 0.00312595) 15255
(0.00835064 0.00644674 0.00313072) 15256
(0.00885229 0.0064435 0.00313219) 15257
(0.00228356 0.00641258 0.00284513) 13504
(0.000381173 0.00646609 0.00289846) 13500
(0.00368569 0.00638494 0.00276655) 13507
(0.00406973 0.00637354 0.00268991) 13568
(0.00460043 0.00634302 0.00265537) 13569
(0.00570476 0.00578992 0.00186289) 13751
(0.00556444 0.00556783 0.00172055) 13811
(0.00382785 0.00437081 0.0016449) 5707
(0.00590093 0.00442189 0.00170065) 14051
(0.00505075 0.00426739 0.00188446) 14110
(0.00513493 0.00420545 0.00182516) 14110
(0.00525782 0.00419926 0.00176979) 14110
(0.00580521 0.00420771 0.00181878) 14111
(0.00521959 0.00350906 0.00323958) 5410
(0.00523663 0.00356281 0.00327023) 14410
(0.00540442 0.00380252 0.00340795) 15910
(0.00566167 0.00380441 0.00356293) 14531
(0.00477553 0.00371786 0.00350799) 14469
(0.00490797 0.00378017 0.00367519) 14529
(0.00508932 0.00382468 0.00365054) 14530
(0.00480693 0.00506171 0.00436982) 14829
(0.0049982 0.00506039 0.00441736) 14829
(0.00570104 0.00500862 0.00441954) 14831
(0.00488756 0.00529806 0.00433575) 14889
(0.00253953 0.00645893 0.00303082) 15245
(0.00306202 0.00648224 0.00288065) 13506
(0.00417539 0.00638942 0.00275567) 13508
(0.00422344 0.00641567 0.00281729) 13508
(0.00505114 0.00646368 0.00307809) 15250
(0.00592774 0.00641184 0.00315201) 15251
(0.019646 0.00301746 0.00216877) 519
(0.0201739 0.0068833 0.00365295) 2020
(0.0217318 0.00698425 0.00354309) 2023
(0.0117471 0.00651377 0.00420004) 6683
(0.012954 0.00646119 0.00415714) 6685
(0.0138478 0.00643127 0.0041422) 6687
(0.0145646 0.00641247 0.00413549) 6689
(0.0151646 0.00640297 0.00412926) 6690
(0.0156906 0.00639925 0.00412431) 6691
(0.0161831 0.00639969 0.00411973) 6692
(0.0166763 0.00639949 0.00411631) 6693
(0.0171879 0.00639637 0.00411434) 6694
(0.0177099 0.00639029 0.00411115) 6695
(0.0232091 0.00650012 0.00217104) 13426
(0.0243365 0.00665206 0.00224939) 6108
(0.0202079 0.00664057 0.00421369) 6640
(0.0227 0.0066793 0.00412305) 1965
(0.0204242 0.00636161 0.00117845) 12460
(0.0195718 0.00359691 0.00462723) 7179
(0.0213981 0.00361328 0.00462823) 7182
(0.02257 0.00365417 0.00470097) 7185
(0.0195616 0.00339874 0.00158584) 399
(0.0216344 0.00336478 0.00168453) 463
(0.020256 0.0061095 0.004772) 12220
(0.0220631 0.00615183 0.00473257) 12224
(0.0199626 0.00582461 0.00504902) 12579
(0.0199626 0.00582461 0.00504902) 12579
(0.0199626 0.00582461 0.00504902) 12579
(0.021973 0.00582787 0.00500991) 12583
(0.021973 0.00582787 0.00500991) 12583
(0.021973 0.00582787 0.00500991) 12583
(0.0232061 0.00588627 0.00499648) 12586
(0.0232061 0.00588627 0.00499648) 12586
(0.0232061 0.00588627 0.00499648) 12586
(0.0199477 0.00397458 0.00485683) 10539
(0.021637 0.00399663 0.00489822) 10543
(0.0197597 0.00378501 0.00139082) 12759
(0.0226512 0.0037707 0.00142032) 12765
(0.0201106 0.00417887 0.00125333) 11500
(0.022931 0.00409548 0.00124777) 11505
(0.0201217 0.00452133 0.00110299) 11560
(0.0199887 0.00483582 0.000945934) 11619
(0.0218914 0.0047601 0.000958874) 11623
(0.0195231 0.00565428 0.000990567) 12159
(0.0193883 0.00597885 0.00103356) 12278
(0.0210182 0.00599732 0.00104858) 12282
(0.0200297 0.00537353 0.000856014) 12100
(0.0220815 0.00530105 0.000872265) 10124
(0.0231377 0.00523136 0.000822137) 11926
(0.0196465 0.00524599 0.00521977) 11079
(0.0213034 0.00523894 0.00519013) 11442
(0.0224952 0.00528779 0.00519935) 11444
(0.0201678 0.00384257 0.00114824) 13000
(0.0210795 0.00303565 0.0031925) 762
(0.0210795 0.00303565 0.0031925) 762
(0.0210795 0.00303565 0.0031925) 762
(0.0243528 0.00302775 0.00317326) 768
(0.0250894 0.00297839 0.00315938) 34272
(0.0195314 0.00676318 0.00166486) 2499
(0.0218289 0.00669577 0.00174178) 2503
(0.0218289 0.00669577 0.00174178) 2503
(0.0218289 0.00669577 0.00174178) 2503
(0.0234685 0.00669482 0.00174501) 2506
(0.0239636 0.00662141 0.00163047) 2507
(0.0227497 0.00622188 0.00170431) 13485
(0.0233901 0.00633047 0.00171548) 13486
(0.00635414 0.00643889 0.002886) 13512
(0.00635414 0.00643889 0.002886) 13512
(0.00635414 0.00643889 0.002886) 13512
(0.00688591 0.00644211 0.0028803) 13513
(0.0073968 0.00644331 0.00287353) 13514
(0.00785752 0.00644633 0.00286672) 13515
(0.00829822 0.00644941 0.00286398) 13516
(0.00875898 0.00645043 0.00286668) 13517
(0.00630306 0.00635313 0.00257983) 13572
(0.0126942 0.0061958 0.00236667) 13645
(0.0132165 0.00619357 0.00236805) 13646
(0.0181471 0.00623017 0.00235681) 13656
(0.0186794 0.00622581 0.00236119) 13657
(0.0191904 0.00621952 0.00236349) 13658
(0.0197097 0.00621016 0.00236301) 13659
(0.0202517 0.00619738 0.00235853) 13660
(0.0207927 0.00618457 0.00234874) 13661
(0.0213021 0.00617583 0.00233623) 13662
(0.00637803 0.0058296 0.00187852) 13752
(0.0072836 0.00583928 0.00186495) 13754
(0.00633359 0.0055901 0.00172253) 13812
(0.0062631 0.0046717 0.00162014) 13992
(0.00664647 0.00466499 0.00161278) 13993
(0.00651796 0.00440693 0.00169753) 14053
(0.00651796 0.00440693 0.00169753) 14053
(0.00651796 0.00440693 0.00169753) 14053
(0.00695197 0.00440131 0.00169432) 14053
(0.007319 0.00439387 0.00168595) 14054
(0.00769697 0.00438695 0.00167809) 14055
(0.00812937 0.00438475 0.00167547) 14056
(0.00858904 0.00438602 0.00167606) 14057
(0.00655116 0.00417806 0.00183037) 14113
(0.00655116 0.00417806 0.00183037) 14113
(0.00655116 0.00417806 0.00183037) 14113
(0.00775423 0.00414855 0.0018137) 14115
(0.00816506 0.00414513 0.00181102) 14116
(0.00861671 0.00414731 0.00181016) 14117
(0.00719757 0.00395672 0.00203287) 14174
(0.0121806 0.00364437 0.00289474) 14364
(0.0127551 0.00365738 0.0028962) 14365
(0.0132719 0.0036614 0.00289531) 14366
(0.0137256 0.00365615 0.00289336) 14367
(0.00631168 0.00359455 0.00319923) 14412
(0.00678912 0.00359217 0.00319972) 14413
(0.0117909 0.00360495 0.00319227) 14423
(0.0123673 0.00361912 0.00319285) 14424
(0.012916 0.00362865 0.00319245) 14425
(0.0134244 0.00363139 0.00319111) 14426
(0.0138968 0.00362846 0.00319086) 14427
(0.0143352 0.00362093 0.00319136) 14428
(0.0061235 0.00374182 0.00359076) 14532
(0.0061235 0.00374182 0.00359076) 14532
(0.0061235 0.00374182 0.00359076) 14532
(0.00671334 0.00371063 0.00353861) 14473
(0.00734458 0.00368122 0.00349694) 14474
(0.00790468 0.0036532 0.00347662) 14475
(0.00836232 0.00363273 0.00347029) 14476
(0.00875174 0.00361706 0.00347144) 14477
(0.00575793 0.00388484 0.00380491) 14591
(0.00620096 0.00382469 0.00377613) 14532
(0.00689992 0.00377585 0.00373031) 14533
(0.00765714 0.00374267 0.00370667) 14535
(0.00825914 0.003729 0.00370518) 14536
(0.00874999 0.00372109 0.00370722) 14537
(0.00663452 0.00402851 0.00398655) 14593
(0.00713355 0.00396542 0.00395381) 14594
(0.00622559 0.00473993 0.00439298) 14772
(0.00665002 0.00472556 0.00440172) 14773
(0.00735702 0.00501235 0.00443785) 14834
(0.0077135 0.00500745 0.00445066) 14835
(0.00810313 0.00500076 0.00445834) 14836
(0.00687736 0.0052831 0.004391) 14893
(0.00725073 0.00528587 0.00440166) 14894
(0.00758907 0.00529142 0.00441404) 14895
(0.00638498 0.00635802 0.0034011) 15192
(0.00676988 0.00637051 0.00339657) 15193
(0.00708375 0.00638591 0.0034013) 15194
(0.00652071 0.00642637 0.00311967) 15253
(0.00652071 0.00642637 0.00311967) 15253
(0.00652071 0.00642637 0.00311967) 15253
(0.00699767 0.00643235 0.00311643) 15253
(0.00744008 0.006439 0.00311928) 15254
(0.00786964 0.00644517 0.0031257) 15255
(0.0083255 0.00644692 0.00313064) 15256
(0.00882616 0.00644382 0.00313219) 15257
(0.00252385 0.00639284 0.00284843) 13505
(0.000254672 0.00646614 0.00289413) 13500
(0.00364235 0.00638858 0.00277416) 13507
(0.00405159 0.00637461 0.00269448) 13568
(0.00456626 0.00634472 0.00264257) 13569
(0.00567864 0.00579222 0.00186236) 13751
(0.00554534 0.00556799 0.00171953) 13811
(0.00329512 0.0043677 0.00164443) 5706
(0.00588467 0.0044231 0.00170108) 14051
(0.00504646 0.00427442 0.0018901) 14110
(0.00513494 0.00420924 0.00182569) 14110
(0.00526456 0.00420179 0.00177594) 14110
(0.00578695 0.00420859 0.00181851) 14111
(0.00520581 0.0035082 0.00323905) 5410
(0.00523672 0.00357144 0.00327281) 14410
(0.00539794 0.00380365 0.0034021) 15910
(0.00565625 0.00381332 0.00355699) 15911
(0.00473982 0.00371003 0.00351474) 14469
(0.00489547 0.00379639 0.00367547) 14529
(0.00507795 0.0038191 0.00365196) 14530
(0.00534118 0.0039343 0.00369593) 14590
(0.00480061 0.00506075 0.0043674) 14829
(0.00502003 0.00506458 0.00441105) 14830
(0.00567815 0.00501063 0.00442016) 14831
(0.00486241 0.00529743 0.00433641) 14889
(0.00278462 0.0064366 0.00300129) 13505
(0.00291808 0.0064915 0.00289357) 6125
(0.00420678 0.00638762 0.00274895) 13508
(0.00425794 0.0064131 0.00280813) 13508
(0.00499681 0.00646961 0.00305828) 15249
(0.0059067 0.00641175 0.00315248) 15251
(0.0195995 0.00301756 0.00216606) 519
(0.020119 0.00688108 0.00365768) 2020
(0.0216891 0.00697876 0.00354739) 2023
(0.0117006 0.0065162 0.0042025) 6683
(0.0129213 0.00646242 0.00415781) 6685
(0.0138236 0.00643199 0.00414213) 6687
(0.0145448 0.00641273 0.00413545) 6689
(0.0151481 0.00640297 0.00412912) 6690
(0.0156756 0.00639909 0.0041242) 6691
(0.0161683 0.00639946 0.00411965) 6692
(0.0166607 0.00639934 0.00411612) 6693
(0.0171712 0.00639637 0.00411415) 6694
(0.0176936 0.0063903 0.00411096) 6695
(0.0231568 0.00649068 0.00216201) 13426
(0.0242907 0.00664952 0.00225068) 6108
(0.0201225 0.00663895 0.00422072) 6640
(0.0226266 0.00667531 0.0041257) 1965
(0.0203948 0.00636447 0.0011805) 12460
(0.0195042 0.00359346 0.00462741) 7179
(0.0213452 0.0036124 0.00462626) 7182
(0.0225568 0.00364969 0.00469484) 7185
(0.0195044 0.00340182 0.00157932) 399
(0.0215712 0.00336675 0.00168272) 463
(0.0201948 0.00610779 0.00477498) 12220
(0.0220148 0.00614849 0.00473328) 12224
(0.0198978 0.00582413 0.00505115) 12579
(0.0198978 0.00582413 0.00505115) 12579
(0.0198978 0.00582413 0.00505115) 12579
(0.0219134 0.00582622 0.00501016) 12583
(0.0219134 0.00582622 0.00501016) 12583
(0.0219134 0.00582622 0.00501016) 12583
(0.0231864 0.00588109 0.00499762) 12586
(0.0231864 0.00588109 0.00499762) 12586
(0.0231864 0.00588109 0.00499762) 12586
(0.019893 0.0039726 0.00485466) 10539
(0.0215857 0.00399601 0.00489536) 10543
(0.0196805 0.00378569 0.00138758) 12759
(0.0225607 0.00377197 0.00142134) 12765
(0.0200165 0.004181 0.00125118) 11500
(0.0228369 0.0040982 0.00124985) 11505
(0.0200539 0.00452517 0.00110016) 11560
(0.0199246 0.00483965 0.000944669) 11619
(0.0218334 0.0047641 0.000959978) 11623
(0.0193474 0.00597882 0.00103399) 12278
(0.0209676 0.00599717 0.00104954) 12281
(0.0199614 0.0053784 0.000855856) 12099
(0.0220205 0.00530303 0.000873738) 10124
(0.0231347 0.00523731 0.000826561) 11926
(0.0195979 0.00524502 0.00522119) 11079
(0.0212548 0.00523844 0.00518989) 11442
(0.0224755 0.0052822 0.00519818) 11444
(0.0201309 0.00384669 0.00114654) 13000
(0.0208877 0.00303032 0.00319041) 761
(0.0208877 0.00303032 0.00319041) 761
(0.0208877 0.00303032 0.00319041) 761
(0.0242792 0.00303038 0.00317398) 768
(0.0250805 0.0029814 0.00315769) 34272
(0.0194734 0.00676565 0.00166326) 2498
(0.0217554 0.00669683 0.00174106) 2503
(0.0217554 0.00669683 0.00174106) 2503
(0.0217554 0.00669683 0.00174106) 2503
(0.0234343 0.0066952 0.00174786) 2506
(0.0239847 0.00663026 0.00164204) 2507
(0.0226898 0.00621578 0.00169977) 13485
(0.0233697 0.00632836 0.0017183) 13486
(0.00633057 0.00643878 0.00288617) 13512
(0.00633057 0.00643878 0.00288617) 13512
(0.00633057 0.00643878 0.00288617) 13512
(0.00686096 0.00644212 0.00288067) 13513
(0.00737221 0.00644331 0.00287386) 13514
(0.00783411 0.00644631 0.00286698) 13515
(0.00827483 0.00644943 0.00286399) 13516
(0.00873436 0.00645058 0.00286645) 13517
(0.00627848 0.00635285 0.00257819) 13572
(0.0126709 0.00619615 0.00236656) 13645
(0.0131952 0.00619351 0.00236802) 13646
(0.0181225 0.00623042 0.00235671) 13656
(0.0186563 0.00622603 0.00236102) 13657
(0.019168 0.00621992 0.00236355) 13658
(0.0196867 0.00621072 0.0023632) 13659
(0.0202276 0.00619805 0.00235894) 13660
(0.0207695 0.00618514 0.00234935) 13661
(0.0212802 0.00617625 0.00233691) 13662
(0.00635463 0.00582948 0.00187831) 13752
(0.0072635 0.00583895 0.00186507) 13754
(0.00631042 0.00559001 0.00172233) 13812
(0.00623962 0.00467185 0.00162006) 13992
(0.00662514 0.00466509 0.00161276) 13993
(0.00649536 0.00440721 0.00169731) 14052
(0.00649536 0.00440721 0.00169731) 14052
(0.00649536 0.00440721 0.00169731) 14052
(0.00693032 0.00440155 0.00169424) 14053
(0.00729838 0.00439423 0.00168608) 14054
(0.00767515 0.00438712 0.00167822) 14055
(0.00810573 0.0043848 0.00167536) 14056
(0.00856503 0.00438595 0.00167589) 14057
(0.00652812 0.00417838 0.00183023) 14113
(0.00652812 0.00417838 0.00183023) 14113
(0.00652812 0.00417838 0.00183023) 14113
(0.00773317 0.00414885 0.00181378) 14115
(0.00814238 0.00414504 0.00181106) 14116
(0.00859269 0.00414704 0.00181011) 14117
(0.0063602 0.00397563 0.0020433) 14172
(0.00717747 0.00395719 0.00203284) 14174
(0.0121556 0.0036437 0.00289466) 14364
(0.0127317 0.00365694 0.00289617) 14365
(0.013251 0.00366137 0.00289537) 14366
(0.0137072 0.00365646 0.00289346) 14367
(0.00629205 0.00359415 0.00319923) 14412
(0.00676807 0.00359211 0.00320012) 14413
(0.0117665 0.00360444 0.00319222) 14423
(0.0123424 0.00361855 0.00319287) 14424
(0.012893 0.00362834 0.00319254) 14425
(0.0134027 0.00363133 0.0031912) 14426
(0.0138767 0.00362864 0.00319091) 14427
(0.014316 0.00362127 0.00319134) 14428
(0.00610109 0.00374336 0.00359219) 14532
(0.00610109 0.00374336 0.00359219) 14532
(0.00610109 0.00374336 0.00359219) 14532
(0.00668609 0.00371182 0.00354103) 14473
(0.00731645 0.00368255 0.00349857) 14474
(0.00788024 0.00365427 0.00347732) 14475
(0.00834136 0.00363347 0.00347048) 14476
(0.00873159 0.00361763 0.00347148) 14477
(0.00574342 0.00388551 0.00380441) 14591
(0.00617826 0.00382651 0.00377761) 14532
(0.00686502 0.0037779 0.00373242) 14533
(0.00762406 0.00374373 0.00370738) 14535
(0.00823242 0.00372947 0.00370535) 14536
(0.00872635 0.00372135 0.00370718) 14537
(0.00660994 0.0040313 0.00398743) 14593
(0.00710936 0.0039676 0.00395501) 14594
(0.00620407 0.00474057 0.00439271) 14772
(0.00662786 0.00472593 0.00440172) 14773
(0.00733621 0.00501232 0.00443764) 14834
(0.00769287 0.00500782 0.00445037) 14835
(0.00808042 0.00500107 0.00445835) 14836
(0.00685564 0.00528317 0.0043909) 14893
(0.00723129 0.00528576 0.00440138) 14894
(0.00756892 0.00529127 0.00441376) 14895
(0.0063635 0.0063579 0.00340171) 15192
(0.00675013 0.00637023 0.00339676) 15193
(0.00706444 0.00638559 0.00340094) 15194
(0.00649754 0.00642637 0.00312055) 15252
(0.00649754 0.00642637 0.00312055) 15252
(0.00649754 0.00642637 0.00312055) 15252
(0.00697472 0.00643225 0.00311671) 15253
(0.00741741 0.00643882 0.00311925) 15254
(0.00784657 0.00644509 0.00312544) 15255
(0.00830047 0.00644709 0.00313055) 15256
(0.00879999 0.00644414 0.00313219) 15257
(0.000182402 0.00646637 0.00289146) 13500
(0.00355063 0.00639618 0.00278892) 13507
(0.00403602 0.00637459 0.00269699) 13568
(0.00454287 0.00634592 0.00263359) 13569
(0.00565452 0.00579459 0.00186209) 13751
(0.00552646 0.00556785 0.00171864) 13811
(0.00272706 0.0043653 0.00163104) 5705
(0.00586864 0.00442425 0.00170165) 14051
(0.00369876 0.00426035 0.00169061) 5707
(0.00513428 0.0042124 0.00182486) 14110
(0.00526248 0.00420339 0.00178119) 14110
(0.00576913 0.00420942 0.00181836) 14111
(0.00518599 0.00350911 0.00323803) 5410
(0.00523337 0.0035909 0.00327743) 14410
(0.00539187 0.00380444 0.00339614) 15910
(0.00563916 0.00382208 0.00355205) 15911
(0.00470671 0.00370267 0.00352201) 14469
(0.00488498 0.00380902 0.00367824) 14529
(0.00507166 0.00381071 0.00365097) 14530
(0.00532568 0.00393017 0.00369663) 14590
(0.00479445 0.0050598 0.00436487) 14829
(0.00503921 0.00506764 0.00440475) 14830
(0.00565557 0.00501257 0.00442062) 14831
(0.00483661 0.00529664 0.0043374) 14889
(0.00303827 0.00640899 0.00297173) 13506
(0.00283001 0.00649758 0.00290004) 6125
(0.00421018 0.00638685 0.00274758) 13508
(0.00432385 0.00641201 0.00279317) 13508
(0.00494163 0.00647511 0.00303515) 15249
(0.00588539 0.00641176 0.00315286) 15251
(0.0195527 0.00301739 0.00216334) 519
(0.0200621 0.00687933 0.00366212) 2020
(0.0216452 0.00697333 0.00355169) 2023
(0.0116537 0.0065187 0.00420505) 6683
(0.0128883 0.00646369 0.00415851) 6685
(0.013799 0.00643273 0.00414207) 6687
(0.0145249 0.00641299 0.0041354) 6689
(0.0151315 0.00640297 0.00412899) 6690
(0.0156606 0.00639894 0.00412408) 6691
(0.0161534 0.00639923 0.00411957) 6692
(0.0166452 0.00639918 0.00411594) 6693
(0.0171546 0.00639636 0.00411398) 6694
(0.0176772 0.0063903 0.00411079) 6695
(0.0223239 0.00329732 0.00332853) 5444
(0.0231033 0.006481 0.00215232) 13426
(0.0242441 0.00664685 0.00225178) 6108
(0.0200374 0.00663712 0.00422813) 6640
(0.0225512 0.00667133 0.00412848) 1965
(0.0203649 0.0063672 0.00118242) 12460
(0.0194371 0.00358904 0.00462714) 7178
(0.0212908 0.0036116 0.00462447) 7182
(0.0225416 0.00364553 0.00468897) 7185
(0.0194478 0.00340464 0.001573) 9218
(0.0215063 0.00336861 0.00168079) 463
(0.0201343 0.00610598 0.00477822) 12220
(0.0219649 0.00614526 0.00473399) 12223
(0.0198344 0.00582365 0.00505326) 12579
(0.0198344 0.00582365 0.00505326) 12579
(0.0198344 0.00582365 0.00505326) 12579
(0.0218522 0.00582467 0.00501046) 12583
(0.0218522 0.00582467 0.00501046) 12583
(0.0218522 0.00582467 0.00501046) 12583
(0.0231648 0.00587617 0.00499859) 12586
(0.0231648 0.00587617 0.00499859) 12586
(0.0231648 0.00587617 0.00499859) 12586
(0.0198364 0.0039706 0.00485249) 10539
(0.0215333 0.0039954 0.00489259) 10543
(0.0196049 0.00378627 0.00138439) 12759
(0.0224684 0.00377322 0.00142226) 12764
(0.0199233 0.00418174 0.00124879) 11499
(0.0227416 0.00410113 0.00125185) 11505
(0.0199848 0.00452832 0.00109721) 11559
(0.0198593 0.00484304 0.000943385) 11619
(0.0217742 0.00476802 0.000961016) 11623
(0.0193071 0.00597878 0.00103455) 12278
(0.0209164 0.00599691 0.00105037) 12281
(0.0198916 0.00538323 0.000855621) 12099
(0.0219579 0.00530504 0.000875067) 10123
(0.0231289 0.00524286 0.000830875) 11926
(0.0195508 0.00524379 0.00522256) 11079
(0.0212056 0.00523805 0.00518972) 11442
(0.0224542 0.00527697 0.005197) 11444
(0.0200946 0.0038509 0.00114478) 13000
(0.0206712 0.00302248 0.00318801) 761
(0.0206712 0.00302248 0.00318801) 761
(0.0206712 0.00302248 0.00318801) 761
(0.0241968 0.00303333 0.00317467) 768
(0.0250704 0.00298447 0.00315619) 34272
(0.0216806 0.00669797 0.00174014) 2503
(0.0216806 0.00669797 0.00174014) 2503
(0.0216806 0.00669797 0.00174014) 2503
(0.0233978 0.00669549 0.00175047) 2506
(0.0240052 0.00663846 0.00165333) 2508
(0.0226222 0.00620946 0.00169484) 13485
(0.0233496 0.006326 0.00172087) 13486
(0.00630712 0.00643866 0.00288634) 13512
(0.00630712 0.00643866 0.00288634) 13512
(0.00630712 0.00643866 0.00288634) 13512
(0.0068361 0.00644212 0.00288104) 13513
(0.00734761 0.0064433 0.00287419) 13514
(0.00781069 0.00644628 0.00286727) 13515
(0.00825149 0.00644944 0.002864) 13516
(0.00870977 0.00645072 0.00286622) 13517
(0.00625386 0.00635258 0.00257659) 13572
(0.0126476 0.00619652 0.00236644) 13645
(0.0131738 0.00619346 0.002368) 13646
(0.0180978 0.00623068 0.0023566) 13656
(0.0186332 0.00622628 0.00236088) 13657
(0.0191456 0.00622031 0.00236358) 13658
(0.0196637 0.00621126 0.00236337) 13659
(0.0202035 0.00619873 0.00235933) 13660
(0.0207462 0.00618573 0.00234996) 13661
(0.0212582 0.00617667 0.00233758) 13662
(0.0063313 0.00582936 0.0018781) 13752
(0.00724336 0.00583861 0.00186517) 13754
(0.00628728 0.00558989 0.0017221) 13812
(0.00621594 0.00467205 0.00161997) 13992
(0.00660371 0.00466519 0.00161274) 13993
(0.00647278 0.0044075 0.00169709) 14052
(0.00647278 0.0044075 0.00169709) 14052
(0.00647278 0.0044075 0.00169709) 14052
(0.00690862 0.0044018 0.00169415) 14053
(0.00727778 0.00439458 0.0016862) 14054
(0.00765344 0.00438729 0.00167836) 14055
(0.00808216 0.00438489 0.00167525) 14056
(0.00854103 0.00438587 0.00167573) 14057
(0.00650507 0.00417873 0.00183008) 14113
(0.00650507 0.00417873 0.00183008) 14113
(0.00650507 0.00417873 0.00183008) 14113
(0.00771219 0.00414918 0.00181385) 14115
(0.0081198 0.00414495 0.00181113) 14116
(0.00856873 0.00414678 0.00181006) 14117
(0.0063362 0.0039758 0.00204303) 14172
(0.00715731 0.00395765 0.0020328) 14174
(0.0121306 0.00364302 0.00289457) 14364
(0.0127082 0.00365649 0.00289615) 14365
(0.01323 0.00366132 0.00289543) 14366
(0.0136887 0.00365676 0.00289355) 14367
(0.00627252 0.00359374 0.00319921) 14412
(0.0067471 0.00359204 0.00320051) 14413
(0.0117421 0.00360393 0.00319217) 14423
(0.0123175 0.00361798 0.00319288) 14424
(0.0128699 0.00362803 0.00319263) 14425
(0.0133809 0.00363126 0.0031913) 14426
(0.0138564 0.00362881 0.00319097) 14427
(0.0142967 0.0036216 0.00319133) 14428
(0.00607938 0.00374491 0.00359327) 14532
(0.00607938 0.00374491 0.00359327) 14532
(0.00607938 0.00374491 0.00359327) 14532
(0.0066591 0.00371298 0.00354336) 14473
(0.00728827 0.00368388 0.00350025) 14474
(0.00785564 0.00365536 0.00347806) 14475
(0.00832028 0.00363423 0.00347069) 14476
(0.00871152 0.00361821 0.00347151) 14477
(0.005729 0.00388606 0.00380389) 14591
(0.00615611 0.00382825 0.003779) 14532
(0.00683052 0.00377994 0.00373453) 14533
(0.00759073 0.00374484 0.00370815) 14535
(0.00820548 0.00372994 0.00370552) 14536
(0.00870268 0.00372161 0.00370716) 14537
(0.0065854 0.004034 0.00398818) 14593
(0.00708519 0.00396982 0.00395619) 14594
(0.00618259 0.0047412 0.00439243) 14772
(0.00660581 0.00472633 0.00440172) 14773
(0.006405 0.00501806 0.00442382) 14832
(0.00731534 0.00501226 0.00443744) 14834
(0.00767233 0.00500818 0.00445008) 14835
(0.00805785 0.00500138 0.00445835) 14836
(0.00683382 0.00528324 0.00439081) 14893
(0.00721183 0.00528565 0.00440111) 14894
(0.00754888 0.00529111 0.00441347) 14895
(0.00634209 0.00635777 0.00340233) 15192
(0.00673035 0.00636996 0.00339694) 15193
(0.00704521 0.00638526 0.00340063) 15194
(0.00647444 0.00642636 0.00312144) 15252
(0.00647444 0.00642636 0.00312144) 15252
(0.00647444 0.00642636 0.00312144) 15252
(0.00695177 0.00643215 0.00311702) 15253
(0.00739476 0.00643865 0.00311924) 15254
(0.00782358 0.006445 0.00312518) 15255
(0.00827555 0.00644724 0.00313045) 15256
(0.00877379 0.00644446 0.00313219) 15257
(0.000193116 0.00646629 0.00288954) 13500
(0.00347255 0.00640292 0.00280045) 13506
(0.00402135 0.00637428 0.00269896) 13568
(0.00452593 0.00634521 0.00262874) 13569
(0.00563151 0.00579668 0.00186199) 13751
(0.0055072 0.00556786 0.00171799) 13811
(0.00223366 0.00436446 0.0016161) 5704
(0.00473932 0.00450013 0.00170354) 14049
(0.00585298 0.00442536 0.00170237) 14051
(0.00241502 0.00421356 0.00168605) 5644
(0.00513049 0.00421462 0.00182394) 14110
(0.00526839 0.00420599 0.0017877) 14110
(0.00575174 0.0042102 0.00181835) 14111
(0.00516152 0.00351168 0.00323753) 5410
(0.00523086 0.00361088 0.00328208) 14410
(0.00538596 0.00380464 0.00339029) 15910
(0.00562544 0.00382845 0.00354445) 15911
(0.00466127 0.00369187 0.00353268) 14469
(0.00487585 0.00381816 0.00368104) 14529
(0.00506234 0.00380161 0.00364935) 14530
(0.005315 0.00392651 0.00369741) 14590
(0.00479606 0.00505832 0.00436052) 14829
(0.00504069 0.00506828 0.00440159) 14830
(0.00563231 0.00501452 0.00442057) 14831
(0.00481102 0.00529362 0.00433899) 14889
(0.00336473 0.00636628 0.00293499) 13506
(0.00274669 0.00650155 0.00290609) 6125
(0.00419436 0.00638778 0.00274868) 13508
(0.00440702 0.00641282 0.00277526) 13508
(0.00488905 0.00647949 0.00300969) 15249
(0.00586384 0.00641189 0.00315308) 15251
(0.0195056 0.00301698 0.00216065) 519
(0.0209249 0.0029881 0.00222224) 32972
(0.0200035 0.00687812 0.00366623) 2020
(0.0216001 0.00696797 0.003556) 2023
(0.0116073 0.00652118 0.00420763) 6683
(0.0128546 0.006465 0.00415927) 6685
(0.0137743 0.00643348 0.00414203) 6687
(0.0145048 0.00641327 0.00413535) 6689
(0.0151148 0.00640299 0.00412885) 6690
(0.0156455 0.0063988 0.00412396) 6691
(0.0161386 0.00639898 0.0041195) 6692
(0.0166297 0.006399 0.0041158) 6693
(0.017138 0.00639634 0.00411381) 6694
(0.0176608 0.00639031 0.00411062) 6695
(0.0222458 0.00329758 0.00332779) 5444
(0.0230461 0.00647103 0.00214159) 13426
(0.0241976 0.00664402 0.00225271) 6108
(0.019951 0.00663546 0.0042356) 6639
(0.022474 0.0066674 0.00413137) 1964
(0.0240122 0.0067469 0.00409442) 1968
(0.0203347 0.0063698 0.00118421) 12460
(0.0193738 0.00358403 0.00462633) 7178
(0.021235 0.00361084 0.00462287) 7182
(0.0225247 0.00364165 0.00468335) 7185
(0.0193926 0.00340728 0.00156701) 9218
(0.0214399 0.00337034 0.00167876) 462
(0.0229562 0.00332535 0.00171484) 465
(0.0200737 0.00610408 0.00478171) 12220
(0.0219134 0.00614215 0.0047347) 12223
(0.019772 0.00582319 0.0050553) 12579
(0.019772 0.00582319 0.0050553) 12579
(0.019772 0.00582319 0.0050553) 12579
(0.0217893 0.00582323 0.00501082) 12583
(0.0217893 0.00582323 0.00501082) 12583
(0.0217893 0.00582323 0.00501082) 12583
(0.0231413 0.00587149 0.00499944) 12586
(0.0231413 0.00587149 0.00499944) 12586
(0.0231413 0.00587149 0.00499944) 12586
(0.0197774 0.00396853 0.00485028) 10539
(0.0214799 0.0039948 0.0048899) 10542
(0.0195324 0.00378669 0.00138136) 12759
(0.0223743 0.00377443 0.00142308) 12764
(0.0198299 0.00418077 0.00124627) 11499
(0.022645 0.00410421 0.00125374) 11505
(0.0199141 0.00453064 0.00109418) 11559
(0.0197919 0.00484585 0.000942089) 11619
(0.0217139 0.0047719 0.000961979) 11623
(0.0192673 0.00597875 0.00103528) 12278
(0.0208648 0.00599658 0.00105111) 12281
(0.0198209 0.00538803 0.000855339) 12099
(0.0218936 0.00530708 0.000876252) 10123
(0.0231203 0.00524804 0.000835071) 11926
(0.0211557 0.00523775 0.00518961) 11442
(0.0224312 0.0052721 0.00519583) 11444
(0.0200589 0.00385522 0.00114293) 13000
(0.0214808 0.00378053 0.00115447) 13002
(0.0204322 0.00301108 0.00318525) 760
(0.0241053 0.00303658 0.0031754) 768
(0.0250592 0.00298761 0.00315485) 34272
(0.0216043 0.00669922 0.00173899) 2503
(0.0216043 0.00669922 0.00173899) 2503
(0.0216043 0.00669922 0.00173899) 2503
(0.0233599 0.00669576 0.00175296) 2506
(0.0240193 0.00664547 0.00166331) 2508
(0.0225449 0.00620302 0.00168959) 13485
(0.0233301 0.00632343 0.00172326) 13486
(0.00628379 0.00643855 0.00288647) 13512
(0.00628379 0.00643855 0.00288647) 13512
(0.00628379 0.00643855 0.00288647) 13512
(0.00681133 0.00644211 0.00288141) 13513
(0.00732298 0.0064433 0.00287451) 13514
(0.00778728 0.00644626 0.00286758) 13515
(0.00822819 0.00644944 0.00286402) 13516
(0.00868522 0.00645086 0.00286601) 13517
(0.00622929 0.00635229 0.00257493) 13572
(0.0126243 0.0061969 0.00236633) 13645
(0.0131523 0.00619343 0.00236796) 13646
(0.018073 0.00623094 0.00235649) 13656
(0.01861 0.00622653 0.00236075) 13657
(0.0191232 0.00622068 0.00236361) 13658
(0.0196407 0.00621178 0.00236352) 13659
(0.0201795 0.0061994 0.0023597) 13660
(0.0207228 0.00618634 0.00235058) 13661
(0.0212361 0.00617709 0.00233825) 13662
(0.00630805 0.00582926 0.0018779) 13752
(0.00626418 0.00558976 0.00172188) 13812
(0.00619208 0.00467224 0.00161988) 13992
(0.00658219 0.0046653 0.00161271) 13993
(0.0064502 0.00440782 0.00169686) 14052
(0.0064502 0.00440782 0.00169686) 14052
(0.0064502 0.00440782 0.00169686) 14052
(0.00688685 0.00440205 0.00169406) 14053
(0.0072572 0.00439491 0.00168633) 14054
(0.00763184 0.00438749 0.00167849) 14055
(0.00805867 0.00438499 0.00167515) 14056
(0.00851703 0.00438579 0.00167557) 14057
(0.00648202 0.0041791 0.00182991) 14112
(0.00648202 0.0041791 0.00182991) 14112
(0.00648202 0.0041791 0.00182991) 14112
(0.00769129 0.00414954 0.0018139) 14115
(0.00809732 0.00414487 0.00181119) 14116
(0.00854481 0.00414653 0.00181001) 14117
(0.00631222 0.00397598 0.00204275) 14172
(0.00713708 0.0039581 0.00203276) 14174
(0.0121056 0.00364234 0.00289448) 14364
(0.0126846 0.00365602 0.00289612) 14365
(0.0132089 0.00366125 0.00289548) 14366
(0.0136701 0.00365704 0.00289364) 14367
(0.0062531 0.00359331 0.00319916) 14412
(0.00672621 0.00359197 0.00320091) 14413
(0.0117177 0.00360343 0.00319211) 14423
(0.0122925 0.0036174 0.00319289) 14424
(0.0128468 0.00362771 0.00319271) 14425
(0.013359 0.00363118 0.0031914) 14426
(0.0138361 0.00362896 0.00319102) 14427
(0.0142775 0.00362192 0.00319133) 14428
(0.00605788 0.00374671 0.00359397) 14532
(0.00605788 0.00374671 0.00359397) 14532
(0.00605788 0.00374671 0.00359397) 14532
(0.00663241 0.00371412 0.00354565) 14473
(0.00726005 0.0036852 0.00350196) 14474
(0.00783087 0.00365647 0.00347882) 14475
(0.00829909 0.003635 0.00347093) 14476
(0.00869153 0.0036188 0.00347155) 14477
(0.00571462 0.00388653 0.00380329) 14591
(0.00571462 0.00388653 0.00380329) 14591
(0.00571462 0.00388653 0.00380329) 14591
(0.00613454 0.00382992 0.0037803) 14532
(0.00679644 0.00378196 0.00373665) 14533
(0.00755716 0.003746 0.00370898) 14535
(0.00817833 0.00373043 0.00370571) 14536
(0.00867896 0.00372189 0.00370716) 14537
(0.00706106 0.00397207 0.00395737) 14594
(0.00616115 0.00474181 0.00439213) 14772
(0.00658388 0.00472676 0.00440171) 14773
(0.00638059 0.0050183 0.00442381) 14832
(0.00729441 0.00501217 0.00443725) 14834
(0.00765186 0.00500854 0.00444978) 14835
(0.00803541 0.00500169 0.00445833) 14836
(0.00681189 0.00528332 0.00439072) 14893
(0.00719234 0.00528553 0.00440084) 14894
(0.00752893 0.00529095 0.00441319) 14895
(0.00618667 0.00622593 0.00365179) 15132
(0.00632075 0.00635764 0.00340296) 15192
(0.00671054 0.0063697 0.00339714) 15193
(0.00702604 0.00638492 0.00340038) 15194
(0.0064514 0.00642635 0.00312233) 15252
(0.0064514 0.00642635 0.00312233) 15252
(0.0064514 0.00642635 0.00312233) 15252
(0.00692882 0.00643207 0.00311735) 15253
(0.00737214 0.00643848 0.00311924) 15254
(0.00780066 0.0064449 0.00312493) 15255
(0.00825075 0.00644738 0.00313035) 15256
(0.00874755 0.00644478 0.0031322) 15257
(8.47833e-06 0.00646319 0.0028602) 13500
(0.000184135 0.00646603 0.00288737) 13500
(0.00338185 0.00641123 0.00281271) 13506
(0.00402486 0.00637268 0.00269753) 13568
(0.00443713 0.00635408 0.0026004) 13568
(0.00481147 0.0063471 0.00272393) 13569
(0.0056089 0.00579826 0.00186191) 13751
(0.0054874 0.00556769 0.00171751) 13810
(0.00467695 0.00450352 0.00168623) 14049
(0.00583762 0.0044264 0.00170327) 14051
(0.00512993 0.00421859 0.00182442) 14110
(0.00526537 0.00420758 0.00179264) 14110
(0.00573477 0.00421095 0.00181847) 14111
(0.00512758 0.00351623 0.00323685) 5410
(0.00522831 0.00363553 0.00328748) 14410
(0.00537939 0.00380517 0.00338463) 15910
(0.00561486 0.00383285 0.00353534) 15911
(0.00460214 0.00367876 0.00354639) 14469
(0.00486786 0.00382635 0.00368286) 14529
(0.00505729 0.00379302 0.0036492) 14530
(0.0053 0.00392248 0.00369708) 14590
(0.00479452 0.00505685 0.00435628) 14829
(0.0050407 0.00506849 0.00439859) 14830
(0.0056096 0.00501649 0.00442047) 14831
(0.00478568 0.0052908 0.00434058) 14889
(0.0026143 0.00650807 0.00291419) 6125
(0.0041727 0.00638902 0.00275091) 13508
(0.00446122 0.00641419 0.00276231) 13508
(0.00484044 0.00648227 0.0029832) 13509
(0.00584201 0.00641218 0.00315313) 15251
(0.0194583 0.00301634 0.00215802) 518
(0.0208908 0.0029917 0.00221794) 32972
(0.0199434 0.0068775 0.0036699) 2019
(0.0215538 0.0069627 0.00356033) 2023
(0.0115603 0.00652375 0.00421031) 6683
(0.0128206 0.00646636 0.00416007) 6685
(0.0137493 0.00643424 0.00414202) 6687
(0.0144845 0.00641357 0.0041353) 6688
(0.015098 0.00640303 0.00412873) 6690
(0.0156303 0.00639867 0.00412383) 6691
(0.0161237 0.00639874 0.00411944) 6692
(0.0166143 0.00639881 0.00411568) 6693
(0.0171214 0.00639632 0.00411364) 6694
(0.0176444 0.00639032 0.00411044) 6695
(0.0221639 0.00329743 0.0033271) 5444
(0.0229865 0.00646079 0.00212996) 13425
(0.0241513 0.00664099 0.00225343) 6108
(0.0198612 0.00663479 0.00424261) 6639
(0.022395 0.0066636 0.0041343) 1964
(0.0239914 0.00674186 0.00409615) 1967
(0.0203043 0.00637228 0.00118588) 12460
(0.0193173 0.00357937 0.00462509) 7178
(0.0211779 0.00361011 0.00462145) 7182
(0.0225061 0.00363801 0.00467796) 7185
(0.0193401 0.00341006 0.00156151) 9218
(0.0213723 0.00337196 0.0016766) 462
(0.0229275 0.00332933 0.00171195) 465
(0.0200116 0.00610213 0.00478543) 12220
(0.0218603 0.00613916 0.00473542) 12223
(0.0197103 0.00582275 0.00505727) 12579
(0.0197103 0.00582275 0.00505727) 12579
(0.0197103 0.00582275 0.00505727) 12579
(0.021725 0.00582189 0.00501125) 12583
(0.021725 0.00582189 0.00501125) 12583
(0.021725 0.00582189 0.00501125) 12583
(0.0231159 0.00586705 0.00500014) 12586
(0.0231159 0.00586705 0.00500014) 12586
(0.0231159 0.00586705 0.00500014) 12586
(0.0197155 0.0039663 0.00484799) 10539
(0.0214254 0.00399418 0.00488729) 10542
(0.0194632 0.00378711 0.00137858) 12758
(0.0222783 0.00377556 0.00142377) 12764
(0.019735 0.00417789 0.00124372) 11499
(0.0225473 0.00410744 0.00125552) 11505
(0.0198412 0.00453195 0.00109106) 11559
(0.0197223 0.00484794 0.000940783) 11619
(0.0216526 0.00477572 0.000962858) 11623
(0.0208127 0.0059962 0.00105176) 12281
(0.0197513 0.00539284 0.000855124) 12099
(0.0218274 0.00530912 0.00087728) 10123
(0.0231089 0.00525289 0.000839159) 11926
(0.0211051 0.00523752 0.00518957) 11442
(0.0224067 0.00526756 0.00519465) 11444
(0.0200239 0.00385973 0.00114097) 13000
(0.0214531 0.00378723 0.00115299) 13002
(0.0201914 0.00299706 0.0031822) 32832
(0.0240047 0.00303997 0.0031762) 768
(0.025047 0.00299077 0.00315366) 34272
(0.0215259 0.0067006 0.00173758) 2503
(0.0215259 0.0067006 0.00173758) 2503
(0.0215259 0.0067006 0.00173758) 2503
(0.0233202 0.00669603 0.00175532) 2506
(0.0240265 0.00665129 0.00167186) 2508
(0.0224571 0.00619647 0.00168398) 13484
(0.0233109 0.00632066 0.00172542) 13486
(0.00678665 0.0064421 0.00288177) 13513
(0.00729835 0.00644331 0.00287483) 13514
(0.00776387 0.00644622 0.0028679) 13515
(0.00820496 0.00644943 0.00286406) 13516
(0.00866072 0.00645099 0.00286579) 13517
(0.00620474 0.00635199 0.00257325) 13572
(0.00669246 0.00636352 0.00260261) 13573
(0.0126009 0.0061973 0.00236621) 13645
(0.0131308 0.00619341 0.00236792) 13646
(0.0180483 0.00623119 0.00235639) 13656
(0.0185867 0.00622677 0.00236061) 13657
(0.0191008 0.00622105 0.00236363) 13658
(0.0196178 0.0062123 0.00236366) 13659
(0.0201554 0.00620008 0.00236007) 13660
(0.0206994 0.00618696 0.00235119) 13661
(0.021214 0.00617753 0.00233892) 13662
(0.00628485 0.0058292 0.00187773) 13752
(0.00624108 0.00558962 0.00172164) 13812
(0.00616804 0.00467244 0.00161979) 13992
(0.00656053 0.00466546 0.00161265) 13993
(0.00642763 0.00440817 0.00169664) 14052
(0.00642763 0.00440817 0.00169664) 14052
(0.00642763 0.00440817 0.00169664) 14052
(0.00686503 0.00440231 0.00169394) 14053
(0.00723664 0.00439519 0.00168647) 14054
(0.00761034 0.00438774 0.00167862) 14055
(0.0080353 0.00438508 0.00167507) 14056
(0.00849303 0.00438573 0.00167541) 14056
(0.00645897 0.0041795 0.00182972) 14112
(0.00645897 0.0041795 0.00182972) 14112
(0.00645897 0.0041795 0.00182972) 14112
(0.00767045 0.00414988 0.00181399) 14115
(0.00807496 0.00414484 0.00181124) 14116
(0.00852094 0.00414626 0.00180998) 14117
(0.00628825 0.00397617 0.00204245) 14172
(0.00711676 0.00395855 0.00203271) 14174
(0.0120807 0.00364167 0.0028944) 14364
(0.0126609 0.00365554 0.00289608) 14365
(0.0131876 0.00366117 0.00289553) 14366
(0.0136514 0.00365731 0.00289373) 14367
(0.0062338 0.00359286 0.00319908) 14412
(0.00670541 0.0035919 0.0032013) 14413
(0.0116933 0.00360294 0.00319204) 14423
(0.0122676 0.00361682 0.0031929) 14424
(0.0128236 0.00362737 0.00319279) 14425
(0.0133371 0.00363109 0.0031915) 14426
(0.0138157 0.00362911 0.00319107) 14427
(0.0142582 0.00362224 0.00319133) 14428
(0.00603666 0.00374875 0.00359425) 14532
(0.00603666 0.00374875 0.00359425) 14532
(0.00603666 0.00374875 0.00359425) 14532
(0.00660607 0.00371522 0.0035479) 14473
(0.00723181 0.00368652 0.00350373) 14474
(0.00780595 0.00365759 0.00347962) 14475
(0.0082778 0.00363579 0.00347118) 14476
(0.0086716 0.00361939 0.00347157) 14477
(0.00570022 0.00388691 0.00380262) 14591
(0.00570022 0.00388691 0.00380262) 14591
(0.00570022 0.00388691 0.00380262) 14591
(0.00611355 0.00383155 0.0037815) 14532
(0.00676281 0.00378397 0.00373876) 14533
(0.00752334 0.0037472 0.00370987) 14535
(0.00815095 0.00373094 0.00370591) 14536
(0.00865518 0.00372219 0.00370718) 14537
(0.00703694 0.00397434 0.00395852) 14594
(0.00613976 0.00474242 0.00439181) 14772
(0.00656202 0.0047272 0.00440169) 14773
(0.00635613 0.00501854 0.00442379) 14832
(0.00727343 0.00501208 0.00443708) 14834
(0.00763145 0.00500888 0.00444947) 14835
(0.00801311 0.005002 0.00445828) 14836
(0.00717282 0.0052854 0.00440059) 14894
(0.00750907 0.00529078 0.0044129) 14895
(0.00616281 0.00622603 0.00365193) 15132
(0.00629949 0.0063575 0.00340359) 15192
(0.0066907 0.00636943 0.00339737) 15193
(0.00700694 0.00638457 0.00340014) 15194
(0.00642845 0.00642632 0.00312322) 15252
(0.00642845 0.00642632 0.00312322) 15252
(0.00642845 0.00642632 0.00312322) 15252
(0.00690587 0.00643199 0.00311771) 15253
(0.00734954 0.00643831 0.00311927) 15254
(0.00777782 0.00644479 0.00312467) 15255
(0.00822608 0.0064475 0.00313024) 15256
(0.00872129 0.00644509 0.00313221) 15257
(0.000126878 0.00645931 0.00285729) 13500
(0.000166031 0.00646567 0.00288459) 13500
(0.0032907 0.00641973 0.00282351) 13506
(0.00402516 0.00637153 0.00269643) 13568
(0.00442501 0.00635202 0.00259929) 13568
(0.00479457 0.00634803 0.00271769) 13569
(0.0055864 0.00579961 0.00186186) 13751
(0.00546713 0.00556751 0.00171714) 13810
(0.00475696 0.00448478 0.0016692) 14049
(0.00582261 0.0044274 0.00170441) 14051
(0.0051262 0.00422184 0.00182621) 14110
(0.00526833 0.00420933 0.00179878) 14110
(0.00571811 0.00421171 0.00181871) 14111
(0.00508704 0.00352328 0.0032378) 5410
(0.00537268 0.00380567 0.00337919) 15910
(0.00560414 0.00383687 0.00352645) 15911
(0.00452051 0.00366342 0.00356277) 14469
(0.00486133 0.00383459 0.00368363) 14529
(0.00505304 0.00378385 0.00364921) 14530
(0.0052853 0.00391842 0.00369647) 14590
(0.00478959 0.00505533 0.0043523) 14829
(0.0050399 0.00506836 0.00439566) 14830
(0.0055876 0.00501857 0.00442035) 14831
(0.00476317 0.00528835 0.00434187) 14889
(0.00239518 0.00651545 0.00292385) 6124
(0.00414905 0.00639091 0.00275343) 13508
(0.00449665 0.00641557 0.00275234) 13508
(0.00479467 0.00648386 0.0029561) 13509
(0.00581987 0.00641264 0.003153) 15251
(0.0194105 0.00301547 0.00215554) 518
(0.0208556 0.00299509 0.00221382) 32972
(0.0198815 0.00687761 0.00367301) 2019
(0.0215067 0.00695751 0.00356467) 2023
(0.0115136 0.00652631 0.00421304) 6683
(0.012786 0.00646774 0.00416091) 6685
(0.013724 0.00643501 0.00414203) 6687
(0.014464 0.00641391 0.00413525) 6688
(0.015081 0.00640307 0.00412861) 6690
(0.0156151 0.00639854 0.00412372) 6691
(0.0161088 0.00639849 0.00411938) 6692
(0.0165988 0.00639861 0.00411557) 6693
(0.0171048 0.00639629 0.00411346) 6694
(0.0176279 0.00639034 0.00411025) 6695
(0.0220753 0.00329667 0.0033264) 5444
(0.0229226 0.00645025 0.00211736) 13425
(0.0241054 0.00663774 0.00225391) 6108
(0.0248993 0.00668211 0.0021982) 13429
(0.0197672 0.00663548 0.00424893) 6639
(0.0223138 0.00666 0.00413723) 1964
(0.0239675 0.00673696 0.00409782) 1967
(0.0202736 0.00637466 0.00118744) 12460
(0.0211197 0.00360939 0.00462017) 7182
(0.0224857 0.00363462 0.00467279) 7184
(0.0192915 0.00341335 0.0015565) 9218
(0.0213032 0.00337344 0.00167428) 462
(0.0228973 0.00333319 0.00170922) 465
(0.0199469 0.00610024 0.00478932) 12219
(0.0218058 0.00613626 0.00473616) 12223
(0.0196489 0.00582231 0.00505909) 12579
(0.0196489 0.00582231 0.00505909) 12579
(0.0196489 0.00582231 0.00505909) 12579
(0.0216592 0.00582064 0.00501175) 12583
(0.0216592 0.00582064 0.00501175) 12583
(0.0216592 0.00582064 0.00501175) 12583
(0.0230887 0.00586282 0.00500073) 12586
(0.0230887 0.00586282 0.00500073) 12586
(0.0230887 0.00586282 0.00500073) 12586
(0.0235946 0.006004 0.00492666) 12347
(0.0196502 0.00396379 0.00484552) 10539
(0.0213702 0.00399355 0.00488476) 10542
(0.0193985 0.00378783 0.00137614) 12758
(0.0221804 0.00377658 0.00142431) 12764
(0.0196364 0.00417285 0.00124141) 11499
(0.0224489 0.00411069 0.00125704) 11504
(0.0197657 0.00453211 0.00108783) 11559
(0.0196504 0.00484923 0.000939474) 11619
(0.0215901 0.00477947 0.000963648) 11623
(0.0230125 0.00469255 0.000937976) 11626
(0.0207603 0.00599581 0.00105233) 12281
(0.0196861 0.00539776 0.000855151) 12099
(0.0217595 0.00531117 0.000878166) 10123
(0.0230949 0.00525745 0.000843144) 11926
(0.0210537 0.00523736 0.00518959) 11442
(0.0223807 0.00526332 0.00519349) 11444
(0.0199892 0.00386457 0.00113889) 12999
(0.0214268 0.00379426 0.00115096) 13002
(0.0199977 0.00298541 0.00317858) 32688
(0.0238946 0.00304334 0.00317712) 767
(0.0250338 0.00299396 0.00315261) 34272
(0.0214453 0.00670212 0.00173585) 2502
(0.0214453 0.00670212 0.00173585) 2502
(0.0214453 0.00670212 0.00173585) 2502
(0.0232788 0.0066963 0.00175755) 2506
(0.0240282 0.00665626 0.00167931) 2508
(0.0223589 0.00618987 0.00167801) 13484
(0.0232927 0.0063177 0.00172739) 13486
(0.00676207 0.00644209 0.00288211) 13513
(0.00727371 0.00644331 0.00287515) 13514
(0.00774046 0.00644619 0.00286822) 13515
(0.00818178 0.00644942 0.0028641) 13516
(0.00863625 0.00645111 0.00286557) 13517
(0.00618019 0.00635168 0.00257157) 13572
(0.0066689 0.00636359 0.00260211) 13573
(0.0125775 0.00619771 0.0023661) 13645
(0.0131091 0.00619341 0.00236787) 13646
(0.0180234 0.00623145 0.00235628) 13656
(0.0185633 0.00622702 0.00236047) 13657
(0.0190783 0.00622142 0.00236365) 13658
(0.019595 0.00621281 0.0023638) 13659
(0.0201313 0.00620075 0.00236042) 13660
(0.0206759 0.00618758 0.00235179) 13661
(0.0211919 0.00617797 0.0023396) 13662
(0.00626171 0.00582915 0.00187757) 13752
(0.00621801 0.00558946 0.0017214) 13812
(0.00614384 0.00467263 0.00161971) 13992
(0.00653877 0.0046656 0.00161259) 13993
(0.00640507 0.00440856 0.00169641) 14052
(0.00640507 0.00440856 0.00169641) 14052
(0.00640507 0.00440856 0.00169641) 14052
(0.00684317 0.00440256 0.00169383) 14053
(0.00721603 0.0043955 0.00168659) 14054
(0.00758896 0.00438797 0.00167876) 14055
(0.00801204 0.00438516 0.00167501) 14056
(0.00846904 0.00438569 0.00167524) 14056
(0.0064359 0.00417993 0.00182952) 14112
(0.0064359 0.00417993 0.00182952) 14112
(0.0064359 0.00417993 0.00182952) 14112
(0.00690371 0.0041729 0.00182514) 14113
(0.00764968 0.00415025 0.00181406) 14115
(0.00805269 0.00414483 0.00181129) 14116
(0.00849712 0.004146 0.00180995) 14116
(0.0062643 0.00397639 0.00204213) 14172
(0.00709636 0.00395895 0.00203269) 14174
(0.0120558 0.00364101 0.00289432) 14364
(0.0126371 0.00365504 0.00289605) 14365
(0.0131663 0.00366107 0.00289558) 14366
(0.0136327 0.00365757 0.00289382) 14367
(0.0062146 0.00359241 0.00319896) 14412
(0.00668471 0.00359182 0.0032017) 14413
(0.011669 0.00360245 0.00319196) 14423
(0.0122426 0.00361623 0.00319291) 14424
(0.0128003 0.00362702 0.00319287) 14425
(0.0133151 0.00363099 0.0031916) 14426
(0.0137952 0.00362924 0.00319112) 14427
(0.0142388 0.00362255 0.00319134) 14428
(0.00601595 0.0037506 0.00359433) 14532
(0.00601595 0.0037506 0.00359433) 14532
(0.00601595 0.0037506 0.00359433) 14532
(0.00657997 0.00371632 0.0035501) 14473
(0.00720354 0.00368784 0.00350552) 14474
(0.00778086 0.00365873 0.00348046) 14475
(0.00825638 0.00363659 0.00347147) 14476
(0.00865172 0.00361999 0.0034716) 14477
(0.00568587 0.00388718 0.00380186) 14591
(0.00568587 0.00388718 0.00380186) 14591
(0.00568587 0.00388718 0.00380186) 14591
(0.00609312 0.0038331 0.00378259) 14532
(0.00672974 0.00378596 0.00374084) 14533
(0.00748938 0.00374846 0.00371082) 14534
(0.00812334 0.00373146 0.00370612) 14536
(0.00863134 0.00372249 0.00370721) 14537
(0.00701284 0.00397664 0.00395966) 14594
(0.00611844 0.00474304 0.00439149) 14772
(0.00654018 0.00472759 0.00440165) 14773
(0.00633167 0.00501879 0.00442376) 14832
(0.00725238 0.00501198 0.00443691) 14834
(0.00761109 0.00500921 0.00444915) 14835
(0.00799094 0.00500231 0.00445822) 14835
(0.00715325 0.00528526 0.00440035) 14894
(0.0074893 0.00529063 0.0044126) 14894
(0.00613893 0.00622612 0.00365206) 15132
(0.0062783 0.00635736 0.00340423) 15192
(0.00667084 0.00636917 0.00339762) 15193
(0.00698791 0.00638422 0.00339993) 15193
(0.00640557 0.00642629 0.00312409) 15252
(0.00640557 0.00642629 0.00312409) 15252
(0.00640557 0.00642629 0.00312409) 15252
(0.00688292 0.00643191 0.00311811) 15253
(0.00732693 0.00643814 0.00311931) 15254
(0.00775506 0.00644467 0.00312443) 15255
(0.00820154 0.00644761 0.00313012) 15256
(0.00869502 0.0064454 0.00313222) 15257
(0.000289228 0.00645637 0.00285735) 13500
(0.000158458 0.0064656 0.00288212) 13500
(0.00312703 0.00643442 0.00284059) 13506
(0.00401641 0.00637037 0.0026977) 13568
(0.00432579 0.00635984 0.00258388) 13568
(0.00477932 0.00634818 0.0027125) 13569
(0.00556388 0.0058008 0.00186183) 13751
(0.0054465 0.00556732 0.00171684) 13810
(0.00484089 0.00446344 0.00165146) 14049
(0.00580803 0.00442832 0.0017058) 14051
(0.0051256 0.00422703 0.0018293) 14110
(0.00526197 0.00421011 0.00180325) 14110
(0.00570172 0.00421247 0.00181904) 14111
(0.00503034 0.0035367 0.0032412) 14410
(0.00536433 0.00380702 0.00337503) 15910
(0.00559265 0.00383488 0.00352547) 15911
(0.00434582 0.00364878 0.00358066) 14468
(0.00485795 0.00384473 0.00368242) 14529
(0.00504809 0.0037753 0.00364966) 14530
(0.005271 0.00391438 0.00369501) 14590
(0.00478064 0.00505392 0.00434859) 14829
(0.0050355 0.00506762 0.00439347) 14830
(0.00556709 0.00502178 0.0044201) 14831
(0.00474982 0.00528575 0.00433993) 14889
(0.00228117 0.00651806 0.00292801) 6124
(0.004117 0.00639409 0.00275697) 13508
(0.00451182 0.0064158 0.00274617) 13509
(0.00474919 0.00648424 0.00293013) 13509
(0.00579745 0.00641325 0.00315269) 15251
(0.0193622 0.00301438 0.00215327) 518
(0.0208193 0.00299829 0.00220988) 32972
(0.0198167 0.00687856 0.00367544) 2019
(0.0214586 0.00695242 0.00356902) 2022
(0.0114677 0.00652881 0.00421579) 6682
(0.0127511 0.00646915 0.00416181) 6685
(0.0136985 0.00643579 0.00414208) 6687
(0.0144433 0.00641427 0.00413519) 6688
(0.015064 0.00640313 0.00412849) 6690
(0.0155998 0.00639844 0.00412359) 6691
(0.0160939 0.00639825 0.00411932) 6692
(0.0165834 0.0063984 0.00411549) 6693
(0.0170883 0.00639626 0.00411329) 6694
(0.0176114 0.00639038 0.00411005) 6695
(0.021981 0.00329543 0.00332579) 5443
(0.0228539 0.00643958 0.00210389) 13425
(0.0240598 0.00663423 0.00225408) 6108
(0.0248863 0.00668048 0.00220189) 13429
(0.0196704 0.00663771 0.00425446) 6639
(0.0222303 0.00665671 0.00414009) 1964
(0.0239407 0.00673221 0.00409945) 1967
(0.0202428 0.00637693 0.00118888) 12460
(0.0210606 0.00360862 0.00461902) 7182
(0.0224635 0.00363147 0.00466784) 7184
(0.0212327 0.00337485 0.00167174) 462
(0.0228658 0.0033369 0.00170666) 465
(0.0198787 0.00609848 0.00479337) 12219
(0.0217499 0.00613346 0.00473693) 12223
(0.0195877 0.00582185 0.00506074) 12579
(0.0195877 0.00582185 0.00506074) 12579
(0.0195877 0.00582185 0.00506074) 12579
(0.0215921 0.00581949 0.00501233) 12583
(0.0215921 0.00581949 0.00501233) 12583
(0.0215921 0.00581949 0.00501233) 12583
(0.0230606 0.00585872 0.00500122) 12586
(0.0230606 0.00585872 0.00500122) 12586
(0.0230606 0.00585872 0.00500122) 12586
(0.0235923 0.00599522 0.00493374) 12347
(0.0195813 0.00396082 0.0048428) 10539
(0.0213143 0.00399287 0.0048823) 10542
(0.0193395 0.00378907 0.00137407) 12758
(0.0220808 0.00377759 0.00142467) 12764
(0.0195347 0.00416583 0.00123973) 11499
(0.0223489 0.00411408 0.00125853) 11504
(0.0196865 0.00453086 0.0010845) 11559
(0.0216924 0.00445002 0.00112922) 11563
(0.0195774 0.0048498 0.0009382) 11619
(0.0215265 0.00478308 0.000964328) 11623
(0.0229847 0.00469736 0.000939579) 11625
(0.0208828 0.00561406 0.000975547) 12161
(0.0207075 0.0059954 0.00105281) 12281
(0.0196285 0.00540297 0.000855597) 12099
(0.0216898 0.00531325 0.000878902) 10123
(0.0230783 0.00526172 0.000847029) 11926
(0.0210018 0.00523726 0.00518967) 11442
(0.0223532 0.00525937 0.00519233) 11444
(0.0199557 0.00386927 0.00113682) 12999
(0.0213969 0.00380038 0.00114953) 13002
(0.0198823 0.00298265 0.00317403) 32688
(0.0237766 0.00304647 0.00317818) 767
(0.0250197 0.00299717 0.00315168) 34272
(0.0251853 0.00297592 0.00320542) 34272
(0.0213617 0.00670378 0.00173375) 2502
(0.0213617 0.00670378 0.00173375) 2502
(0.0213617 0.00670378 0.00173375) 2502
(0.0232357 0.00669656 0.00175966) 2506
(0.0240299 0.00666098 0.00168683) 2508
(0.0222458 0.0061838 0.0016722) 13484
(0.0232744 0.00631457 0.0017291) 13486
(0.00673759 0.00644208 0.00288244) 13513
(0.00724906 0.00644331 0.00287547) 13514
(0.00771704 0.00644615 0.00286855) 13515
(0.00815867 0.0064494 0.00286416) 13516
(0.00861182 0.00645122 0.00286532) 13517
(0.00615564 0.00635137 0.00256989) 13572
(0.00664523 0.00636365 0.00260154) 13573
(0.012554 0.00619812 0.00236598) 13645
(0.0130874 0.00619343 0.00236783) 13646
(0.0179985 0.00623171 0.00235618) 13655
(0.0185399 0.00622726 0.00236033) 13657
(0.0190559 0.00622179 0.00236367) 13658
(0.0195722 0.0062133 0.00236393) 13659
(0.0201072 0.00620142 0.00236076) 13660
(0.0206523 0.00618822 0.00235239) 13661
(0.0211697 0.00617842 0.00234026) 13662
(0.00623863 0.00582913 0.00187743) 13752
(0.00619495 0.00558928 0.00172115) 13812
(0.00611946 0.00467283 0.00161963) 13992
(0.0065169 0.00466574 0.00161253) 13993
(0.00638253 0.00440898 0.00169618) 14052
(0.00638253 0.00440898 0.00169618) 14052
(0.00638253 0.00440898 0.00169618) 14052
(0.00682126 0.00440281 0.00169371) 14053
(0.00719539 0.0043958 0.0016867) 14054
(0.00756768 0.00438821 0.0016789) 14055
(0.00798889 0.00438526 0.00167496) 14055
(0.00844506 0.00438564 0.00167508) 14056
(0.00641283 0.00418037 0.00182931) 14112
(0.00641283 0.00418037 0.00182931) 14112
(0.00641283 0.00418037 0.00182931) 14112
(0.00688117 0.00417301 0.00182515) 14113
(0.00762897 0.00415063 0.00181413) 14115
(0.00803053 0.00414484 0.00181135) 14116
(0.00847336 0.00414576 0.00180992) 14116
(0.00624042 0.00397662 0.0020418) 14172
(0.00707589 0.00395934 0.00203267) 14174
(0.012031 0.00364035 0.00289423) 14364
(0.0126132 0.00365453 0.002896) 14365
(0.0131448 0.00366094 0.00289563) 14366
(0.0136139 0.00365782 0.0028939) 14367
(0.00619549 0.00359195 0.00319881) 14412
(0.00666409 0.00359174 0.00320208) 14413
(0.0116447 0.00360197 0.00319187) 14423
(0.0122176 0.00361564 0.00319292) 14424
(0.0127769 0.00362666 0.00319294) 14425
(0.013293 0.00363087 0.0031917) 14426
(0.0137747 0.00362936 0.00319117) 14427
(0.0142195 0.00362285 0.00319135) 14428
(0.00599575 0.00375269 0.00359389) 14531
(0.00599575 0.00375269 0.00359389) 14531
(0.00599575 0.00375269 0.00359389) 14531
(0.00655418 0.00371738 0.00355219) 14473
(0.00717527 0.00368915 0.00350735) 14474
(0.00775561 0.00365989 0.00348133) 14475
(0.00823485 0.0036374 0.00347177) 14476
(0.00863188 0.0036206 0.00347162) 14477
(0.00567152 0.00388738 0.00380104) 14591
(0.00567152 0.00388738 0.00380104) 14591
(0.00567152 0.00388738 0.00380104) 14591
(0.00607312 0.00383459 0.0037836) 14532
(0.00669718 0.00378794 0.00374292) 14533
(0.00745534 0.00374976 0.00371183) 14534
(0.00809548 0.003732 0.00370635) 14536
(0.00860743 0.00372281 0.00370726) 14537
(0.00698875 0.00397897 0.0039608) 14593
(0.00609718 0.00474368 0.00439115) 14772
(0.00651839 0.00472796 0.00440159) 14773
(0.00630721 0.00501904 0.00442372) 14832
(0.00723127 0.00501186 0.00443676) 14834
(0.00759078 0.00500952 0.00444884) 14835
(0.00796891 0.00500262 0.00445815) 14835
(0.00713361 0.00528512 0.00440012) 14894
(0.00746961 0.00529047 0.00441231) 14894
(0.00611504 0.00622621 0.00365221) 15132
(0.0062572 0.00635721 0.00340486) 15192
(0.00665096 0.00636891 0.00339789) 15193
(0.00696892 0.00638387 0.00339974) 15193
(0.00638278 0.00642626 0.00312496) 15252
(0.00638278 0.00642626 0.00312496) 15252
(0.00638278 0.00642626 0.00312496) 15252
(0.00685998 0.00643185 0.00311854) 15253
(0.00730433 0.00643798 0.00311937) 15254
(0.00773236 0.00644455 0.00312419) 15255
(0.00817715 0.0064477 0.00312999) 15256
(0.00866873 0.00644571 0.00313227) 15257
(0.000543833 0.00645542 0.00285912) 13501
(0.00014332 0.00646563 0.00288009) 13500
(0.00291174 0.00645209 0.00285794) 13505
(0.00400398 0.00636994 0.00269954) 13568
(0.00432424 0.00635876 0.00258407) 13568
(0.00476187 0.00634972 0.00270543) 13569
(0.00554129 0.00580188 0.00186183) 13751
(0.00542559 0.00556712 0.0017166) 13810
(0.00489218 0.00444454 0.0016354) 14049
(0.00579379 0.00442922 0.00170751) 14051
(0.00512459 0.00423259 0.00183336) 14110
(0.00525586 0.00421095 0.00180755) 14110
(0.00568535 0.00421338 0.00181917) 14111
(0.00497109 0.00355948 0.00325381) 14409
(0.00535572 0.00380809 0.00337115) 15910
(0.00558375 0.00383728 0.00351617) 15911
(0.00385359 0.00363838 0.00358861) 14467
(0.00485827 0.00385473 0.00367909) 14529
(0.00504238 0.0037681 0.00365043) 14530
(0.00525682 0.00391017 0.0036939) 14530
(0.00503246 0.00506682 0.00439082) 14830
(0.00554767 0.00502482 0.00441972) 14831
(0.00473664 0.00528358 0.00433759) 14889
(0.00408365 0.0063978 0.00276045) 13508
(0.00452024 0.0064152 0.00274185) 13509
(0.00470462 0.00648362 0.00290525) 13509
(0.00577486 0.00641397 0.00315222) 15251
(0.0193134 0.00301308 0.00215122) 518
(0.020782 0.00300128 0.00220611) 521
(0.0197488 0.00688018 0.00367714) 2019
(0.0214096 0.00694741 0.0035734) 2022
(0.011422 0.0065313 0.00421857) 6682
(0.0127156 0.00647062 0.00416277) 6685
(0.0136728 0.00643657 0.00414216) 6687
(0.0144224 0.00641466 0.00413513) 6688
(0.0150467 0.0064032 0.00412838) 6690
(0.0155845 0.00639835 0.00412346) 6691
(0.0160791 0.00639802 0.00411925) 6692
(0.016568 0.00639818 0.00411542) 6693
(0.0170718 0.00639621 0.00411313) 6694
(0.017595 0.00639042 0.00410984) 6695
(0.0181005 0.00638378 0.00410752) 6696
(0.0218782 0.00329347 0.00332528) 5443
(0.0227788 0.00642884 0.00208965) 13425
(0.0240147 0.00663043 0.00225392) 6108
(0.0248721 0.0066788 0.00220555) 13429
(0.019575 0.0066413 0.00425923) 6639
(0.0221442 0.00665383 0.00414281) 1964
(0.023911 0.00672761 0.00410105) 1967
(0.0202119 0.00637907 0.00119021) 6820
(0.0210006 0.00360778 0.00461795) 7182
(0.0224398 0.00362852 0.00466308) 7184
(0.0211608 0.00337616 0.00166896) 462
(0.022833 0.00334048 0.0017043) 465
(0.0198063 0.00609692 0.00479759) 12219
(0.0216925 0.00613079 0.00473773) 12223
(0.0195269 0.00582137 0.00506217) 12579
(0.0195269 0.00582137 0.00506217) 12579
(0.0195269 0.00582137 0.00506217) 12579
(0.0215237 0.00581843 0.005013) 12583
(0.0215237 0.00581843 0.005013) 12583
(0.0215237 0.00581843 0.005013) 12583
(0.0230318 0.00585472 0.00500166) 12586
(0.0230318 0.00585472 0.00500166) 12586
(0.0230318 0.00585472 0.00500166) 12586
(0.023592 0.00598608 0.00494027) 12347
(0.0195092 0.00395719 0.00483969) 10539
(0.021258 0.00399215 0.00487989) 10542
(0.0192862 0.00379092 0.00137214) 12758
(0.0219796 0.00377862 0.00142483) 12763
(0.019435 0.00415823 0.00123882) 11498
(0.0222477 0.00411762 0.0012599) 11504
(0.0196043 0.00452837 0.00108116) 11559
(0.0216299 0.00445465 0.00112955) 11563
(0.0195051 0.0048499 0.000937009) 11619
(0.0214617 0.00478659 0.000964902) 11622
(0.0229554 0.00470214 0.000941191) 11625
(0.0208288 0.00561623 0.000977406) 12161
(0.0206542 0.00599495 0.0010532) 12281
(0.0195771 0.00540843 0.000856389) 12099
(0.0216186 0.00531542 0.0008795) 10123
(0.0230591 0.00526567 0.000850797) 11926
(0.0209494 0.00523721 0.00518981) 11441
(0.0223244 0.00525567 0.0051912) 11444
(0.0199231 0.00387394 0.00113477) 12999
(0.0213649 0.00380595 0.0011484) 13002
(0.0197807 0.00298155 0.00316877) 32688
(0.0236506 0.00304922 0.00317939) 767
(0.0250043 0.00300039 0.00315092) 770
(0.0251936 0.00297476 0.00320005) 34272
(0.0212743 0.00670562 0.00173122) 2502
(0.0212743 0.00670562 0.00173122) 2502
(0.0212743 0.00670562 0.00173122) 2502
(0.0231907 0.00669677 0.00176154) 2506
(0.0240292 0.00666536 0.001694) 2508
(0.0221187 0.00617836 0.00166638) 13484
(0.0232571 0.00631129 0.0017306) 13486
(0.00671321 0.00644206 0.00288275) 13513
(0.00722441 0.00644331 0.0028758) 13514
(0.00769361 0.00644611 0.00286889) 13515
(0.00813561 0.00644938 0.00286423) 13516
(0.00858746 0.00645133 0.00286509) 13517
(0.00613109 0.00635106 0.00256822) 13572
(0.00662145 0.00636369 0.00260091) 13573
(0.0125306 0.00619854 0.00236586) 13645
(0.0130656 0.00619347 0.00236778) 13646
(0.0179735 0.00623197 0.00235608) 13655
(0.0185163 0.0062275 0.00236018) 13657
(0.0190334 0.00622215 0.00236368) 13658
(0.0195494 0.00621379 0.00236406) 13659
(0.0200832 0.00620209 0.00236109) 13660
(0.0206287 0.00618886 0.00235298) 13661
(0.0211474 0.00617888 0.00234093) 13662
(0.0216379 0.0061729 0.00232824) 13663
(0.00621559 0.00582913 0.00187731) 13752
(0.0061719 0.00558908 0.0017209) 13812
(0.00609493 0.00467304 0.00161955) 13992
(0.00649491 0.00466589 0.00161245) 13992
(0.00636002 0.00440944 0.00169594) 14052
(0.00636002 0.00440944 0.00169594) 14052
(0.00636002 0.00440944 0.00169594) 14052
(0.00679932 0.00440305 0.00169358) 14053
(0.00717471 0.0043961 0.0016868) 14054
(0.00754651 0.00438844 0.00167906) 14055
(0.00796585 0.00438537 0.00167492) 14055
(0.00842109 0.0043856 0.00167492) 14056
(0.00638974 0.00418084 0.00182909) 14112
(0.00638974 0.00418084 0.00182909) 14112
(0.00638974 0.00418084 0.00182909) 14112
(0.00685857 0.00417312 0.00182515) 14113
(0.00760832 0.00415101 0.00181422) 14115
(0.00800846 0.00414486 0.0018114) 14116
(0.00844967 0.00414552 0.0018099) 14116
(0.00621657 0.00397686 0.00204145) 14172
(0.00705532 0.00395973 0.00203264) 14174
(0.0120063 0.00363969 0.00289415) 14364
(0.0125892 0.00365401 0.00289595) 14365
(0.0131232 0.00366081 0.00289568) 14366
(0.013595 0.00365805 0.00289398) 14367
(0.00617647 0.00359148 0.00319863) 14412
(0.00664357 0.00359165 0.00320246) 14413
(0.0116204 0.0036015 0.00319178) 14423
(0.0121926 0.00361506 0.00319293) 14424
(0.0127534 0.00362629 0.00319301) 14425
(0.0132709 0.00363075 0.00319181) 14426
(0.013754 0.00362947 0.00319122) 14427
(0.0142002 0.00362315 0.00319136) 14428
(0.00597605 0.00375498 0.00359291) 14531
(0.00597605 0.00375498 0.00359291) 14531
(0.00597605 0.00375498 0.00359291) 14531
(0.00652862 0.00371845 0.00355424) 14473
(0.00714699 0.00369044 0.00350921) 14474
(0.0077302 0.00366106 0.00348224) 14475
(0.00821323 0.00363822 0.00347209) 14476
(0.00861207 0.00362121 0.00347163) 14477
(0.00565721 0.00388749 0.00380014) 14591
(0.00565721 0.00388749 0.00380014) 14591
(0.00565721 0.00388749 0.00380014) 14591
(0.00605347 0.00383601 0.00378451) 14532
(0.00666517 0.00378987 0.00374496) 14533
(0.0074212 0.00375112 0.0037129) 14534
(0.00806737 0.00373256 0.00370659) 14536
(0.00858344 0.00372314 0.00370733) 14537
(0.00696467 0.00398134 0.00396194) 14593
(0.00607599 0.00474432 0.00439081) 14772
(0.00649665 0.00472832 0.00440151) 14772
(0.00628276 0.00501929 0.00442367) 14832
(0.0072101 0.00501174 0.00443662) 14834
(0.00757049 0.00500982 0.00444852) 14835
(0.00794701 0.00500294 0.00445805) 14835
(0.0071139 0.00528498 0.0043999) 14894
(0.00745001 0.00529031 0.00441201) 14894
(0.00609115 0.0062263 0.00365236) 15132
(0.00623618 0.00635705 0.00340549) 15192
(0.00663107 0.00636865 0.00339818) 15193
(0.00694997 0.00638352 0.00339956) 15193
(0.00636007 0.00642623 0.0031258) 15252
(0.00636007 0.00642623 0.0031258) 15252
(0.00636007 0.00642623 0.0031258) 15252
(0.00683705 0.00643178 0.003119) 15253
(0.00728174 0.00643782 0.00311945) 15254
(0.00770974 0.00644441 0.00312396) 15255
(0.00815291 0.00644778 0.00312986) 15256
(0.00864247 0.00644601 0.00313232) 15257
(0.000888438 0.00645599 0.00285982) 13501
(0.000128804 0.00646542 0.00287704) 13500
(0.00275016 0.00646297 0.00286662) 13505
(0.00400304 0.00636912 0.00269894) 13568
(0.00430492 0.00635813 0.0025872) 13568
(0.00474449 0.00635129 0.00269827) 13569
(0.00551869 0.00580288 0.00186187) 13751
(0.00540445 0.00556691 0.0017164) 13810
(0.00491014 0.0044295 0.00162217) 5709
(0.00577998 0.00443008 0.00170956) 14051
(0.0051205 0.00423723 0.00183781) 14110
(0.00525595 0.0042125 0.00181259) 14110
(0.00566909 0.00421435 0.00181927) 14111
(0.00489375 0.00360236 0.00328382) 14409
(0.00535991 0.0037981 0.00336704) 15910
(0.00557388 0.00383975 0.00350712) 15911
(0.00242828 0.0036036 0.00357985) 5344
(0.00503872 0.00376441 0.0036527) 14530
(0.00524324 0.00390602 0.0036925) 14530
(0.00502865 0.00506589 0.00438819) 14830
(0.00552941 0.00502787 0.00441918) 14831
(0.00472235 0.00528273 0.0043354) 14889
(0.00561579 0.00634096 0.00342806) 15191
(0.00404759 0.00640188 0.00276415) 13508
(0.00452055 0.00641482 0.00273832) 13509
(0.00466409 0.00648114 0.00288345) 13509
(0.00575219 0.00641477 0.00315161) 15251
(0.0207439 0.00300409 0.00220249) 521
(0.0213598 0.00694247 0.00357783) 2022
(0.0113772 0.00653373 0.00422136) 6682
(0.0126794 0.00647215 0.0041638) 6685
(0.0136467 0.00643736 0.00414227) 6687
(0.0144013 0.00641506 0.00413507) 6688
(0.0150294 0.00640328 0.00412827) 6690
(0.0155691 0.00639827 0.00412332) 6691
(0.0160642 0.00639779 0.00411918) 6692
(0.0165526 0.00639795 0.0041154) 6693
(0.0170553 0.00639615 0.00411297) 6694
(0.0175785 0.00639047 0.00410962) 6695
(0.0180856 0.00638386 0.00410715) 6696
(0.0217657 0.00329065 0.00332475) 5443
(0.0226968 0.00641841 0.00207499) 13425
(0.0239699 0.00662629 0.00225336) 6107
(0.0248566 0.0066771 0.00220916) 13429
(0.0194875 0.00664544 0.00426358) 6638
(0.0220556 0.0066514 0.00414542) 1964
(0.0238784 0.00672319 0.00410258) 1967
(0.0201811 0.00638114 0.00119143) 6820
(0.0209399 0.00360682 0.00461691) 7181
(0.0224148 0.00362573 0.00465847) 7184
(0.0210878 0.00337745 0.00166594) 462
(0.0227989 0.00334392 0.00170211) 465
(0.0197301 0.0060956 0.00480194) 12219
(0.0216338 0.00612827 0.00473855) 12223
(0.0194672 0.00582085 0.00506333) 12578
(0.0194672 0.00582085 0.00506333) 12578
(0.0194672 0.00582085 0.00506333) 12578
(0.0214542 0.00581747 0.00501377) 12582
(0.0214542 0.00581747 0.00501377) 12582
(0.0214542 0.00581747 0.00501377) 12582
(0.0230015 0.00585087 0.00500205) 12586
(0.0230015 0.00585087 0.00500205) 12586
(0.0230015 0.00585087 0.00500205) 12586
(0.0235947 0.0059765 0.00494635) 12347
(0.0194354 0.00395272 0.00483609) 10538
(0.0212013 0.00399136 0.00487754) 10542
(0.0192358 0.00379278 0.00137032) 12758
(0.0218772 0.00377968 0.00142477) 12763
(0.0193447 0.00415177 0.00123859) 11498
(0.0221456 0.00412123 0.00126111) 11504
(0.0195213 0.00452512 0.00107784) 11559
(0.021566 0.00445922 0.00112975) 11563
(0.019436 0.00484993 0.000935959) 11618
(0.0213958 0.00478999 0.000965374) 11622
(0.0229246 0.00470687 0.000942808) 11625
(0.0207743 0.00561849 0.00097923) 12161
(0.0206004 0.00599446 0.00105349) 12281
(0.0195266 0.00541391 0.000857301) 12099
(0.0215459 0.00531767 0.000879957) 10123
(0.0230372 0.00526934 0.000854441) 10126
(0.0208966 0.00523717 0.00519001) 11441
(0.0222947 0.00525219 0.00519009) 11444
(0.0198912 0.00387864 0.0011327) 12999
(0.0213319 0.00381125 0.00114734) 13002
(0.0196815 0.00298063 0.00316303) 32688
(0.0235198 0.00305153 0.00318072) 767
(0.024988 0.00300363 0.00315033) 769
(0.0252 0.00297392 0.00319499) 34272
(0.0211821 0.00670765 0.00172828) 2502
(0.0211821 0.00670765 0.00172828) 2502
(0.0211821 0.00670765 0.00172828) 2502
(0.023144 0.00669687 0.00176316) 2506
(0.0240277 0.00666945 0.00170112) 2508
(0.0219735 0.00617429 0.00166088) 13483
(0.0232396 0.00630792 0.00173192) 13486
(0.00668893 0.00644203 0.00288304) 13513
(0.00719975 0.00644332 0.00287616) 13514
(0.00767018 0.00644606 0.0028692) 13515
(0.00811261 0.00644934 0.00286432) 13516
(0.00856316 0.00645142 0.00286487) 13517
(0.00610652 0.00635075 0.00256657) 13572
(0.00659755 0.00636372 0.00260022) 13573
(0.012507 0.00619897 0.00236573) 13645
(0.0130437 0.00619352 0.00236772) 13646
(0.0179484 0.00623223 0.00235598) 13655
(0.0184927 0.00622774 0.00236004) 13656
(0.0190109 0.0062225 0.00236369) 13658
(0.0195267 0.00621427 0.00236418) 13659
(0.0200592 0.00620275 0.00236141) 13660
(0.020605 0.00618952 0.00235357) 13661
(0.0211251 0.00617934 0.0023416) 13662
(0.0216167 0.00617321 0.00232895) 13663
(0.0061926 0.00582915 0.0018772) 13752
(0.00614887 0.00558888 0.00172064) 13812
(0.00607026 0.00467326 0.00161947) 13992
(0.0064728 0.00466605 0.00161237) 13992
(0.00633752 0.00440994 0.00169571) 14052
(0.00633752 0.00440994 0.00169571) 14052
(0.00633752 0.00440994 0.00169571) 14052
(0.00677733 0.0044033 0.00169344) 14053
(0.00715398 0.00439639 0.00168689) 14054
(0.00752542 0.00438867 0.00167923) 14055
(0.00794293 0.00438549 0.00167489) 14055
(0.00839714 0.00438556 0.00167476) 14056
(0.00636665 0.00418135 0.00182885) 14112
(0.00636665 0.00418135 0.00182885) 14112
(0.00636665 0.00418135 0.00182885) 14112
(0.0068359 0.00417324 0.00182514) 14113
(0.00722418 0.00416396 0.00181922) 14114
(0.00758772 0.00415139 0.00181431) 14115
(0.00798649 0.0041449 0.00181147) 14115
(0.00842604 0.00414529 0.00180987) 14116
(0.00619275 0.00397713 0.00204108) 14172
(0.00703467 0.00396009 0.00203261) 14174
(0.0119815 0.00363905 0.00289407) 14363
(0.0125651 0.00365348 0.0028959) 14365
(0.0131015 0.00366065 0.00289572) 14366
(0.0135759 0.00365827 0.00289406) 14367
(0.00615749 0.00359101 0.00319842) 14412
(0.00662313 0.00359155 0.00320283) 14413
(0.0115962 0.00360103 0.00319167) 14423
(0.0121676 0.00361447 0.00319294) 14424
(0.0127298 0.0036259 0.00319308) 14425
(0.0132487 0.00363061 0.00319191) 14426
(0.0137333 0.00362956 0.00319127) 14427
(0.0141809 0.00362344 0.00319138) 14428
(0.00595682 0.00375712 0.00359169) 14531
(0.00595682 0.00375712 0.00359169) 14531
(0.00595682 0.00375712 0.00359169) 14531
(0.00650328 0.00371953 0.00355624) 14473
(0.00711875 0.00369173 0.0035111) 14474
(0.00770462 0.00366224 0.0034832) 14475
(0.00819147 0.00363906 0.00347244) 14476
(0.00859228 0.00362182 0.00347164) 14477
(0.00564289 0.00388749 0.00379915) 14591
(0.00564289 0.00388749 0.00379915) 14591
(0.00564289 0.00388749 0.00379915) 14591
(0.00603414 0.00383736 0.00378532) 14532
(0.00663382 0.00379178 0.00374696) 14533
(0.0073869 0.00375252 0.00371403) 14534
(0.00803901 0.00373313 0.00370686) 14536
(0.00855936 0.00372349 0.00370742) 14537
(0.0069406 0.00398372 0.00396306) 14593
(0.00605485 0.00474497 0.00439046) 14772
(0.00647497 0.00472867 0.00440142) 14772
(0.00625835 0.00501955 0.00442361) 14832
(0.00718888 0.00501168 0.00443648) 14834
(0.00755022 0.00501008 0.00444821) 14835
(0.00792524 0.00500325 0.00445794) 14835
(0.00709419 0.00528476 0.0043997) 14894
(0.00743044 0.00529018 0.0044117) 14894
(0.00606728 0.00622639 0.00365253) 15132
(0.00621532 0.00635688 0.00340613) 15192
(0.00661119 0.00636838 0.00339851) 15193
(0.00693108 0.00638317 0.00339934) 15193
(0.00633744 0.00642619 0.00312662) 15252
(0.00633744 0.00642619 0.00312662) 15252
(0.00633744 0.00642619 0.00312662) 15252
(0.00681415 0.00643173 0.0031195) 15253
(0.00725913 0.00643767 0.00311954) 15254
(0.00768716 0.00644426 0.00312375) 15255
(0.00812883 0.00644784 0.00312972) 15256
(0.00861623 0.00644631 0.00313236) 15257
(0.001251 0.00645426 0.00285581) 13502
(0.000121669 0.00646508 0.00287441) 13500
(0.00250551 0.00647468 0.00287496) 13505
(0.00399056 0.00636882 0.00270081) 13567
(0.00428617 0.00635958 0.00259331) 13568
(0.00472726 0.00635294 0.0026911) 13569
(0.00549606 0.00580382 0.00186193) 13750
(0.00538307 0.00556668 0.00171624) 13810
(0.00491127 0.00441736 0.00161168) 5709
(0.00576636 0.00443095 0.00171199) 14051
(0.00511897 0.00424322 0.00184281) 14110
(0.00524978 0.00421371 0.00181632) 14110
(0.00565312 0.00421533 0.00181945) 14111
(0.00481168 0.00366566 0.00334433) 14469
(0.00536595 0.00378942 0.00336384) 14470
(0.00556377 0.00383635 0.00350648) 15911
(0.00485123 0.00379096 0.00353815) 15909
(0.00503167 0.00376068 0.00365393) 14530
(0.00523065 0.0039019 0.00369048) 14530
(0.00502529 0.00506497 0.00438516) 14830
(0.00551166 0.00503028 0.00441868) 14831
(0.00470634 0.00528371 0.00433315) 14889
(0.00533041 0.00529097 0.00433031) 14890
(0.0055988 0.00633898 0.00342913) 15191
(0.00400705 0.00640652 0.00276833) 13508
(0.00451584 0.00641428 0.00273518) 13509
(0.00464102 0.00647761 0.00287076) 13509
(0.00572815 0.00641609 0.00315047) 15251
(0.0207048 0.00300671 0.00219901) 521
(0.0213092 0.00693762 0.00358232) 2022
(0.0126428 0.00647371 0.00416487) 6685
(0.0136203 0.00643817 0.00414242) 6687
(0.0143802 0.00641548 0.00413499) 6688
(0.0150119 0.00640337 0.00412816) 6690
(0.0155536 0.0063982 0.00412317) 6691
(0.0160494 0.00639756 0.00411911) 6692
(0.0165371 0.00639769 0.00411539) 6693
(0.0170388 0.00639607 0.00411283) 6694
(0.017562 0.00639053 0.00410939) 6695
(0.0180705 0.00638393 0.00410678) 6696
(0.0216414 0.00328674 0.00332417) 5443
(0.0226071 0.00640858 0.00206) 13425
(0.0239255 0.00662182 0.00225235) 6107
(0.0248398 0.00667539 0.00221269) 13429
(0.0194137 0.00664874 0.00426823) 6638
(0.0219647 0.00664935 0.00414797) 6703
(0.0238423 0.00671897 0.00410406) 1967
(0.0201503 0.00638315 0.00119254) 6820
(0.0212412 0.00631756 0.00115788) 12462
(0.0208788 0.00360573 0.00461587) 7181
(0.0223885 0.0036231 0.00465403) 7184
(0.0210139 0.00337866 0.00166268) 462
(0.0227632 0.00334721 0.00170011) 465
(0.0196515 0.00609453 0.0048064) 12219
(0.0215739 0.00612592 0.0047394) 12223
(0.0194093 0.00582024 0.00506411) 12578
(0.0194093 0.00582024 0.00506411) 12578
(0.0194093 0.00582024 0.00506411) 12578
(0.0213837 0.00581659 0.00501465) 12582
(0.0213837 0.00581659 0.00501465) 12582
(0.0213837 0.00581659 0.00501465) 12582
(0.0229695 0.00584718 0.00500239) 12585
(0.0229695 0.00584718 0.00500239) 12585
(0.0229695 0.00584718 0.00500239) 12585
(0.0235976 0.00596697 0.00495198) 12347
(0.0193629 0.00394746 0.00483195) 10538
(0.0211445 0.00399049 0.00487521) 10542
(0.0217738 0.00378078 0.0014245) 12763
(0.0220432 0.00412494 0.00126215) 11504
(0.021501 0.00446379 0.00112981) 11563
(0.0213288 0.00479329 0.000965748) 11622
(0.0228923 0.00471161 0.000944435) 11625
(0.0207192 0.00562079 0.000981009) 12161
(0.0205464 0.00599395 0.00105371) 12281
(0.0220421 0.00600087 0.00104176) 12284
(0.0214715 0.00532007 0.000880278) 10122
(0.0230131 0.00527275 0.00085797) 10126
(0.0208435 0.0052371 0.00519027) 11441
(0.0222641 0.00524892 0.00518902) 11444
(0.0198599 0.00388339 0.00113061) 12999
(0.0212979 0.0038163 0.00114632) 13002
(0.019585 0.00298014 0.00315707) 32688
(0.0233848 0.00305339 0.00318211) 766
(0.0249704 0.00300688 0.00314995) 769
(0.025205 0.00297341 0.00319016) 34272
(0.0210838 0.00670992 0.00172479) 2502
(0.0210838 0.00670992 0.00172479) 2502
(0.0210838 0.00670992 0.00172479) 2502
(0.0230956 0.00669686 0.00176449) 2506
(0.0240251 0.00667328 0.001708) 2508
(0.0218098 0.00617232 0.00165629) 13483
(0.0232221 0.00630446 0.00173301) 13486
(0.00666475 0.00644201 0.00288332) 13513
(0.0071751 0.00644332 0.00287651) 13514
(0.00764674 0.006446 0.00286953) 13515
(0.00808966 0.00644931 0.00286441) 13516
(0.00853895 0.00645151 0.00286468) 13517
(0.00608194 0.00635044 0.00256492) 13572
(0.00657355 0.00636373 0.00259946) 13573
(0.0124835 0.00619941 0.00236561) 13644
(0.0130218 0.00619359 0.00236767) 13646
(0.0179233 0.0062325 0.00235587) 13655
(0.018469 0.00622797 0.00235989) 13656
(0.0189883 0.00622284 0.0023637) 13657
(0.0195041 0.00621473 0.00236429) 13659
(0.0200352 0.0062034 0.00236172) 13660
(0.0205813 0.00619017 0.00235415) 13661
(0.0211028 0.00617981 0.00234226) 13662
(0.0215955 0.00617353 0.00232966) 13663
(0.00616964 0.00582923 0.00187714) 13752
(0.00612587 0.00558869 0.0017204) 13812
(0.00604546 0.00467349 0.0016194) 13992
(0.00645058 0.00466622 0.00161229) 13992
(0.00631505 0.00441047 0.00169548) 14052
(0.00631505 0.00441047 0.00169548) 14052
(0.00631505 0.00441047 0.00169548) 14052
(0.00675531 0.00440355 0.0016933) 14053
(0.00713322 0.00439667 0.00168698) 14054
(0.0075044 0.00438892 0.00167939) 14055
(0.00792013 0.00438562 0.00167487) 14055
(0.00837321 0.00438554 0.0016746) 14056
(0.00634355 0.0041819 0.00182858) 14112
(0.00634355 0.0041819 0.00182858) 14112
(0.00634355 0.0041819 0.00182858) 14112
(0.00681318 0.00417335 0.00182514) 14113
(0.00720346 0.00416432 0.00181932) 14114
(0.00756717 0.00415179 0.00181441) 14115
(0.00796461 0.00414495 0.00181154) 14115
(0.00840248 0.00414508 0.00180985) 14116
(0.00616897 0.00397743 0.00204068) 14172
(0.00701393 0.00396044 0.00203259) 14174
(0.0119569 0.00363841 0.00289399) 14363
(0.0125409 0.00365293 0.00289585) 14365
(0.0130797 0.00366048 0.00289576) 14366
(0.0135568 0.00365847 0.00289414) 14367
(0.00613854 0.00359053 0.00319817) 14412
(0.0066028 0.00359145 0.0032032) 14413
(0.0115719 0.00360058 0.00319156) 14423
(0.0121426 0.00361388 0.00319294) 14424
(0.0127062 0.0036255 0.00319315) 14425
(0.0132265 0.00363046 0.00319202) 14426
(0.0137125 0.00362965 0.00319132) 14427
(0.0141615 0.00362373 0.0031914) 14428
(0.0059381 0.00375931 0.00359006) 14531
(0.0059381 0.00375931 0.00359006) 14531
(0.0059381 0.00375931 0.00359006) 14531
(0.00647824 0.00372059 0.00355812) 14472
(0.00709055 0.00369301 0.003513) 14474
(0.0076789 0.00366345 0.00348419) 14475
(0.00816959 0.00363992 0.00347282) 14476
(0.00857249 0.00362244 0.00347164) 14477
(0.00562851 0.00388742 0.0037981) 14591
(0.00562851 0.00388742 0.0037981) 14591
(0.00562851 0.00388742 0.0037981) 14591
(0.00601511 0.00383862 0.00378607) 14532
(0.00660311 0.00379367 0.00374891) 14533
(0.00735256 0.00375397 0.00371522) 14534
(0.00801045 0.00373373 0.00370714) 14536
(0.00853518 0.00372385 0.00370754) 14537
(0.00691652 0.00398614 0.00396418) 14593
(0.00603377 0.00474564 0.0043901) 14772
(0.00645337 0.00472903 0.0044013) 14772
(0.00623402 0.0050198 0.00442355) 14832
(0.00716762 0.00501165 0.00443635) 14834
(0.00752998 0.0050103 0.0044479) 14835
(0.00790359 0.00500355 0.00445781) 14835
(0.00707443 0.00528446 0.00439952) 14894
(0.00741092 0.00529005 0.00441139) 14894
(0.00619448 0.0063567 0.00340676) 15192
(0.00659134 0.00636812 0.00339885) 15193
(0.00691222 0.00638283 0.00339914) 15193
(0.00631489 0.00642616 0.00312741) 15252
(0.00631489 0.00642616 0.00312741) 15252
(0.00631489 0.00642616 0.00312741) 15252
(0.00679125 0.00643168 0.00312001) 15253
(0.00723653 0.00643752 0.00311964) 15254
(0.00766462 0.0064441 0.00312354) 15255
(0.0081049 0.00644788 0.00312958) 15256
(0.00859004 0.0064466 0.00313239) 15257
(0.00153343 0.00644948 0.00284926) 13503
(0.000108002 0.00646482 0.00287166) 13500
(0.00229477 0.00648085 0.00287901) 13504
(0.00397781 0.00636865 0.00270273) 13567
(0.00426343 0.00636299 0.00260631) 13568
(0.00470167 0.00635388 0.00268134) 13569
(0.00547388 0.00580451 0.00186195) 13750
(0.00536146 0.00556645 0.0017161) 13810
(0.00490786 0.00440867 0.00160515) 5709
(0.00575301 0.00443184 0.0017148) 14051
(0.00511673 0.00424915 0.00184803) 14110
(0.00524948 0.00421567 0.00182068) 14110
(0.0056374 0.00421633 0.00181967) 14111
(0.00469363 0.00371037 0.00341785) 14469
(0.00537262 0.0037801 0.00335996) 14470
(0.00555526 0.00383815 0.00349588) 15911
(0.00487384 0.00378318 0.00353017) 14469
(0.00502524 0.00375745 0.00365489) 14530
(0.00522168 0.00389839 0.00369144) 14530
(0.00502236 0.00506425 0.00438167) 14830
(0.0054943 0.00503231 0.00441814) 14830
(0.00469077 0.00528602 0.00433034) 14889
(0.00530351 0.00529153 0.00433141) 14890
(0.00558193 0.00633674 0.00343016) 15191
(0.00396495 0.00641128 0.00277267) 13507
(0.00450812 0.00641217 0.00273414) 13509
(0.00462764 0.00647398 0.00286047) 13509
(0.00570407 0.00641744 0.00314922) 15251
(0.020665 0.00300916 0.00219565) 521
(0.0212578 0.00693288 0.00358683) 2022
(0.0126057 0.00647533 0.004166) 6685
(0.0135937 0.00643898 0.00414261) 6687
(0.0143589 0.00641593 0.00413491) 6688
(0.0149942 0.00640347 0.00412806) 6689
(0.0155381 0.00639814 0.00412302) 6691
(0.0160346 0.00639731 0.00411904) 6692
(0.0165217 0.00639744 0.00411538) 6693
(0.0170224 0.00639601 0.00411269) 6694
(0.0175454 0.00639059 0.00410915) 6695
(0.0180553 0.006384 0.00410643) 6696
(0.0215041 0.00328163 0.00332356) 5443
(0.0225079 0.00640039 0.00204673) 13425
(0.0238813 0.006617 0.00225082) 6107
(0.0248214 0.00667366 0.00221616) 13429
(0.0218714 0.00664768 0.00415054) 6643
(0.0238031 0.00671493 0.00410547) 1967
(0.0201193 0.00638512 0.00119357) 6820
(0.0212231 0.00632328 0.00116289) 12462
(0.0208178 0.00360455 0.00461481) 7181
(0.0223608 0.00362064 0.00464976) 7184
(0.0209392 0.00337978 0.0016592) 461
(0.022726 0.0033504 0.00169825) 465
(0.0195731 0.0060937 0.0048109) 12219
(0.0215126 0.00612376 0.00474028) 12223
(0.0213124 0.0058158 0.00501563) 12582
(0.0213124 0.0058158 0.00501563) 12582
(0.0213124 0.0058158 0.00501563) 12582
(0.0229357 0.00584366 0.00500266) 12585
(0.0229357 0.00584366 0.00500266) 12585
(0.0229357 0.00584366 0.00500266) 12585
(0.0236006 0.00595754 0.00495715) 12347
(0.0210877 0.00398951 0.00487293) 10542
(0.0216696 0.00378191 0.00142398) 12763
(0.0219408 0.00412876 0.00126302) 11503
(0.0242734 0.00406908 0.00120791) 11508
(0.0214349 0.00446832 0.00112974) 11562
(0.021261 0.0047965 0.000966027) 11622
(0.0228582 0.0047163 0.000946073) 11625
(0.0206638 0.00562315 0.000982745) 12161
(0.0204922 0.00599343 0.00105385) 12280
(0.0220103 0.00600269 0.00104476) 12284
(0.0213954 0.00532263 0.00088047) 10122
(0.0229867 0.00527593 0.000861379) 10125
(0.0207902 0.005237 0.00519058) 11441
(0.0222326 0.00524587 0.00518798) 11444
(0.0198293 0.00388819 0.00112852) 12999
(0.021263 0.00382111 0.00114534) 13002
(0.019491 0.00298007 0.00315093) 32544
(0.023248 0.00305487 0.00318344) 766
(0.0249516 0.00301013 0.00314982) 769
(0.0252088 0.00297328 0.00318554) 34272
(0.020979 0.0067125 0.00172073) 2501
(0.020979 0.0067125 0.00172073) 2501
(0.020979 0.0067125 0.00172073) 2501
(0.0230454 0.0066968 0.00176558) 2506
(0.0240213 0.00667692 0.00171459) 2508
(0.0216285 0.00617308 0.0016529) 13483
(0.0232046 0.00630088 0.00173382) 13486
(0.00664066 0.00644198 0.00288358) 13513
(0.00715046 0.00644332 0.00287686) 13514
(0.0076233 0.00644595 0.00286986) 13515
(0.00806676 0.00644926 0.00286452) 13516
(0.00851481 0.0064516 0.00286451) 13517
(0.00605736 0.00635013 0.00256328) 13572
(0.00654943 0.00636373 0.00259864) 13573
(0.0124599 0.00619985 0.00236548) 13644
(0.0129997 0.00619368 0.00236761) 13645
(0.0178981 0.00623276 0.00235577) 13655
(0.0184453 0.0062282 0.00235973) 13656
(0.0189657 0.00622318 0.0023637) 13657
(0.0194815 0.00621519 0.0023644) 13658
(0.0200113 0.00620405 0.00236201) 13660
(0.0205575 0.00619084 0.00235472) 13661
(0.0210804 0.00618028 0.00234292) 13662
(0.0215742 0.00617385 0.00233038) 13663
(0.00614671 0.00582933 0.00187709) 13752
(0.00664617 0.00582957 0.00187002) 13753
(0.0061029 0.00558851 0.00172017) 13812
(0.00653362 0.00559171 0.00171207) 13813
(0.00602056 0.00467374 0.00161933) 13992
(0.00642826 0.0046664 0.00161219) 13992
(0.00629261 0.00441106 0.00169525) 14052
(0.00629261 0.00441106 0.00169525) 14052
(0.00629261 0.00441106 0.00169525) 14052
(0.00673325 0.00440379 0.00169316) 14053
(0.00711243 0.00439697 0.00168705) 14054
(0.00748344 0.00438917 0.00167956) 14054
(0.00789745 0.00438574 0.00167487) 14055
(0.00834931 0.00438551 0.00167445) 14056
(0.00632045 0.00418248 0.0018283) 14112
(0.00632045 0.00418248 0.0018283) 14112
(0.00632045 0.00418248 0.0018283) 14112
(0.00679039 0.00417347 0.00182512) 14113
(0.0071827 0.00416467 0.00181941) 14114
(0.00754668 0.00415219 0.00181449) 14115
(0.00794282 0.00414501 0.00181162) 14115
(0.00837899 0.00414488 0.00180982) 14116
(0.00614522 0.00397774 0.00204027) 14172
(0.0119323 0.00363778 0.00289391) 14363
(0.0125167 0.00365237 0.00289579) 14365
(0.0130578 0.00366028 0.00289579) 14366
(0.0135375 0.00365866 0.00289421) 14367
(0.00611967 0.00359006 0.00319788) 14412
(0.00658256 0.00359134 0.00320356) 14413
(0.0115477 0.00360012 0.00319144) 14423
(0.0121176 0.00361329 0.00319296) 14424
(0.0126825 0.00362509 0.00319321) 14425
(0.0132042 0.0036303 0.00319212) 14426
(0.0136917 0.00362972 0.00319136) 14427
(0.014142 0.003624 0.00319142) 14428
(0.0145743 0.00361566 0.00319346) 14429
(0.00591989 0.00376134 0.0035882) 14531
(0.00591989 0.00376134 0.0035882) 14531
(0.00591989 0.00376134 0.0035882) 14531
(0.00645355 0.00372164 0.00355989) 14472
(0.00706242 0.00369426 0.00351492) 14474
(0.00765303 0.00366466 0.00348522) 14475
(0.00814758 0.00364079 0.00347322) 14476
(0.00855274 0.00362307 0.00347165) 14477
(0.00561409 0.00388726 0.00379698) 14591
(0.00561409 0.00388726 0.00379698) 14591
(0.00561409 0.00388726 0.00379698) 14591
(0.0059964 0.00383982 0.00378672) 14531
(0.00657291 0.00379552 0.00375083) 14533
(0.00731816 0.00375545 0.00371647) 14534
(0.00798168 0.00373436 0.00370744) 14535
(0.0085109 0.00372422 0.00370767) 14537
(0.00689246 0.00398857 0.00396528) 14593
(0.00601271 0.00474631 0.00438973) 14772
(0.00643184 0.00472938 0.00440118) 14772
(0.00620984 0.00502006 0.00442348) 14832
(0.00714626 0.00501161 0.00443623) 14834
(0.00750975 0.00501053 0.00444759) 14835
(0.00788206 0.00500385 0.00445766) 14835
(0.00705456 0.00528418 0.00439935) 14894
(0.00739147 0.00528991 0.00441108) 14894
(0.00617365 0.00635652 0.00340739) 15192
(0.00657149 0.00636785 0.00339921) 15193
(0.00689338 0.00638249 0.00339896) 15193
(0.00629242 0.00642613 0.00312817) 15252
(0.00629242 0.00642613 0.00312817) 15252
(0.00629242 0.00642613 0.00312817) 15252
(0.00676838 0.00643163 0.00312055) 15253
(0.00721394 0.00643737 0.00311977) 15254
(0.00764212 0.00644394 0.00312335) 15255
(0.00808114 0.00644791 0.00312943) 15256
(0.00856393 0.00644688 0.0031324) 15257
(0.00178823 0.0064417 0.0028441) 13503
(0.000108437 0.00646443 0.00286795) 13500
(0.00210985 0.00648283 0.00288073) 13504
(0.00397672 0.00636796 0.00270227) 13567
(0.00423957 0.00636916 0.00262633) 13568
(0.00468227 0.00635559 0.00267312) 13569
(0.00545171 0.00580518 0.00186199) 13750
(0.00533962 0.0055662 0.00171599) 13810
(0.00488837 0.00440009 0.00159969) 5709
(0.0057396 0.00443283 0.00171799) 14051
(0.00511301 0.00425488 0.00185343) 14110
(0.00524382 0.00421764 0.00182381) 14110
(0.00562179 0.00421736 0.00181993) 14111
(0.00437587 0.00371607 0.00347951) 14468
(0.00537801 0.00377199 0.00335657) 14470
(0.00554672 0.00383374 0.0034944) 15911
(0.00489064 0.00377047 0.0035228) 14469
(0.00501975 0.00375832 0.00365754) 14530
(0.00520839 0.00389423 0.00369175) 14530
(0.00501612 0.00506355 0.00437858) 14830
(0.00547894 0.00503521 0.00441696) 14830
(0.00468047 0.00528711 0.00432633) 14889
(0.00527731 0.00529367 0.00433289) 14890
(0.00556502 0.00633415 0.00343117) 15191
(0.00391992 0.00641613 0.00277736) 13507
(0.00449775 0.0064103 0.00273327) 13568
(0.00462822 0.0064712 0.0028529) 13509
(0.00567951 0.00641892 0.00314777) 15251
(0.0206245 0.0030114 0.00219246) 521
(0.0212059 0.00692828 0.00359136) 2022
(0.0125677 0.00647703 0.00416722) 6685
(0.0135666 0.00643982 0.00414285) 6687
(0.0143373 0.00641639 0.00413483) 6688
(0.0149765 0.00640357 0.00412797) 6689
(0.0155225 0.00639807 0.00412289) 6691
(0.0160199 0.00639707 0.00411897) 6692
(0.0165063 0.00639718 0.00411536) 6693
(0.0170059 0.00639594 0.00411255) 6694
(0.0175289 0.00639066 0.00410892) 6695
(0.0180399 0.00638407 0.00410608) 6696
(0.0213534 0.00327523 0.00332302) 5442
(0.0223995 0.00639368 0.0020336) 13424
(0.0238372 0.00661186 0.00224873) 6107
(0.0248013 0.00667191 0.00221954) 13429
(0.0217759 0.00664638 0.00415315) 6643
(0.0237601 0.0067111 0.00410684) 1967
(0.0200881 0.00638707 0.00119454) 6820
(0.0212041 0.00632869 0.00116763) 12462
(0.0207571 0.00360332 0.00461375) 7181
(0.0223315 0.00361835 0.00464566) 7184
(0.0208638 0.00338081 0.00165554) 401
(0.0226871 0.00335346 0.00169651) 465
(0.0194983 0.00609307 0.00481538) 12218
(0.0214501 0.00612172 0.00474121) 12222
(0.0212401 0.00581507 0.00501672) 12582
(0.0212401 0.00581507 0.00501672) 12582
(0.0212401 0.00581507 0.00501672) 12582
(0.0229005 0.00584028 0.00500288) 12585
(0.0229005 0.00584028 0.00500288) 12585
(0.0229005 0.00584028 0.00500288) 12585
(0.0236036 0.00594829 0.00496181) 12347
(0.0210306 0.00398842 0.00487065) 10542
(0.0215645 0.00378306 0.0014232) 12763
(0.0218387 0.00413268 0.00126374) 11503
(0.0242427 0.0040732 0.00121061) 11508
(0.0213681 0.0044727 0.00112953) 11562
(0.0211925 0.00479961 0.000966218) 11622
(0.0228224 0.00472083 0.000947691) 11625
(0.0206082 0.00562557 0.000984441) 12161
(0.020438 0.00599291 0.00105396) 12280
(0.0219773 0.00600433 0.0010476) 12283
(0.0213178 0.00532533 0.000880531) 10122
(0.0229578 0.00527887 0.000864659) 10125
(0.0207369 0.00523691 0.00519095) 11441
(0.0222 0.00524302 0.00518699) 11444
(0.0197992 0.00389301 0.00112643) 12999
(0.0212273 0.00382571 0.0011444) 13002
(0.0193995 0.00298034 0.00314463) 32544
(0.023109 0.00305596 0.00318473) 766
(0.0249315 0.00301336 0.00314985) 769
(0.0252116 0.00297352 0.00318118) 34272
(0.0208679 0.00671554 0.00171603) 2501
(0.0208679 0.00671554 0.00171603) 2501
(0.0208679 0.00671554 0.00171603) 2501
(0.0229934 0.00669676 0.00176654) 2505
(0.0240159 0.00668029 0.00172083) 2508
(0.0214312 0.00617703 0.00165092) 13482
(0.0231866 0.00629723 0.00173441) 13486
(0.00661666 0.00644194 0.00288383) 13513
(0.00712583 0.00644332 0.00287721) 13514
(0.00759985 0.00644589 0.0028702) 13515
(0.00804392 0.00644921 0.00286463) 13516
(0.00849076 0.00645167 0.00286436) 13516
(0.00603275 0.00634983 0.00256166) 13572
(0.00652521 0.00636372 0.00259776) 13573
(0.0124363 0.0062003 0.00236535) 13644
(0.0129776 0.00619378 0.00236755) 13645
(0.0134657 0.00619742 0.00236765) 13646
(0.0178728 0.00623303 0.00235566) 13655
(0.0184214 0.00622843 0.00235957) 13656
(0.0189431 0.00622351 0.00236369) 13657
(0.0194589 0.00621564 0.0023645) 13658
(0.0199874 0.00620468 0.00236229) 13659
(0.0205337 0.0061915 0.00235527) 13661
(0.021058 0.00618076 0.00234358) 13662
(0.0215529 0.00617419 0.00233109) 13663
(0.00612384 0.00582943 0.00187704) 13752
(0.00662352 0.0058293 0.00186979) 13753
(0.00607994 0.00558833 0.00171994) 13812
(0.00651116 0.00559167 0.00171198) 13813
(0.00599556 0.004674 0.00161926) 13991
(0.00640582 0.00466658 0.0016121) 13992
(0.00627021 0.00441168 0.00169501) 14052
(0.00627021 0.00441168 0.00169501) 14052
(0.00627021 0.00441168 0.00169501) 14052
(0.00671116 0.00440404 0.00169301) 14053
(0.00709159 0.00439725 0.00168711) 14054
(0.00746253 0.00438942 0.00167973) 14054
(0.00787489 0.00438588 0.00167488) 14055
(0.00832545 0.00438549 0.0016743) 14056
(0.00629736 0.00418311 0.00182799) 14112
(0.00629736 0.00418311 0.00182799) 14112
(0.00629736 0.00418311 0.00182799) 14112
(0.00676754 0.00417359 0.00182511) 14113
(0.0071619 0.00416502 0.0018195) 14114
(0.00752623 0.00415261 0.00181458) 14115
(0.00792112 0.00414508 0.00181171) 14115
(0.00835558 0.00414468 0.00180981) 14116
(0.00612148 0.00397809 0.00203983) 14172
(0.0119079 0.00363716 0.00289385) 14363
(0.0124923 0.00365181 0.00289572) 14364
(0.0130357 0.00366007 0.00289582) 14366
(0.0135182 0.00365883 0.00289428) 14367
(0.00610088 0.00358958 0.00319753) 14412
(0.0065624 0.00359121 0.00320391) 14413
(0.0115235 0.00359967 0.0031913) 14423
(0.0120927 0.00361272 0.003193) 14424
(0.0126587 0.00362467 0.00319325) 14425
(0.0131818 0.00363013 0.00319222) 14426
(0.0136707 0.00362978 0.00319141) 14427
(0.0141225 0.00362426 0.00319145) 14428
(0.0145547 0.00361601 0.00319343) 14429
(0.00590214 0.00376343 0.00358592) 14531
(0.00590214 0.00376343 0.00358592) 14531
(0.00590214 0.00376343 0.00358592) 14531
(0.00642923 0.00372263 0.00356149) 14472
(0.00703434 0.0036955 0.00351684) 14474
(0.00762703 0.00366589 0.00348629) 14475
(0.00812543 0.00364167 0.00347364) 14476
(0.00853301 0.0036237 0.00347166) 14477
(0.00559965 0.00388702 0.0037958) 14591
(0.00559965 0.00388702 0.0037958) 14591
(0.00559965 0.00388702 0.0037958) 14591
(0.00597798 0.00384093 0.00378727) 14531
(0.00654325 0.00379733 0.0037527) 14533
(0.00728364 0.00375696 0.00371778) 14534
(0.00795265 0.00373501 0.00370777) 14535
(0.0084865 0.00372461 0.00370781) 14536
(0.0068684 0.00399101 0.00396638) 14593
(0.00599165 0.00474695 0.00438935) 14771
(0.00641038 0.00472975 0.00440103) 14772
(0.00618576 0.00502031 0.0044234) 14832
(0.00712482 0.00501155 0.00443613) 14834
(0.00748953 0.00501074 0.00444728) 14834
(0.00786066 0.00500414 0.0044575) 14835
(0.00703459 0.00528392 0.00439918) 14894
(0.00737207 0.00528974 0.00441079) 14894
(0.00615281 0.00635634 0.00340801) 15192
(0.00655166 0.00636759 0.00339958) 15193
(0.00687456 0.00638214 0.0033988) 15193
(0.00627001 0.00642611 0.0031289) 15252
(0.00627001 0.00642611 0.0031289) 15252
(0.00627001 0.00642611 0.0031289) 15252
(0.00674553 0.0064316 0.00312111) 15253
(0.00719136 0.00643721 0.00311991) 15254
(0.00761966 0.00644378 0.00312317) 15255
(0.00805753 0.00644792 0.00312928) 15256
(0.00853791 0.00644716 0.0031324) 15257
(0.00207739 0.00643141 0.00284091) 13504
(0.000115609 0.00646393 0.00286387) 13500
(0.00190137 0.0064832 0.0028825) 13503
(0.00396376 0.00636783 0.00270436) 13567
(0.00420763 0.00637539 0.00264897) 13568
(0.00466244 0.00635748 0.00266449) 13569
(0.00542948 0.00580585 0.00186206) 13750
(0.00531757 0.00556593 0.0017159) 13810
(0.00481743 0.0043895 0.00160083) 5709
(0.00572634 0.00443375 0.0017217) 14051
(0.00510527 0.00425934 0.00185879) 14110
(0.00523832 0.00421986 0.00182663) 14110
(0.00560642 0.00421839 0.00182031) 14111
(0.00383955 0.00367831 0.00350092) 14467
(0.00538036 0.00376444 0.00335404) 14470
(0.00553934 0.00383464 0.00348452) 15911
(0.00488953 0.00375616 0.00351631) 14469
(0.00500909 0.00376166 0.00365952) 14530
(0.00519583 0.00388994 0.00369163) 14530
(0.00500344 0.00506253 0.00437699) 14830
(0.00546625 0.00503893 0.004415) 14830
(0.00465833 0.00529223 0.00432523) 14889
(0.00525328 0.00529448 0.00433269) 14890
(0.00554785 0.00633122 0.0034321) 15191
(0.00387003 0.0064213 0.00278273) 13507
(0.00448552 0.00640798 0.00273306) 13568
(0.00464363 0.00646953 0.00284754) 13509
(0.00565457 0.00642049 0.00314618) 15251
(0.0205832 0.00301346 0.00218942) 521
(0.0211535 0.00692384 0.0035959) 2022
(0.0125294 0.00647874 0.00416852) 6685
(0.0135392 0.00644067 0.00414314) 6687
(0.0143156 0.0064169 0.00413474) 6688
(0.0149587 0.00640369 0.00412786) 6689
(0.0155068 0.00639801 0.00412275) 6691
(0.0160051 0.00639683 0.00411889) 6692
(0.0164909 0.00639694 0.00411534) 6692
(0.0169895 0.00639587 0.00411242) 6693
(0.0175123 0.00639072 0.00410869) 6695
(0.0180245 0.00638413 0.00410575) 6696
(0.0211886 0.00326733 0.00332232) 5442
(0.0222807 0.00638957 0.00202226) 13484
(0.0237933 0.00660639 0.00224612) 6107
(0.0247795 0.00667011 0.00222283) 13429
(0.0216779 0.00664544 0.00415582) 6643
(0.0237137 0.00670747 0.00410814) 1967
(0.0200568 0.00638902 0.00119546) 6820
(0.0211843 0.00633381 0.00117211) 12462
(0.020697 0.00360212 0.0046127) 7181
(0.0223005 0.00361622 0.00464174) 7184
(0.0207877 0.00338174 0.00165169) 401
(0.0226465 0.00335643 0.00169488) 465
(0.0194305 0.0060924 0.00481962) 12218
(0.021386 0.0061198 0.00474221) 12222
(0.0211672 0.00581442 0.00501788) 12582
(0.0211672 0.00581442 0.00501788) 12582
(0.0211672 0.00581442 0.00501788) 12582
(0.0228639 0.00583705 0.00500306) 12585
(0.0228639 0.00583705 0.00500306) 12585
(0.0228639 0.00583705 0.00500306) 12585
(0.0236048 0.00593949 0.004966) 12587
(0.0209737 0.00398717 0.00486836) 10541
(0.0214585 0.00378419 0.00142216) 12762
(0.0217368 0.00413668 0.00126427) 11503
(0.0242078 0.0040773 0.00121343) 11508
(0.0213005 0.00447698 0.00112918) 11562
(0.0211233 0.00480261 0.00096632) 11622
(0.0227848 0.00472525 0.000949308) 11625
(0.0205526 0.00562804 0.000986103) 12161
(0.0203839 0.00599239 0.00105401) 12280
(0.021943 0.00600579 0.0010503) 12283
(0.021239 0.00532817 0.000880478) 10122
(0.0229265 0.00528161 0.000867806) 10125
(0.0206838 0.0052368 0.00519139) 11441
(0.0221664 0.00524035 0.00518603) 11444
(0.0211908 0.0038301 0.00114348) 13002
(0.0193103 0.00298092 0.00313809) 32544
(0.0229711 0.00305683 0.00318591) 765
(0.0249102 0.00301656 0.00315003) 769
(0.0252134 0.00297411 0.0031771) 34272
(0.0207549 0.00671914 0.00171111) 2501
(0.0207549 0.00671914 0.00171111) 2501
(0.0207549 0.00671914 0.00171111) 2501
(0.0229392 0.00669674 0.00176735) 2505
(0.0240089 0.00668333 0.0017268) 2508
(0.0212236 0.00618422 0.00165034) 13482
(0.0231686 0.00629345 0.00173474) 13486
(0.00659275 0.00644191 0.00288407) 13513
(0.00710122 0.00644333 0.00287756) 13514
(0.0075764 0.00644584 0.00287054) 13515
(0.00802112 0.00644916 0.00286476) 13516
(0.0084668 0.00645174 0.00286424) 13516
(0.00600813 0.00634952 0.00256005) 13572
(0.00650088 0.00636369 0.00259683) 13573
(0.0124127 0.00620075 0.00236521) 13644
(0.0129554 0.00619391 0.00236748) 13645
(0.0134456 0.00619715 0.00236769) 13646
(0.0183975 0.00622864 0.00235941) 13656
(0.0189205 0.00622384 0.00236368) 13657
(0.0194363 0.00621608 0.00236461) 13658
(0.0199635 0.00620531 0.00236255) 13659
(0.0205098 0.00619217 0.00235581) 13661
(0.0210355 0.00618125 0.00234423) 13662
(0.0215315 0.00617453 0.00233179) 13663
(0.00610101 0.00582954 0.00187701) 13752
(0.00660083 0.00582905 0.00186956) 13753
(0.006057 0.00558814 0.00171971) 13812
(0.00648867 0.00559163 0.00171188) 13812
(0.00597048 0.0046743 0.0016192) 13991
(0.00638324 0.00466678 0.001612) 13992
(0.00624784 0.00441236 0.00169478) 14052
(0.00624784 0.00441236 0.00169478) 14052
(0.00624784 0.00441236 0.00169478) 14052
(0.00668902 0.00440429 0.00169286) 14053
(0.00707072 0.00439753 0.00168716) 14054
(0.00744167 0.00438968 0.0016799) 14054
(0.00785244 0.00438603 0.0016749) 14055
(0.00830166 0.00438544 0.00167417) 14056
(0.00627427 0.00418377 0.00182766) 14112
(0.00627427 0.00418377 0.00182766) 14112
(0.00627427 0.00418377 0.00182766) 14112
(0.00674465 0.00417371 0.00182508) 14113
(0.00714104 0.00416535 0.00181958) 14114
(0.00750582 0.00415304 0.00181466) 14115
(0.0078995 0.00414517 0.0018118) 14115
(0.00833226 0.00414452 0.00180978) 14116
(0.00609777 0.00397845 0.00203936) 14172
(0.0118834 0.00363655 0.00289377) 14363
(0.0124678 0.00365123 0.00289565) 14364
(0.0130136 0.00365985 0.00289585) 14366
(0.0134987 0.00365898 0.00289435) 14366
(0.00608214 0.00358912 0.00319714) 14412
(0.00654235 0.00359108 0.00320426) 14413
(0.0114992 0.00359923 0.00319115) 14422
(0.0120678 0.00361214 0.00319303) 14424
(0.0126348 0.00362423 0.00319331) 14425
(0.0131594 0.00362995 0.00319232) 14426
(0.0136497 0.00362982 0.00319145) 14427
(0.0141029 0.00362452 0.00319149) 14428
(0.0145352 0.00361635 0.00319339) 14429
(0.00588438 0.00376561 0.00358329) 14531
(0.00588438 0.00376561 0.00358329) 14531
(0.00588438 0.00376561 0.00358329) 14531
(0.00640518 0.00372362 0.00356301) 14472
(0.00700633 0.00369673 0.00351879) 14474
(0.0076009 0.00366714 0.00348741) 14475
(0.00810315 0.00364256 0.00347407) 14476
(0.00851326 0.00362434 0.00347169) 14477
(0.00558523 0.0038867 0.00379455) 14591
(0.00558523 0.0038867 0.00379455) 14591
(0.00558523 0.0038867 0.00379455) 14591
(0.00595981 0.00384195 0.00378775) 14531
(0.00651424 0.00379911 0.00375451) 14533
(0.00724925 0.0037585 0.00371912) 14534
(0.00792338 0.00373569 0.00370813) 14535
(0.00846198 0.003725 0.00370796) 14536
(0.00684434 0.00399347 0.00396745) 14593
(0.00597059 0.00474754 0.00438896) 14771
(0.00638901 0.00473014 0.00440087) 14772
(0.00616177 0.00502056 0.00442331) 14832
(0.00667398 0.00501231 0.0044293) 14833
(0.00710329 0.00501149 0.00443603) 14834
(0.0074693 0.00501094 0.00444697) 14834
(0.00783937 0.00500443 0.00445733) 14835
(0.00701449 0.00528369 0.00439902) 14894
(0.00735272 0.00528956 0.00441049) 14894
(0.00613195 0.00635615 0.00340862) 15192
(0.00653183 0.00636732 0.00339997) 15193
(0.00685576 0.0063818 0.00339866) 15193
(0.00624768 0.0064261 0.00312959) 15252
(0.00624768 0.0064261 0.00312959) 15252
(0.00624768 0.0064261 0.00312959) 15252
(0.00672271 0.00643157 0.00312168) 15253
(0.00716878 0.00643706 0.00312007) 15254
(0.00759723 0.0064436 0.003123) 15255
(0.00803405 0.00644791 0.00312912) 15256
(0.00851197 0.00644742 0.00313239) 15257
(0.00235255 0.00641799 0.0028409) 13504
(0.00013767 0.00646311 0.00285989) 13500
(0.00167501 0.00648186 0.00288415) 13503
(0.00396173 0.00636742 0.0027042) 13567
(0.00417729 0.00637971 0.00266465) 13568
(0.00463439 0.00635853 0.00265366) 13569
(0.00540726 0.00580643 0.00186214) 13750
(0.00529531 0.00556566 0.00171584) 13810
(0.00472728 0.00438151 0.00160534) 5709
(0.00571242 0.0044348 0.00172578) 14051
(0.00510011 0.00426531 0.00186425) 14110
(0.00523779 0.00422292 0.00182983) 14110
(0.00559119 0.00421946 0.00182075) 14111
(0.00282837 0.00359579 0.00346934) 14465
(0.00537846 0.0037595 0.00335319) 14470
(0.0055319 0.00383504 0.0034755) 15911
(0.00488102 0.00374564 0.00350845) 14469
(0.00499931 0.00376958 0.00366293) 14529
(0.00518438 0.00388537 0.00369039) 14530
(0.00499158 0.00506157 0.00437511) 14829
(0.00545518 0.00504257 0.00441263) 14830
(0.00463645 0.00529855 0.00432374) 14889
(0.00522954 0.00529524 0.00433249) 14890
(0.00553008 0.00632798 0.00343292) 15191
(0.00381648 0.00642667 0.00278858) 13507
(0.00447251 0.00640572 0.002733) 13568
(0.00466885 0.00646895 0.00284424) 13509
(0.00562943 0.00642209 0.00314448) 15251
(0.020541 0.00301537 0.00218651) 521
(0.0211004 0.00691961 0.00360044) 2022
(0.0124907 0.00648044 0.00416993) 6684
(0.0135114 0.00644154 0.0041435) 6687
(0.0142938 0.00641744 0.0041346) 6688
(0.0149408 0.00640383 0.00412772) 6689
(0.0154911 0.00639794 0.00412263) 6690
(0.0159902 0.0063966 0.00411882) 6691
(0.0164756 0.00639669 0.00411532) 6692
(0.0169732 0.00639579 0.0041123) 6693
(0.0174957 0.00639077 0.00410847) 6694
(0.0180089 0.00638419 0.00410544) 6696
(0.0210107 0.00325787 0.00332138) 5442
(0.0221524 0.00638879 0.00201317) 13484
(0.0237494 0.00660063 0.00224296) 6107
(0.0247559 0.00666824 0.00222599) 6109
(0.0215783 0.0066447 0.00415867) 6643
(0.0236639 0.00670402 0.0041094) 1967
(0.0200254 0.00639095 0.00119632) 6820
(0.0211637 0.00633866 0.00117633) 12462
(0.0206377 0.00360099 0.00461169) 7181
(0.0222679 0.00361426 0.00463798) 7184
(0.0207112 0.00338257 0.00164767) 401
(0.0226042 0.00335929 0.00169335) 465
(0.0193712 0.00609149 0.00482379) 12218
(0.0213207 0.00611795 0.00474331) 12222
(0.021094 0.00581385 0.00501911) 12582
(0.021094 0.00581385 0.00501911) 12582
(0.021094 0.00581385 0.00501911) 12582
(0.0228257 0.00583395 0.00500319) 12585
(0.0228257 0.00583395 0.00500319) 12585
(0.0228257 0.00583395 0.00500319) 12585
(0.0236041 0.00593116 0.00496975) 12587
(0.0209168 0.00398578 0.00486605) 10541
(0.0213516 0.00378529 0.00142083) 12762
(0.0216351 0.0041407 0.00126458) 11503
(0.024168 0.00408138 0.00121634) 11508
(0.0212325 0.00448118 0.0011287) 11562
(0.0210537 0.00480551 0.000966328) 11622
(0.0227454 0.00472958 0.000950922) 11625
(0.020497 0.00563058 0.000987733) 12160
(0.0203302 0.00599189 0.00105403) 12280
(0.0219073 0.00600708 0.00105285) 12283
(0.0211584 0.0053311 0.00088026) 10122
(0.0228924 0.00528416 0.000870814) 10125
(0.0206308 0.00523667 0.00519189) 11441
(0.0221317 0.00523791 0.0051851) 11444
(0.0211536 0.0038343 0.00114258) 13002
(0.0228331 0.00305736 0.00318691) 765
(0.0228331 0.00305736 0.00318691) 765
(0.0228331 0.00305736 0.00318691) 765
(0.0248875 0.00301973 0.00315037) 769
(0.0252141 0.00297501 0.00317326) 34272
(0.0206462 0.00672329 0.00170647) 2501
(0.0206462 0.00672329 0.00170647) 2501
(0.0206462 0.00672329 0.00170647) 2501
(0.0228833 0.00669674 0.00176804) 2505
(0.0240003 0.00668603 0.00173249) 2508
(0.0210089 0.00619487 0.00165138) 13482
(0.0231498 0.00628961 0.00173485) 13486
(0.00656892 0.00644187 0.0028843) 13513
(0.00707663 0.00644333 0.00287791) 13514
(0.00755295 0.00644577 0.00287088) 13515
(0.00799837 0.00644909 0.0028649) 13515
(0.00844293 0.00645181 0.00286415) 13516
(0.00598349 0.0063492 0.00255845) 13571
(0.00647646 0.00636365 0.00259585) 13572
(0.0123891 0.0062012 0.00236508) 13644
(0.0129331 0.00619405 0.00236742) 13645
(0.0134254 0.0061969 0.00236772) 13646
(0.0183734 0.00622886 0.00235925) 13656
(0.0188978 0.00622415 0.00236366) 13657
(0.0194138 0.00621651 0.0023647) 13658
(0.0199397 0.00620593 0.0023628) 13659
(0.0204859 0.00619283 0.00235634) 13660
(0.021013 0.00618173 0.00234487) 13662
(0.02151 0.00617487 0.00233249) 13663
(0.00607815 0.00582965 0.00187699) 13752
(0.00657811 0.00582881 0.00186934) 13753
(0.00603403 0.00558795 0.00171948) 13812
(0.00646615 0.00559158 0.00171177) 13812
(0.00636053 0.00466698 0.00161189) 13992
(0.0062255 0.00441308 0.00169454) 14052
(0.0062255 0.00441308 0.00169454) 14052
(0.0062255 0.00441308 0.00169454) 14052
(0.00666685 0.00440455 0.0016927) 14053
(0.00704981 0.0043978 0.00168721) 14054
(0.00742085 0.00438994 0.00168006) 14054
(0.00783009 0.00438618 0.00167493) 14055
(0.00827792 0.00438538 0.00167406) 14056
(0.0062512 0.00418448 0.0018273) 14112
(0.0062512 0.00418448 0.0018273) 14112
(0.0062512 0.00418448 0.0018273) 14112
(0.00672171 0.00417385 0.00182506) 14113
(0.00712011 0.00416568 0.00181965) 14114
(0.00748545 0.00415348 0.00181474) 14114
(0.00787797 0.00414527 0.00181189) 14115
(0.00830901 0.00414439 0.00180974) 14116
(0.00607408 0.00397884 0.00203888) 14172
(0.0118591 0.00363595 0.00289368) 14363
(0.0124433 0.00365064 0.00289559) 14364
(0.0129914 0.0036596 0.00289587) 14365
(0.0134791 0.00365912 0.00289441) 14366
(0.00606345 0.00358865 0.0031967) 14412
(0.00652238 0.00359095 0.0032046) 14413
(0.011475 0.0035988 0.00319102) 14422
(0.0120429 0.00361156 0.00319303) 14424
(0.0126108 0.00362379 0.00319337) 14425
(0.0131369 0.00362976 0.00319241) 14426
(0.0136286 0.00362986 0.0031915) 14427
(0.0140833 0.00362477 0.00319154) 14428
(0.0145157 0.00361669 0.00319332) 14429
(0.00586715 0.0037676 0.00358047) 14531
(0.00586715 0.0037676 0.00358047) 14531
(0.00586715 0.0037676 0.00358047) 14531
(0.00638146 0.00372457 0.00356436) 14532
(0.00697845 0.00369796 0.00352078) 14473
(0.00757463 0.0036684 0.00348858) 14475
(0.00808072 0.00364347 0.00347452) 14476
(0.0084935 0.003625 0.00347173) 14476
(0.00557077 0.00388627 0.00379319) 14591
(0.00557077 0.00388627 0.00379319) 14591
(0.00557077 0.00388627 0.00379319) 14591
(0.00594182 0.00384291 0.00378816) 14531
(0.00648578 0.00380082 0.00375626) 14532
(0.00721478 0.00376008 0.00372052) 14534
(0.0078939 0.0037364 0.00370852) 14535
(0.00843733 0.00372541 0.00370811) 14536
(0.00682028 0.00399594 0.0039685) 14593
(0.0059495 0.00474809 0.00438855) 14771
(0.00636771 0.00473055 0.0044007) 14772
(0.00613788 0.0050208 0.00442321) 14832
(0.00665053 0.00501236 0.00442933) 14833
(0.00708167 0.00501142 0.00443595) 14834
(0.00744906 0.00501112 0.00444667) 14834
(0.0078182 0.00500471 0.00445714) 14835
(0.00699432 0.00528349 0.00439886) 14893
(0.0073334 0.00528935 0.00441021) 14894
(0.00611107 0.00635597 0.00340922) 15192
(0.00651201 0.00636705 0.00340038) 15193
(0.00683697 0.00638146 0.00339855) 15193
(0.0062254 0.0064261 0.00313024) 15252
(0.0062254 0.0064261 0.00313024) 15252
(0.0062254 0.0064261 0.00313024) 15252
(0.00669992 0.00643155 0.00312225) 15253
(0.0071462 0.00643691 0.00312025) 15254
(0.00757483 0.00644343 0.00312285) 15255
(0.0080107 0.00644789 0.00312896) 15256
(0.00848612 0.00644768 0.00313236) 15256
(0.00256456 0.00640116 0.00284212) 13505
(0.000180149 0.00646207 0.00285622) 13500
(0.00142392 0.0064796 0.00288539) 13502
(0.00394889 0.00636722 0.00270635) 13567
(0.00416507 0.00638077 0.00267074) 13568
(0.00461451 0.00635986 0.0026456) 13569
(0.005384 0.00580743 0.00186235) 13750
(0.00527275 0.00556585 0.00171583) 13810
(0.00458053 0.00437588 0.00161372) 5709
(0.00569782 0.00443603 0.00173057) 14051
(0.00509408 0.00427181 0.00187008) 14110
(0.00523159 0.00422531 0.0018306) 14110
(0.0055763 0.00422052 0.00182141) 14111
(0.00167173 0.00356958 0.0034674) 5343
(0.00537467 0.00375604 0.00335232) 14470
(0.00552369 0.00383067 0.00347498) 15911
(0.00485291 0.00373336 0.00350681) 14469
(0.00498704 0.00377743 0.00366478) 14529
(0.00517329 0.00388098 0.00368957) 14530
(0.00498039 0.00506065 0.00437291) 14829
(0.00544512 0.00504591 0.00440995) 14830
(0.00461542 0.00530586 0.00432175) 14889
(0.00520597 0.00529592 0.0043323) 14890
(0.0055117 0.00632448 0.00343357) 15191
(0.00377482 0.00643113 0.00279293) 13507
(0.00446966 0.00640416 0.00273186) 13568
(0.00466886 0.00646718 0.00283722) 13509
(0.00560275 0.0064239 0.0031427) 15251
(0.020498 0.00301713 0.00218374) 520
(0.0210469 0.00691554 0.00360497) 2022
(0.0124515 0.00648215 0.00417146) 6684
(0.0134832 0.0064424 0.00414392) 6686
(0.0142718 0.00641802 0.00413443) 6688
(0.0149228 0.00640401 0.00412754) 6689
(0.0154755 0.00639789 0.00412248) 6690
(0.0159754 0.00639638 0.00411873) 6691
(0.0164603 0.00639644 0.00411531) 6692
(0.0169568 0.00639569 0.0041122) 6693
(0.017479 0.00639081 0.00410827) 6694
(0.0179933 0.00638425 0.00410514) 6695
(0.0208226 0.00324684 0.00332026) 821
(0.0220135 0.00639144 0.00200516) 13484
(0.0237056 0.00659461 0.00223931) 6107
(0.0247305 0.00666633 0.00222901) 6109
(0.0214767 0.00664426 0.00416164) 6642
(0.0236109 0.00670074 0.00411062) 1967
(0.0199938 0.00639287 0.00119713) 6819
(0.0211421 0.00634325 0.00118031) 12462
(0.0205793 0.0036 0.00461075) 7181
(0.0222337 0.00361244 0.00463439) 7184
(0.0206344 0.00338335 0.00164348) 401
(0.0225602 0.00336203 0.0016919) 465
(0.0212543 0.00611618 0.00474452) 12222
(0.0210207 0.00581335 0.00502041) 12582
(0.0210207 0.00581335 0.00502041) 12582
(0.0210207 0.00581335 0.00502041) 12582
(0.0227858 0.00583099 0.00500328) 12585
(0.0227858 0.00583099 0.00500328) 12585
(0.0227858 0.00583099 0.00500328) 12585
(0.0236022 0.00592317 0.00497313) 12587
(0.0208604 0.00398425 0.00486374) 10541
(0.0224277 0.00399105 0.00490657) 10544
(0.0212439 0.00378631 0.00141925) 12762
(0.0238687 0.00379005 0.00139977) 12767
(0.0215336 0.00414457 0.00126467) 11503
(0.0241224 0.00408545 0.00121931) 11508
(0.0211639 0.00448525 0.00112807) 11562
(0.0209838 0.00480828 0.000966232) 11621
(0.0227042 0.00473383 0.000952529) 11625
(0.0204418 0.0056332 0.000989351) 12160
(0.0202771 0.0059914 0.00105402) 12280
(0.0218703 0.0060082 0.00105526) 12283
(0.0210763 0.00533413 0.000879899) 10122
(0.022856 0.00528657 0.000873685) 10125
(0.0205783 0.0052365 0.00519247) 11441
(0.0220958 0.00523569 0.00518422) 11444
(0.0229304 0.00533583 0.00519593) 11445
(0.0211158 0.00383834 0.00114169) 13002
(0.0226965 0.00305762 0.00318772) 765
(0.0226965 0.00305762 0.00318772) 765
(0.0226965 0.00305762 0.00318772) 765
(0.0248634 0.00302283 0.00315087) 769
(0.0252139 0.0029762 0.00316966) 34272
(0.0205525 0.00672742 0.00170294) 2501
(0.0205525 0.00672742 0.00170294) 2501
(0.0205525 0.00672742 0.00170294) 2501
(0.0228254 0.00669677 0.00176858) 2505
(0.0239903 0.00668843 0.00173798) 2507
(0.0207917 0.0062086 0.00165366) 13481
(0.0231306 0.00628566 0.0017347) 13486
(0.00654519 0.00644184 0.0028845) 13513
(0.00705206 0.00644332 0.00287826) 13514
(0.00752948 0.00644571 0.00287123) 13515
(0.00797566 0.00644903 0.00286504) 13515
(0.00841918 0.00645187 0.00286411) 13516
(0.00595887 0.00634888 0.00255685) 13571
(0.00645195 0.0063636 0.00259483) 13572
(0.0123655 0.00620166 0.00236494) 13644
(0.0129108 0.00619421 0.00236735) 13645
(0.0134051 0.00619666 0.00236773) 13646
(0.0183493 0.00622908 0.00235909) 13656
(0.0188751 0.00622446 0.00236363) 13657
(0.0193913 0.00621694 0.00236479) 13658
(0.0199159 0.00620653 0.00236304) 13659
(0.0204619 0.00619349 0.00235685) 13660
(0.0209904 0.00618222 0.00234551) 13661
(0.0214885 0.00617522 0.00233318) 13662
(0.00605537 0.00582977 0.00187697) 13752
(0.00655534 0.0058286 0.00186913) 13753
(0.00601109 0.00558778 0.00171927) 13812
(0.0064436 0.00559152 0.00171165) 13812
(0.00633769 0.00466721 0.00161177) 13992
(0.0062032 0.00441385 0.0016943) 14052
(0.0062032 0.00441385 0.0016943) 14052
(0.0062032 0.00441385 0.0016943) 14052
(0.00664464 0.00440481 0.00169254) 14053
(0.00702886 0.00439807 0.00168725) 14054
(0.00740007 0.0043902 0.00168023) 14054
(0.00780785 0.00438633 0.00167497) 14055
(0.00825423 0.00438532 0.00167395) 14056
(0.00622818 0.00418524 0.00182693) 14112
(0.00622818 0.00418524 0.00182693) 14112
(0.00622818 0.00418524 0.00182693) 14112
(0.00669873 0.00417399 0.00182502) 14113
(0.00709913 0.004166 0.00181972) 14114
(0.00746511 0.00415393 0.00181482) 14114
(0.00785652 0.00414539 0.00181199) 14115
(0.00828585 0.00414426 0.00180971) 14116
(0.00605042 0.00397925 0.00203836) 14172
(0.0118349 0.00363536 0.0028936) 14363
(0.0124187 0.00365005 0.00289552) 14364
(0.012969 0.00365934 0.00289588) 14365
(0.0134594 0.00365925 0.00289447) 14366
(0.0138892 0.00365141 0.00289228) 14367
(0.0060448 0.00358819 0.00319621) 14412
(0.00650249 0.00359079 0.00320491) 14413
(0.0114508 0.00359837 0.00319087) 14422
(0.012018 0.00361098 0.00319302) 14424
(0.0125868 0.00362334 0.00319343) 14425
(0.0131144 0.00362956 0.0031925) 14426
(0.0136074 0.00362988 0.00319154) 14427
(0.0140637 0.00362501 0.0031916) 14428
(0.0144963 0.00361702 0.00319325) 14428
(0.00585042 0.00376934 0.00357744) 14531
(0.00585042 0.00376934 0.00357744) 14531
(0.00585042 0.00376934 0.00357744) 14531
(0.00635779 0.00372554 0.00356565) 14532
(0.00695059 0.00369914 0.00352273) 14473
(0.00754823 0.00366967 0.00348977) 14475
(0.00805815 0.00364439 0.00347499) 14476
(0.00847372 0.00362566 0.00347177) 14476
(0.00555627 0.00388572 0.0037917) 14591
(0.00555627 0.00388572 0.0037917) 14591
(0.00555627 0.00388572 0.0037917) 14591
(0.00592404 0.00384379 0.00378852) 14531
(0.00645807 0.0038025 0.00375792) 14532
(0.00718042 0.00376168 0.00372197) 14534
(0.0078642 0.00373714 0.00370893) 14535
(0.00679621 0.00399841 0.00396953) 14593
(0.0059284 0.0047486 0.00438814) 14771
(0.00634649 0.00473096 0.00440052) 14772
(0.0061141 0.00502104 0.0044231) 14832
(0.00662705 0.00501243 0.00442935) 14833
(0.00705996 0.00501133 0.00443588) 14834
(0.00742881 0.00501129 0.00444637) 14834
(0.00779713 0.00500499 0.00445694) 14835
(0.00697403 0.00528332 0.0043987) 14893
(0.00731411 0.00528912 0.00440993) 14894
(0.00609014 0.00635578 0.00340982) 15192
(0.00649221 0.00636678 0.00340081) 15192
(0.0068182 0.00638112 0.00339846) 15193
(0.00620318 0.0064261 0.00313085) 15252
(0.00620318 0.0064261 0.00313085) 15252
(0.00620318 0.0064261 0.00313085) 15252
(0.00667717 0.00643154 0.00312283) 15253
(0.00712364 0.00643677 0.00312045) 15254
(0.00755246 0.00644324 0.00312272) 15255
(0.00798748 0.00644786 0.0031288) 15255
(0.0084604 0.00644793 0.00313227) 15256
(0.00277399 0.00638148 0.00283961) 13505
(0.000244256 0.00646078 0.00285305) 13500
(0.00126959 0.00647818 0.00288436) 13502
(0.0039314 0.00636773 0.00270935) 13567
(0.00416716 0.00637999 0.00267064) 13568
(0.00458419 0.00636079 0.00263441) 13569
(0.00536035 0.00580909 0.00186287) 13750
(0.00525065 0.0055654 0.00171578) 13810
(0.00436699 0.00437383 0.00162609) 5708
(0.00445871 0.00426864 0.00167735) 5708
(0.00508721 0.00427872 0.00187455) 14110
(0.00522846 0.00422746 0.00183002) 14110
(0.00556195 0.00422151 0.00182265) 14111
(0.000726857 0.0035845 0.00346922) 14461
(0.00519429 0.00350538 0.00323267) 5410
(0.00536951 0.0037539 0.00335089) 14470
(0.00551566 0.00382648 0.00347397) 15911
(0.00480313 0.00371919 0.0035129) 14469
(0.00497467 0.00379062 0.00366781) 14529
(0.00516214 0.00387677 0.00368956) 14530
(0.00496897 0.00505976 0.00437052) 14829
(0.00543516 0.00504876 0.00440707) 14830
(0.00459238 0.00531379 0.00432007) 14889
(0.00518214 0.00529589 0.00433207) 14890
(0.00549286 0.00632058 0.0034339) 15190
(0.00370909 0.00643727 0.00280067) 13507
(0.00447176 0.00640265 0.00272955) 13568
(0.00466541 0.00646534 0.00282855) 13509
(0.00557505 0.00642591 0.00314065) 15251
(0.0204543 0.00301874 0.00218108) 520
(0.0208144 0.00711956 0.003731) 23501
(0.0209933 0.00691156 0.00360952) 2021
(0.0224634 0.00702645 0.00352418) 23504
(0.0124114 0.00648393 0.00417308) 6684
(0.0134547 0.0064433 0.00414436) 6686
(0.0142497 0.00641858 0.00413434) 6688
(0.0149045 0.00640416 0.00412745) 6689
(0.0154598 0.00639787 0.00412226) 6690
(0.0159607 0.00639621 0.00411855) 6691
(0.016445 0.00639619 0.00411529) 6692
(0.0169405 0.00639558 0.00411211) 6693
(0.0174623 0.00639085 0.00410806) 6694
(0.0179776 0.0063843 0.00410485) 6695
(0.0218617 0.00639852 0.00199984) 13483
(0.0236618 0.00658837 0.00223518) 6107
(0.0247032 0.00666441 0.00223189) 6109
(0.0213749 0.00664367 0.00416504) 6642
(0.0235555 0.00669763 0.00411172) 1967
(0.0199621 0.00639479 0.00119789) 6819
(0.0211198 0.00634759 0.00118406) 12462
(0.0205216 0.00359918 0.00460991) 7181
(0.0221976 0.00361077 0.00463097) 7184
(0.0205586 0.00338435 0.00163914) 401
(0.0225143 0.00336467 0.00169053) 465
(0.0211868 0.00611449 0.00474586) 12222
(0.0209477 0.00581292 0.00502177) 12581
(0.0209477 0.00581292 0.00502177) 12581
(0.0209477 0.00581292 0.00502177) 12581
(0.0227443 0.00582817 0.00500334) 12585
(0.0227443 0.00582817 0.00500334) 12585
(0.0227443 0.00582817 0.00500334) 12585
(0.0235993 0.00591546 0.00497616) 12587
(0.0208044 0.00398259 0.00486144) 10541
(0.0223913 0.00399014 0.0049032) 10544
(0.0211353 0.00378723 0.00141745) 12762
(0.0238055 0.0037917 0.00140173) 12767
(0.0214323 0.00414825 0.00126457) 11502
(0.0240703 0.00408949 0.00122229) 11508
(0.0210954 0.0044893 0.00112729) 11562
(0.0209137 0.00481096 0.000966028) 11621
(0.0226612 0.00473798 0.000954122) 11625
(0.0203871 0.00563589 0.000990964) 12160
(0.0202249 0.00599093 0.001054) 12280
(0.0218319 0.00600916 0.00105752) 12283
(0.0209941 0.0053373 0.000879459) 12101
(0.0228169 0.00528883 0.000876415) 10125
(0.0205262 0.0052363 0.00519312) 11441
(0.0220588 0.00523367 0.00518337) 11444
(0.0229285 0.00532651 0.00519522) 11445
(0.0210775 0.00384224 0.00114082) 13002
(0.0225615 0.00305763 0.00318831) 765
(0.0225615 0.00305763 0.00318831) 765
(0.0225615 0.00305763 0.00318831) 765
(0.0248377 0.00302585 0.00315153) 769
(0.0252127 0.00297766 0.00316631) 34272
(0.0204788 0.00673077 0.0017009) 2500
(0.0204788 0.00673077 0.0017009) 2500
(0.0204788 0.00673077 0.0017009) 2500
(0.0227657 0.00669682 0.00176897) 2505
(0.0239791 0.0066906 0.00174327) 2507
(0.0205743 0.00622533 0.00165735) 13481
(0.0231097 0.00628164 0.00173427) 13486
(0.00652156 0.00644181 0.00288468) 13513
(0.00702753 0.00644332 0.00287862) 13514
(0.00750602 0.00644565 0.00287158) 13515
(0.00795299 0.00644895 0.0028652) 13515
(0.00839553 0.00645192 0.00286409) 13516
(0.00593428 0.00634854 0.00255525) 13571
(0.00642737 0.00636354 0.00259376) 13572
(0.0123419 0.00620212 0.00236479) 13644
(0.0128884 0.00619438 0.00236729) 13645
(0.0133847 0.00619644 0.00236774) 13646
(0.0183251 0.00622931 0.00235894) 13656
(0.0188523 0.00622477 0.00236359) 13657
(0.0193688 0.00621736 0.00236486) 13658
(0.0198922 0.00620713 0.00236327) 13659
(0.0204379 0.00619415 0.00235733) 13660
(0.0209678 0.00618272 0.00234615) 13661
(0.0214669 0.00617557 0.00233386) 13662
(0.00603266 0.0058299 0.00187695) 13752
(0.00653253 0.00582839 0.00186892) 13753
(0.0059882 0.00558759 0.00171905) 13811
(0.00642102 0.00559146 0.00171153) 13812
(0.00631473 0.00466744 0.00161166) 13992
(0.00618094 0.00441467 0.00169405) 14052
(0.00618094 0.00441467 0.00169405) 14052
(0.00618094 0.00441467 0.00169405) 14052
(0.00662239 0.00440509 0.00169238) 14053
(0.00700785 0.00439832 0.00168727) 14054
(0.00737932 0.00439047 0.00168039) 14054
(0.0077857 0.00438649 0.00167503) 14055
(0.0082306 0.00438527 0.00167384) 14056
(0.00620519 0.00418603 0.00182654) 14112
(0.00620519 0.00418603 0.00182654) 14112
(0.00620519 0.00418603 0.00182654) 14112
(0.00667571 0.00417415 0.00182498) 14113
(0.00707807 0.00416631 0.00181978) 14114
(0.0074448 0.00415438 0.00181489) 14114
(0.00783515 0.00414553 0.00181208) 14115
(0.00826277 0.00414415 0.00180968) 14116
(0.00602678 0.00397968 0.00203782) 14172
(0.0118108 0.00363478 0.00289353) 14363
(0.0123941 0.00364945 0.00289545) 14364
(0.0129466 0.00365906 0.0028959) 14365
(0.0134396 0.00365936 0.00289453) 14366
(0.0138714 0.00365179 0.00289238) 14367
(0.0060262 0.00358773 0.00319568) 14412
(0.00648266 0.00359063 0.00320519) 14412
(0.0114266 0.00359794 0.0031907) 14422
(0.0119931 0.00361041 0.00319302) 14423
(0.0125626 0.00362288 0.00319348) 14425
(0.0130919 0.00362935 0.00319259) 14426
(0.0135862 0.0036299 0.00319159) 14427
(0.014044 0.00362524 0.00319166) 14428
(0.0144768 0.00361734 0.00319318) 14428
(0.00583443 0.00377112 0.003574) 14531
(0.00583443 0.00377112 0.003574) 14531
(0.00583443 0.00377112 0.003574) 14531
(0.00633462 0.00372644 0.00356673) 14532
(0.00692284 0.00370031 0.00352469) 14473
(0.00752171 0.00367094 0.00349101) 14475
(0.00803545 0.00364532 0.00347549) 14476
(0.00845391 0.00362633 0.00347182) 14476
(0.0055419 0.00388512 0.00379015) 14591
(0.0055419 0.00388512 0.00379015) 14591
(0.0055419 0.00388512 0.00379015) 14591
(0.00590642 0.00384459 0.0037888) 14591
(0.00643095 0.00380414 0.00375951) 14532
(0.00714611 0.0037633 0.00372345) 14534
(0.00783426 0.00373791 0.00370937) 14535
(0.00677215 0.00400086 0.00397053) 14593
(0.00590728 0.00474907 0.00438771) 14771
(0.00632532 0.00473138 0.00440031) 14772
(0.00609042 0.00502126 0.00442299) 14832
(0.00660353 0.00501251 0.00442937) 14833
(0.00703815 0.00501124 0.00443582) 14834
(0.00740852 0.00501145 0.00444609) 14834
(0.00777618 0.00500527 0.00445672) 14835
(0.00695361 0.00528318 0.00439855) 14893
(0.00729485 0.00528888 0.00440966) 14894
(0.00606916 0.0063556 0.00341042) 15192
(0.00647241 0.0063665 0.00340125) 15192
(0.00679944 0.00638078 0.00339839) 15193
(0.006181 0.00642612 0.00313142) 15252
(0.006181 0.00642612 0.00313142) 15252
(0.006181 0.00642612 0.00313142) 15252
(0.00665446 0.00643152 0.00312342) 15253
(0.00710108 0.00643662 0.00312066) 15254
(0.00753011 0.00644306 0.00312261) 15255
(0.00796439 0.00644781 0.00312864) 15255
(0.00843477 0.00644816 0.00313219) 15256
(0.000311552 0.00645993 0.00285057) 13500
(0.00118574 0.00647692 0.00288314) 13502
(0.00390778 0.00636895 0.00271339) 13567
(0.00415993 0.00637869 0.00267176) 13568
(0.00455832 0.00636316 0.00262377) 13569
(0.00533704 0.00581081 0.00186347) 13750
(0.00522871 0.00556486 0.00171574) 13810
(0.00411128 0.00437297 0.00163789) 5708
(0.00448153 0.00455108 0.00172654) 13988
(0.0040882 0.00426419 0.00168816) 5708
(0.00522121 0.00422948 0.00182854) 14110
(0.00554775 0.00422258 0.00182399) 14111
(0.00517637 0.0035033 0.00323181) 5410
(0.00536392 0.00375488 0.00335042) 14470
(0.00550842 0.00382694 0.0034643) 15911
(0.00474798 0.00370593 0.00352165) 14469
(0.00496048 0.00380372 0.00367107) 14529
(0.0051517 0.00387276 0.00368948) 14530
(0.00495735 0.00505885 0.00436798) 14829
(0.00542662 0.00505129 0.00440367) 14830
(0.00457101 0.00532137 0.00431806) 14889
(0.00515728 0.00529528 0.00433226) 14890
(0.00547297 0.00631679 0.0034338) 15190
(0.00364022 0.00644329 0.00280914) 13507
(0.00446144 0.00639955 0.00272931) 13568
(0.00467645 0.00646508 0.00282226) 13509
(0.00554705 0.006428 0.00313832) 15251
(0.0204099 0.0030202 0.00217857) 520
(0.0207968 0.00711484 0.00373674) 23501
(0.0209397 0.00690763 0.00361412) 2021
(0.0224307 0.00702112 0.00352795) 23504
(0.0123706 0.00648579 0.0041748) 6684
(0.0134257 0.00644423 0.00414483) 6686
(0.0142274 0.00641915 0.00413426) 6688
(0.0148861 0.00640432 0.00412737) 6689
(0.0154441 0.00639785 0.00412205) 6690
(0.0159458 0.00639605 0.00411838) 6691
(0.0164298 0.00639594 0.00411527) 6692
(0.0169242 0.00639548 0.00411202) 6693
(0.0174456 0.00639089 0.00410785) 6694
(0.0179618 0.00638436 0.00410458) 6695
(0.0216961 0.00641074 0.00199788) 13483
(0.0236176 0.00658191 0.00223058) 6107
(0.024674 0.00666246 0.0022346) 6109
(0.0212728 0.0066431 0.00416872) 6642
(0.0234968 0.00669465 0.0041128) 1966
(0.0199303 0.0063967 0.0011986) 6819
(0.0210965 0.00635169 0.00118758) 12462
(0.0204644 0.00359845 0.00460921) 7180
(0.0221599 0.00360923 0.00462771) 7184
(0.0204863 0.00338616 0.00163464) 400
(0.0224667 0.00336721 0.00168923) 464
(0.0211186 0.00611285 0.00474733) 12222
(0.0208752 0.00581252 0.00502321) 12581
(0.0208752 0.00581252 0.00502321) 12581
(0.0208752 0.00581252 0.00502321) 12581
(0.0227011 0.00582548 0.00500337) 12585
(0.0227011 0.00582548 0.00500337) 12585
(0.0227011 0.00582548 0.00500337) 12585
(0.0235953 0.00590806 0.00497891) 12587
(0.0207492 0.00398083 0.00485915) 10541
(0.0223533 0.0039893 0.00489991) 10544
(0.0210264 0.00378804 0.00141543) 12762
(0.0237376 0.00379273 0.00140369) 12767
(0.0213311 0.00415174 0.00126429) 11502
(0.0240108 0.0040934 0.00122522) 11508
(0.0210266 0.00449333 0.00112635) 11562
(0.0208441 0.00481363 0.000965715) 11621
(0.0226163 0.00474204 0.000955696) 11625
(0.0203331 0.00563866 0.000992591) 12160
(0.0201738 0.00599049 0.00105398) 12280
(0.0217921 0.00600996 0.00105963) 12283
(0.0209123 0.00534064 0.000878961) 12101
(0.0227754 0.00529096 0.000879005) 10125
(0.0204742 0.00523608 0.00519388) 11440
(0.0220206 0.00523185 0.00518256) 11444
(0.0229248 0.00531771 0.00519441) 11445
(0.0210388 0.003846 0.00113995) 13002
(0.0224295 0.00305746 0.00318858) 764
(0.0224295 0.00305746 0.00318858) 764
(0.0224295 0.00305746 0.00318858) 764
(0.0248103 0.00302876 0.00315233) 769
(0.0252106 0.00297936 0.00316317) 34272
(0.0204109 0.00673392 0.00169911) 2500
(0.0204109 0.00673392 0.00169911) 2500
(0.0204109 0.00673392 0.00169911) 2500
(0.0227042 0.00669691 0.00176921) 2505
(0.0239662 0.00669249 0.00174833) 2507
(0.0230876 0.00627749 0.00173353) 13486
(0.00649802 0.00644178 0.00288484) 13512
(0.00700304 0.00644332 0.00287898) 13514
(0.00748255 0.00644558 0.00287193) 13514
(0.00793035 0.00644888 0.00286536) 13515
(0.00837195 0.00645196 0.00286406) 13516
(0.0059097 0.0063482 0.0025537) 13571
(0.00640273 0.00636348 0.00259263) 13572
(0.0123183 0.00620258 0.00236464) 13644
(0.0128659 0.00619458 0.00236722) 13645
(0.0133642 0.00619622 0.00236774) 13646
(0.0183008 0.00622954 0.00235879) 13656
(0.0188295 0.00622506 0.00236354) 13657
(0.0193463 0.00621777 0.00236494) 13658
(0.0198685 0.00620772 0.00236348) 13659
(0.0204139 0.00619479 0.00235779) 13660
(0.0209451 0.00618323 0.00234679) 13661
(0.0214453 0.00617592 0.00233454) 13662
(0.00601001 0.00583003 0.00187695) 13752
(0.0065097 0.0058282 0.00186871) 13753
(0.00596535 0.00558739 0.00171883) 13811
(0.00639841 0.0055914 0.00171141) 13812
(0.00629166 0.00466767 0.00161155) 13992
(0.00615874 0.00441553 0.00169381) 14052
(0.00615874 0.00441553 0.00169381) 14052
(0.00615874 0.00441553 0.00169381) 14052
(0.00660011 0.00440538 0.00169221) 14053
(0.0069868 0.00439858 0.00168729) 14053
(0.0073586 0.00439074 0.00168055) 14054
(0.00776366 0.00438666 0.00167509) 14055
(0.00820702 0.00438523 0.00167374) 14056
(0.00618225 0.00418688 0.00182612) 14112
(0.00618225 0.00418688 0.00182612) 14112
(0.00618225 0.00418688 0.00182612) 14112
(0.00665265 0.00417433 0.00182492) 14113
(0.00705695 0.00416661 0.00181983) 14114
(0.0074245 0.00415483 0.00181497) 14114
(0.00781385 0.00414568 0.00181218) 14115
(0.00823977 0.00414404 0.00180966) 14116
(0.00600318 0.00398013 0.00203725) 14172
(0.00647855 0.00397216 0.00203501) 14172
(0.0117868 0.00363422 0.00289346) 14363
(0.0123694 0.00364884 0.00289538) 14364
(0.0129241 0.00365877 0.0028959) 14365
(0.0134196 0.00365945 0.00289459) 14366
(0.0138537 0.00365216 0.00289247) 14367
(0.00600767 0.0035873 0.00319511) 14412
(0.0064629 0.00359045 0.00320544) 14412
(0.0114023 0.00359751 0.00319053) 14422
(0.0119683 0.00360984 0.00319301) 14423
(0.0125384 0.00362241 0.00319354) 14425
(0.0130693 0.00362914 0.00319267) 14426
(0.013565 0.00362991 0.00319164) 14427
(0.0140242 0.00362547 0.00319171) 14428
(0.0144574 0.00361766 0.00319311) 14428
(0.00581884 0.00377266 0.00357041) 14531
(0.00581884 0.00377266 0.00357041) 14531
(0.00581884 0.00377266 0.00357041) 14531
(0.0063114 0.00372739 0.00356779) 14532
(0.00689526 0.00370148 0.00352664) 14473
(0.00749508 0.00367222 0.00349229) 14474
(0.0080126 0.00364627 0.00347602) 14476
(0.00843405 0.00362701 0.00347189) 14476
(0.00552754 0.00388448 0.00378842) 14591
(0.00552754 0.00388448 0.00378842) 14591
(0.00552754 0.00388448 0.00378842) 14591
(0.0058891 0.00384531 0.00378911) 14591
(0.00640438 0.00380571 0.00376102) 14532
(0.00711195 0.00376492 0.00372497) 14534
(0.00780411 0.0037387 0.00370983) 14535
(0.0067481 0.00400331 0.00397149) 14593
(0.00588614 0.00474949 0.00438728) 14771
(0.00630422 0.00473182 0.0044001) 14772
(0.00606686 0.00502148 0.00442286) 14832
(0.00657999 0.0050126 0.00442939) 14833
(0.00701624 0.00501114 0.00443576) 14834
(0.0073882 0.00501158 0.00444581) 14834
(0.00775532 0.00500556 0.0044565) 14835
(0.00693306 0.00528306 0.00439841) 14893
(0.0072756 0.00528862 0.00440939) 14894
(0.00604812 0.00635541 0.00341102) 15192
(0.00645262 0.00636622 0.00340171) 15192
(0.00678072 0.00638043 0.00339834) 15193
(0.00615886 0.00642616 0.00313195) 15252
(0.00615886 0.00642616 0.00313195) 15252
(0.00615886 0.00642616 0.00313195) 15252
(0.00663179 0.00643151 0.00312402) 15253
(0.00707853 0.00643648 0.00312089) 15254
(0.00750778 0.00644287 0.00312251) 15255
(0.00794141 0.00644775 0.00312847) 15255
(0.00840925 0.00644839 0.00313212) 15256
(0.000456097 0.00645937 0.0028495) 13500
(0.00110214 0.00647584 0.0028821) 13502
(0.00386709 0.00637118 0.00272079) 13567
(0.00416127 0.00637682 0.00267016) 13568
(0.00454507 0.00636097 0.00262078) 13569
(0.00531459 0.00581236 0.00186409) 13750
(0.00520719 0.00556454 0.00171576) 13810
(0.0038033 0.00437147 0.00164562) 5707
(0.00451359 0.00454204 0.00171257) 13989
(0.00323357 0.00424328 0.00169663) 5646
(0.00521389 0.00423153 0.00182696) 14110
(0.00553363 0.00422372 0.0018253) 14111
(0.00515421 0.00350302 0.0032314) 5410
(0.00535599 0.00375875 0.00335009) 14470
(0.00550085 0.00382266 0.00346342) 15911
(0.00469842 0.0036941 0.00353167) 14469
(0.00494706 0.00381561 0.00367413) 14529
(0.00514689 0.0038698 0.0036901) 14530
(0.0049451 0.00505792 0.0043653) 14829
(0.00541874 0.00505326 0.00440008) 14830
(0.00455034 0.0053277 0.00431635) 14889
(0.00513293 0.00529452 0.00433223) 14890
(0.00356436 0.00644965 0.00281886) 13507
(0.00444145 0.0063966 0.0027302) 13568
(0.00470011 0.00646639 0.00281781) 13509
(0.00551855 0.00643016 0.0031357) 15251
(0.0203651 0.0030215 0.00217615) 520
(0.0207786 0.00711029 0.00374237) 23501
(0.0208863 0.00690376 0.00361874) 2021
(0.0223962 0.00701583 0.00353164) 23504
(0.0123293 0.0064877 0.0041766) 6684
(0.0133965 0.00644518 0.00414532) 6686
(0.014205 0.00641974 0.00413419) 6688
(0.0148676 0.00640449 0.0041273) 6689
(0.0154283 0.00639782 0.00412185) 6690
(0.015931 0.00639588 0.00411822) 6691
(0.0164146 0.00639568 0.00411525) 6692
(0.016908 0.00639537 0.00411191) 6693
(0.017429 0.00639094 0.00410762) 6694
(0.0179459 0.00638441 0.00410432) 6695
(0.0215139 0.00642861 0.00199916) 13423
(0.023573 0.00657524 0.00222555) 6107
(0.0246427 0.0066605 0.00223712) 6109
(0.0211731 0.00664209 0.0041729) 6642
(0.0234354 0.00669177 0.00411391) 1966
(0.0198985 0.0063986 0.0011993) 6819
(0.0210724 0.00635556 0.00119088) 12462
(0.0204074 0.00359777 0.00460866) 7180
(0.0221205 0.00360784 0.00462463) 7184
(0.0230122 0.00366865 0.0047138) 10546
(0.0204165 0.0033882 0.00162991) 400
(0.0224173 0.00336962 0.00168796) 464
(0.0210495 0.00611131 0.00474895) 12222
(0.0208031 0.00581215 0.00502474) 12581
(0.0208031 0.00581215 0.00502474) 12581
(0.0208031 0.00581215 0.00502474) 12581
(0.0226562 0.00582292 0.00500338) 12585
(0.0226562 0.00582292 0.00500338) 12585
(0.0226562 0.00582292 0.00500338) 12585
(0.0235895 0.00590101 0.00498139) 12587
(0.0206948 0.00397898 0.00485689) 10541
(0.0223137 0.00398854 0.00489671) 10544
(0.0209175 0.00378874 0.00141321) 12761
(0.0236651 0.00379315 0.00140561) 12767
(0.0212303 0.0041551 0.00126385) 11502
(0.0239435 0.00409705 0.00122806) 11507
(0.0209582 0.00449743 0.00112523) 11561
(0.0207752 0.00481637 0.000965288) 11621
(0.0225697 0.00474602 0.000957251) 11625
(0.02028 0.0056415 0.000994243) 12160
(0.0201241 0.0059901 0.00105398) 12280
(0.0217508 0.0060106 0.00106161) 12283
(0.0208311 0.00534416 0.000878409) 12101
(0.0227315 0.00529299 0.000881453) 10125
(0.0204218 0.00523589 0.00519471) 11440
(0.0219813 0.00523023 0.00518178) 11443
(0.0229193 0.0053094 0.00519352) 11445
(0.0209997 0.00384964 0.00113908) 13001
(0.0223006 0.00305714 0.00318848) 764
(0.0223006 0.00305714 0.00318848) 764
(0.0223006 0.00305714 0.00318848) 764
(0.024781 0.00303154 0.00315328) 769
(0.0252076 0.00298128 0.00316024) 34272
(0.0203464 0.00673695 0.00169744) 2500
(0.0203464 0.00673695 0.00169744) 2500
(0.0203464 0.00673695 0.00169744) 2500
(0.0226408 0.00669703 0.00176929) 2505
(0.0239514 0.00669412 0.00175314) 2507
(0.0230634 0.00627323 0.00173247) 13486
(0.00647458 0.00644175 0.00288498) 13512
(0.00697859 0.00644332 0.00287934) 13513
(0.00745907 0.00644552 0.00287229) 13514
(0.00790775 0.0064488 0.00286555) 13515
(0.00834844 0.00645198 0.002864) 13516
(0.00588516 0.00634785 0.00255213) 13571
(0.00637802 0.00636339 0.00259143) 13572
(0.0122947 0.00620303 0.00236449) 13644
(0.0128434 0.00619479 0.00236716) 13645
(0.0133437 0.00619603 0.00236773) 13646
(0.0182763 0.00622979 0.00235866) 13656
(0.0188068 0.00622533 0.00236344) 13657
(0.0193238 0.00621818 0.00236501) 13658
(0.0198449 0.0062083 0.00236369) 13659
(0.0203898 0.00619543 0.00235823) 13660
(0.0209223 0.00618375 0.00234743) 13661
(0.0214237 0.00617628 0.00233521) 13662
(0.00598741 0.00583017 0.00187695) 13751
(0.00648684 0.00582803 0.00186851) 13752
(0.00693509 0.0058333 0.00186519) 13753
(0.00594252 0.00558718 0.0017186) 13811
(0.00637579 0.00559132 0.00171128) 13812
(0.00626849 0.00466789 0.00161143) 13992
(0.0061366 0.00441644 0.00169357) 14052
(0.0061366 0.00441644 0.00169357) 14052
(0.0061366 0.00441644 0.00169357) 14052
(0.00657781 0.00440567 0.00169204) 14053
(0.00696569 0.00439884 0.00168729) 14053
(0.00733791 0.00439101 0.00168072) 14054
(0.0077417 0.00438684 0.00167516) 14055
(0.00818351 0.0043852 0.00167364) 14056
(0.00615938 0.00418777 0.00182568) 14112
(0.00615938 0.00418777 0.00182568) 14112
(0.00615938 0.00418777 0.00182568) 14112
(0.00662957 0.00417452 0.00182486) 14113
(0.00703574 0.00416691 0.00181988) 14114
(0.00740422 0.00415528 0.00181504) 14114
(0.00779263 0.00414584 0.00181228) 14115
(0.00821687 0.00414395 0.00180965) 14116
(0.00597966 0.00398061 0.00203665) 14171
(0.00645459 0.00397241 0.00203466) 14172
(0.0117629 0.00363368 0.00289338) 14363
(0.0123447 0.00364822 0.0028953) 14364
(0.0129015 0.00365846 0.00289591) 14365
(0.0133995 0.00365952 0.00289465) 14366
(0.013836 0.00365252 0.00289257) 14367
(0.00598915 0.00358687 0.00319452) 14411
(0.00644318 0.00359026 0.00320567) 14412
(0.011378 0.0035971 0.00319037) 14422
(0.0119435 0.00360928 0.00319299) 14423
(0.0125142 0.00362194 0.00319359) 14425
(0.0130467 0.00362891 0.00319275) 14426
(0.0135437 0.00362991 0.00319169) 14427
(0.0140044 0.00362568 0.00319177) 14428
(0.014438 0.00361798 0.00319305) 14428
(0.00580361 0.00377421 0.00356649) 14531
(0.00580361 0.00377421 0.00356649) 14531
(0.00580361 0.00377421 0.00356649) 14531
(0.0062888 0.00372824 0.00356854) 14532
(0.00686789 0.00370265 0.00352865) 14473
(0.00746834 0.0036735 0.0034936) 14474
(0.00798961 0.00364724 0.00347657) 14475
(0.00841414 0.00362769 0.00347197) 14476
(0.00551312 0.00388384 0.00378639) 14591
(0.00551312 0.00388384 0.00378639) 14591
(0.00551312 0.00388384 0.00378639) 14591
(0.00587215 0.00384593 0.00378956) 14591
(0.00637835 0.00380722 0.00376246) 14532
(0.00707804 0.00376658 0.00372652) 14534
(0.00777373 0.00373952 0.00371033) 14535
(0.00672404 0.00400574 0.00397241) 14593
(0.00586497 0.00474987 0.00438684) 14771
(0.00628318 0.00473227 0.00439987) 14772
(0.0060434 0.00502168 0.00442272) 14832
(0.00655643 0.00501271 0.00442941) 14833
(0.00699424 0.00501104 0.00443571) 14833
(0.00736785 0.0050117 0.00444554) 14834
(0.00773456 0.00500584 0.00445626) 14835
(0.00691238 0.00528297 0.00439827) 14893
(0.00725635 0.00528836 0.00440913) 14894
(0.00602702 0.00635523 0.00341162) 15192
(0.00643284 0.00636594 0.00340218) 15192
(0.006762 0.00638008 0.00339835) 15193
(0.00613677 0.00642621 0.00313242) 15252
(0.00613677 0.00642621 0.00313242) 15252
(0.00613677 0.00642621 0.00313242) 15252
(0.00660916 0.00643149 0.00312463) 15253
(0.00705598 0.00643634 0.00312113) 15254
(0.00748548 0.00644269 0.00312243) 15254
(0.00791854 0.00644768 0.0031283) 15255
(0.00838384 0.00644859 0.00313209) 15256
(0.00060581 0.00645968 0.00284901) 13501
(0.000986953 0.00647422 0.00288095) 13501
(0.00383106 0.00637405 0.0027273) 13567
(0.00415119 0.00637539 0.00267143) 13568
(0.00453157 0.00635898 0.0026177) 13569
(0.00488962 0.00636029 0.00274271) 13569
(0.00529294 0.00581391 0.00186478) 13750
(0.00518645 0.00556424 0.00171581) 13810
(0.00338573 0.00436903 0.00164589) 5706
(0.00456981 0.00452961 0.00169765) 14049
(0.00221363 0.00419806 0.00169113) 5644
(0.00521111 0.00423437 0.00182676) 14110
(0.00551959 0.00422495 0.00182663) 14111
(0.00512433 0.00350583 0.00323093) 5410
(0.00534561 0.00376384 0.00334942) 14470
(0.00549388 0.00382219 0.00345412) 15910
(0.00464466 0.00368203 0.0035436) 14469
(0.00493555 0.00382586 0.00367707) 14529
(0.00513752 0.00386656 0.00369015) 14530
(0.00493212 0.00505698 0.0043625) 14829
(0.00540955 0.00505473 0.00439647) 14830
(0.00453132 0.00533234 0.00431501) 14889
(0.00510921 0.00529362 0.00433191) 14890
(0.00343718 0.0064596 0.00283526) 13506
(0.00442137 0.00639416 0.0027305) 13568
(0.004721 0.00646612 0.00281627) 13509
(0.00548983 0.0064324 0.00313276) 15250
(0.0203198 0.00302265 0.0021738) 520
(0.0207599 0.00710592 0.00374785) 23501
(0.0208329 0.00689999 0.00362341) 2021
(0.02236 0.00701056 0.00353525) 23504
(0.0122877 0.00648965 0.00417848) 6684
(0.0133669 0.00644618 0.00414583) 6686
(0.0141823 0.00642035 0.00413412) 6688
(0.014849 0.00640467 0.00412722) 6689
(0.0154124 0.0063978 0.00412166) 6690
(0.0159161 0.00639571 0.00411807) 6691
(0.0163995 0.00639543 0.00411523) 6692
(0.0168918 0.00639527 0.00411179) 6693
(0.0174123 0.006391 0.00410737) 6694
(0.0179299 0.00638446 0.00410407) 6695
(0.0213121 0.00645286 0.00200443) 13422
(0.0235281 0.00656834 0.00222015) 6107
(0.0246092 0.00665855 0.00223948) 6109
(0.0210755 0.00664098 0.00417737) 6642
(0.0233715 0.00668896 0.00411502) 1966
(0.0198666 0.00640051 0.00120001) 6819
(0.0210474 0.00635921 0.00119395) 12462
(0.0203503 0.00359713 0.0046083) 7180
(0.0220792 0.00360657 0.00462171) 7184
(0.0230103 0.00366235 0.00470657) 10546
(0.0203486 0.00339051 0.00162492) 400
(0.0223663 0.00337195 0.00168674) 464
(0.0209804 0.00610984 0.00475068) 12221
(0.0207317 0.00581181 0.00502633) 12581
(0.0207317 0.00581181 0.00502633) 12581
(0.0207317 0.00581181 0.00502633) 12581
(0.0226095 0.0058205 0.00500337) 12585
(0.0226095 0.0058205 0.00500337) 12585
(0.0226095 0.0058205 0.00500337) 12585
(0.0235821 0.00589431 0.0049836) 12587
(0.0206411 0.00397707 0.00485467) 10541
(0.0222725 0.00398783 0.0048936) 10544
(0.0208092 0.00378936 0.00141087) 12761
(0.0235886 0.00379306 0.00140744) 12767
(0.0211296 0.00415842 0.00126326) 11502
(0.0238684 0.00410023 0.00123078) 11507
(0.0208902 0.00450167 0.00112392) 11561
(0.0207075 0.00481925 0.000964766) 11621
(0.0225212 0.00474991 0.000958779) 11625
(0.0202278 0.0056444 0.000995933) 12160
(0.020076 0.00598975 0.001054) 12280
(0.0217082 0.0060111 0.00106344) 12283
(0.0207598 0.00534835 0.000878307) 12101
(0.0226852 0.00529492 0.00088376) 10125
(0.0203687 0.00523574 0.00519562) 11440
(0.0219407 0.0052288 0.00518105) 11443
(0.022912 0.00530155 0.00519258) 11445
(0.0209604 0.00385318 0.00113821) 13001
(0.0221753 0.0030568 0.00318805) 764
(0.0221753 0.0030568 0.00318805) 764
(0.0221753 0.0030568 0.00318805) 764
(0.0247495 0.00303415 0.00315435) 769
(0.0252036 0.00298341 0.00315754) 34272
(0.0202845 0.00673989 0.00169589) 2500
(0.022576 0.00669719 0.00176924) 2505
(0.0239349 0.00669554 0.00175772) 2507
(0.0230366 0.00626884 0.00173108) 13486
(0.00645123 0.00644172 0.00288509) 13512
(0.0069542 0.00644331 0.00287969) 13513
(0.00743558 0.00644545 0.00287265) 13514
(0.00788517 0.00644871 0.00286574) 13515
(0.00832502 0.006452 0.00286395) 13516
(0.00586065 0.00634748 0.00255059) 13571
(0.00635325 0.00636329 0.00259017) 13572
(0.0122712 0.00620349 0.00236434) 13644
(0.0128208 0.00619501 0.00236708) 13645
(0.0133231 0.00619586 0.00236773) 13646
(0.0182517 0.00623004 0.00235854) 13656
(0.0187839 0.00622559 0.00236335) 13657
(0.0193013 0.00621859 0.00236508) 13658
(0.0198213 0.00620887 0.00236388) 13659
(0.0203657 0.00619607 0.00235866) 13660
(0.0208996 0.00618427 0.00234805) 13661
(0.0214019 0.00617664 0.00233587) 13662
(0.00596485 0.00583031 0.00187695) 13751
(0.00646397 0.00582787 0.00186831) 13752
(0.00691397 0.00583294 0.00186508) 13753
(0.00731625 0.00583978 0.0018602) 13754
(0.00591972 0.00558696 0.00171838) 13811
(0.00635316 0.00559124 0.00171114) 13812
(0.00624521 0.00466812 0.00161133) 13992
(0.00611453 0.0044174 0.00169332) 14052
(0.00611453 0.0044174 0.00169332) 14052
(0.00611453 0.0044174 0.00169332) 14052
(0.00655548 0.00440597 0.00169186) 14053
(0.00694452 0.0043991 0.00168729) 14053
(0.00731723 0.00439128 0.00168087) 14054
(0.00771984 0.00438702 0.00167523) 14055
(0.00816007 0.00438517 0.00167355) 14056
(0.00613659 0.00418873 0.0018252) 14112
(0.00613659 0.00418873 0.0018252) 14112
(0.00613659 0.00418873 0.0018252) 14112
(0.00660647 0.00417474 0.00182479) 14113
(0.00701446 0.00416719 0.00181991) 14114
(0.00738396 0.00415573 0.00181512) 14114
(0.00777149 0.00414603 0.00181238) 14115
(0.00819406 0.00414387 0.00180964) 14116
(0.0059562 0.00398111 0.00203602) 14171
(0.00643059 0.00397266 0.0020343) 14172
(0.00682319 0.00396285 0.00203235) 14173
(0.0117391 0.00363314 0.00289331) 14363
(0.0123199 0.0036476 0.00289521) 14364
(0.0128788 0.00365814 0.00289592) 14365
(0.0133794 0.00365958 0.00289471) 14366
(0.0138181 0.00365287 0.00289267) 14367
(0.00597065 0.00358645 0.00319388) 14411
(0.00642349 0.00359006 0.00320587) 14412
(0.0113537 0.00359669 0.00319021) 14422
(0.0119188 0.00360873 0.00319298) 14423
(0.0124898 0.00362145 0.00319364) 14424
(0.0130241 0.00362868 0.00319283) 14426
(0.0135223 0.0036299 0.00319175) 14427
(0.0139845 0.00362589 0.00319182) 14427
(0.0144187 0.00361829 0.00319297) 14428
(0.00578872 0.00377542 0.00356248) 14531
(0.00578872 0.00377542 0.00356248) 14531
(0.00578872 0.00377542 0.00356248) 14531
(0.0062665 0.00372906 0.00356913) 14532
(0.00684058 0.00370377 0.00353056) 14473
(0.0074415 0.00367478 0.00349494) 14474
(0.00796649 0.00364821 0.00347714) 14475
(0.00839417 0.00362839 0.00347206) 14476
(0.00549873 0.00388312 0.00378429) 14590
(0.00549873 0.00388312 0.00378429) 14590
(0.00549873 0.00388312 0.00378429) 14590
(0.00585537 0.00384651 0.00378995) 14591
(0.00635286 0.00380867 0.00376383) 14532
(0.00704435 0.00376823 0.00372809) 14534
(0.00774313 0.00374036 0.00371085) 14535
(0.00669999 0.00400813 0.00397327) 14593
(0.00584379 0.0047502 0.00438639) 14771
(0.00626221 0.00473273 0.00439962) 14772
(0.00602007 0.00502187 0.00442257) 14832
(0.00653284 0.00501284 0.00442942) 14833
(0.00697214 0.00501092 0.00443567) 14833
(0.00734745 0.0050118 0.00444528) 14834
(0.00771388 0.00500612 0.00445602) 14835
(0.00689157 0.0052829 0.00439815) 14893
(0.00723711 0.00528808 0.00440888) 14894
(0.00600583 0.00635505 0.0034122) 15192
(0.00641307 0.00636565 0.00340265) 15192
(0.00674328 0.00637972 0.00339838) 15193
(0.0061147 0.00642628 0.00313285) 15252
(0.0061147 0.00642628 0.00313285) 15252
(0.0061147 0.00642628 0.00313285) 15252
(0.00658657 0.00643147 0.00312525) 15253
(0.00703345 0.00643621 0.00312139) 15254
(0.0074632 0.0064425 0.00312237) 15254
(0.00789577 0.0064476 0.00312812) 15255
(0.00835855 0.00644878 0.00313205) 15256
(0.00084497 0.0064602 0.0028488) 13501
(0.000930753 0.0064737 0.00287934) 13501
(0.00375619 0.00637952 0.00274058) 13567
(0.00415094 0.00637375 0.00267015) 13568
(0.00451769 0.00635707 0.00261472) 13569
(0.00487192 0.00636116 0.00273647) 13569
(0.00527224 0.00581538 0.00186554) 13750
(0.0051665 0.00556395 0.00171593) 13810
(0.00293301 0.00436633 0.00163735) 5705
(0.00456653 0.00451582 0.00167076) 14049
(0.00520442 0.00423703 0.00182694) 14110
(0.00550581 0.00422619 0.00182784) 14111
(0.0050883 0.00351069 0.00323187) 5410
(0.00548707 0.00381746 0.00345331) 15910
(0.00455907 0.00366693 0.0035603) 14469
(0.00493143 0.00383656 0.00367836) 14529
(0.00512889 0.00386358 0.00368979) 14530
(0.00491851 0.00505598 0.00435962) 14829
(0.00539868 0.00505567 0.00439303) 14830
(0.0045135 0.00533536 0.00431407) 14889
(0.00508595 0.00529269 0.00433145) 14890
(0.00334416 0.00646712 0.0028468) 13506
(0.00440118 0.00639196 0.0027315) 13568
(0.00473478 0.00646504 0.00281497) 13509
(0.00546093 0.00643466 0.00312957) 15250
(0.0202742 0.00302365 0.00217152) 520
(0.0207407 0.00710173 0.00375318) 23861
(0.0207798 0.00689627 0.00362817) 2021
(0.0223222 0.00700532 0.00353879) 23504
(0.0122452 0.00649169 0.00418047) 6684
(0.013337 0.00644721 0.00414635) 6686
(0.0141594 0.00642098 0.00413405) 6688
(0.0148302 0.00640486 0.00412715) 6689
(0.0153964 0.00639779 0.00412148) 6690
(0.0159011 0.00639555 0.00411793) 6691
(0.0163843 0.00639518 0.00411522) 6692
(0.0168757 0.00639517 0.00411164) 6693
(0.0173956 0.00639106 0.00410711) 6694
(0.0179138 0.00638451 0.00410384) 6695
(0.0210859 0.0064852 0.00201468) 13422
(0.0234835 0.00656119 0.00221443) 6106
(0.0245736 0.0066566 0.00224165) 6109
(0.0209822 0.00663968 0.00418214) 6641
(0.0233056 0.0066862 0.00411614) 1966
(0.0198346 0.00640243 0.00120072) 6819
(0.0210216 0.00636265 0.00119682) 12462
(0.020293 0.00359648 0.00460814) 7180
(0.0220363 0.00360543 0.00461896) 7184
(0.0230067 0.0036565 0.00469964) 10546
(0.0202828 0.00339307 0.00161961) 400
(0.0223135 0.00337415 0.00168553) 464
(0.0209116 0.00610844 0.00475251) 12221
(0.0226101 0.00614986 0.00472699) 12225
(0.020661 0.00581149 0.00502798) 12581
(0.020661 0.00581149 0.00502798) 12581
(0.020661 0.00581149 0.00502798) 12581
(0.0225611 0.00581821 0.00500334) 12585
(0.0225611 0.00581821 0.00500334) 12585
(0.0225611 0.00581821 0.00500334) 12585
(0.0235728 0.00588796 0.00498558) 12587
(0.0205882 0.00397513 0.00485249) 10541
(0.0222296 0.00398719 0.00489057) 10544
(0.0207021 0.00378992 0.00140841) 12761
(0.0235087 0.00379259 0.00140913) 12767
(0.0210293 0.00416178 0.00126256) 11502
(0.0237865 0.00410281 0.00123334) 11507
(0.020823 0.00450613 0.00112242) 11561
(0.0206411 0.00482235 0.000964143) 11621
(0.0224711 0.00475373 0.000960276) 11624
(0.0201767 0.00564735 0.000997666) 12160
(0.0200296 0.00598945 0.00105407) 12280
(0.0216642 0.00601146 0.00106514) 12283
(0.0206919 0.00535279 0.00087832) 12101
(0.0226366 0.00529677 0.000885926) 10125
(0.0203151 0.00523561 0.0051966) 11440
(0.0218991 0.00522754 0.00518036) 11443
(0.022903 0.00529416 0.00519159) 11445
(0.0209209 0.00385662 0.00113734) 13001
(0.0220518 0.00305637 0.00318729) 764
(0.0220518 0.00305637 0.00318729) 764
(0.0220518 0.00305637 0.00318729) 764
(0.0247154 0.00303657 0.00315556) 769
(0.0251986 0.00298572 0.00315504) 34272
(0.0202243 0.00674269 0.00169441) 2500
(0.0225097 0.00669741 0.00176904) 2505
(0.0239159 0.00669673 0.00176196) 2507
(0.0230067 0.00626424 0.00172926) 13486
(0.00642796 0.00644169 0.00288518) 13512
(0.00692987 0.0064433 0.00288004) 13513
(0.00741209 0.00644539 0.00287301) 13514
(0.00786262 0.00644862 0.00286595) 13515
(0.00830168 0.006452 0.00286391) 13516
(0.00583619 0.0063471 0.00254906) 13571
(0.00632841 0.00636318 0.00258887) 13572
(0.0122476 0.00620395 0.00236418) 13644
(0.0127982 0.00619525 0.00236701) 13645
(0.0133025 0.0061957 0.00236773) 13646
(0.0182271 0.00623029 0.00235841) 13656
(0.018761 0.00622586 0.00236325) 13657
(0.0192788 0.00621899 0.00236514) 13658
(0.0197978 0.00620943 0.00236407) 13659
(0.0203416 0.00619671 0.00235907) 13660
(0.0208767 0.00618479 0.00234868) 13661
(0.0213802 0.00617701 0.00233653) 13662
(0.00594233 0.00583044 0.00187696) 13751
(0.0064411 0.00582772 0.00186812) 13752
(0.00689277 0.00583258 0.00186496) 13753
(0.00729658 0.00583945 0.00186034) 13754
(0.00589694 0.00558674 0.00171816) 13811
(0.00633051 0.00559116 0.00171101) 13812
(0.00622185 0.00466834 0.00161122) 13992
(0.00609252 0.00441842 0.00169306) 14052
(0.00609252 0.00441842 0.00169306) 14052
(0.00609252 0.00441842 0.00169306) 14052
(0.00653314 0.00440629 0.00169169) 14053
(0.00692329 0.00439936 0.00168727) 14053
(0.00729656 0.00439154 0.00168103) 14054
(0.00769806 0.00438721 0.00167532) 14055
(0.0081367 0.00438516 0.00167347) 14056
(0.00611389 0.00418974 0.0018247) 14112
(0.00611389 0.00418974 0.0018247) 14112
(0.00611389 0.00418974 0.0018247) 14112
(0.00658335 0.00417496 0.00182471) 14113
(0.00699309 0.00416748 0.00181994) 14113
(0.0073637 0.00415619 0.00181519) 14114
(0.00775041 0.00414622 0.00181248) 14115
(0.00817134 0.0041438 0.00180964) 14116
(0.0124207 0.00418381 0.0018479) 14124
(0.0059328 0.00398163 0.00203535) 14171
(0.00640655 0.00397291 0.00203392) 14172
(0.00680154 0.00396308 0.00203228) 14173
(0.0117154 0.00363262 0.00289324) 14363
(0.012295 0.00364697 0.00289512) 14364
(0.012856 0.0036578 0.00289593) 14365
(0.0133591 0.00365963 0.00289477) 14366
(0.0138002 0.00365321 0.00289276) 14367
(0.00595214 0.00358604 0.0031932) 14411
(0.00640382 0.00358985 0.00320603) 14412
(0.0113293 0.00359628 0.00319007) 14422
(0.0118941 0.00360818 0.00319296) 14423
(0.0124654 0.00362095 0.00319365) 14424
(0.0130015 0.00362845 0.00319294) 14426
(0.0135009 0.00362988 0.00319181) 14427
(0.0139646 0.00362608 0.00319188) 14427
(0.0143993 0.0036186 0.0031929) 14428
(0.00577449 0.00377649 0.00355841) 14531
(0.00577449 0.00377649 0.00355841) 14531
(0.00577449 0.00377649 0.00355841) 14531
(0.00624448 0.00372986 0.00356957) 14532
(0.00681339 0.00370486 0.00353245) 14473
(0.00741458 0.00367607 0.00349633) 14474
(0.00794322 0.00364921 0.00347774) 14475
(0.00837414 0.00362909 0.00347218) 14476
(0.00548435 0.00388232 0.00378211) 14590
(0.00548435 0.00388232 0.00378211) 14590
(0.00548435 0.00388232 0.00378211) 14590
(0.00583874 0.00384702 0.00379026) 14591
(0.00632788 0.00381007 0.00376512) 14532
(0.00701096 0.0037699 0.00372968) 14534
(0.00771232 0.00374125 0.00371141) 14535
(0.00561545 0.00408191 0.00397515) 14651
(0.00667594 0.0040105 0.00397407) 14593
(0.0058226 0.00475049 0.00438594) 14771
(0.00624127 0.0047332 0.00439937) 14772
(0.00599684 0.00502205 0.00442242) 14831
(0.00650924 0.00501297 0.00442943) 14833
(0.00694995 0.00501081 0.00443564) 14833
(0.007327 0.00501189 0.00444503) 14834
(0.00769329 0.00500639 0.00445576) 14835
(0.00687063 0.00528285 0.00439803) 14893
(0.00721789 0.0052878 0.00440864) 14894
(0.00598455 0.00635488 0.00341278) 15191
(0.00639331 0.00636537 0.00340312) 15192
(0.00672456 0.00637937 0.00339844) 15193
(0.00609267 0.00642637 0.00313322) 15252
(0.00609267 0.00642637 0.00313322) 15252
(0.00609267 0.00642637 0.00313322) 15252
(0.00656402 0.00643145 0.00312588) 15253
(0.00701092 0.00643608 0.00312166) 15254
(0.00744094 0.00644231 0.00312233) 15254
(0.0078731 0.0064475 0.00312794) 15255
(0.00833339 0.00644896 0.003132) 15256
(0.00106411 0.00646049 0.00284687) 13502
(0.000843666 0.0064726 0.00287747) 13501
(0.00368018 0.00638615 0.00275375) 13507
(0.00413968 0.00637248 0.0026716) 13568
(0.00450314 0.00635554 0.00261176) 13569
(0.00485433 0.00636207 0.00273029) 13569
(0.00525252 0.00581675 0.00186637) 13750
(0.00514728 0.00556367 0.00171615) 13810
(0.00240787 0.00436369 0.00162225) 5704
(0.00467906 0.00449502 0.00165642) 14049
(0.005198 0.0042401 0.00182835) 14110
(0.00549263 0.00422743 0.00182881) 14110
(0.00505148 0.00352066 0.00323824) 5410
(0.00548074 0.00381295 0.00345189) 15910
(0.0043653 0.00364846 0.00358144) 14468
(0.00493085 0.00384875 0.00367633) 14529
(0.00512 0.00386095 0.00368944) 14530
(0.00490393 0.00505485 0.00435648) 14829
(0.00538594 0.00505605 0.00439008) 14830
(0.00449655 0.00533712 0.00431345) 14888
(0.00506284 0.00529153 0.00433098) 14890
(0.00319899 0.00647787 0.00286416) 13506
(0.00438004 0.00639024 0.00273269) 13568
(0.00474153 0.00646358 0.00281264) 13509
(0.00543147 0.00643699 0.003126) 15250
(0.0202284 0.00302449 0.00216928) 520
(0.020721 0.00709772 0.00375837) 23861
(0.0207268 0.00689263 0.00363304) 2021
(0.0222828 0.0070001 0.00354226) 23504
(0.012202 0.00649381 0.00418255) 6684
(0.0133068 0.00644827 0.00414688) 6686
(0.0141363 0.00642163 0.00413398) 6688
(0.0148113 0.00640506 0.00412708) 6689
(0.0153803 0.00639777 0.00412132) 6690
(0.0158861 0.00639539 0.00411779) 6691
(0.0163691 0.00639494 0.0041152) 6692
(0.0168598 0.00639506 0.00411148) 6693
(0.0173789 0.00639113 0.00410683) 6694
(0.0178977 0.00638455 0.00410362) 6695
(0.0208297 0.00652836 0.00203065) 13421
(0.023438 0.0065538 0.00220835) 6106
(0.0245359 0.00665465 0.00224363) 6109
(0.0208911 0.00663844 0.00418712) 6641
(0.0232381 0.00668344 0.0041173) 1966
(0.0198025 0.00640437 0.00120131) 6819
(0.020995 0.00636589 0.00119949) 12461
(0.020235 0.00359575 0.00460817) 7180
(0.0219915 0.00360441 0.00461639) 7183
(0.0230012 0.00365106 0.004693) 7186
(0.0202191 0.00339583 0.00161399) 400
(0.0222592 0.00337627 0.00168433) 464
(0.0208439 0.00610709 0.00475444) 12221
(0.0225686 0.00614645 0.00472743) 12225
(0.0205913 0.0058112 0.00502967) 12581
(0.0205913 0.0058112 0.00502967) 12581
(0.0205913 0.0058112 0.00502967) 12581
(0.0225109 0.00581606 0.00500329) 12585
(0.0225109 0.00581606 0.00500329) 12585
(0.0225109 0.00581606 0.00500329) 12585
(0.023562 0.00588191 0.00498733) 12587
(0.0205359 0.00397318 0.00485036) 10541
(0.0221852 0.0039866 0.00488763) 10544
(0.0205976 0.00379046 0.00140585) 12761
(0.0234259 0.00379192 0.00141071) 12766
(0.0209297 0.0041653 0.00126179) 11501
(0.0236992 0.00410477 0.00123573) 11507
(0.0207565 0.00451081 0.00112074) 11561
(0.0205761 0.0048257 0.000963391) 11621
(0.0224193 0.00475747 0.000961735) 11624
(0.0201266 0.00565035 0.000999451) 12160
(0.019985 0.00598919 0.00105418) 12279
(0.021619 0.00601167 0.00106671) 12283
(0.0206259 0.00535736 0.000878376) 12101
(0.0225858 0.00529856 0.000887944) 10125
(0.0202619 0.00523544 0.00519764) 11440
(0.0218563 0.00522646 0.00517971) 11443
(0.0228921 0.00528721 0.00519056) 11445
(0.0208813 0.00385998 0.00113648) 13001
(0.0219305 0.00305606 0.00318626) 763
(0.0219305 0.00305606 0.00318626) 763
(0.0219305 0.00305606 0.00318626) 763
(0.0246782 0.00303875 0.00315685) 769
(0.0251928 0.00298819 0.00315272) 34272
(0.0201652 0.00674533 0.00169295) 2500
(0.0224422 0.00669768 0.00176872) 2504
(0.0238947 0.0066977 0.00176591) 2507
(0.022973 0.0062595 0.00172706) 13485
(0.0236196 0.00633707 0.00171305) 13487
(0.00640477 0.00644167 0.00288525) 13512
(0.0069056 0.0064433 0.00288039) 13513
(0.00738859 0.00644532 0.00287334) 13514
(0.0078401 0.00644854 0.00286621) 13515
(0.00827843 0.006452 0.00286388) 13516
(0.00581179 0.00634671 0.00254755) 13571
(0.00630351 0.00636305 0.00258751) 13572
(0.0122241 0.0062044 0.00236402) 13644
(0.0127755 0.00619551 0.00236694) 13645
(0.0132818 0.00619556 0.00236772) 13646
(0.0182024 0.00623054 0.00235828) 13656
(0.018738 0.00622612 0.00236314) 13657
(0.0192563 0.0062194 0.0023652) 13658
(0.0197743 0.00620998 0.00236425) 13659
(0.0203175 0.00619734 0.00235947) 13660
(0.0208538 0.00618532 0.00234929) 13661
(0.0213583 0.00617739 0.00233719) 13662
(0.00591985 0.00583058 0.00187698) 13751
(0.00641822 0.00582759 0.00186794) 13752
(0.00687147 0.00583222 0.00186482) 13753
(0.00727687 0.00583911 0.00186048) 13754
(0.0058742 0.00558652 0.00171794) 13811
(0.00630786 0.00559107 0.00171087) 13812
(0.0061984 0.00466855 0.00161113) 13992
(0.00607058 0.0044195 0.0016928) 14052
(0.00607058 0.0044195 0.0016928) 14052
(0.00607058 0.0044195 0.0016928) 14052
(0.00651079 0.00440661 0.00169152) 14053
(0.00690199 0.00439963 0.00168723) 14053
(0.0072759 0.0043918 0.00168118) 14054
(0.00767636 0.0043874 0.00167541) 14055
(0.0081134 0.00438515 0.0016734) 14056
(0.0060913 0.0041908 0.00182416) 14112
(0.0060913 0.0041908 0.00182416) 14112
(0.0060913 0.0041908 0.00182416) 14112
(0.00656023 0.00417522 0.00182462) 14113
(0.00697165 0.00416773 0.00181997) 14113
(0.00734345 0.00415665 0.00181527) 14114
(0.00772939 0.00414644 0.00181258) 14115
(0.00814872 0.00414373 0.00180965) 14116
(0.0124 0.00418361 0.0018478) 14124
(0.00590948 0.00398216 0.00203466) 14171
(0.00638249 0.00397317 0.00203355) 14172
(0.00677979 0.00396331 0.00203219) 14173
(0.0116917 0.00363211 0.00289317) 14363
(0.0122702 0.00364635 0.00289503) 14364
(0.0128331 0.00365745 0.00289593) 14365
(0.0133388 0.00365966 0.00289483) 14366
(0.0137821 0.00365354 0.00289285) 14367
(0.00593371 0.00358563 0.0031925) 14411
(0.00638416 0.00358963 0.00320616) 14412
(0.011305 0.00359589 0.00318994) 14422
(0.0118694 0.00360763 0.00319295) 14423
(0.0124409 0.00362044 0.00319366) 14424
(0.0129788 0.00362821 0.00319304) 14425
(0.0134794 0.00362985 0.00319187) 14426
(0.0139446 0.00362627 0.00319193) 14427
(0.01438 0.0036189 0.00319285) 14428
(0.00576124 0.00377712 0.00355423) 14531
(0.00576124 0.00377712 0.00355423) 14531
(0.00576124 0.00377712 0.00355423) 14531
(0.00622258 0.00373063 0.00356987) 14532
(0.00678637 0.00370593 0.0035343) 14473
(0.00738755 0.00367735 0.00349775) 14474
(0.00791981 0.00365022 0.00347837) 14475
(0.00835405 0.00362981 0.00347232) 14476
(0.00547001 0.00388144 0.00377988) 14590
(0.00547001 0.00388144 0.00377988) 14590
(0.00547001 0.00388144 0.00377988) 14590
(0.00582225 0.00384748 0.0037905) 14591
(0.00630345 0.00381143 0.00376634) 14532
(0.00697781 0.00377156 0.00373128) 14533
(0.0076813 0.00374216 0.00371201) 14535
(0.00558967 0.00407981 0.00397409) 14651
(0.00665188 0.00401282 0.00397482) 14593
(0.00622038 0.00473367 0.0043991) 14772
(0.00597366 0.00502223 0.00442225) 14831
(0.00648563 0.0050131 0.00442943) 14832
(0.00692766 0.0050107 0.00443561) 14833
(0.00730648 0.00501195 0.00444479) 14834
(0.00767278 0.00500668 0.0044555) 14835
(0.00684956 0.00528283 0.00439791) 14893
(0.00719864 0.00528751 0.0044084) 14894
(0.00596318 0.00635472 0.00341336) 15191
(0.00637355 0.00636508 0.00340359) 15192
(0.00670582 0.00637901 0.00339853) 15193
(0.00607065 0.00642649 0.00313353) 15252
(0.00607065 0.00642649 0.00313353) 15252
(0.00607065 0.00642649 0.00313353) 15252
(0.00654152 0.00643142 0.00312651) 15253
(0.0069884 0.00643595 0.00312195) 15253
(0.00741868 0.00644212 0.00312234) 15254
(0.00785054 0.00644739 0.00312774) 15255
(0.00830836 0.00644912 0.00313195) 15256
(0.00133739 0.00645853 0.00284239) 13502
(0.000788462 0.00647153 0.00287585) 13501
(0.00353389 0.00639965 0.00277678) 13507
(0.00413797 0.00637104 0.00267059) 13568
(0.00448745 0.00635501 0.0026088) 13568
(0.00483726 0.00636304 0.00272426) 13569
(0.00523377 0.00581805 0.00186732) 13750
(0.00512864 0.00556337 0.00171648) 13810
(0.00470011 0.00446239 0.00163452) 14049
(0.00519524 0.00424411 0.00183092) 14110
(0.00548016 0.00422868 0.00183028) 14110
(0.0049897 0.00354731 0.00325545) 14409
(0.00547426 0.00380902 0.00345097) 15910
(0.00401034 0.00364021 0.00358974) 14468
(0.00493056 0.00385869 0.00367161) 14529
(0.00511564 0.00385943 0.00369022) 14530
(0.00488869 0.00505342 0.00435271) 14829
(0.00537143 0.00505574 0.00438806) 14830
(0.00447971 0.00533801 0.00431301) 14888
(0.00503919 0.00528957 0.00433066) 14890
(0.0030552 0.00648766 0.00288009) 13506
(0.00435846 0.00638891 0.00273415) 13568
(0.00474226 0.00646148 0.00280889) 13509
(0.0054015 0.0064394 0.00312193) 15250
(0.0201822 0.00302514 0.00216707) 520
(0.0207008 0.00709389 0.00376341) 23861
(0.0206739 0.00688908 0.00363803) 2021
(0.0222418 0.00699491 0.0035457) 2024
(0.0121577 0.00649604 0.00418476) 6684
(0.0132762 0.00644937 0.00414744) 6686
(0.014113 0.00642229 0.00413393) 6688
(0.0147922 0.00640528 0.00412703) 6689
(0.0153642 0.00639775 0.00412116) 6690
(0.0158711 0.00639524 0.00411765) 6691
(0.016354 0.0063947 0.00411519) 6692
(0.0168438 0.00639494 0.00411132) 6693
(0.0173623 0.00639121 0.00410654) 6694
(0.0178815 0.00638458 0.00410343) 6695
(0.0233915 0.00654616 0.00220191) 6106
(0.0244962 0.00665269 0.00224541) 6108
(0.0208031 0.00663712 0.00419243) 6641
(0.0231688 0.00668067 0.00411853) 1966
(0.0197706 0.0064063 0.00120189) 6819
(0.0209677 0.00636894 0.00120196) 12461
(0.0201756 0.00359482 0.00460836) 7180
(0.0219452 0.00360349 0.00461398) 7183
(0.0229939 0.00364601 0.00468664) 7185
(0.0201576 0.00339871 0.0016081) 400
(0.0222031 0.00337826 0.00168314) 464
(0.0207776 0.00610578 0.00475646) 12221
(0.0225252 0.00614318 0.00472785) 12225
(0.0205228 0.0058109 0.0050314) 12581
(0.0205228 0.0058109 0.0050314) 12581
(0.0205228 0.0058109 0.0050314) 12581
(0.0224589 0.00581405 0.00500325) 12584
(0.0224589 0.00581405 0.00500325) 12584
(0.0224589 0.00581405 0.00500325) 12584
(0.0235494 0.00587617 0.00498889) 12587
(0.0204837 0.00397125 0.00484828) 10540
(0.0221396 0.00398603 0.00488476) 10544
(0.0204967 0.00379103 0.00140317) 12760
(0.0233412 0.00379124 0.00141218) 12766
(0.0208312 0.00416901 0.00126089) 11501
(0.0236076 0.00410617 0.00123798) 11507
(0.0206907 0.00451567 0.00111887) 11561
(0.0205124 0.00482933 0.000962584) 11621
(0.022366 0.00476114 0.000963158) 11624
(0.0200772 0.00565339 0.00100129) 12160
(0.0199417 0.00598894 0.00105433) 12279
(0.0215726 0.00601177 0.00106815) 12283
(0.0205607 0.00536204 0.00087845) 12101
(0.0225329 0.0053003 0.000889827) 10125
(0.0202097 0.00523516 0.00519873) 11440
(0.0218124 0.00522554 0.0051791) 11443
(0.0228795 0.00528068 0.0051895) 11445
(0.0208417 0.00386327 0.00113561) 13001
(0.0218065 0.00305563 0.00318499) 763
(0.0218065 0.00305563 0.00318499) 763
(0.0218065 0.00305563 0.00318499) 763
(0.0246374 0.00304068 0.00315819) 769
(0.025186 0.0029908 0.0031506) 34272
(0.0201067 0.00674775 0.00169148) 2500
(0.0223732 0.00669803 0.00176825) 2504
(0.0238713 0.00669846 0.00176959) 2507
(0.0229351 0.00625455 0.0017244) 13485
(0.0235918 0.00633624 0.0017163) 13487
(0.00638167 0.00644164 0.00288529) 13512
(0.00688139 0.00644329 0.00288073) 13513
(0.00736507 0.00644526 0.00287366) 13514
(0.0078176 0.00644845 0.00286648) 13515
(0.00825527 0.00645199 0.00286387) 13516
(0.00578748 0.00634631 0.00254607) 13571
(0.00627856 0.00636291 0.00258611) 13572
(0.0122006 0.00620484 0.00236384) 13644
(0.0127527 0.00619579 0.00236687) 13645
(0.013261 0.00619543 0.0023677) 13646
(0.0181776 0.00623079 0.00235815) 13656
(0.018715 0.00622638 0.00236303) 13657
(0.0192338 0.0062198 0.00236526) 13658
(0.0197509 0.00621052 0.00236443) 13659
(0.0202934 0.00619798 0.00235987) 13660
(0.0208308 0.00618586 0.00234991) 13661
(0.0213364 0.00617778 0.00233785) 13662
(0.00589742 0.00583071 0.001877) 13751
(0.00639534 0.00582748 0.00186777) 13752
(0.00685008 0.00583186 0.00186468) 13753
(0.00725713 0.00583876 0.00186059) 13754
(0.0058515 0.00558629 0.00171772) 13811
(0.00628522 0.00559098 0.00171074) 13812
(0.00617485 0.00466876 0.00161104) 13992
(0.00604872 0.00442064 0.00169253) 14052
(0.00604872 0.00442064 0.00169253) 14052
(0.00604872 0.00442064 0.00169253) 14052
(0.00648844 0.00440694 0.00169135) 14052
(0.00688061 0.0043999 0.00168718) 14053
(0.00725521 0.00439213 0.0016813) 14054
(0.00765477 0.00438753 0.00167554) 14055
(0.00809019 0.00438515 0.00167333) 14056
(0.00606884 0.00419192 0.0018236) 14112
(0.00606884 0.00419192 0.0018236) 14112
(0.00606884 0.00419192 0.0018236) 14112
(0.00653711 0.00417551 0.00182451) 14113
(0.00695011 0.00416798 0.00182) 14113
(0.00732319 0.00415703 0.00181538) 14114
(0.00770845 0.00414672 0.00181263) 14115
(0.0081262 0.00414368 0.00180966) 14116
(0.0123792 0.0041834 0.00184769) 14124
(0.00588623 0.00398271 0.00203393) 14171
(0.00635842 0.00397344 0.00203316) 14172
(0.00675794 0.00396353 0.00203209) 14173
(0.0116681 0.00363161 0.00289309) 14363
(0.0122454 0.00364571 0.00289494) 14364
(0.0128102 0.00365709 0.00289593) 14365
(0.0133183 0.00365968 0.00289489) 14366
(0.013764 0.00365385 0.00289295) 14367
(0.00591524 0.00358525 0.00319176) 14411
(0.00636449 0.00358939 0.00320624) 14412
(0.0112805 0.00359549 0.00318981) 14422
(0.0118447 0.00360709 0.00319293) 14423
(0.0124164 0.00361992 0.00319367) 14424
(0.0129561 0.00362796 0.00319314) 14425
(0.0134579 0.00362981 0.00319195) 14426
(0.0139246 0.00362645 0.00319198) 14427
(0.0143606 0.00361921 0.00319281) 14428
(0.00574743 0.00377774 0.00355004) 14531
(0.00574743 0.00377774 0.00355004) 14531
(0.00574743 0.00377774 0.00355004) 14531
(0.00620099 0.00373136 0.00357002) 14532
(0.00675957 0.00370704 0.00353623) 14473
(0.00736045 0.00367863 0.0034992) 14474
(0.00789626 0.00365124 0.00347903) 14475
(0.00833389 0.00363054 0.00347248) 14476
(0.00545579 0.0038805 0.00377761) 14590
(0.00545579 0.0038805 0.00377761) 14590
(0.00545579 0.0038805 0.00377761) 14590
(0.00580589 0.00384788 0.00379067) 14591
(0.0062795 0.00381271 0.00376748) 14532
(0.00694493 0.00377323 0.00373291) 14533
(0.00765016 0.00374311 0.00371264) 14535
(0.00556394 0.00407756 0.003973) 14651
(0.00662784 0.00401509 0.00397549) 14593
(0.00619952 0.00473414 0.00439882) 14772
(0.00595064 0.00502239 0.00442207) 14831
(0.006462 0.00501324 0.00442943) 14832
(0.0069053 0.0050106 0.00443559) 14833
(0.0072859 0.00501199 0.00444457) 14834
(0.00765234 0.00500697 0.00445523) 14835
(0.00682836 0.00528284 0.0043978) 14893
(0.00717936 0.00528722 0.00440816) 14894
(0.0059417 0.00635458 0.00341392) 15191
(0.00635378 0.0063648 0.00340405) 15192
(0.00668705 0.00637866 0.00339865) 15193
(0.00604864 0.00642663 0.00313379) 15252
(0.00604864 0.00642663 0.00313379) 15252
(0.00604864 0.00642663 0.00313379) 15252
(0.00651906 0.00643139 0.00312714) 15253
(0.00696589 0.00643584 0.00312224) 15253
(0.00739646 0.00644193 0.00312234) 15254
(0.00782804 0.00644728 0.00312755) 15255
(0.00828349 0.00644927 0.00313188) 15256
(0.00155007 0.00645534 0.00283884) 13503
(0.000704443 0.00646992 0.00287292) 13501
(0.00336179 0.0064158 0.00279955) 13506
(0.00412596 0.00636994 0.00267204) 13568
(0.00447054 0.00635592 0.0026061) 13568
(0.00481306 0.00636351 0.00271577) 13569
(0.00521595 0.00581918 0.00186835) 13750
(0.00511067 0.00556308 0.00171694) 13810
(0.00477084 0.00444763 0.00162256) 14049
(0.00518861 0.00424773 0.00183346) 14110
(0.00547534 0.0042293 0.00183252) 14110
(0.00489862 0.00360286 0.00329919) 14409
(0.00546831 0.00380541 0.00344926) 15910
(0.00331283 0.00363481 0.00358191) 14466
(0.00483496 0.00379678 0.00354569) 15909
(0.00493331 0.00386657 0.00366663) 14529
(0.00510685 0.00385736 0.00368998) 14530
(0.00487089 0.00505207 0.00434901) 14829
(0.00535547 0.00505507 0.00438659) 14830
(0.00446015 0.005338 0.00431287) 14888
(0.00501637 0.00528837 0.00433037) 14890
(0.00292225 0.00649595 0.00289344) 6125
(0.00433565 0.00638808 0.00273599) 13568
(0.00473777 0.00645983 0.00280336) 13509
(0.00537092 0.00644187 0.00311727) 15250
(0.0201359 0.00302558 0.00216486) 520
(0.0206802 0.00709016 0.00376838) 23861
(0.0206207 0.00688564 0.00364312) 2021
(0.0221994 0.00698974 0.00354909) 2024
(0.012114 0.00649821 0.00418697) 6684
(0.0132452 0.00645051 0.00414805) 6686
(0.0140895 0.00642297 0.00413389) 6688
(0.014773 0.0064055 0.00412697) 6689
(0.0153479 0.00639775 0.004121) 6690
(0.015856 0.0063951 0.00411752) 6691
(0.0163389 0.00639447 0.00411517) 6692
(0.016828 0.00639482 0.00411115) 6693
(0.0173456 0.00639129 0.00410624) 6694
(0.0178653 0.00638461 0.00410323) 6695
(0.0183491 0.00637752 0.00410312) 6696
(0.022711 0.00328592 0.00332881) 5445
(0.0233446 0.00653824 0.00219514) 13426
(0.0244548 0.00665074 0.00224704) 6108
(0.0207172 0.00663578 0.00419803) 6641
(0.0230981 0.00667785 0.00411988) 1966
(0.0209397 0.00637183 0.00120425) 6821
(0.0201143 0.00359352 0.00460864) 7180
(0.0218971 0.00360268 0.00461175) 7183
(0.0229849 0.00364133 0.00468053) 7185
(0.0200981 0.00340169 0.00160198) 400
(0.0221456 0.00338015 0.00168194) 464
(0.0207132 0.00610446 0.0047586) 12221
(0.02248 0.00614004 0.00472825) 12224
(0.020456 0.0058106 0.00503315) 12580
(0.020456 0.0058106 0.00503315) 12580
(0.020456 0.0058106 0.00503315) 12580
(0.0224052 0.00581216 0.00500322) 12584
(0.0224052 0.00581216 0.00500322) 12584
(0.0224052 0.00581216 0.00500322) 12584
(0.023535 0.00587073 0.00499024) 12587
(0.0204316 0.00396936 0.00484625) 10540
(0.0220926 0.00398549 0.00488198) 10544
(0.0204004 0.00379152 0.00140039) 12760
(0.0232546 0.00379066 0.00141356) 12766
(0.0207341 0.00417287 0.00125984) 11501
(0.0235139 0.00410723 0.00124014) 11507
(0.0206254 0.00452063 0.00111682) 11561
(0.0204497 0.00483313 0.000961739) 11620
(0.0223112 0.00476474 0.00096453) 11624
(0.0200284 0.00565647 0.0010032) 12160
(0.0198997 0.00598867 0.00105454) 12279
(0.0215252 0.00601175 0.00106946) 12283
(0.0204961 0.00536677 0.000878527) 12100
(0.0224783 0.00530203 0.000891581) 10124
(0.0201586 0.00523472 0.00519984) 11440
(0.0217675 0.00522477 0.00517855) 11443
(0.0228652 0.00527456 0.00518842) 11445
(0.0208021 0.00386649 0.00113474) 13001
(0.0216754 0.00305481 0.00318353) 763
(0.0216754 0.00305481 0.00318353) 763
(0.0216754 0.00305481 0.00318353) 763
(0.024592 0.00304236 0.00315954) 769
(0.0251782 0.00299357 0.00314868) 34272
(0.0200487 0.00674997 0.00169004) 2500
(0.0223037 0.00669845 0.00176772) 2504
(0.0238455 0.00669904 0.001773) 2507
(0.0228924 0.00624937 0.00172127) 13485
(0.0235649 0.00633522 0.00171947) 13487
(0.00635863 0.00644162 0.00288531) 13512
(0.00685725 0.00644327 0.00288106) 13513
(0.00734154 0.00644519 0.00287398) 13514
(0.00779511 0.00644836 0.00286675) 13515
(0.00823221 0.00645197 0.00286389) 13516
(0.00576323 0.0063459 0.00254462) 13571
(0.00625355 0.00636276 0.00258467) 13572
(0.0121771 0.00620528 0.00236366) 13644
(0.0127299 0.00619608 0.00236679) 13645
(0.0132402 0.00619532 0.00236769) 13646
(0.0181527 0.00623104 0.00235802) 13656
(0.0186919 0.00622662 0.00236288) 13657
(0.0192112 0.00622021 0.00236535) 13658
(0.0197276 0.00621107 0.00236461) 13659
(0.0202692 0.00619863 0.00236026) 13660
(0.0208078 0.0061864 0.0023505) 13661
(0.0213145 0.00617817 0.0023385) 13662
(0.00587503 0.00583083 0.00187701) 13751
(0.00637246 0.00582738 0.0018676) 13752
(0.0068286 0.0058315 0.00186452) 13753
(0.00723736 0.00583841 0.0018607) 13754
(0.00582883 0.00558607 0.00171751) 13811
(0.00626257 0.00559088 0.0017106) 13812
(0.0061512 0.00466898 0.00161095) 13992
(0.00602694 0.00442184 0.00169225) 14052
(0.00602694 0.00442184 0.00169225) 14052
(0.00602694 0.00442184 0.00169225) 14052
(0.0064661 0.00440728 0.00169118) 14052
(0.00685917 0.00440018 0.00168712) 14053
(0.00723451 0.00439246 0.0016814) 14054
(0.00763325 0.00438767 0.00167568) 14055
(0.00806706 0.00438516 0.00167327) 14056
(0.00604651 0.00419311 0.00182298) 14112
(0.00604651 0.00419311 0.00182298) 14112
(0.00604651 0.00419311 0.00182298) 14112
(0.00651399 0.00417583 0.00182439) 14113
(0.00692849 0.00416821 0.00182003) 14113
(0.00730293 0.00415742 0.0018155) 14114
(0.00768756 0.00414701 0.00181269) 14115
(0.00810377 0.00414364 0.00180969) 14116
(0.0123584 0.00418319 0.00184758) 14124
(0.0128057 0.0041849 0.00184745) 14125
(0.00586307 0.00398327 0.00203316) 14171
(0.00633433 0.0039737 0.00203278) 14172
(0.00673598 0.00396377 0.00203197) 14173
(0.0116445 0.00363112 0.00289302) 14363
(0.0122205 0.00364508 0.00289486) 14364
(0.0127871 0.00365671 0.00289593) 14365
(0.0132977 0.00365967 0.00289494) 14366
(0.0137457 0.00365415 0.00289305) 14367
(0.00589678 0.00358488 0.00319099) 14411
(0.00634481 0.00358914 0.00320627) 14412
(0.011256 0.00359509 0.00318966) 14422
(0.0118201 0.00360655 0.00319291) 14423
(0.0123918 0.0036194 0.00319368) 14424
(0.0129333 0.00362771 0.00319324) 14425
(0.0134362 0.00362976 0.00319202) 14426
(0.0139046 0.00362662 0.00319203) 14427
(0.0143413 0.00361951 0.00319278) 14428
(0.00573417 0.00377805 0.00354579) 14531
(0.00573417 0.00377805 0.00354579) 14531
(0.00573417 0.00377805 0.00354579) 14531
(0.00617988 0.00373202 0.00356993) 14532
(0.00673286 0.00370806 0.00353801) 14473
(0.00733327 0.00367991 0.00350069) 14474
(0.00787257 0.00365228 0.00347972) 14475
(0.00831366 0.00363129 0.00347267) 14476
(0.00544159 0.00387948 0.00377528) 14590
(0.00544159 0.00387948 0.00377528) 14590
(0.00544159 0.00387948 0.00377528) 14590
(0.00578965 0.00384823 0.00379077) 14591
(0.00625601 0.00381393 0.00376855) 14532
(0.00691238 0.00377488 0.00373455) 14533
(0.00761885 0.0037441 0.00371331) 14535
(0.00553826 0.00407516 0.00397184) 14651
(0.00660383 0.00401731 0.00397609) 14593
(0.00617871 0.00473462 0.00439852) 14772
(0.00592779 0.00502254 0.00442189) 14831
(0.00643835 0.00501338 0.00442942) 14832
(0.00688284 0.0050105 0.00443557) 14833
(0.00726525 0.00501201 0.00444436) 14834
(0.00763196 0.00500727 0.00445495) 14835
(0.00680702 0.0052829 0.0043977) 14893
(0.00716005 0.0052869 0.00440794) 14894
(0.00592012 0.00635444 0.00341448) 15191
(0.00633402 0.00636451 0.00340452) 15192
(0.00666829 0.0063783 0.0033988) 15193
(0.00602662 0.00642681 0.003134) 15252
(0.00602662 0.00642681 0.003134) 15252
(0.00602662 0.00642681 0.003134) 15252
(0.00649665 0.00643135 0.00312777) 15252
(0.00694339 0.00643573 0.00312255) 15253
(0.00737424 0.00644174 0.00312238) 15254
(0.00780563 0.00644715 0.00312735) 15255
(0.00825877 0.00644941 0.0031318) 15256
(0.00176933 0.00645138 0.00283568) 13503
(0.000626921 0.00646863 0.00286946) 13501
(0.00317635 0.00643337 0.00281975) 13506
(0.00411341 0.00636891 0.00267364) 13568
(0.00444527 0.00635845 0.00260382) 13568
(0.00479681 0.00636447 0.00270996) 13569
(0.00519902 0.00582012 0.00186947) 13750
(0.0050933 0.00556278 0.00171754) 13810
(0.00481474 0.00443721 0.00161348) 5709
(0.00518474 0.00425226 0.00183715) 14110
(0.00546307 0.00423089 0.00183381) 14110
(0.00481965 0.0036635 0.00336581) 14469
(0.00546251 0.00380227 0.0034468) 15910
(0.00259074 0.0036091 0.00357692) 5345
(0.00486319 0.00378779 0.00353938) 15909
(0.00509792 0.00385556 0.00368983) 14530
(0.00344261 0.00495443 0.00434251) 14826
(0.00533977 0.00505448 0.00438462) 14830
(0.00444161 0.00533784 0.00431259) 14888
(0.00499549 0.0052882 0.00432929) 14889
(0.00274077 0.00650549 0.00290903) 6125
(0.00431172 0.00638768 0.00273814) 13568
(0.00473151 0.00645741 0.0027976) 13509
(0.00534017 0.00644437 0.00311191) 15250
(0.0200894 0.00302582 0.00216264) 520
(0.021474 0.00298826 0.00222157) 33116
(0.0206592 0.00708655 0.00377328) 23861
(0.0205674 0.00688228 0.00364828) 2021
(0.0221556 0.00698461 0.00355246) 2024
(0.0120699 0.00650043 0.00418927) 6684
(0.0132139 0.00645168 0.00414869) 6686
(0.0140657 0.00642365 0.00413386) 6688
(0.0147536 0.00640574 0.00412692) 6689
(0.0153315 0.00639776 0.00412085) 6690
(0.015841 0.00639496 0.00411738) 6691
(0.0163237 0.00639425 0.00411515) 6692
(0.0168122 0.00639469 0.004111) 6693
(0.0173289 0.00639137 0.00410594) 6694
(0.017849 0.00638464 0.00410304) 6695
(0.0183351 0.00637747 0.00410282) 6696
(0.0226455 0.00328705 0.00332816) 5445
(0.0232958 0.00652998 0.00218788) 13426
(0.0244117 0.00664878 0.00224848) 6108
(0.0206333 0.00663431 0.00420406) 6641
(0.0230261 0.00667497 0.00412136) 1966
(0.0209111 0.00637456 0.00120638) 6821
(0.0200504 0.00359164 0.00460892) 7180
(0.0218474 0.00360197 0.0046097) 7183
(0.022974 0.00363701 0.00467469) 7185
(0.0200401 0.00340471 0.00159566) 400
(0.0220865 0.00338192 0.00168072) 464
(0.0206508 0.00610305 0.00476096) 12221
(0.0224331 0.00613702 0.00472863) 12224
(0.0203908 0.00581029 0.00503489) 12580
(0.0203908 0.00581029 0.00503489) 12580
(0.0203908 0.00581029 0.00503489) 12580
(0.0223498 0.00581038 0.00500321) 12584
(0.0223498 0.00581038 0.00500321) 12584
(0.0223498 0.00581038 0.00500321) 12584
(0.0235189 0.00586555 0.00499143) 12587
(0.0235189 0.00586555 0.00499143) 12587
(0.0235189 0.00586555 0.00499143) 12587
(0.0203788 0.00396751 0.00484427) 10540
(0.0220443 0.00398497 0.00487928) 10544
(0.0203093 0.00379195 0.00139749) 12760
(0.0231671 0.00379031 0.00141485) 12766
(0.0206391 0.00417675 0.00125861) 11501
(0.0234185 0.00410815 0.00124223) 11506
(0.0205602 0.00452547 0.00111462) 11561
(0.0203878 0.00483696 0.000960882) 11620
(0.0222551 0.00476829 0.000965861) 11624
(0.0199802 0.0056596 0.00100519) 12159
(0.0198586 0.00598837 0.00105482) 12279
(0.0214768 0.00601162 0.00107065) 12282
(0.020432 0.00537156 0.000878615) 12100
(0.0224219 0.00530379 0.000893196) 10124
(0.0201091 0.00523409 0.00520093) 11440
(0.0217216 0.00522414 0.00517805) 11443
(0.0228492 0.00526882 0.00518733) 11445
(0.0207625 0.00386969 0.00113385) 13001
(0.0215308 0.00305323 0.00318186) 763
(0.0215308 0.00305323 0.00318186) 763
(0.0215308 0.00305323 0.00318186) 763
(0.0245413 0.00304382 0.00316083) 769
(0.0251694 0.00299644 0.00314693) 34272
(0.0199911 0.00675204 0.00168863) 2499
(0.0222332 0.00669896 0.00176707) 2504
(0.0222332 0.00669896 0.00176707) 2504
(0.0222332 0.00669896 0.00176707) 2504
(0.0238174 0.00669945 0.00177612) 2507
(0.0242001 0.00661899 0.001661) 2508
(0.0228438 0.006244 0.00171765) 13485
(0.0235385 0.00633401 0.00172247) 13487
(0.00633565 0.00644161 0.0028853) 13512
(0.00683317 0.00644326 0.00288139) 13513
(0.007318 0.00644512 0.0028743) 13514
(0.00777262 0.00644826 0.00286704) 13515
(0.00820925 0.00645194 0.00286391) 13516
(0.00573905 0.00634546 0.0025432) 13571
(0.0062285 0.0063626 0.00258319) 13572
(0.0121537 0.00620571 0.00236347) 13644
(0.012707 0.00619638 0.00236672) 13645
(0.0132193 0.00619523 0.00236767) 13646
(0.0136767 0.00620312 0.00236631) 13647
(0.0181278 0.00623129 0.00235789) 13656
(0.0186687 0.00622687 0.00236275) 13657
(0.0191887 0.0062206 0.0023654) 13658
(0.0197043 0.0062116 0.00236478) 13659
(0.0202451 0.00619928 0.00236065) 13660
(0.0207847 0.00618696 0.00235111) 13661
(0.0212925 0.00617857 0.00233915) 13662
(0.00585268 0.00583093 0.00187702) 13751
(0.00634958 0.00582729 0.00186744) 13752
(0.00680702 0.00583114 0.00186435) 13753
(0.00721753 0.00583805 0.00186078) 13754
(0.00580622 0.00558584 0.0017173) 13811
(0.00623992 0.00559077 0.00171047) 13812
(0.00664443 0.00559162 0.0017037) 13813
(0.00612746 0.00466922 0.00161086) 13992
(0.00600525 0.00442309 0.00169196) 14052
(0.00600525 0.00442309 0.00169196) 14052
(0.00600525 0.00442309 0.00169196) 14052
(0.00644377 0.00440764 0.00169101) 14052
(0.00683765 0.00440047 0.00168705) 14053
(0.0072138 0.00439279 0.00168151) 14054
(0.0076118 0.00438783 0.00167581) 14055
(0.00804401 0.00438518 0.00167322) 14056
(0.00602434 0.00419436 0.00182233) 14112
(0.00602434 0.00419436 0.00182233) 14112
(0.00602434 0.00419436 0.00182233) 14112
(0.00649088 0.00417618 0.00182425) 14112
(0.00690678 0.00416843 0.00182005) 14113
(0.00728264 0.0041578 0.00181561) 14114
(0.00766672 0.00414731 0.00181275) 14115
(0.00808145 0.00414362 0.00180971) 14116
(0.0123375 0.00418298 0.00184746) 14124
(0.0127857 0.00418478 0.00184746) 14125
(0.00584 0.00398384 0.00203236) 14171
(0.00631025 0.00397395 0.0020324) 14172
(0.00671394 0.00396404 0.0020318) 14173
(0.011621 0.00363064 0.00289295) 14363
(0.0121956 0.00364444 0.00289477) 14364
(0.012764 0.00365632 0.00289592) 14365
(0.0132769 0.00365965 0.002895) 14366
(0.0137274 0.00365444 0.00289314) 14367
(0.00587831 0.00358454 0.00319018) 14411
(0.00632515 0.00358888 0.00320626) 14412
(0.0112315 0.0035947 0.00318951) 14422
(0.0117955 0.00360603 0.00319288) 14423
(0.0123671 0.00361887 0.0031937) 14424
(0.0129105 0.00362744 0.00319333) 14425
(0.0134146 0.0036297 0.0031921) 14426
(0.0138844 0.00362677 0.00319208) 14427
(0.014322 0.0036198 0.00319276) 14428
(0.0057213 0.00377819 0.0035415) 14531
(0.0057213 0.00377819 0.0035415) 14531
(0.0057213 0.00377819 0.0035415) 14531
(0.00615915 0.00373265 0.00356966) 14532
(0.00670635 0.00370906 0.00353973) 14473
(0.00730604 0.00368118 0.0035022) 14474
(0.00784873 0.00365334 0.00348044) 14475
(0.00829334 0.00363205 0.00347288) 14476
(0.00542749 0.00387839 0.00377292) 14590
(0.00542749 0.00387839 0.00377292) 14590
(0.00542749 0.00387839 0.00377292) 14590
(0.0057735 0.00384853 0.00379079) 14591
(0.00623303 0.00381509 0.00376955) 14532
(0.00688013 0.00377652 0.00373618) 14533
(0.00758734 0.00374512 0.00371402) 14535
(0.00551268 0.0040726 0.00397061) 14651
(0.00657981 0.00401946 0.00397662) 14593
(0.00615797 0.00473511 0.00439822) 14772
(0.00590509 0.00502267 0.0044217) 14831
(0.00641471 0.00501354 0.0044294) 14832
(0.00686029 0.00501038 0.00443556) 14833
(0.0072445 0.00501195 0.00444417) 14834
(0.00761165 0.0050076 0.00445466) 14835
(0.00678553 0.00528301 0.0043976) 14893
(0.00714064 0.00528666 0.00440772) 14894
(0.00589842 0.00635432 0.00341502) 15191
(0.00631425 0.00636423 0.00340499) 15192
(0.00664954 0.00637794 0.00339897) 15193
(0.00600459 0.00642702 0.00313415) 15252
(0.00600459 0.00642702 0.00313415) 15252
(0.00600459 0.00642702 0.00313415) 15252
(0.00647428 0.0064313 0.0031284) 15252
(0.00692091 0.00643563 0.00312288) 15253
(0.00735203 0.00644156 0.00312246) 15254
(0.00778331 0.00644702 0.00312713) 15255
(0.0082342 0.00644952 0.00313172) 15256
(0.00201778 0.00644593 0.00283302) 13504
(0.000577944 0.00646755 0.00286583) 13501
(0.00299274 0.00644917 0.00283486) 13505
(0.00409953 0.00636813 0.00267531) 13568
(0.00442107 0.00636337 0.00260483) 13568
(0.00478021 0.00636551 0.00270376) 13569
(0.00518285 0.00582093 0.00187074) 13750
(0.00507681 0.00556249 0.00171832) 13810
(0.00484706 0.00442844 0.00160601) 5709
(0.00517715 0.00425628 0.00184032) 14110
(0.00545098 0.00423264 0.00183492) 14110
(0.00466709 0.00369982 0.00342996) 14469
(0.0054584 0.00379876 0.00344401) 15910
(0.00488801 0.00377681 0.00353091) 14469
(0.0050884 0.00385417 0.00368999) 14530
(0.0033342 0.00495046 0.00434992) 14826
(0.00532385 0.00505387 0.00438244) 14830
(0.0044215 0.00533749 0.00431253) 14888
(0.00497537 0.00528821 0.00432792) 14889
(0.00257429 0.00651285 0.00292046) 6125
(0.00428693 0.00638771 0.00274043) 13568
(0.00472219 0.00645539 0.00279066) 13509
(0.00530919 0.00644688 0.00310568) 15250
(0.0200427 0.00302582 0.00216039) 520
(0.0214428 0.0029921 0.00221737) 33116
(0.0206379 0.00708304 0.00377808) 23861
(0.0215417 0.0071868 0.00366068) 23503
(0.0205136 0.0068791 0.00365346) 2021
(0.0221106 0.00697951 0.0035558) 2024
(0.0120259 0.00650268 0.00419163) 6684
(0.0131822 0.00645289 0.00414934) 6686
(0.0140418 0.00642435 0.00413384) 6688
(0.0147341 0.00640598 0.00412688) 6689
(0.015315 0.00639775 0.00412073) 6690
(0.015826 0.00639482 0.00411724) 6691
(0.0163086 0.00639404 0.00411512) 6692
(0.0167963 0.00639455 0.00411085) 6693
(0.0173122 0.00639146 0.00410565) 6694
(0.0178327 0.00638466 0.00410284) 6695
(0.0183209 0.00637743 0.00410252) 6696
(0.022579 0.00328799 0.00332752) 5445
(0.0232457 0.00652138 0.00218015) 13426
(0.0243676 0.00664679 0.00224978) 6108
(0.020551 0.00663259 0.00421056) 6641
(0.022953 0.006672 0.004123) 1965
(0.0208818 0.00637715 0.00120834) 6821
(0.0199843 0.00358891 0.00460903) 7179
(0.0217961 0.00360135 0.00460782) 7183
(0.0229613 0.00363299 0.00466909) 7185
(0.0199831 0.00340769 0.00158918) 9219
(0.0220258 0.00338358 0.00167946) 464
(0.02059 0.00610152 0.00476356) 12221
(0.0223845 0.00613411 0.00472901) 12224
(0.0203273 0.00581001 0.0050366) 12580
(0.0203273 0.00581001 0.0050366) 12580
(0.0203273 0.00581001 0.0050366) 12580
(0.0222927 0.00580872 0.00500324) 12584
(0.0222927 0.00580872 0.00500324) 12584
(0.0222927 0.00580872 0.00500324) 12584
(0.0235009 0.00586063 0.00499245) 12587
(0.0235009 0.00586063 0.00499245) 12587
(0.0235009 0.00586063 0.00499245) 12587
(0.0203249 0.00396566 0.00484232) 10540
(0.0219948 0.00398445 0.00487666) 10543
(0.0202243 0.00379238 0.00139452) 12760
(0.0230783 0.00379016 0.00141608) 12766
(0.0205462 0.0041803 0.00125719) 11501
(0.0233226 0.00410916 0.00124429) 11506
(0.0204946 0.00452999 0.00111231) 11560
(0.0203259 0.00484065 0.000960031) 11620
(0.0221978 0.00477178 0.000967145) 11624
(0.0199326 0.00566279 0.00100729) 12159
(0.0198182 0.00598803 0.00105517) 12279
(0.0214276 0.00601139 0.00107171) 12282
(0.020367 0.00537635 0.000878657) 12100
(0.0223637 0.00530554 0.000894676) 10124
(0.0200612 0.00523322 0.00520197) 11440
(0.0216749 0.00522365 0.0051776) 11443
(0.0228315 0.00526345 0.00518621) 11445
(0.0207229 0.00387286 0.00113294) 13001
(0.0213691 0.00305068 0.00317992) 762
(0.0244836 0.00304513 0.00316202) 768
(0.0251596 0.0029994 0.00314536) 34272
(0.0199339 0.00675406 0.00168725) 2499
(0.0221615 0.00669954 0.00176627) 2504
(0.0221615 0.00669954 0.00176627) 2504
(0.0221615 0.00669954 0.00176627) 2504
(0.0237867 0.00669972 0.00177894) 2447
(0.0242229 0.00662788 0.00167211) 2508
(0.0227885 0.00623846 0.00171359) 13485
(0.0235123 0.00633262 0.00172529) 13487
(0.00631273 0.00644159 0.00288525) 13512
(0.00680917 0.00644325 0.0028817) 13513
(0.00729446 0.00644506 0.00287463) 13514
(0.00775015 0.00644817 0.00286734) 13515
(0.00818637 0.00645191 0.00286394) 13516
(0.00571493 0.006345 0.00254182) 13571
(0.00620339 0.00636243 0.00258168) 13572
(0.0121303 0.00620614 0.00236328) 13644
(0.0126841 0.0061967 0.00236664) 13645
(0.0131983 0.00619515 0.00236765) 13646
(0.0136577 0.00620273 0.00236641) 13647
(0.0181028 0.00623154 0.00235776) 13656
(0.0186454 0.00622712 0.00236262) 13657
(0.0191661 0.00622099 0.00236545) 13658
(0.0196811 0.00621212 0.00236493) 13659
(0.020221 0.00619992 0.00236101) 13660
(0.0207616 0.00618753 0.00235171) 13661
(0.0212705 0.00617898 0.0023398) 13662
(0.00583034 0.00583091 0.00187695) 13751
(0.00632671 0.00582723 0.00186729) 13752
(0.00678534 0.00583078 0.00186416) 13753
(0.00719765 0.00583767 0.00186084) 13754
(0.00578366 0.00558561 0.0017171) 13811
(0.00621729 0.00559066 0.00171034) 13812
(0.00662299 0.00559157 0.00170376) 13813
(0.00610362 0.00466946 0.00161078) 13992
(0.00598363 0.0044244 0.00169166) 14051
(0.00598363 0.0044244 0.00169166) 14051
(0.00598363 0.0044244 0.00169166) 14051
(0.00642145 0.00440802 0.00169084) 14052
(0.00681606 0.00440076 0.00168696) 14053
(0.00719308 0.00439312 0.0016816) 14054
(0.00759041 0.00438799 0.00167595) 14055
(0.00802105 0.00438522 0.00167317) 14056
(0.00600233 0.00419568 0.00182163) 14112
(0.00600233 0.00419568 0.00182163) 14112
(0.00600233 0.00419568 0.00182163) 14112
(0.00646778 0.00417655 0.0018241) 14112
(0.00688499 0.00416865 0.00182007) 14113
(0.00726233 0.00415817 0.00181572) 14114
(0.00764594 0.00414762 0.00181281) 14115
(0.00805923 0.00414361 0.00180975) 14116
(0.0123165 0.00418276 0.00184734) 14124
(0.0127657 0.00418466 0.00184746) 14125
(0.00581701 0.00398443 0.00203153) 14171
(0.00628618 0.00397419 0.00203204) 14172
(0.00669179 0.0039643 0.00203162) 14173
(0.0115976 0.00363017 0.00289287) 14363
(0.0121707 0.0036438 0.00289468) 14364
(0.0127408 0.00365591 0.00289591) 14365
(0.0132561 0.00365962 0.00289505) 14366
(0.013709 0.00365471 0.00289324) 14367
(0.00585982 0.00358421 0.0031893) 14411
(0.00630551 0.0035886 0.00320622) 14412
(0.0112068 0.0035943 0.00318937) 14422
(0.0117709 0.0036055 0.00319286) 14423
(0.0123424 0.00361833 0.00319371) 14424
(0.0128876 0.00362716 0.00319342) 14425
(0.0133928 0.00362963 0.00319219) 14426
(0.0138642 0.00362692 0.00319212) 14427
(0.0143027 0.00362009 0.00319274) 14428
(0.00570879 0.00377818 0.00353732) 14471
(0.00570879 0.00377818 0.00353732) 14471
(0.00570879 0.00377818 0.00353732) 14471
(0.00613869 0.00373327 0.0035692) 14532
(0.00668002 0.00371002 0.00354139) 14473
(0.00727876 0.00368244 0.00350373) 14474
(0.00782475 0.00365441 0.00348118) 14475
(0.00827293 0.00363283 0.00347312) 14476
(0.00541346 0.00387722 0.00377053) 14590
(0.00541346 0.00387722 0.00377053) 14590
(0.00541346 0.00387722 0.00377053) 14590
(0.00575744 0.00384877 0.00379074) 14591
(0.0062105 0.00381619 0.00377048) 14532
(0.00684827 0.00377815 0.00373781) 14533
(0.00755568 0.00374617 0.00371478) 14535
(0.00548722 0.00406989 0.00396933) 14650
(0.00655579 0.00402154 0.00397707) 14593
(0.00613728 0.0047356 0.0043979) 14772
(0.00588255 0.00502278 0.00442151) 14831
(0.00639107 0.00501372 0.00442938) 14832
(0.00683767 0.00501029 0.00443556) 14833
(0.00722366 0.00501184 0.004444) 14834
(0.0075914 0.00500795 0.00445437) 14835
(0.0058064 0.00528886 0.00438056) 14891
(0.00676394 0.00528312 0.0043975) 14893
(0.00712112 0.00528647 0.0044075) 14894
(0.00587659 0.00635422 0.00341556) 15191
(0.00629448 0.00636394 0.00340545) 15192
(0.00663078 0.00637759 0.00339917) 15193
(0.00598251 0.00642726 0.00313424) 15251
(0.00598251 0.00642726 0.00313424) 15251
(0.00598251 0.00642726 0.00313424) 15251
(0.00645196 0.00643125 0.00312903) 15252
(0.00689843 0.00643554 0.00312321) 15253
(0.00732985 0.00644137 0.00312255) 15254
(0.00776106 0.00644688 0.00312691) 15255
(0.00820978 0.00644963 0.00313163) 15256
(0.0023049 0.00643639 0.00283198) 13504
(0.000607214 0.00646751 0.00286244) 13501
(0.0027916 0.00646284 0.00284663) 13505
(0.00409582 0.00636717 0.00267459) 13568
(0.00440025 0.00636969 0.00261117) 13568
(0.0047635 0.00636668 0.00269732) 13569
(0.0051678 0.00582268 0.00187302) 13750
(0.00506136 0.00556218 0.00171936) 13810
(0.00487585 0.00442131 0.00160064) 5709
(0.00516906 0.00426034 0.00184368) 14110
(0.00543905 0.0042346 0.00183579) 14110
(0.00435247 0.00370122 0.00347838) 14468
(0.00545276 0.00379651 0.00344066) 15910
(0.00489635 0.00375959 0.00352641) 14469
(0.00508205 0.00385414 0.0036917) 14530
(0.00323134 0.00494776 0.00435681) 14826
(0.00530767 0.00505329 0.00437994) 14830
(0.00440193 0.0053371 0.00431245) 14888
(0.00495558 0.0052886 0.00432666) 14889
(0.00235941 0.00651903 0.00293114) 6124
(0.00426135 0.00638814 0.00274278) 13568
(0.00471188 0.00645318 0.00278349) 13509
(0.00527899 0.00644928 0.00309877) 15250
(0.019996 0.00302556 0.00215812) 519
(0.0214104 0.00299578 0.0022133) 33116
(0.0206162 0.00707965 0.00378279) 23861
(0.0215307 0.00717888 0.00366923) 23503
(0.0204594 0.00687613 0.00365857) 2020
(0.0220645 0.00697445 0.00355914) 2024
(0.0119811 0.00650501 0.00419409) 6683
(0.0131501 0.00645414 0.00415004) 6686
(0.0140177 0.00642507 0.00413384) 6688
(0.0147144 0.00640623 0.00412686) 6689
(0.0152984 0.00639774 0.00412063) 6690
(0.0158109 0.00639468 0.00411709) 6691
(0.0162935 0.00639385 0.00411507) 6692
(0.0167805 0.00639442 0.00411071) 6693
(0.0172955 0.00639155 0.00410536) 6694
(0.0178164 0.00638468 0.00410264) 6695
(0.0183066 0.00637738 0.00410224) 6696
(0.0225092 0.00328857 0.0033268) 5445
(0.0231932 0.00651244 0.00217174) 13426
(0.0243227 0.00664476 0.00225094) 6108
(0.0204696 0.00663062 0.00421745) 6640
(0.0228784 0.00666899 0.00412481) 1965
(0.0242743 0.00673177 0.00409862) 1968
(0.0208521 0.0063796 0.00121014) 6821
(0.0199175 0.00358516 0.00460875) 7179
(0.0217434 0.00360082 0.00460612) 7183
(0.0229469 0.00362927 0.00466372) 7185
(0.0199267 0.00341062 0.00158264) 9219
(0.0219636 0.00338512 0.00167817) 463
(0.023359 0.00334848 0.00170797) 466
(0.0205303 0.00609986 0.00476643) 12221
(0.0223343 0.00613132 0.00472939) 12224
(0.0202653 0.00580973 0.00503825) 12580
(0.0202653 0.00580973 0.00503825) 12580
(0.0202653 0.00580973 0.00503825) 12580
(0.0222341 0.00580716 0.0050033) 12584
(0.0222341 0.00580716 0.0050033) 12584
(0.0222341 0.00580716 0.0050033) 12584
(0.0234812 0.00585596 0.00499333) 12586
(0.0234812 0.00585596 0.00499333) 12586
(0.0234812 0.00585596 0.00499333) 12586
(0.0202693 0.00396379 0.00484037) 10540
(0.0219441 0.00398394 0.00487412) 10543
(0.020145 0.00379282 0.00139154) 12760
(0.0229887 0.00379025 0.00141723) 12765
(0.0204549 0.00418309 0.00125555) 11500
(0.0232265 0.00411038 0.00124632) 11506
(0.020428 0.00453391 0.00110991) 11560
(0.0202632 0.00484399 0.000959195) 11620
(0.0221395 0.00477523 0.00096838) 11624
(0.0198859 0.00566605 0.00100955) 12159
(0.0197784 0.00598766 0.00105562) 12279
(0.0213776 0.00601105 0.00107266) 12282
(0.0203005 0.0053811 0.000878634) 12100
(0.0223038 0.00530729 0.000896019) 10124
(0.0234402 0.00525442 0.0008581) 10126
(0.0200149 0.00523211 0.00520294) 11440
(0.0216274 0.00522328 0.0051772) 11443
(0.0228122 0.00525843 0.00518509) 11445
(0.0206835 0.00387601 0.001132) 13001
(0.0211861 0.00304674 0.00317756) 762
(0.0244181 0.00304644 0.00316303) 768
(0.025149 0.00300243 0.00314395) 770
(0.0198774 0.00675586 0.00168585) 2499
(0.0220888 0.00670018 0.00176533) 2504
(0.0220888 0.00670018 0.00176533) 2504
(0.0220888 0.00670018 0.00176533) 2504
(0.0237535 0.00669988 0.00178149) 2447
(0.0242431 0.00663596 0.00168256) 2508
(0.0227251 0.00623275 0.00170905) 13485
(0.023488 0.006331 0.00172797) 13486
(0.00628987 0.00644158 0.00288519) 13512
(0.00678524 0.00644323 0.00288201) 13513
(0.00727091 0.00644499 0.00287496) 13514
(0.00772769 0.00644807 0.00286766) 13515
(0.00816358 0.00645186 0.00286398) 13516
(0.00569089 0.00634451 0.00254048) 13571
(0.00617823 0.00636225 0.00258014) 13572
(0.0121069 0.00620656 0.0023631) 13644
(0.0126611 0.00619703 0.00236656) 13645
(0.0131772 0.00619509 0.00236763) 13646
(0.0136386 0.00620233 0.00236649) 13647
(0.0180777 0.00623179 0.00235763) 13656
(0.018622 0.00622737 0.00236249) 13657
(0.0191435 0.00622138 0.0023655) 13658
(0.019658 0.00621262 0.00236508) 13659
(0.020197 0.00620057 0.00236136) 13660
(0.0207384 0.00618811 0.00235231) 13661
(0.0212485 0.0061794 0.00234045) 13662
(0.00580806 0.00583087 0.00187687) 13751
(0.00630386 0.00582717 0.00186715) 13752
(0.00676358 0.00583043 0.00186397) 13753
(0.00717769 0.00583729 0.00186089) 13754
(0.00576115 0.0055854 0.00171691) 13811
(0.00619466 0.00559054 0.0017102) 13812
(0.00660152 0.00559153 0.0017038) 13813
(0.00607969 0.00466972 0.0016107) 13992
(0.00596211 0.00442577 0.00169136) 14051
(0.00596211 0.00442577 0.00169136) 14051
(0.00596211 0.00442577 0.00169136) 14051
(0.00639915 0.00440842 0.00169067) 14052
(0.0067944 0.00440105 0.00168686) 14053
(0.00717233 0.00439344 0.00168169) 14054
(0.00756908 0.00438818 0.00167609) 14055
(0.00799818 0.00438525 0.00167314) 14055
(0.0059805 0.00419707 0.00182089) 14111
(0.0059805 0.00419707 0.00182089) 14111
(0.0059805 0.00419707 0.00182089) 14111
(0.00644471 0.00417697 0.00182392) 14112
(0.0068631 0.00416885 0.00182009) 14113
(0.00724199 0.00415854 0.00181582) 14114
(0.0076252 0.00414794 0.00181287) 14115
(0.0080371 0.00414361 0.00180978) 14116
(0.0122955 0.00418254 0.00184721) 14124
(0.0127458 0.00418454 0.00184746) 14125
(0.00579412 0.00398503 0.00203066) 14171
(0.00626213 0.00397444 0.00203167) 14172
(0.00666956 0.00396457 0.00203143) 14173
(0.0115742 0.00362971 0.0028928) 14363
(0.0121458 0.00364316 0.0028946) 14364
(0.0127174 0.00365549 0.00289589) 14365
(0.0132351 0.00365957 0.00289511) 14366
(0.0136904 0.00365497 0.00289333) 14367
(0.0058413 0.00358389 0.00318838) 14411
(0.00628587 0.00358832 0.00320615) 14412
(0.0111821 0.00359391 0.00318923) 14422
(0.0117464 0.00360499 0.00319283) 14423
(0.0123176 0.00361778 0.00319373) 14424
(0.0128647 0.00362687 0.00319351) 14425
(0.0133711 0.00362955 0.00319227) 14426
(0.0138439 0.00362706 0.00319217) 14427
(0.0142833 0.00362038 0.00319273) 14428
(0.00569801 0.00377741 0.00353325) 14471
(0.00569801 0.00377741 0.00353325) 14471
(0.00569801 0.00377741 0.00353325) 14471
(0.00611827 0.00373398 0.00356853) 14532
(0.00665392 0.00371096 0.00354304) 14473
(0.00725142 0.00368369 0.00350529) 14474
(0.00780063 0.00365549 0.00348195) 14475
(0.00825241 0.00363362 0.00347338) 14476
(0.00539962 0.00387598 0.00376815) 14590
(0.00539962 0.00387598 0.00376815) 14590
(0.00539962 0.00387598 0.00376815) 14590
(0.00574149 0.00384896 0.00379062) 14591
(0.00618842 0.00381723 0.00377135) 14532
(0.00681673 0.00377976 0.00373943) 14533
(0.00752387 0.00374726 0.00371558) 14535
(0.005462 0.00406704 0.00396799) 14590
(0.00653181 0.00402353 0.00397744) 14593
(0.00611665 0.00473612 0.00439758) 14772
(0.00586018 0.00502288 0.00442131) 14831
(0.00636742 0.0050139 0.00442935) 14832
(0.00681496 0.00501021 0.00443556) 14833
(0.00720273 0.00501172 0.00444384) 14834
(0.00757117 0.0050083 0.00445407) 14835
(0.00578166 0.00528893 0.00438046) 14891
(0.00674224 0.00528324 0.00439741) 14893
(0.00710154 0.00528629 0.00440729) 14894
(0.00585465 0.00635413 0.00341608) 15191
(0.00627471 0.00636365 0.00340594) 15192
(0.00661201 0.00637724 0.00339935) 15193
(0.0059604 0.00642754 0.00313427) 15251
(0.0059604 0.00642754 0.00313427) 15251
(0.0059604 0.00642754 0.00313427) 15251
(0.00642969 0.0064312 0.00312966) 15252
(0.00687597 0.00643546 0.00312356) 15253
(0.00730768 0.00644119 0.00312266) 15254
(0.00773886 0.00644673 0.0031267) 15255
(0.00818551 0.00644971 0.00313154) 15256
(0.00251861 0.00642232 0.00283271) 13505
(0.000634124 0.00646695 0.00285888) 13501
(0.00266771 0.0064699 0.00285059) 13505
(0.00408234 0.00636622 0.00267622) 13568
(0.00438212 0.0063749 0.00262143) 13568
(0.00474666 0.00636814 0.00269056) 13569
(0.00515366 0.00582404 0.00187539) 13750
(0.00504589 0.00556185 0.00172054) 13810
(0.0048869 0.00441485 0.00159703) 5709
(0.00516242 0.00426507 0.00184773) 14110
(0.00542697 0.00423677 0.00183642) 14110
(0.00386346 0.00367196 0.00349333) 14467
(0.00544814 0.00379411 0.00343711) 15910
(0.00489515 0.00374402 0.00352237) 14469
(0.00507237 0.00385335 0.00369206) 14530
(0.00313604 0.00494574 0.00436303) 14826
(0.00529077 0.0050527 0.00437735) 14830
(0.0043823 0.00533662 0.00431235) 14888
(0.00493671 0.00528964 0.00432534) 14889
(0.00423581 0.00638911 0.00274492) 13568
(0.00470122 0.00645072 0.00277643) 13509
(0.00524961 0.00645156 0.00309103) 15250
(0.0199492 0.00302507 0.00215584) 519
(0.0213767 0.0029993 0.00220937) 33116
(0.0205941 0.00707636 0.00378742) 23861
(0.0215191 0.00717123 0.00367747) 23503
(0.0204044 0.00687352 0.0036635) 2020
(0.0220173 0.00696944 0.00356248) 2024
(0.0119375 0.00650726 0.00419653) 6683
(0.0131175 0.00645542 0.00415077) 6686
(0.0139933 0.00642581 0.00413387) 6687
(0.0146946 0.00640651 0.00412685) 6689
(0.0152817 0.00639773 0.00412055) 6690
(0.0157959 0.00639456 0.00411692) 6691
(0.0162783 0.00639366 0.004115) 6692
(0.0167647 0.00639429 0.00411059) 6693
(0.0172788 0.00639165 0.00410508) 6694
(0.0178001 0.00638471 0.00410242) 6695
(0.0182921 0.00637735 0.00410195) 6696
(0.0224367 0.0032889 0.00332612) 5444
(0.0231384 0.00650316 0.00216258) 13426
(0.0242772 0.00664266 0.00225193) 6108
(0.0203882 0.00662858 0.00422451) 6640
(0.0228025 0.00666592 0.00412678) 1965
(0.0242599 0.00672692 0.00410012) 1968
(0.020822 0.00638192 0.00121179) 6821
(0.0198529 0.0035806 0.00460789) 7179
(0.0216891 0.00360035 0.00460461) 7183
(0.0229307 0.0036258 0.00465856) 7185
(0.0198713 0.00341346 0.00157623) 9219
(0.0218998 0.00338654 0.00167679) 463
(0.0233353 0.00335222 0.00170527) 466
(0.0204708 0.00609808 0.00476953) 12220
(0.0222826 0.00612862 0.00472978) 12224
(0.0202045 0.00580948 0.00503984) 12580
(0.0202045 0.00580948 0.00503984) 12580
(0.0202045 0.00580948 0.00503984) 12580
(0.0221738 0.0058057 0.00500341) 12584
(0.0221738 0.0058057 0.00500341) 12584
(0.0221738 0.0058057 0.00500341) 12584
(0.0234598 0.00585151 0.00499406) 12586
(0.0234598 0.00585151 0.00499406) 12586
(0.0234598 0.00585151 0.00499406) 12586
(0.0202116 0.00396187 0.00483838) 10540
(0.0218923 0.00398344 0.00487166) 10543
(0.0200703 0.00379323 0.0013886) 12760
(0.0228981 0.00379052 0.0014183) 12765
(0.0203649 0.00418472 0.00125369) 11500
(0.0231302 0.00411189 0.00124831) 11506
(0.0203601 0.00453701 0.00110745) 11560
(0.0222895 0.00443549 0.00112877) 11564
(0.0201988 0.00484677 0.000958378) 11620
(0.0220803 0.00477863 0.000969555) 11624
(0.0198405 0.00566938 0.00101197) 12159
(0.0197393 0.00598727 0.00105623) 12279
(0.0213271 0.00601065 0.0010735) 12282
(0.0202331 0.00538579 0.000878572) 12100
(0.0222422 0.00530905 0.000897228) 10124
(0.0234321 0.00525915 0.000861959) 10126
(0.0199701 0.00523076 0.00520384) 11439
(0.0215793 0.00522302 0.00517685) 11443
(0.0227914 0.00525374 0.00518396) 11445
(0.0206446 0.00387917 0.00113102) 13001
(0.0209779 0.00304044 0.00317464) 761
(0.0243438 0.00304796 0.00316385) 768
(0.0251374 0.00300554 0.00314268) 770
(0.0198218 0.00675739 0.00168445) 2499
(0.0220147 0.00670089 0.0017642) 2504
(0.0220147 0.00670089 0.0017642) 2504
(0.0220147 0.00670089 0.0017642) 2504
(0.0237182 0.00669999 0.00178383) 2447
(0.0242561 0.00664274 0.00169154) 2508
(0.0226524 0.00622694 0.00170409) 13485
(0.023464 0.0063292 0.00173047) 13486
(0.00626707 0.00644158 0.00288509) 13512
(0.00676138 0.00644322 0.0028823) 13513
(0.00724736 0.00644493 0.00287529) 13514
(0.00770523 0.00644797 0.00286798) 13515
(0.00814088 0.0064518 0.00286403) 13516
(0.00566693 0.006344 0.00253915) 13571
(0.00615303 0.00636206 0.00257858) 13572
(0.0120835 0.00620698 0.00236291) 13644
(0.012638 0.00619737 0.00236647) 13645
(0.0131561 0.00619505 0.00236761) 13646
(0.0136194 0.00620195 0.00236656) 13647
(0.0180526 0.00623204 0.0023575) 13656
(0.0185985 0.00622762 0.00236235) 13657
(0.0191208 0.00622176 0.00236554) 13658
(0.019635 0.00621312 0.00236522) 13659
(0.0201729 0.00620121 0.00236171) 13660
(0.0207151 0.00618869 0.00235291) 13661
(0.0212264 0.00617982 0.0023411) 13662
(0.0217092 0.00617483 0.0023288) 13663
(0.00578584 0.00583082 0.00187679) 13751
(0.00628104 0.00582713 0.00186702) 13752
(0.00674174 0.0058301 0.00186378) 13753
(0.00715767 0.00583691 0.00186092) 13754
(0.00573871 0.00558519 0.00171672) 13811
(0.00617204 0.0055904 0.00171006) 13812
(0.00658 0.00559148 0.00170384) 13813
(0.00605566 0.00467002 0.00161061) 13992
(0.00594067 0.00442719 0.00169104) 14051
(0.00594067 0.00442719 0.00169104) 14051
(0.00594067 0.00442719 0.00169104) 14051
(0.00637688 0.00440883 0.0016905) 14052
(0.00677266 0.00440136 0.00168675) 14053
(0.00715155 0.00439377 0.00168178) 14054
(0.00754781 0.00438833 0.00167624) 14055
(0.00797538 0.00438535 0.00167308) 14055
(0.00595886 0.00419851 0.0018201) 14111
(0.00595886 0.00419851 0.0018201) 14111
(0.00595886 0.00419851 0.0018201) 14111
(0.00642166 0.00417743 0.00182372) 14112
(0.00684113 0.00416903 0.00182011) 14113
(0.00722161 0.00415891 0.00181592) 14114
(0.0076045 0.00414829 0.00181291) 14115
(0.00801508 0.00414358 0.00180987) 14116
(0.0122744 0.00418231 0.00184708) 14124
(0.0127258 0.00418442 0.00184745) 14125
(0.00577134 0.00398563 0.00202977) 14171
(0.00623813 0.0039747 0.00203128) 14172
(0.00664723 0.00396484 0.00203122) 14173
(0.0115508 0.00362927 0.00289274) 14363
(0.0121209 0.00364252 0.00289452) 14364
(0.012694 0.00365506 0.00289587) 14365
(0.013214 0.0036595 0.00289516) 14366
(0.0136719 0.00365523 0.00289342) 14367
(0.00582274 0.00358359 0.0031874) 14411
(0.00626623 0.00358802 0.00320604) 14412
(0.0111573 0.00359352 0.0031891) 14422
(0.0117218 0.00360448 0.0031928) 14423
(0.0122928 0.00361723 0.00319374) 14424
(0.0128417 0.00362658 0.00319359) 14425
(0.0133492 0.00362946 0.00319236) 14426
(0.0138236 0.00362718 0.00319222) 14427
(0.0142639 0.00362065 0.00319273) 14428
(0.0147041 0.00361288 0.00319506) 14429
(0.00568782 0.00377645 0.00352929) 14471
(0.00568782 0.00377645 0.00352929) 14471
(0.00568782 0.00377645 0.00352929) 14471
(0.00609813 0.00373471 0.00356757) 14532
(0.00662803 0.00371189 0.00354461) 14473
(0.00722405 0.00368494 0.00350687) 14474
(0.00777636 0.00365659 0.00348275) 14475
(0.00823177 0.00363441 0.00347366) 14476
(0.00538596 0.00387465 0.00376578) 14590
(0.00538596 0.00387465 0.00376578) 14590
(0.00538596 0.00387465 0.00376578) 14590
(0.00572564 0.00384911 0.00379044) 14591
(0.00616676 0.00381821 0.00377214) 14532
(0.00678561 0.00378133 0.00374103) 14533
(0.00749193 0.00374838 0.00371642) 14534
(0.00543706 0.00406405 0.0039666) 14590
(0.00598434 0.00406749 0.00398145) 14651
(0.00650787 0.00402544 0.00397772) 14593
(0.00609608 0.00473667 0.00439725) 14772
(0.00583797 0.00502298 0.00442111) 14831
(0.00634378 0.00501409 0.00442931) 14832
(0.00679217 0.00501014 0.00443556) 14833
(0.00718173 0.00501158 0.0044437) 14834
(0.00755098 0.00500864 0.00445377) 14835
(0.00575699 0.00528896 0.00438037) 14891
(0.00672042 0.00528337 0.00439733) 14893
(0.00708188 0.0052861 0.00440709) 14894
(0.00583258 0.00635407 0.00341659) 15191
(0.00625492 0.00636336 0.00340643) 15192
(0.00659325 0.0063769 0.00339954) 15193
(0.00593824 0.00642785 0.00313423) 15251
(0.00593824 0.00642785 0.00313423) 15251
(0.00593824 0.00642785 0.00313423) 15251
(0.00640745 0.00643115 0.00313027) 15252
(0.00685352 0.00643538 0.00312391) 15253
(0.00728554 0.00644101 0.00312278) 15254
(0.00771671 0.00644657 0.00312649) 15255
(0.00816141 0.00644978 0.00313145) 15256
(0.00273527 0.00640431 0.00282997) 13505
(0.000720618 0.00646754 0.00285577) 13501
(0.00254909 0.00647535 0.00285249) 13505
(0.00406968 0.0063651 0.00267762) 13568
(0.00437152 0.00637866 0.00262946) 13568
(0.00472193 0.00636914 0.00268076) 13569
(0.00514018 0.00582495 0.00187778) 13750
(0.00503024 0.00556151 0.00172183) 13810
(0.00488995 0.00440875 0.00159494) 5709
(0.00473283 0.0042639 0.00168652) 5709
(0.00515275 0.0042691 0.00185093) 14110
(0.00541505 0.00423916 0.00183679) 14110
(0.00321122 0.00361999 0.00347283) 14466
(0.00544197 0.00379277 0.00343285) 15910
(0.0048812 0.00373153 0.00351701) 14469
(0.00506316 0.00385252 0.00369214) 14530
(0.00303206 0.00494364 0.00437012) 14826
(0.0052728 0.005052 0.00437535) 14830
(0.00436235 0.00533608 0.00431224) 14888
(0.00491758 0.00529257 0.0043253) 14889
(0.00421042 0.0063904 0.00274676) 13508
(0.00469032 0.00644816 0.00276993) 13509
(0.00522197 0.00645365 0.00308269) 15250
(0.0199022 0.00302432 0.00215359) 519
(0.0213418 0.00300266 0.00220555) 522
(0.0205716 0.00707317 0.00379198) 23861
(0.021507 0.00716384 0.00368544) 23503
(0.0203479 0.00687143 0.0036681) 2020
(0.0219692 0.00696446 0.00356584) 2023
(0.0118934 0.00650957 0.00419906) 6683
(0.0130847 0.00645674 0.00415155) 6686
(0.0139687 0.00642655 0.00413392) 6687
(0.0146745 0.00640681 0.00412685) 6689
(0.0152649 0.00639773 0.00412046) 6690
(0.0157808 0.00639444 0.00411673) 6691
(0.0162632 0.00639347 0.00411494) 6692
(0.016749 0.00639414 0.0041105) 6693
(0.017262 0.00639174 0.00410482) 6694
(0.0177837 0.00638474 0.00410219) 6695
(0.0182774 0.00637733 0.00410167) 6696
(0.0223601 0.00328886 0.00332546) 5444
(0.0230809 0.00649355 0.00215255) 13426
(0.0242314 0.00664046 0.00225274) 6108
(0.0203044 0.00662721 0.00423124) 6640
(0.0227254 0.00666282 0.00412891) 1965
(0.0242428 0.00672221 0.00410151) 1968
(0.0207915 0.00638413 0.00121333) 6821
(0.0197946 0.00357604 0.00460657) 7179
(0.0216336 0.00359992 0.00460324) 7183
(0.0229128 0.00362258 0.00465363) 7185
(0.0198181 0.00341627 0.00157024) 9219
(0.0218346 0.00338787 0.00167529) 463
(0.0233097 0.00335576 0.00170275) 466
(0.0204104 0.00609623 0.00477283) 12220
(0.0222294 0.00612602 0.00473018) 12224
(0.0201446 0.00580924 0.00504133) 12580
(0.0201446 0.00580924 0.00504133) 12580
(0.0201446 0.00580924 0.00504133) 12580
(0.0221121 0.00580435 0.00500358) 12584
(0.0221121 0.00580435 0.00500358) 12584
(0.0221121 0.00580435 0.00500358) 12584
(0.0234365 0.00584727 0.00499468) 12586
(0.0234365 0.00584727 0.00499468) 12586
(0.0234365 0.00584727 0.00499468) 12586
(0.020151 0.00395981 0.00483633) 10540
(0.0218395 0.00398294 0.00486928) 10543
(0.0199992 0.00379358 0.00138578) 12759
(0.0228065 0.00379095 0.00141928) 12765
(0.0202753 0.00418475 0.0012517) 11500
(0.0230338 0.0041137 0.00125024) 11506
(0.0202901 0.00453908 0.00110497) 11560
(0.0222296 0.00443976 0.00112975) 11564
(0.0201323 0.00484885 0.000957582) 11620
(0.0220201 0.00478198 0.000970667) 11624
(0.021443 0.00562148 0.00098815) 12162
(0.0197008 0.00598688 0.00105703) 12279
(0.021276 0.00601019 0.00107425) 12282
(0.0201661 0.00539046 0.000878555) 12100
(0.022179 0.00531083 0.000898309) 10124
(0.0234214 0.00526356 0.000865716) 10126
(0.0199269 0.00522923 0.00520462) 11079
(0.0215307 0.00522281 0.00517657) 11443
(0.022769 0.00524937 0.00518282) 11445
(0.020606 0.00388236 0.00112999) 13001
(0.0220034 0.00381842 0.00112966) 13004
(0.0207477 0.00303088 0.00317111) 761
(0.0242595 0.00304982 0.00316455) 768
(0.0251249 0.00300869 0.00314156) 770
(0.0219389 0.00670169 0.00176285) 2503
(0.0219389 0.00670169 0.00176285) 2503
(0.0219389 0.00670169 0.00176285) 2503
(0.023681 0.00670011 0.00178602) 2447
(0.024263 0.00664845 0.00169923) 2508
(0.0225698 0.006221 0.00169869) 13485
(0.0234407 0.00632722 0.00173278) 13486
(0.00624432 0.00644157 0.00288498) 13512
(0.00673759 0.0064432 0.00288258) 13513
(0.0072238 0.00644487 0.00287562) 13514
(0.00768277 0.00644786 0.00286832) 13515
(0.00811827 0.00645174 0.00286409) 13516
(0.00564307 0.00634347 0.00253785) 13571
(0.00612778 0.00636187 0.002577) 13572
(0.0120602 0.0062074 0.00236273) 13644
(0.0126149 0.00619771 0.00236639) 13645
(0.0131349 0.00619502 0.00236759) 13646
(0.0136002 0.00620158 0.00236663) 13647
(0.0180274 0.00623229 0.00235737) 13656
(0.0185749 0.00622786 0.00236221) 13657
(0.0190981 0.00622213 0.00236557) 13658
(0.019612 0.0062136 0.00236536) 13659
(0.0201489 0.00620185 0.00236205) 13660
(0.0206919 0.00618929 0.0023535) 13661
(0.0212043 0.00618025 0.00234175) 13662
(0.0216881 0.00617513 0.00232949) 13663
(0.00576367 0.00583076 0.00187671) 13751
(0.00625824 0.00582711 0.0018669) 13752
(0.00671981 0.00582978 0.00186359) 13753
(0.00713757 0.00583652 0.00186093) 13754
(0.00571631 0.00558499 0.00171655) 13811
(0.00614943 0.00559024 0.00170992) 13812
(0.00655845 0.00559143 0.00170386) 13813
(0.00603154 0.00467034 0.00161053) 13992
(0.00591932 0.00442868 0.0016907) 14051
(0.00591932 0.00442868 0.0016907) 14051
(0.00591932 0.00442868 0.0016907) 14051
(0.00635463 0.00440928 0.00169033) 14052
(0.00675086 0.00440167 0.00168664) 14053
(0.00713075 0.00439409 0.00168185) 14054
(0.0075266 0.00438848 0.0016764) 14055
(0.00795266 0.00438548 0.00167303) 14055
(0.00593742 0.00420003 0.00181925) 14111
(0.00593742 0.00420003 0.00181925) 14111
(0.00593742 0.00420003 0.00181925) 14111
(0.00639864 0.00417791 0.00182351) 14112
(0.00681907 0.00416922 0.00182012) 14113
(0.0072012 0.00415927 0.00181601) 14114
(0.00758385 0.00414866 0.00181295) 14115
(0.00799314 0.00414355 0.00180997) 14115
(0.0122532 0.00418208 0.00184694) 14124
(0.0127058 0.0041843 0.00184744) 14125
(0.00574867 0.00398623 0.00202886) 14171
(0.00621419 0.00397498 0.0020309) 14172
(0.00662483 0.00396511 0.002031) 14173
(0.0115275 0.00362883 0.00289267) 14363
(0.012096 0.00364188 0.00289444) 14364
(0.0126705 0.00365462 0.00289585) 14365
(0.0131928 0.00365941 0.00289521) 14366
(0.0136533 0.00365547 0.0028935) 14367
(0.00580416 0.00358329 0.00318637) 14411
(0.00624658 0.00358772 0.00320588) 14412
(0.0116973 0.00360397 0.00319276) 14423
(0.0122679 0.00361668 0.00319376) 14424
(0.0128186 0.00362627 0.00319367) 14425
(0.0133273 0.00362936 0.00319246) 14426
(0.0138031 0.00362729 0.00319227) 14427
(0.0142445 0.00362092 0.00319273) 14428
(0.0146838 0.00361318 0.00319507) 14429
(0.00567728 0.00377554 0.00352537) 14471
(0.00567728 0.00377554 0.00352537) 14471
(0.00567728 0.00377554 0.00352537) 14471
(0.00607822 0.00373544 0.00356637) 14532
(0.00660238 0.00371276 0.00354607) 14473
(0.00719663 0.00368616 0.00350847) 14474
(0.00775195 0.0036577 0.00348358) 14475
(0.00821102 0.00363523 0.00347397) 14476
(0.00537242 0.00387324 0.00376342) 14590
(0.00537242 0.00387324 0.00376342) 14590
(0.00537242 0.00387324 0.00376342) 14590
(0.00570984 0.00384922 0.00379019) 14591
(0.00614548 0.00381914 0.00377288) 14532
(0.00675492 0.00378288 0.00374261) 14533
(0.00745995 0.00374954 0.00371731) 14534
(0.00541235 0.00406092 0.00396517) 14590
(0.00595872 0.0040674 0.00398047) 14651
(0.00648392 0.00402727 0.00397794) 14592
(0.00607554 0.00473724 0.00439692) 14772
(0.00581592 0.0050231 0.0044209) 14831
(0.00632017 0.00501429 0.00442926) 14832
(0.00676928 0.00501007 0.00443558) 14833
(0.00716064 0.00501143 0.00444357) 14834
(0.0075308 0.00500896 0.00445347) 14835
(0.00573242 0.00528897 0.00438029) 14891
(0.00669851 0.00528349 0.00439725) 14893
(0.00706214 0.00528593 0.00440689) 14894
(0.00581041 0.00635403 0.00341708) 15191
(0.0062351 0.00636307 0.00340692) 15192
(0.00657448 0.00637656 0.00339976) 15193
(0.00591603 0.00642819 0.00313414) 15251
(0.00591603 0.00642819 0.00313414) 15251
(0.00591603 0.00642819 0.00313414) 15251
(0.00638526 0.0064311 0.00313085) 15252
(0.00683108 0.00643531 0.00312428) 15253
(0.00726342 0.00644083 0.00312291) 15254
(0.0076946 0.00644641 0.00312629) 15255
(0.00813745 0.00644983 0.00313136) 15256
(0.00290871 0.00638615 0.00282327) 13505
(0.000810047 0.00646786 0.0028525) 13501
(0.00240815 0.00647967 0.00285408) 13504
(0.0040679 0.00636362 0.00267648) 13568
(0.00436116 0.00637943 0.00263392) 13568
(0.00470455 0.006371 0.00267337) 13569
(0.00512751 0.00582535 0.00188011) 13750
(0.00501463 0.00556119 0.0017232) 13810
(0.00485436 0.00439872 0.00159572) 5709
(0.00454096 0.00426427 0.00168369) 5709
(0.00514366 0.00427347 0.00185385) 14110
(0.00540303 0.00424174 0.00183684) 14110
(0.00220348 0.00356613 0.00345643) 5344
(0.00517577 0.00350161 0.00322488) 5410
(0.00543562 0.00379169 0.00342846) 15910
(0.00485108 0.00371918 0.00351718) 14469
(0.00505413 0.00385213 0.00369225) 14530
(0.00290998 0.00494127 0.00437907) 14825
(0.00525423 0.00505123 0.00437384) 14830
(0.00434129 0.0053355 0.0043122) 14888
(0.00489942 0.00529675 0.00432583) 14889
(0.00418228 0.00639241 0.00274897) 13508
(0.0046792 0.00644588 0.00276334) 13509
(0.00519637 0.00645552 0.00307393) 15250
(0.0198548 0.00302333 0.00215141) 519
(0.0213059 0.00300587 0.00220186) 522
(0.0214944 0.00715673 0.00369315) 23502
(0.0202888 0.00687017 0.00367205) 2020
(0.0219202 0.00695948 0.00356926) 2023
(0.0118498 0.00651187 0.00420162) 6683
(0.0130513 0.00645808 0.00415238) 6686
(0.0139438 0.00642729 0.00413401) 6687
(0.0146542 0.00640715 0.00412683) 6689
(0.0152481 0.00639774 0.00412036) 6690
(0.0157656 0.00639433 0.00411655) 6691
(0.0162482 0.00639328 0.00411489) 6692
(0.0167332 0.00639397 0.00411042) 6693
(0.0172453 0.00639183 0.00410457) 6694
(0.0177673 0.00638478 0.00410195) 6695
(0.0182627 0.00637731 0.00410138) 6696
(0.0222789 0.00328839 0.00332485) 5444
(0.02302 0.00648367 0.00214155) 13426
(0.0241856 0.00663814 0.00225335) 6108
(0.0249395 0.00667238 0.00220107) 13429
(0.0202166 0.006627 0.00423736) 6640
(0.0226469 0.00665974 0.00413117) 1965
(0.0242229 0.00671763 0.00410282) 1968
(0.0207608 0.00638623 0.00121474) 6821
(0.0197447 0.00357257 0.00460494) 7179
(0.0215769 0.0035995 0.00460201) 7183
(0.0228931 0.00361959 0.00464889) 7185
(0.0197685 0.00341939 0.00156477) 9219
(0.021768 0.00338909 0.00167366) 463
(0.0232822 0.00335912 0.00170037) 466
(0.0203476 0.00609439 0.00477633) 12220
(0.022175 0.00612351 0.00473061) 12224
(0.020085 0.00580901 0.00504268) 12580
(0.020085 0.00580901 0.00504268) 12580
(0.020085 0.00580901 0.00504268) 12580
(0.022049 0.00580309 0.00500381) 12584
(0.022049 0.00580309 0.00500381) 12584
(0.022049 0.00580309 0.00500381) 12584
(0.0234113 0.00584324 0.00499518) 12586
(0.0234113 0.00584324 0.00499518) 12586
(0.0234113 0.00584324 0.00499518) 12586
(0.0238517 0.00597726 0.00492251) 12347
(0.020087 0.00395749 0.00483413) 10540
(0.0217857 0.00398242 0.00486697) 10543
(0.0199313 0.00379386 0.0013832) 12759
(0.0227138 0.00379148 0.00142016) 12765
(0.0201849 0.00418283 0.0012497) 11500
(0.0229373 0.00411578 0.00125209) 11505
(0.0202176 0.00453995 0.00110246) 11560
(0.0221687 0.00444405 0.00113064) 11564
(0.0200637 0.00485014 0.000956816) 11620
(0.0219589 0.00478528 0.000971705) 11623
(0.0233517 0.00471274 0.000945827) 11626
(0.0213908 0.00562321 0.000990107) 12162
(0.0212244 0.00600967 0.00107491) 12282
(0.0201025 0.00539521 0.000878746) 12100
(0.0221142 0.00531263 0.000899262) 10124
(0.0234081 0.00526768 0.000869372) 10126
(0.0214817 0.00522266 0.00517635) 11442
(0.0227451 0.0052453 0.00518169) 11445
(0.0205681 0.00388561 0.0011289) 13001
(0.0219773 0.00382472 0.00112861) 13003
(0.0205199 0.00301922 0.00316718) 761
(0.0241649 0.00305207 0.00316519) 768
(0.0251115 0.00301186 0.00314053) 770
(0.0218613 0.00670259 0.00176126) 2503
(0.0218613 0.00670259 0.00176126) 2503
(0.0218613 0.00670259 0.00176126) 2503
(0.0236419 0.00670023 0.00178806) 2447
(0.0242694 0.0066538 0.00170684) 2508
(0.0224755 0.00621506 0.00169293) 13484
(0.0234187 0.00632504 0.00173494) 13486
(0.00622163 0.00644157 0.00288484) 13512
(0.00671386 0.00644318 0.00288284) 13513
(0.00720025 0.0064448 0.00287595) 13514
(0.00766032 0.00644776 0.00286867) 13515
(0.00809574 0.00645167 0.00286416) 13516
(0.00561932 0.0063429 0.00253656) 13571
(0.00610248 0.00636168 0.00257543) 13572
(0.0120369 0.00620782 0.00236256) 13644
(0.0125917 0.00619807 0.00236629) 13645
(0.0131137 0.00619501 0.00236757) 13646
(0.0135808 0.00620123 0.0023667) 13647
(0.0180022 0.00623253 0.00235725) 13656
(0.0185511 0.0062281 0.00236207) 13657
(0.0190753 0.0062225 0.00236561) 13658
(0.0195891 0.00621408 0.00236549) 13659
(0.020125 0.00620249 0.00236238) 13660
(0.0206685 0.0061899 0.00235409) 13661
(0.0211821 0.00618069 0.0023424) 13662
(0.0216671 0.00617542 0.00233017) 13663
(0.00574154 0.00583068 0.00187663) 13751
(0.00623547 0.0058271 0.0018668) 13752
(0.00669781 0.00582947 0.00186341) 13753
(0.0071174 0.00583613 0.00186092) 13754
(0.00569396 0.0055848 0.00171639) 13811
(0.00612684 0.00559007 0.00170977) 13812
(0.00653685 0.00559137 0.00170387) 13813
(0.00600735 0.00467067 0.00161044) 13992
(0.00589807 0.00443021 0.00169036) 14051
(0.00589807 0.00443021 0.00169036) 14051
(0.00589807 0.00443021 0.00169036) 14051
(0.0063324 0.00440975 0.00169016) 14052
(0.006729 0.00440197 0.00168651) 14053
(0.0071099 0.00439442 0.00168191) 14054
(0.00750544 0.00438863 0.00167656) 14055
(0.00793004 0.0043856 0.00167299) 14055
(0.00591618 0.00420162 0.00181834) 14111
(0.00591618 0.00420162 0.00181834) 14111
(0.00591618 0.00420162 0.00181834) 14111
(0.00637567 0.00417843 0.00182327) 14112
(0.00679693 0.00416941 0.00182012) 14113
(0.00718074 0.00415963 0.0018161) 14114
(0.00756323 0.00414904 0.00181299) 14115
(0.00797131 0.00414354 0.00181007) 14115
(0.0122319 0.00418185 0.00184679) 14124
(0.0126859 0.00418417 0.00184743) 14125
(0.0057261 0.00398685 0.00202791) 14171
(0.00619035 0.00397527 0.0020305) 14172
(0.00660235 0.00396537 0.00203078) 14173
(0.0115042 0.00362841 0.0028926) 14363
(0.0120712 0.00364125 0.00289436) 14364
(0.0126469 0.00365416 0.00289582) 14365
(0.0131715 0.00365931 0.00289525) 14366
(0.0136345 0.0036557 0.00289359) 14367
(0.00578555 0.00358299 0.00318528) 14411
(0.0062269 0.00358739 0.00320567) 14412
(0.0116728 0.00360347 0.00319272) 14423
(0.012243 0.00361612 0.00319378) 14424
(0.0127955 0.00362595 0.00319375) 14425
(0.0133054 0.00362925 0.00319255) 14426
(0.0137826 0.00362739 0.00319232) 14427
(0.0142252 0.00362119 0.00319273) 14428
(0.0146637 0.00361349 0.00319507) 14429
(0.00566786 0.00377408 0.00352143) 14471
(0.00566786 0.00377408 0.00352143) 14471
(0.00566786 0.00377408 0.00352143) 14471
(0.00605865 0.00373618 0.00356496) 14532
(0.00657698 0.00371358 0.0035474) 14473
(0.00716919 0.00368737 0.00351008) 14474
(0.00772739 0.00365882 0.00348444) 14475
(0.00819013 0.00363605 0.00347429) 14476
(0.0053591 0.00387175 0.0037611) 14590
(0.0053591 0.00387175 0.0037611) 14590
(0.0053591 0.00387175 0.0037611) 14590
(0.00569413 0.00384927 0.00378988) 14591
(0.00612454 0.00382 0.00377355) 14532
(0.00672462 0.00378441 0.00374417) 14533
(0.00742785 0.00375074 0.00371824) 14534
(0.00538793 0.00405768 0.00396371) 14590
(0.00593312 0.00406719 0.00397948) 14651
(0.00645996 0.00402901 0.00397808) 14592
(0.00605502 0.00473781 0.00439658) 14772
(0.005794 0.00502323 0.00442068) 14831
(0.0062966 0.0050145 0.0044292) 14832
(0.00674631 0.00501002 0.00443559) 14833
(0.00713947 0.00501127 0.00444345) 14834
(0.00751064 0.00500927 0.00445317) 14835
(0.00570796 0.00528899 0.00438021) 14891
(0.0066765 0.00528361 0.00439717) 14893
(0.00704233 0.00528577 0.00440671) 14894
(0.00578813 0.00635401 0.00341756) 15191
(0.00621525 0.00636279 0.0034074) 15192
(0.00655576 0.0063762 0.00340001) 15193
(0.00589377 0.00642856 0.00313399) 15251
(0.00589377 0.00642856 0.00313399) 15251
(0.00589377 0.00642856 0.00313399) 15251
(0.00636311 0.00643105 0.00313141) 15252
(0.00680865 0.00643525 0.00312467) 15253
(0.00724132 0.00644065 0.00312306) 15254
(0.00767253 0.00644624 0.0031261) 15255
(0.00811369 0.00644986 0.00313126) 15256
(0.000905373 0.00646775 0.00284892) 13501
(0.00233807 0.00648105 0.00285365) 13504
(0.00405572 0.0063626 0.00267778) 13568
(0.00435414 0.00637774 0.00263679) 13568
(0.00468601 0.00637311 0.00266515) 13569
(0.00511474 0.00582528 0.00188227) 13750
(0.00499861 0.00556082 0.00172466) 13809
(0.00479196 0.00438896 0.00159926) 5709
(0.00423478 0.00426144 0.00169083) 5708
(0.00513337 0.00427756 0.00185725) 14110
(0.00539602 0.00424379 0.0018362) 14110
(0.00110315 0.00357662 0.00346228) 5342
(0.00516277 0.00349758 0.00322438) 5410
(0.0054291 0.00379093 0.00342298) 14470
(0.00480735 0.00370674 0.00352272) 14469
(0.00504459 0.00385279 0.00369283) 14530
(0.00278681 0.00493888 0.00438813) 14825
(0.00523539 0.00505045 0.00437216) 14830
(0.00431932 0.00533487 0.00431213) 14888
(0.00488488 0.0053008 0.00432493) 14889
(0.000415867 0.00648787 0.00299544) 13500
(0.00410116 0.00640224 0.00275464) 13508
(0.00466977 0.00644274 0.00275805) 13509
(0.00517247 0.00645734 0.00306473) 15250
(0.019807 0.00302214 0.00214942) 519
(0.0212689 0.00300892 0.00219827) 522
(0.0214813 0.00714994 0.00370047) 23502
(0.0202264 0.00686984 0.00367524) 2020
(0.0218704 0.00695454 0.00357274) 2023
(0.0118063 0.00651418 0.00420423) 6683
(0.0130174 0.00645947 0.00415327) 6686
(0.0139187 0.00642804 0.00413414) 6687
(0.0146338 0.00640751 0.00412681) 6689
(0.0152312 0.00639777 0.00412026) 6690
(0.0157505 0.00639423 0.00411637) 6691
(0.0162331 0.0063931 0.00411483) 6692
(0.0167175 0.00639381 0.00411036) 6693
(0.0172285 0.00639191 0.00410434) 6694
(0.0177509 0.00638484 0.0041017) 6695
(0.0182478 0.0063773 0.0041011) 6696
(0.0221922 0.00328744 0.00332425) 5444
(0.0229548 0.00647356 0.00212961) 13425
(0.0241401 0.00663568 0.00225377) 6108
(0.024926 0.00667092 0.00220439) 13429
(0.0201253 0.00662825 0.0042427) 6640
(0.0225666 0.00665672 0.00413355) 1965
(0.0242006 0.00671319 0.00410408) 1968
(0.0207299 0.00638823 0.00121606) 6821
(0.0215192 0.00359907 0.00460091) 7183
(0.0228717 0.00361682 0.00464434) 7185
(0.019724 0.00342327 0.00155966) 9219
(0.0216999 0.00339019 0.00167187) 463
(0.0232532 0.00336232 0.00169812) 466
(0.0202814 0.00609263 0.00478001) 12220
(0.0221192 0.00612109 0.00473107) 12224
(0.0200256 0.00580878 0.00504387) 12580
(0.0200256 0.00580878 0.00504387) 12580
(0.0200256 0.00580878 0.00504387) 12580
(0.0219846 0.00580192 0.00500411) 12583
(0.0219846 0.00580192 0.00500411) 12583
(0.0219846 0.00580192 0.00500411) 12583
(0.0233851 0.00583934 0.00499559) 12586
(0.0233851 0.00583934 0.00499559) 12586
(0.0233851 0.00583934 0.00499559) 12586
(0.0238551 0.00596811 0.00492936) 12347
(0.0200191 0.00395471 0.0048317) 10540
(0.0217313 0.00398189 0.00486472) 10543
(0.0198675 0.00379427 0.00138096) 12759
(0.0226199 0.00379203 0.00142094) 12765
(0.0200914 0.00417858 0.00124793) 11500
(0.0228407 0.00411815 0.00125382) 11505
(0.0201423 0.0045395 0.00109988) 11560
(0.022107 0.00444843 0.00113145) 11564
(0.019994 0.00485071 0.000956114) 11619
(0.0218969 0.00478847 0.000972659) 11623
(0.0233238 0.00471691 0.000947494) 11626
(0.021338 0.00562492 0.000991988) 12162
(0.0211726 0.00600913 0.00107548) 12282
(0.0200456 0.00540019 0.000879326) 12100
(0.022048 0.00531448 0.000900092) 10124
(0.0233922 0.00527153 0.000872933) 10126
(0.021432 0.00522256 0.00517619) 11442
(0.0227199 0.00524151 0.00518056) 11445
(0.020531 0.00388894 0.00112776) 13001
(0.0219502 0.00383071 0.00112764) 13003
(0.0231134 0.00333276 0.00284971) 13306
(0.0203428 0.00301039 0.00316274) 760
(0.0240603 0.00305454 0.00316585) 768
(0.0250974 0.00301506 0.00313962) 770
(0.0252702 0.00299989 0.00318996) 34272
(0.0217818 0.00670363 0.00175941) 2503
(0.0217818 0.00670363 0.00175941) 2503
(0.0217818 0.00670363 0.00175941) 2503
(0.0236008 0.00670034 0.00178992) 2447
(0.0242733 0.00665874 0.00171404) 2508
(0.0223683 0.0062092 0.00168674) 13484
(0.0233966 0.00632272 0.0017369) 13486
(0.00619899 0.00644157 0.00288468) 13512
(0.0066902 0.00644317 0.00288307) 13513
(0.00717669 0.00644474 0.00287626) 13514
(0.00763787 0.00644766 0.00286904) 13515
(0.00807329 0.00645159 0.00286425) 13516
(0.00559567 0.00634231 0.00253529) 13571
(0.00607713 0.00636148 0.00257384) 13572
(0.0120137 0.00620823 0.00236238) 13644
(0.0125685 0.00619844 0.00236619) 13645
(0.0130923 0.00619501 0.00236754) 13646
(0.0135614 0.00620089 0.00236676) 13647
(0.0179769 0.00623279 0.00235714) 13655
(0.0185273 0.00622834 0.00236192) 13657
(0.0190525 0.00622286 0.00236563) 13658
(0.0195662 0.00621455 0.00236561) 13659
(0.020101 0.00620313 0.0023627) 13660
(0.0206452 0.00619051 0.00235468) 13661
(0.02116 0.00618114 0.00234305) 13662
(0.0216459 0.00617573 0.00233086) 13663
(0.00571946 0.00583058 0.00187654) 13751
(0.00621273 0.0058271 0.00186672) 13752
(0.00667573 0.00582917 0.00186322) 13753
(0.00709716 0.00583574 0.00186091) 13754
(0.00567172 0.00558462 0.00171623) 13811
(0.00610427 0.00558988 0.00170962) 13812
(0.00651522 0.00559131 0.00170388) 13813
(0.00598308 0.00467103 0.00161035) 13991
(0.00587692 0.00443179 0.00169001) 14051
(0.00587692 0.00443179 0.00169001) 14051
(0.00587692 0.00443179 0.00169001) 14051
(0.00631022 0.00441026 0.00168998) 14052
(0.00670707 0.00440229 0.00168638) 14053
(0.00708903 0.0043947 0.00168199) 14054
(0.0074843 0.00438883 0.00167671) 14054
(0.00790752 0.00438573 0.00167296) 14055
(0.00589517 0.00420328 0.00181738) 14111
(0.00589517 0.00420328 0.00181738) 14111
(0.00589517 0.00420328 0.00181738) 14111
(0.00635275 0.00417899 0.00182303) 14112
(0.0067747 0.00416959 0.00182013) 14113
(0.00716023 0.00416003 0.00181614) 14114
(0.00754265 0.00414941 0.00181304) 14115
(0.00794956 0.00414355 0.00181017) 14115
(0.0122106 0.00418161 0.00184665) 14124
(0.0126659 0.00418405 0.00184741) 14125
(0.00570365 0.00398745 0.00202694) 14171
(0.00616662 0.00397558 0.00203009) 14172
(0.0065798 0.00396564 0.00203054) 14173
(0.0114809 0.00362799 0.00289254) 14362
(0.0120464 0.00364062 0.00289428) 14364
(0.0126231 0.00365369 0.00289579) 14365
(0.01315 0.00365919 0.0028953) 14366
(0.0136156 0.00365591 0.00289367) 14367
(0.0140275 0.00364662 0.00289161) 14368
(0.00576692 0.00358271 0.00318415) 14411
(0.00620719 0.00358705 0.00320541) 14412
(0.0116483 0.00360298 0.00319266) 14423
(0.012218 0.00361556 0.00319379) 14424
(0.0127723 0.00362562 0.00319382) 14425
(0.0132834 0.00362914 0.00319264) 14426
(0.013762 0.00362748 0.00319236) 14427
(0.0142058 0.00362146 0.00319274) 14428
(0.0146436 0.00361378 0.00319505) 14429
(0.00565871 0.00377241 0.00351745) 14471
(0.00565871 0.00377241 0.00351745) 14471
(0.00565871 0.00377241 0.00351745) 14471
(0.00603933 0.0037369 0.00356335) 14532
(0.00655177 0.0037144 0.00354868) 14473
(0.00714174 0.00368856 0.00351169) 14474
(0.00770269 0.00365996 0.00348534) 14475
(0.00816914 0.00363688 0.00347464) 14476
(0.00534604 0.00387018 0.00375882) 14590
(0.00534604 0.00387018 0.00375882) 14590
(0.00534604 0.00387018 0.00375882) 14590
(0.00567856 0.00384928 0.00378953) 14591
(0.00610392 0.0038208 0.00377416) 14532
(0.00669475 0.00378591 0.0037457) 14533
(0.00739569 0.00375196 0.00371922) 14534
(0.00536382 0.00405432 0.00396223) 14590
(0.0059076 0.00406689 0.00397853) 14651
(0.00643596 0.00403063 0.00397809) 14592
(0.0060345 0.00473837 0.00439624) 14772
(0.00577221 0.00502332 0.00442047) 14831
(0.00627307 0.00501471 0.00442913) 14832
(0.00672326 0.00500998 0.00443561) 14833
(0.0071182 0.00501111 0.00444334) 14834
(0.00749049 0.00500956 0.00445287) 14834
(0.00568359 0.005289 0.00438014) 14891
(0.0066544 0.00528373 0.0043971) 14893
(0.00702245 0.00528562 0.00440653) 14894
(0.00576571 0.00635402 0.00341802) 15191
(0.00619536 0.00636251 0.00340789) 15192
(0.00653705 0.00637585 0.00340027) 15193
(0.00587137 0.00642897 0.00313376) 15251
(0.00587137 0.00642897 0.00313376) 15251
(0.00587137 0.00642897 0.00313376) 15251
(0.006341 0.00643101 0.00313195) 15252
(0.00678621 0.00643521 0.00312508) 15253
(0.00721925 0.00644046 0.00312322) 15254
(0.0076505 0.00644606 0.00312593) 15255
(0.0080901 0.00644988 0.00313116) 15256
(0.00103294 0.00646782 0.00284488) 13502
(0.00230866 0.00648104 0.00285258) 13504
(0.00404125 0.00636226 0.00267945) 13568
(0.00435496 0.00637648 0.0026352) 13568
(0.00466457 0.0063757 0.00265465) 13569
(0.00510173 0.00582512 0.0018845) 13750
(0.00498234 0.00556053 0.00172614) 13809
(0.00472185 0.00438268 0.00160376) 5709
(0.00438063 0.00457015 0.00169848) 13988
(0.0036744 0.00425158 0.00170133) 5647
(0.00512525 0.00428294 0.00186049) 14110
(0.00538334 0.00424624 0.00183429) 14110
(0.00514831 0.00349507 0.00322434) 5410
(0.00542258 0.0037901 0.00341759) 14470
(0.00476164 0.0036985 0.00352894) 14469
(0.00503538 0.00385415 0.00369322) 14530
(0.00265534 0.00493629 0.00439785) 14825
(0.00521633 0.0050497 0.00437028) 14830
(0.00429726 0.00533423 0.00431206) 14888
(0.00487149 0.00530479 0.00432406) 14889
(0.00406473 0.00640537 0.002759) 13508
(0.00466448 0.0064385 0.00275466) 13509
(0.00514974 0.00645969 0.00305567) 15250
(0.019759 0.00302071 0.00214767) 519
(0.021231 0.00301179 0.00219481) 522
(0.0214675 0.00714348 0.00370738) 23502
(0.0201608 0.00687026 0.00367759) 2020
(0.0218199 0.00694965 0.00357627) 2023
(0.011764 0.00651638 0.0042068) 6683
(0.0129829 0.00646091 0.00415422) 6685
(0.0138933 0.00642881 0.00413429) 6687
(0.0146132 0.0064079 0.00412679) 6689
(0.0152142 0.0063978 0.00412018) 6690
(0.0157352 0.00639414 0.00411619) 6691
(0.016218 0.00639293 0.00411476) 6692
(0.0167018 0.00639363 0.00411032) 6693
(0.0172118 0.00639198 0.00410413) 6694
(0.0177345 0.00638491 0.00410144) 6695
(0.0182328 0.0063773 0.00410081) 6696
(0.0220985 0.00328591 0.00332363) 5444
(0.0228847 0.00646337 0.00211687) 13425
(0.024095 0.00663304 0.00225395) 6108
(0.0249114 0.00666939 0.00220766) 13429
(0.0200334 0.00663096 0.0042472) 6640
(0.0224846 0.00665379 0.00413601) 1964
(0.0241756 0.00670888 0.00410531) 1968
(0.020699 0.00639012 0.00121725) 6821
(0.0214605 0.00359859 0.0045999) 7182
(0.0228486 0.00361425 0.00463998) 7185
(0.0216304 0.00339124 0.00166989) 463
(0.0232227 0.00336538 0.00169598) 466
(0.0202112 0.00609103 0.00478387) 12220
(0.0220624 0.00611874 0.00473157) 12224
(0.0199664 0.00580855 0.00504486) 12579
(0.0199664 0.00580855 0.00504486) 12579
(0.0199664 0.00580855 0.00504486) 12579
(0.021919 0.00580085 0.00500449) 12583
(0.021919 0.00580085 0.00500449) 12583
(0.021919 0.00580085 0.00500449) 12583
(0.0233581 0.00583553 0.00499594) 12586
(0.0233581 0.00583553 0.00499594) 12586
(0.0233581 0.00583553 0.00499594) 12586
(0.0238601 0.00595875 0.00493569) 12347
(0.0199477 0.00395123 0.00482888) 10539
(0.0216762 0.00398133 0.00486252) 10543
(0.0198088 0.0037952 0.00137902) 12759
(0.0225247 0.00379254 0.00142162) 12765
(0.0199938 0.00417213 0.0012466) 11499
(0.0227442 0.00412069 0.00125528) 11505
(0.0200639 0.00453769 0.00109728) 11560
(0.0220444 0.00445296 0.00113218) 11564
(0.0199252 0.00485082 0.000955504) 11619
(0.0218339 0.00479159 0.000973532) 11623
(0.0232942 0.00472105 0.000949173) 11626
(0.0212845 0.00562667 0.000993821) 12162
(0.0211202 0.00600854 0.00107596) 12282
(0.0199959 0.0054055 0.000880326) 12099
(0.0219804 0.00531643 0.000900802) 10123
(0.0233736 0.00527509 0.000876393) 10126
(0.0213817 0.0052225 0.00517608) 11442
(0.0226931 0.00523798 0.00517945) 11445
(0.0204942 0.00389255 0.00112649) 13000
(0.0219241 0.00383693 0.00112624) 13003
(0.0230354 0.00333398 0.00284597) 13306
(0.0202374 0.00300967 0.00315773) 760
(0.0239455 0.00305702 0.0031666) 767
(0.0250823 0.00301829 0.00313883) 770
(0.0252769 0.00299869 0.00318507) 34272
(0.0216994 0.00670483 0.0017572) 2503
(0.0216994 0.00670483 0.0017572) 2503
(0.0216994 0.00670483 0.0017572) 2503
(0.0235575 0.00670043 0.00179159) 2447
(0.0242766 0.00666331 0.00172114) 2508
(0.0222463 0.00620391 0.0016806) 13484
(0.0233754 0.00632023 0.00173865) 13486
(0.0061764 0.00644158 0.00288451) 13512
(0.0066666 0.00644316 0.00288327) 13513
(0.00715314 0.00644468 0.00287658) 13514
(0.0076154 0.00644755 0.00286942) 13515
(0.00805092 0.00645151 0.00286435) 13516
(0.00557211 0.0063417 0.00253404) 13571
(0.00605172 0.00636129 0.00257226) 13572
(0.0119904 0.00620864 0.0023622) 13643
(0.0125453 0.00619881 0.0023661) 13645
(0.013071 0.00619503 0.00236751) 13646
(0.0135418 0.00620057 0.00236682) 13647
(0.0179515 0.00623305 0.00235702) 13655
(0.0185035 0.00622857 0.00236177) 13657
(0.0190296 0.00622322 0.00236565) 13658
(0.0195434 0.00621501 0.00236573) 13659
(0.0200772 0.00620376 0.00236301) 13660
(0.0206218 0.00619113 0.00235527) 13661
(0.0211378 0.0061816 0.0023437) 13662
(0.0216248 0.00617604 0.00233156) 13663
(0.00569751 0.00583047 0.00187645) 13751
(0.00619003 0.00582712 0.00186664) 13752
(0.00665358 0.00582889 0.00186303) 13753
(0.00707685 0.00583535 0.00186089) 13754
(0.00564961 0.00558444 0.00171608) 13811
(0.00608171 0.00558968 0.00170947) 13812
(0.00649354 0.00559124 0.00170387) 13812
(0.00595875 0.00467142 0.00161025) 13991
(0.00585587 0.00443341 0.00168964) 14051
(0.00585587 0.00443341 0.00168964) 14051
(0.00585587 0.00443341 0.00168964) 14051
(0.00628806 0.00441081 0.0016898) 14052
(0.00668508 0.00440261 0.00168624) 14053
(0.00706811 0.00439498 0.00168205) 14054
(0.00746319 0.00438905 0.00167684) 14054
(0.00788511 0.00438584 0.00167295) 14055
(0.00587443 0.00420499 0.00181637) 14111
(0.00587443 0.00420499 0.00181637) 14111
(0.00587443 0.00420499 0.00181637) 14111
(0.00632991 0.00417958 0.00182276) 14112
(0.0067524 0.00416977 0.00182013) 14113
(0.00713966 0.00416042 0.00181618) 14114
(0.0075221 0.00414977 0.00181311) 14115
(0.0079279 0.0041436 0.00181026) 14115
(0.0121892 0.00418137 0.00184649) 14124
(0.0126459 0.00418392 0.0018474) 14125
(0.00568132 0.00398803 0.00202599) 14171
(0.006143 0.00397591 0.00202967) 14172
(0.0065572 0.00396591 0.0020303) 14173
(0.0114577 0.00362758 0.00289247) 14362
(0.0120217 0.00364 0.0028942) 14364
(0.0125993 0.00365321 0.00289575) 14365
(0.0131284 0.00365905 0.00289534) 14366
(0.0135966 0.00365611 0.00289375) 14367
(0.0140104 0.00364704 0.00289169) 14368
(0.00574825 0.00358243 0.00318296) 14411
(0.00618746 0.00358669 0.00320509) 14412
(0.0116237 0.00360249 0.0031926) 14423
(0.012193 0.00361499 0.00319381) 14424
(0.012749 0.00362528 0.0031939) 14425
(0.0132613 0.00362901 0.00319274) 14426
(0.0137414 0.00362756 0.00319241) 14427
(0.0141864 0.00362171 0.00319276) 14428
(0.0146235 0.00361407 0.00319502) 14429
(0.00565022 0.00377061 0.00351338) 14471
(0.00565022 0.00377061 0.00351338) 14471
(0.00565022 0.00377061 0.00351338) 14471
(0.00602023 0.00373755 0.00356166) 14532
(0.00652682 0.00371515 0.00354985) 14473
(0.00711429 0.00368974 0.00351331) 14474
(0.00767785 0.00366111 0.00348627) 14475
(0.00814805 0.00363773 0.00347501) 14476
(0.00533324 0.00386853 0.00375657) 14590
(0.00533324 0.00386853 0.00375657) 14590
(0.00533324 0.00386853 0.00375657) 14590
(0.00566303 0.00384925 0.00378912) 14591
(0.00608363 0.00382154 0.00377471) 14532
(0.00666524 0.00378738 0.00374721) 14533
(0.00736348 0.0037532 0.00372024) 14534
(0.00534004 0.00405085 0.00396071) 14590
(0.00588211 0.00406646 0.00397758) 14651
(0.00641196 0.00403217 0.00397805) 14592
(0.00601397 0.00473891 0.00439589) 14772
(0.00575054 0.00502339 0.00442025) 14831
(0.00624958 0.00501494 0.00442905) 14832
(0.00670013 0.00500995 0.00443564) 14833
(0.00709683 0.00501094 0.00444325) 14834
(0.00747033 0.00500983 0.00445257) 14834
(0.00565931 0.00528901 0.00438006) 14891
(0.0066322 0.00528384 0.00439704) 14893
(0.00700247 0.00528548 0.00440635) 14894
(0.00574316 0.00635406 0.00341846) 15191
(0.00617543 0.00636223 0.00340839) 15192
(0.00651834 0.00637549 0.00340055) 15193
(0.00584894 0.00642941 0.00313347) 15251
(0.00584894 0.00642941 0.00313347) 15251
(0.00584894 0.00642941 0.00313347) 15251
(0.0063189 0.00643097 0.00313245) 15252
(0.00676379 0.00643517 0.0031255) 15253
(0.00719717 0.00644028 0.00312339) 15254
(0.0076285 0.00644588 0.00312578) 15255
(0.00806666 0.00644988 0.00313105) 15256
(0.00120001 0.00646693 0.00284114) 13502
(0.00224938 0.00648123 0.00285166) 13504
(0.00402366 0.00636282 0.00268192) 13568
(0.00434474 0.00637484 0.0026359) 13568
(0.00465044 0.00637405 0.00264965) 13569
(0.00508799 0.00582482 0.00188661) 13750
(0.00496517 0.00555978 0.00172754) 13809
(0.00462632 0.00437786 0.00160995) 5709
(0.00441519 0.00455919 0.00168588) 13988
(0.00299524 0.00422893 0.00170072) 5645
(0.00537095 0.00424864 0.00183288) 14110
(0.00512882 0.0034945 0.00322418) 5410
(0.00541426 0.00379046 0.00341174) 14470
(0.00472132 0.0036916 0.0035354) 14469
(0.00502655 0.00385546 0.00369315) 14530
(0.00252895 0.00493413 0.00440698) 14825
(0.0051969 0.00504896 0.00436827) 14830
(0.00427526 0.0053336 0.00431197) 14888
(0.00485884 0.00530846 0.00432325) 14889
(0.00401599 0.00641033 0.00276455) 13508
(0.00465049 0.00643588 0.00274949) 13509
(0.00513032 0.00646168 0.00304441) 15250
(0.0197111 0.00301918 0.00214628) 519
(0.0211921 0.00301447 0.00219148) 522
(0.0214532 0.00713728 0.00371398) 23502
(0.0200915 0.00687154 0.00367912) 2020
(0.0217687 0.00694482 0.00357987) 2023
(0.0117223 0.00651854 0.00420938) 6683
(0.0129483 0.00646234 0.00415523) 6685
(0.0138677 0.00642957 0.00413449) 6687
(0.0145923 0.00640831 0.00412678) 6689
(0.015197 0.00639784 0.00412011) 6690
(0.0157199 0.00639405 0.00411601) 6691
(0.016203 0.00639277 0.00411468) 6692
(0.0166861 0.00639346 0.00411028) 6693
(0.017195 0.00639204 0.00410393) 6694
(0.017718 0.00638499 0.00410116) 6695
(0.0182177 0.00637731 0.00410051) 6696
(0.0219975 0.00328379 0.00332301) 5443
(0.0228083 0.0064533 0.00210345) 13425
(0.0240501 0.0066302 0.00225387) 6108
(0.0248957 0.00666782 0.00221089) 13429
(0.0199471 0.00663454 0.00425107) 6639
(0.0224008 0.00665102 0.00413854) 1964
(0.0241476 0.00670475 0.00410651) 1968
(0.0206681 0.00639188 0.00121833) 6821
(0.0217204 0.00632733 0.00118261) 12463
(0.0214009 0.003598 0.00459894) 7182
(0.0228241 0.00361184 0.00463577) 7185
(0.0215598 0.0033922 0.00166768) 463
(0.0231909 0.00336831 0.00169402) 466
(0.0201372 0.00608963 0.00478788) 12220
(0.0220043 0.00611654 0.00473209) 12224
(0.0199082 0.00580829 0.00504556) 12579
(0.0199082 0.00580829 0.00504556) 12579
(0.0199082 0.00580829 0.00504556) 12579
(0.0218522 0.00579987 0.00500496) 12583
(0.0218522 0.00579987 0.00500496) 12583
(0.0218522 0.00579987 0.00500496) 12583
(0.0233296 0.00583185 0.00499624) 12586
(0.0233296 0.00583185 0.00499624) 12586
(0.0233296 0.00583185 0.00499624) 12586
(0.0238666 0.00594927 0.00494155) 12347
(0.0198748 0.00394693 0.00482558) 10539
(0.0216208 0.0039807 0.00486036) 10543
(0.0197558 0.00379687 0.00137723) 12759
(0.0224281 0.003793 0.00142218) 12764
(0.019896 0.00416467 0.00124593) 11499
(0.0226476 0.00412332 0.00125656) 11505
(0.0199831 0.00453475 0.00109464) 11559
(0.021981 0.00445763 0.00113281) 11563
(0.0198597 0.00485091 0.000955016) 11619
(0.0217696 0.00479461 0.000974324) 11623
(0.0232633 0.00472516 0.000950858) 11626
(0.0212303 0.00562851 0.00099562) 12162
(0.0210673 0.0060079 0.00107633) 12282
(0.022483 0.00601271 0.00106193) 12284
(0.0199478 0.00541082 0.000881479) 12099
(0.0219119 0.00531853 0.000901394) 10123
(0.0233522 0.00527835 0.000879738) 10126
(0.0213308 0.00522248 0.00517603) 11442
(0.0226653 0.00523467 0.00517835) 11445
(0.020458 0.0038965 0.00112511) 13000
(0.0218971 0.00384287 0.00112482) 13003
(0.0229493 0.00333492 0.00284197) 13305
(0.0201401 0.00300983 0.00315207) 760
(0.0238228 0.0030593 0.00316744) 767
(0.0250664 0.00302154 0.00313818) 770
(0.0252819 0.00299772 0.00318049) 34272
(0.0216134 0.00670625 0.00175466) 2503
(0.0216134 0.00670625 0.00175466) 2503
(0.0216134 0.00670625 0.00175466) 2503
(0.0235124 0.00670043 0.00179299) 2447
(0.0242791 0.0066676 0.00172808) 2508
(0.0221077 0.00619963 0.00167478) 13484
(0.0233543 0.00631762 0.00174023) 13486
(0.00615385 0.00644158 0.00288431) 13512
(0.00664307 0.00644315 0.00288344) 13513
(0.00712958 0.00644463 0.00287691) 13514
(0.00759293 0.00644744 0.00286977) 13515
(0.00802862 0.00645142 0.00286446) 13516
(0.00554873 0.00634106 0.00253282) 13571
(0.00602626 0.00636109 0.00257068) 13572
(0.0119672 0.00620903 0.00236202) 13643
(0.012522 0.0061992 0.00236601) 13645
(0.0130495 0.00619506 0.00236748) 13646
(0.0135222 0.00620026 0.00236688) 13647
(0.017926 0.00623332 0.00235692) 13655
(0.0184795 0.00622881 0.00236163) 13656
(0.0190066 0.00622357 0.00236567) 13658
(0.0195206 0.00621546 0.00236584) 13659
(0.0200534 0.00620439 0.00236331) 13660
(0.0205983 0.00619176 0.00235584) 13661
(0.0211155 0.00618207 0.00234435) 13662
(0.0216036 0.00617637 0.00233225) 13663
(0.00567571 0.00583034 0.00187635) 13751
(0.00616735 0.00582714 0.00186658) 13752
(0.00663137 0.00582862 0.00186284) 13753
(0.00705647 0.00583496 0.00186085) 13754
(0.0056276 0.00558426 0.00171594) 13811
(0.00605919 0.00558947 0.00170932) 13812
(0.00647182 0.00559117 0.00170386) 13812
(0.00593436 0.00467183 0.00161016) 13991
(0.00583492 0.0044351 0.00168924) 14051
(0.00583492 0.0044351 0.00168924) 14051
(0.00583492 0.0044351 0.00168924) 14051
(0.00626595 0.00441139 0.00168961) 14052
(0.00666305 0.00440291 0.0016861) 14053
(0.00704713 0.00439529 0.0016821) 14054
(0.00744212 0.00438926 0.00167699) 14054
(0.00786279 0.00438596 0.00167295) 14055
(0.00585398 0.00420675 0.00181532) 14111
(0.00585398 0.00420675 0.00181532) 14111
(0.00585398 0.00420675 0.00181532) 14111
(0.00630715 0.00418021 0.00182247) 14112
(0.00673001 0.00416996 0.00182011) 14113
(0.00711903 0.00416078 0.00181623) 14114
(0.00750158 0.00415015 0.00181316) 14115
(0.00790632 0.00414366 0.00181034) 14115
(0.0121678 0.00418113 0.00184634) 14124
(0.0126259 0.00418379 0.00184738) 14125
(0.00565913 0.0039886 0.00202501) 14171
(0.00611948 0.00397626 0.00202924) 14172
(0.00653454 0.0039662 0.00203005) 14173
(0.0114344 0.00362718 0.00289241) 14362
(0.0119969 0.00363938 0.00289412) 14363
(0.0125754 0.00365272 0.00289571) 14365
(0.0131068 0.0036589 0.00289538) 14366
(0.0135776 0.0036563 0.00289383) 14367
(0.0139931 0.00364745 0.00289178) 14367
(0.00572959 0.00358216 0.00318174) 14411
(0.0061677 0.00358631 0.00320473) 14412
(0.0115991 0.003602 0.00319254) 14423
(0.012168 0.00361442 0.00319383) 14424
(0.0127256 0.00362493 0.00319397) 14425
(0.0132392 0.00362887 0.00319284) 14426
(0.0137206 0.00362763 0.00319246) 14427
(0.014167 0.00362196 0.00319278) 14428
(0.0146035 0.00361436 0.00319499) 14429
(0.0056423 0.00376869 0.00350926) 14471
(0.0056423 0.00376869 0.00350926) 14471
(0.0056423 0.00376869 0.00350926) 14471
(0.00600155 0.00373811 0.00355979) 14532
(0.00650211 0.00371587 0.00355093) 14473
(0.00708688 0.00369089 0.00351495) 14474
(0.00765287 0.00366228 0.00348723) 14475
(0.00812683 0.00363859 0.00347539) 14476
(0.00532068 0.0038668 0.00375436) 14530
(0.00532068 0.0038668 0.00375436) 14530
(0.00532068 0.0038668 0.00375436) 14530
(0.00564762 0.00384918 0.00378865) 14591
(0.00606369 0.00382223 0.0037752) 14532
(0.00663609 0.00378881 0.00374868) 14533
(0.0073312 0.00375447 0.0037213) 14534
(0.0053166 0.00404728 0.00395917) 14590
(0.00585666 0.0040659 0.00397665) 14651
(0.00638793 0.00403362 0.00397793) 14592
(0.00599343 0.00473944 0.00439554) 14771
(0.00572899 0.00502343 0.00442003) 14831
(0.00622614 0.00501517 0.00442897) 14832
(0.00667693 0.00500993 0.00443566) 14833
(0.00707537 0.00501076 0.00444316) 14834
(0.00745017 0.00501008 0.00445227) 14834
(0.00563512 0.00528902 0.00437999) 14891
(0.00660991 0.00528395 0.00439697) 14893
(0.00698237 0.00528534 0.00440619) 14893
(0.00572049 0.00635413 0.00341888) 15191
(0.00615546 0.00636195 0.0034089) 15192
(0.00649962 0.00637513 0.00340084) 15192
(0.00582645 0.00642989 0.00313309) 15251
(0.00582645 0.00642989 0.00313309) 15251
(0.00582645 0.00642989 0.00313309) 15251
(0.00629682 0.00643095 0.00313293) 15252
(0.00674138 0.00643514 0.00312593) 15253
(0.00717506 0.0064401 0.00312358) 15254
(0.00760653 0.00644569 0.00312563) 15255
(0.00804339 0.00644987 0.00313093) 15256
(0.00133479 0.00646597 0.00283742) 13502
(0.00217751 0.00648199 0.00285084) 13504
(0.0040028 0.00636426 0.00268499) 13568
(0.0043345 0.00637327 0.00263656) 13568
(0.0046368 0.0063721 0.00264519) 13569
(0.0050738 0.0058247 0.00188901) 13750
(0.00494702 0.00555854 0.00172884) 13809
(0.00449666 0.00437508 0.00161853) 5708
(0.00447845 0.00454496 0.00167222) 13988
(0.0022357 0.00419239 0.00169836) 5644
(0.00535898 0.00425099 0.00183219) 14110
(0.00510919 0.00349522 0.00322576) 5410
(0.00540489 0.00379117 0.0034054) 14470
(0.00466257 0.00368039 0.00354605) 14469
(0.00501782 0.00385715 0.00369271) 14530
(0.00240963 0.00493269 0.00441524) 14824
(0.00517679 0.00504821 0.00436611) 14830
(0.00425332 0.00533296 0.00431189) 14888
(0.00484578 0.00531154 0.00432245) 14889
(0.00395765 0.0064165 0.00277096) 13507
(0.00463622 0.00643325 0.0027448) 13509
(0.00511359 0.00646316 0.00303379) 15250
(0.0211523 0.00301695 0.00218829) 522
(0.0214383 0.00713132 0.00372039) 23502
(0.0217167 0.00694001 0.00358357) 2023
(0.0116817 0.00652058 0.00421193) 6683
(0.012913 0.00646382 0.00415634) 6685
(0.0138418 0.00643034 0.00413476) 6687
(0.0145714 0.00640874 0.00412675) 6689
(0.0151796 0.00639791 0.00412003) 6690
(0.0157045 0.00639398 0.00411583) 6691
(0.0161879 0.00639262 0.00411458) 6692
(0.0166704 0.0063933 0.00411023) 6693
(0.0171783 0.00639209 0.00410373) 6694
(0.0177015 0.00638509 0.00410089) 6695
(0.0182026 0.00637733 0.00410022) 6696
(0.0218875 0.00328094 0.00332241) 5443
(0.0227252 0.00644361 0.0020897) 13425
(0.0240056 0.00662711 0.00225348) 6108
(0.024879 0.00666622 0.00221412) 13429
(0.0198728 0.00663773 0.00425507) 6639
(0.0223155 0.00664844 0.00414112) 6704
(0.0241164 0.00670079 0.00410767) 1968
(0.0206372 0.00639352 0.00121928) 6821
(0.021704 0.00633292 0.00118769) 12463
(0.0213407 0.0035973 0.00459799) 7182
(0.0227984 0.00360958 0.00463171) 7185
(0.0214882 0.00339303 0.00166529) 462
(0.0231569 0.00337129 0.00169179) 466
(0.0200611 0.00608846 0.00479199) 12220
(0.0219451 0.00611448 0.00473263) 12223
(0.0198519 0.00580795 0.00504588) 12579
(0.0198519 0.00580795 0.00504588) 12579
(0.0198519 0.00580795 0.00504588) 12579
(0.0217844 0.00579899 0.00500552) 12583
(0.0217844 0.00579899 0.00500552) 12583
(0.0217844 0.00579899 0.00500552) 12583
(0.0232993 0.00582832 0.00499649) 12586
(0.0232993 0.00582832 0.00499649) 12586
(0.0232993 0.00582832 0.00499649) 12586
(0.0238725 0.00594 0.00494695) 12587
(0.0198038 0.00394188 0.00482177) 10539
(0.0215651 0.00398001 0.00485823) 10543
(0.0197054 0.00379869 0.00137568) 12759
(0.0223315 0.00379328 0.00142253) 12764
(0.0198055 0.00415805 0.00124602) 11499
(0.0225502 0.00412621 0.00125771) 11505
(0.0199031 0.00453137 0.001092) 11559
(0.0219168 0.00446245 0.00113331) 11563
(0.0197993 0.00485146 0.000954711) 11619
(0.0217046 0.00479756 0.000975032) 11623
(0.0232309 0.00472924 0.000952546) 11626
(0.0211754 0.0056304 0.00099737) 12162
(0.021014 0.00600721 0.00107661) 12282
(0.0224544 0.00601456 0.00106501) 12284
(0.0199008 0.00541613 0.000882759) 12099
(0.0218415 0.00532076 0.00090187) 10123
(0.0233285 0.00528135 0.000882973) 10126
(0.0212794 0.00522247 0.00517602) 11442
(0.0226366 0.00523157 0.00517727) 11445
(0.020423 0.0039005 0.00112372) 13000
(0.0218677 0.00384853 0.00112364) 13003
(0.022854 0.00333546 0.0028377) 13305
(0.0200451 0.0030102 0.0031459) 760
(0.0236936 0.00306122 0.0031684) 767
(0.0250496 0.00302481 0.0031377) 770
(0.025285 0.00299701 0.00317619) 34272
(0.0215224 0.0067079 0.00175165) 2503
(0.0215224 0.0067079 0.00175165) 2503
(0.0215224 0.0067079 0.00175165) 2503
(0.0234652 0.00670035 0.0017941) 2446
(0.0242801 0.00667169 0.00173479) 2508
(0.0219524 0.00619684 0.00166958) 13483
(0.0233337 0.00631486 0.00174158) 13486
(0.0066196 0.00644314 0.00288359) 13513
(0.00710603 0.00644458 0.00287725) 13514
(0.00757044 0.00644734 0.00287013) 13515
(0.00800639 0.00645132 0.00286459) 13516
(0.00552549 0.0063404 0.00253163) 13571
(0.00600075 0.00636089 0.00256909) 13572
(0.0119441 0.00620943 0.00236184) 13643
(0.0124987 0.00619959 0.00236591) 13644
(0.0130279 0.0061951 0.00236745) 13646
(0.0135024 0.00619997 0.00236693) 13647
(0.0179005 0.00623359 0.00235681) 13655
(0.0184554 0.00622903 0.00236147) 13656
(0.0189836 0.00622392 0.00236568) 13657
(0.0194978 0.0062159 0.00236595) 13658
(0.0200296 0.00620501 0.0023636) 13660
(0.0205748 0.0061924 0.00235641) 13661
(0.0210933 0.00618254 0.00234499) 13662
(0.0215824 0.0061767 0.00233295) 13663
(0.00565405 0.0058302 0.00187626) 13751
(0.00614472 0.00582718 0.00186653) 13752
(0.00660909 0.00582836 0.00186265) 13753
(0.00703601 0.00583457 0.0018608) 13754
(0.00560569 0.00558406 0.0017158) 13811
(0.0060367 0.00558925 0.00170918) 13812
(0.00645007 0.00559109 0.00170384) 13812
(0.00590991 0.00467227 0.00161006) 13991
(0.00581406 0.00443685 0.0016888) 14051
(0.00581406 0.00443685 0.0016888) 14051
(0.00581406 0.00443685 0.0016888) 14051
(0.00624389 0.00441201 0.00168941) 14052
(0.00664098 0.00440322 0.00168596) 14053
(0.0070261 0.0043956 0.00168213) 14054
(0.00742107 0.00438948 0.00167713) 14054
(0.00784056 0.00438609 0.00167296) 14055
(0.00583383 0.00420854 0.00181422) 14111
(0.00583383 0.00420854 0.00181422) 14111
(0.00583383 0.00420854 0.00181422) 14111
(0.00628446 0.00418088 0.00182217) 14112
(0.00670756 0.00417016 0.00182008) 14113
(0.00709832 0.00416114 0.00181627) 14114
(0.0074811 0.00415054 0.0018132) 14114
(0.00788483 0.00414374 0.00181044) 14115
(0.0121463 0.00418088 0.00184618) 14124
(0.012606 0.00418366 0.00184736) 14125
(0.00563708 0.00398914 0.00202403) 14171
(0.00609606 0.00397661 0.0020288) 14172
(0.00651185 0.00396649 0.00202977) 14173
(0.0114112 0.00362679 0.00289234) 14362
(0.0119723 0.00363878 0.00289404) 14363
(0.0125514 0.00365222 0.00289567) 14365
(0.013085 0.00365873 0.00289542) 14366
(0.0135584 0.00365647 0.0028939) 14367
(0.0139758 0.00364785 0.00289186) 14367
(0.00571094 0.0035819 0.00318047) 14411
(0.0061479 0.00358591 0.00320431) 14412
(0.0115745 0.00360152 0.00319246) 14423
(0.012143 0.00361385 0.00319384) 14424
(0.0127022 0.00362456 0.00319403) 14425
(0.0132171 0.00362872 0.00319294) 14426
(0.0136998 0.00362768 0.0031925) 14427
(0.0141475 0.00362221 0.0031928) 14428
(0.0145836 0.00361466 0.00319497) 14429
(0.00563478 0.00376666 0.00350508) 14471
(0.00563478 0.00376666 0.00350508) 14471
(0.00563478 0.00376666 0.00350508) 14471
(0.00598319 0.00373858 0.00355781) 14531
(0.0064777 0.00371653 0.00355185) 14472
(0.00705947 0.00369201 0.00351656) 14474
(0.00762776 0.00366345 0.00348823) 14475
(0.00810548 0.00363946 0.0034758) 14476
(0.00530846 0.00386498 0.0037522) 14530
(0.00530846 0.00386498 0.0037522) 14530
(0.00530846 0.00386498 0.0037522) 14530
(0.00563229 0.00384906 0.00378813) 14591
(0.00604408 0.00382286 0.00377563) 14532
(0.00660735 0.0037902 0.00375011) 14533
(0.00729892 0.00375576 0.0037224) 14534
(0.00529346 0.00404361 0.00395761) 14590
(0.00583126 0.0040652 0.00397576) 14591
(0.00636383 0.00403499 0.00397772) 14592
(0.00597288 0.00473994 0.00439517) 14771
(0.00570755 0.00502344 0.00441981) 14831
(0.00620276 0.0050154 0.00442887) 14832
(0.00665367 0.00500993 0.0044357) 14833
(0.0070538 0.00501059 0.00444309) 14834
(0.00742997 0.0050103 0.00445198) 14834
(0.00561101 0.00528902 0.00437991) 14891
(0.00696216 0.00528522 0.00440604) 14893
(0.00569769 0.00635424 0.00341928) 15191
(0.00613549 0.00636167 0.00340941) 15192
(0.0064809 0.00637478 0.00340114) 15192
(0.00580392 0.00643041 0.00313264) 15251
(0.00580392 0.00643041 0.00313264) 15251
(0.00580392 0.00643041 0.00313264) 15251
(0.00627475 0.00643093 0.00313337) 15252
(0.00671897 0.00643512 0.00312638) 15253
(0.00715295 0.00643993 0.00312379) 15254
(0.00758458 0.0064455 0.00312551) 15255
(0.00802027 0.00644984 0.00313081) 15256
(0.00150813 0.00646484 0.00283327) 13503
(0.00214502 0.00648182 0.00284914) 13504
(0.00397828 0.00636657 0.00268864) 13567
(0.00432407 0.00637193 0.00263718) 13568
(0.00462278 0.00637018 0.00264081) 13569
(0.00505594 0.00636478 0.00279811) 13510
(0.00505931 0.00582461 0.00189156) 13750
(0.00492737 0.00555657 0.00173004) 13809
(0.00431198 0.00437332 0.00162954) 5708
(0.0045659 0.00452819 0.00165851) 14049
(0.00534703 0.00425339 0.00183223) 14110
(0.00508773 0.00349741 0.00323029) 5410
(0.00539107 0.00379394 0.00339924) 15910
(0.00454615 0.0036643 0.00356395) 14469
(0.00501371 0.00386128 0.00369215) 14530
(0.00228167 0.00493149 0.00442212) 14824
(0.00515617 0.00504745 0.00436395) 14830
(0.00423118 0.00533232 0.00431181) 14888
(0.00483201 0.00531407 0.00432195) 14889
(0.00388832 0.00642373 0.00277876) 13507
(0.0046222 0.00643 0.00274116) 13509
(0.0050984 0.00646419 0.00302388) 15250
(0.0211118 0.00301926 0.00218521) 522
(0.0214227 0.00712556 0.00372664) 23502
(0.021664 0.00693525 0.00358736) 2023
(0.012877 0.00646534 0.00415759) 6685
(0.0138156 0.00643111 0.00413512) 6687
(0.0145504 0.00640921 0.00412669) 6689
(0.0151621 0.006398 0.00411994) 6690
(0.015689 0.00639392 0.00411566) 6691
(0.016173 0.00639251 0.0041144) 6692
(0.0166548 0.00639317 0.00411011) 6693
(0.0171615 0.0063921 0.0041036) 6694
(0.0176848 0.00638517 0.00410067) 6695
(0.0181873 0.00637735 0.00409993) 6696
(0.0217657 0.00327709 0.0033217) 5443
(0.022634 0.00643478 0.00207583) 13425
(0.0239615 0.00662376 0.00225274) 6107
(0.024861 0.00666461 0.0022173) 13429
(0.0198138 0.00663907 0.00426007) 6639
(0.0222284 0.00664607 0.00414376) 6704
(0.0240818 0.00669702 0.0041088) 1968
(0.0206064 0.00639506 0.00122012) 6821
(0.0216866 0.00633829 0.00119258) 12463
(0.0212801 0.00359646 0.00459704) 7182
(0.0227712 0.00360748 0.00462779) 7185
(0.0214157 0.00339379 0.00166269) 462
(0.0231219 0.00337425 0.00168973) 466
(0.019986 0.00608748 0.00479608) 12219
(0.0218849 0.00611258 0.0047332) 12223
(0.0197982 0.00580745 0.00504576) 12579
(0.0197982 0.00580745 0.00504576) 12579
(0.0197982 0.00580745 0.00504576) 12579
(0.0217156 0.00579819 0.00500618) 12583
(0.0217156 0.00579819 0.00500618) 12583
(0.0217156 0.00579819 0.00500618) 12583
(0.0232673 0.00582493 0.00499667) 12586
(0.0232673 0.00582493 0.00499667) 12586
(0.0232673 0.00582493 0.00499667) 12586
(0.0238786 0.00593083 0.00495191) 12587
(0.0197382 0.00393641 0.00481752) 10539
(0.0215093 0.00397923 0.00485613) 10543
(0.019657 0.00380051 0.00137433) 12759
(0.0222339 0.00379352 0.00142275) 12764
(0.0197289 0.00415362 0.00124651) 11499
(0.0224518 0.00412935 0.00125877) 11504
(0.024453 0.00407596 0.00120898) 11508
(0.0218518 0.00446731 0.00113368) 11563
(0.0216387 0.00480047 0.000975654) 11623
(0.0231969 0.00473329 0.000954245) 11626
(0.0211201 0.00563234 0.000999073) 12162
(0.0209603 0.00600648 0.00107681) 12281
(0.0224245 0.00601627 0.00106796) 12284
(0.0217694 0.00532314 0.000902241) 10123
(0.0233023 0.00528411 0.000886102) 10126
(0.0212278 0.00522246 0.00517607) 11442
(0.022607 0.00522867 0.00517623) 11445
(0.020389 0.00390445 0.00112235) 13000
(0.0218357 0.0038536 0.00112282) 13003
(0.0227476 0.00333543 0.0028332) 13305
(0.019953 0.00301101 0.00313944) 759
(0.0235607 0.00306273 0.00316939) 767
(0.0250318 0.00302809 0.00313743) 770
(0.0252871 0.00299661 0.00317205) 34272
(0.0214255 0.00670981 0.00174808) 2502
(0.0214255 0.00670981 0.00174808) 2502
(0.0214255 0.00670981 0.00174808) 2502
(0.0234162 0.00670018 0.00179495) 2446
(0.0242793 0.0066755 0.00174124) 2508
(0.0217813 0.00619599 0.00166517) 13483
(0.0233134 0.00631196 0.00174266) 13486
(0.00659618 0.00644314 0.00288372) 13513
(0.00708248 0.00644452 0.00287758) 13514
(0.00754793 0.00644723 0.00287049) 13515
(0.00798423 0.00645122 0.00286473) 13515
(0.00550242 0.00633974 0.00253048) 13571
(0.00597518 0.00636069 0.00256751) 13571
(0.011921 0.00620981 0.00236166) 13643
(0.0124754 0.00619999 0.00236581) 13644
(0.0130063 0.00619517 0.00236741) 13646
(0.0134827 0.00619969 0.00236698) 13646
(0.017875 0.00623387 0.00235671) 13655
(0.0184312 0.00622926 0.0023613) 13656
(0.0189606 0.00622426 0.00236568) 13657
(0.019475 0.00621634 0.00236606) 13658
(0.0200059 0.00620563 0.00236388) 13660
(0.0205513 0.00619303 0.00235696) 13661
(0.021071 0.00618301 0.00234564) 13662
(0.0215612 0.00617705 0.00233365) 13663
(0.00563253 0.00583004 0.00187617) 13751
(0.00612213 0.00582722 0.00186648) 13752
(0.00658674 0.00582812 0.00186247) 13753
(0.00701545 0.00583417 0.00186073) 13754
(0.00558387 0.00558386 0.00171567) 13811
(0.00601425 0.00558902 0.00170904) 13812
(0.00642828 0.005591 0.0017038) 13812
(0.00588543 0.00467273 0.00160997) 13991
(0.00579329 0.00443866 0.00168834) 14051
(0.00579329 0.00443866 0.00168834) 14051
(0.00579329 0.00443866 0.00168834) 14051
(0.00622187 0.00441268 0.0016892) 14052
(0.00661887 0.00440352 0.00168582) 14053
(0.00700502 0.00439591 0.00168215) 14054
(0.00740003 0.0043897 0.00167728) 14054
(0.00781842 0.00438623 0.00167298) 14055
(0.00581398 0.00421036 0.00181308) 14111
(0.00581398 0.00421036 0.00181308) 14111
(0.00581398 0.00421036 0.00181308) 14111
(0.00626186 0.00418158 0.00182184) 14112
(0.00668506 0.00417037 0.00182005) 14113
(0.00707753 0.0041615 0.0018163) 14114
(0.00746064 0.00415094 0.00181324) 14114
(0.00786342 0.00414382 0.00181053) 14115
(0.0121247 0.00418063 0.00184602) 14124
(0.012586 0.00418352 0.00184733) 14125
(0.0130225 0.00418367 0.00184511) 14126
(0.00561519 0.00398967 0.00202304) 14171
(0.00607275 0.00397699 0.00202835) 14172
(0.00648913 0.00396679 0.00202949) 14172
(0.0113879 0.00362641 0.00289228) 14362
(0.0119476 0.00363818 0.00289397) 14363
(0.0125273 0.00365171 0.00289563) 14365
(0.0130631 0.00365854 0.00289545) 14366
(0.0135391 0.00365663 0.00289397) 14367
(0.0139585 0.00364824 0.00289194) 14367
(0.00569231 0.00358164 0.00317917) 14411
(0.00612805 0.00358549 0.00320385) 14412
(0.0115499 0.00360104 0.00319238) 14423
(0.0121179 0.00361327 0.00319386) 14424
(0.0126786 0.00362419 0.0031941) 14425
(0.0131949 0.00362857 0.00319303) 14426
(0.0136789 0.00362772 0.00319254) 14427
(0.014128 0.00362244 0.00319282) 14428
(0.0145636 0.00361495 0.00319494) 14429
(0.00562735 0.00376464 0.00350073) 14471
(0.00562735 0.00376464 0.00350073) 14471
(0.00562735 0.00376464 0.00350073) 14471
(0.00596539 0.00373897 0.00355568) 14471
(0.0064536 0.00371717 0.00355271) 14472
(0.00703206 0.0036931 0.00351814) 14474
(0.00760253 0.00366463 0.00348926) 14475
(0.008084 0.00364034 0.00347623) 14476
(0.00529647 0.0038631 0.00375009) 14530
(0.00529647 0.0038631 0.00375009) 14530
(0.00529647 0.0038631 0.00375009) 14530
(0.00561705 0.0038489 0.00378757) 14591
(0.00602477 0.00382344 0.00377601) 14532
(0.00657903 0.00379155 0.0037515) 14533
(0.00726674 0.00375707 0.00372353) 14534
(0.00527064 0.00403984 0.00395602) 14590
(0.00580594 0.00406438 0.00397491) 14591
(0.00633967 0.00403628 0.00397744) 14592
(0.0059523 0.00474042 0.0043948) 14771
(0.00568623 0.00502344 0.00441958) 14831
(0.00617945 0.00501564 0.00442877) 14832
(0.00663034 0.00500994 0.00443573) 14833
(0.00703212 0.00501041 0.00444303) 14834
(0.00740975 0.00501049 0.0044517) 14834
(0.005587 0.00528902 0.00437983) 14891
(0.00694183 0.0052851 0.0044059) 14893
(0.00567476 0.00635438 0.00341965) 15191
(0.00611545 0.00636139 0.00340994) 15192
(0.00646215 0.00637442 0.00340145) 15192
(0.00578134 0.00643097 0.00313211) 15251
(0.00578134 0.00643097 0.00313211) 15251
(0.00578134 0.00643097 0.00313211) 15251
(0.00625267 0.00643092 0.00313379) 15252
(0.00669656 0.0064351 0.00312682) 15253
(0.00713084 0.00643976 0.00312401) 15254
(0.00756263 0.00644531 0.0031254) 15255
(0.00799729 0.00644979 0.00313069) 15255
(0.00170249 0.00646328 0.00282851) 13503
(0.00207593 0.00648179 0.00284766) 13504
(0.00393928 0.00636967 0.00269521) 13567
(0.00432369 0.00637073 0.00263457) 13568
(0.00460841 0.0063686 0.00263647) 13569
(0.00503836 0.00636607 0.00279237) 13510
(0.00504448 0.00582452 0.00189426) 13750
(0.00490648 0.00555419 0.00173123) 13809
(0.00402803 0.00437154 0.00164178) 5708
(0.00465881 0.00451063 0.00164522) 14049
(0.00533521 0.00425588 0.00183283) 14110
(0.0050352 0.00351357 0.0032421) 5410
(0.00443079 0.00365213 0.0035766) 14468
(0.00500624 0.00386622 0.00368971) 14530
(0.0021528 0.00492969 0.00442691) 14824
(0.00513505 0.00504666 0.00436185) 14830
(0.00420912 0.00533169 0.00431176) 14888
(0.00481764 0.00531603 0.00432151) 14889
(0.00381035 0.00643171 0.0027877) 13507
(0.00460666 0.00642788 0.00273713) 13509
(0.00508405 0.0064649 0.0030146) 15250
(0.0210706 0.00302137 0.00218228) 522
(0.0214065 0.00712001 0.00373273) 23502
(0.0216109 0.00693059 0.00359119) 2023
(0.0128405 0.00646689 0.0041589) 6685
(0.013789 0.00643188 0.0041355) 6687
(0.0145291 0.00640971 0.00412666) 6689
(0.0151443 0.00639811 0.00411987) 6690
(0.0156735 0.00639387 0.00411546) 6691
(0.0161582 0.00639244 0.00411413) 6692
(0.0166393 0.00639308 0.00410994) 6693
(0.0171447 0.00639209 0.00410353) 6694
(0.0176681 0.00638523 0.00410049) 6695
(0.0181719 0.00637737 0.00409966) 6696
(0.0216314 0.00327214 0.00332093) 5443
(0.0225343 0.00642727 0.00206237) 13425
(0.0239178 0.00662014 0.00225161) 6107
(0.0248417 0.00666297 0.00222044) 13429
(0.0221397 0.00664394 0.00414646) 6704
(0.0240439 0.00669344 0.0041099) 1968
(0.0205755 0.00639659 0.00122091) 6821
(0.0216684 0.00634339 0.00119721) 12463
(0.0212195 0.00359552 0.0045961) 7182
(0.0227426 0.00360552 0.00462402) 7185
(0.0213426 0.00339452 0.00165977) 462
(0.0230852 0.00337677 0.00168826) 466
(0.0199154 0.00608663 0.00480003) 12219
(0.0218234 0.00611079 0.00473383) 12223
(0.0216458 0.00579749 0.00500693) 12583
(0.0216458 0.00579749 0.00500693) 12583
(0.0216458 0.00579749 0.00500693) 12583
(0.0232339 0.00582168 0.00499681) 12586
(0.0232339 0.00582168 0.00499681) 12586
(0.0232339 0.00582168 0.00499681) 12586
(0.0238831 0.00592203 0.00495637) 12587
(0.0214533 0.00397833 0.00485404) 10542
(0.0221337 0.00379407 0.00142282) 12764
(0.0223517 0.00413254 0.00125985) 11504
(0.0244336 0.00407966 0.00121094) 11508
(0.021786 0.004472 0.00113391) 11563
(0.0215721 0.0048033 0.000976188) 11623
(0.0231612 0.00473722 0.000955932) 11626
(0.0210644 0.00563435 0.00100073) 12162
(0.0209065 0.00600573 0.00107694) 12281
(0.0223935 0.0060178 0.00107077) 12284
(0.0216959 0.00532567 0.000902502) 10123
(0.0232736 0.00528664 0.000889116) 10126
(0.021176 0.00522243 0.00517617) 11442
(0.0225764 0.00522596 0.00517521) 11445
(0.0203562 0.00390827 0.00112099) 13000
(0.021801 0.00385768 0.00112251) 13003
(0.0226277 0.00333463 0.00282843) 13305
(0.0198634 0.0030122 0.00313278) 759
(0.0234261 0.00306387 0.00317033) 766
(0.0250131 0.00303139 0.00313739) 770
(0.0252879 0.00299656 0.0031681) 34272
(0.0213232 0.00671203 0.00174389) 2502
(0.0213232 0.00671203 0.00174389) 2502
(0.0213232 0.00671203 0.00174389) 2502
(0.0233653 0.00670002 0.00179565) 2446
(0.0242771 0.00667894 0.00174747) 2508
(0.021593 0.00619828 0.00166234) 13483
(0.023293 0.00630896 0.00174358) 13486
(0.00657281 0.00644315 0.00288382) 13513
(0.00705892 0.00644448 0.00287791) 13514
(0.0075254 0.00644712 0.00287086) 13515
(0.00796212 0.00645111 0.00286488) 13515
(0.00547953 0.00633907 0.00252936) 13570
(0.00594955 0.00636049 0.00256593) 13571
(0.0118979 0.00621019 0.00236147) 13643
(0.012452 0.00620039 0.0023657) 13644
(0.0129846 0.00619524 0.00236737) 13645
(0.0134629 0.00619943 0.00236702) 13646
(0.0178494 0.00623415 0.00235662) 13655
(0.018407 0.00622948 0.00236114) 13656
(0.0189375 0.00622459 0.00236569) 13657
(0.0194523 0.00621677 0.00236615) 13658
(0.0199822 0.00620624 0.00236415) 13659
(0.0205277 0.00619367 0.00235751) 13661
(0.0210487 0.00618349 0.00234627) 13662
(0.0215399 0.0061774 0.00233435) 13663
(0.00561114 0.00582988 0.00187609) 13751
(0.00609959 0.00582727 0.00186645) 13752
(0.00656434 0.00582789 0.00186228) 13753
(0.0069948 0.00583378 0.00186064) 13753
(0.00556211 0.00558365 0.00171554) 13811
(0.00599185 0.00558879 0.0017089) 13811
(0.00640645 0.00559091 0.00170377) 13812
(0.0058609 0.00467322 0.00160988) 13991
(0.00577263 0.00444051 0.00168783) 14051
(0.00577263 0.00444051 0.00168783) 14051
(0.00577263 0.00444051 0.00168783) 14051
(0.00619991 0.00441339 0.00168899) 14052
(0.00659672 0.00440382 0.00168567) 14053
(0.00698389 0.00439621 0.00168216) 14053
(0.00737902 0.00438993 0.00167742) 14054
(0.00779637 0.00438638 0.00167301) 14055
(0.00579443 0.00421222 0.00181189) 14111
(0.00579443 0.00421222 0.00181189) 14111
(0.00579443 0.00421222 0.00181189) 14111
(0.00623936 0.00418233 0.00182149) 14112
(0.00666251 0.00417058 0.00182002) 14113
(0.00705665 0.00416185 0.00181633) 14114
(0.0074402 0.00415135 0.00181328) 14114
(0.00784208 0.00414392 0.00181063) 14115
(0.012103 0.00418038 0.00184586) 14124
(0.012566 0.00418339 0.00184731) 14125
(0.0130025 0.00418359 0.00184516) 14126
(0.00559344 0.00399016 0.00202205) 14171
(0.00604956 0.00397738 0.00202788) 14172
(0.00646638 0.00396709 0.00202921) 14172
(0.0113646 0.00362603 0.00289221) 14362
(0.0119231 0.00363759 0.0028939) 14363
(0.0125031 0.00365119 0.00289558) 14365
(0.0130411 0.00365834 0.00289548) 14366
(0.0135197 0.00365678 0.00289404) 14367
(0.0139411 0.00364863 0.00289202) 14367
(0.00567368 0.00358139 0.00317783) 14411
(0.00610818 0.00358506 0.00320334) 14412
(0.0115252 0.00360056 0.00319229) 14423
(0.0120928 0.0036127 0.00319388) 14424
(0.012655 0.0036238 0.00319416) 14425
(0.0131726 0.0036284 0.00319313) 14426
(0.013658 0.00362776 0.00319259) 14427
(0.0141084 0.00362266 0.00319285) 14428
(0.0145437 0.00361523 0.00319491) 14429
(0.00562018 0.00376265 0.00349627) 14471
(0.00562018 0.00376265 0.00349627) 14471
(0.00562018 0.00376265 0.00349627) 14471
(0.00594784 0.00373929 0.00355351) 14471
(0.00642976 0.00371773 0.0035534) 14472
(0.00700474 0.00369416 0.00351974) 14474
(0.00757719 0.00366582 0.00349032) 14475
(0.00806239 0.00364124 0.00347668) 14476
(0.00528489 0.00386115 0.00374801) 14530
(0.00528489 0.00386115 0.00374801) 14530
(0.00528489 0.00386115 0.00374801) 14530
(0.00560189 0.0038487 0.00378696) 14591
(0.00600575 0.00382397 0.00377633) 14532
(0.00655124 0.00379287 0.00375285) 14533
(0.00723451 0.00375839 0.00372469) 14534
(0.00524813 0.00403599 0.00395442) 14590
(0.00578071 0.00406344 0.00397411) 14591
(0.00631542 0.00403747 0.00397708) 14592
(0.0059317 0.00474088 0.00439443) 14771
(0.00566504 0.00502345 0.00441935) 14831
(0.0061562 0.00501583 0.00442866) 14832
(0.00660698 0.00500999 0.00443577) 14833
(0.00701033 0.00501023 0.00444298) 14834
(0.00738949 0.00501066 0.00445142) 14834
(0.00556311 0.00528895 0.00437977) 14891
(0.00692137 0.00528499 0.00440577) 14893
(0.00565171 0.00635457 0.00341999) 15191
(0.00609537 0.00636111 0.00341048) 15192
(0.00644339 0.00637406 0.00340178) 15192
(0.00575874 0.00643156 0.00313151) 15251
(0.00575874 0.00643156 0.00313151) 15251
(0.00575874 0.00643156 0.00313151) 15251
(0.00623059 0.00643093 0.00313418) 15252
(0.00667415 0.00643509 0.00312728) 15253
(0.00710873 0.00643959 0.00312423) 15254
(0.0075407 0.00644511 0.00312531) 15255
(0.00797445 0.00644974 0.00313057) 15255
(0.00192281 0.00646057 0.00282449) 13503
(0.00205192 0.0064809 0.0028453) 13504
(0.0038903 0.00637412 0.00270312) 13567
(0.00431277 0.00636936 0.0026353) 13568
(0.00459364 0.006368 0.00263201) 13569
(0.00502174 0.00636611 0.0027876) 13510
(0.00502896 0.00582439 0.00189706) 13750
(0.00488415 0.00555149 0.00173244) 13809
(0.00360286 0.00436859 0.00164833) 5707
(0.00474805 0.00449358 0.00163344) 14049
(0.00532318 0.00425837 0.00183379) 14110
(0.004956 0.00355256 0.00327282) 14409
(0.00427736 0.0036461 0.0035841) 14468
(0.00483508 0.00380085 0.00354383) 15909
(0.00499937 0.00387068 0.00368629) 14529
(0.00204105 0.00492772 0.00443039) 14824
(0.00511329 0.00504585 0.00435978) 14830
(0.00418699 0.00533107 0.00431171) 14888
(0.00480225 0.00531745 0.00432116) 14889
(0.00372152 0.00644066 0.00279806) 13507
(0.00459115 0.00642501 0.00273432) 13509
(0.00507238 0.00646476 0.00300545) 15250
(0.0210285 0.00302328 0.0021795) 522
(0.0213897 0.00711466 0.00373865) 23502
(0.0215572 0.00692606 0.00359507) 2023
(0.0128036 0.00646849 0.00416028) 6685
(0.0137622 0.0064327 0.00413592) 6687
(0.0145076 0.00641023 0.00412664) 6689
(0.0151265 0.00639822 0.00411983) 6690
(0.0156579 0.00639381 0.00411528) 6691
(0.0161435 0.00639236 0.00411385) 6692
(0.0166239 0.00639299 0.00410975) 6693
(0.017128 0.00639207 0.00410346) 6694
(0.0176514 0.0063853 0.00410031) 6695
(0.0181564 0.0063774 0.00409941) 6696
(0.0214833 0.00326586 0.0033201) 5442
(0.0224255 0.006422 0.00205111) 13424
(0.0238744 0.00661624 0.00225003) 6107
(0.024821 0.00666132 0.00222354) 6109
(0.022049 0.00664212 0.00414922) 6704
(0.0240026 0.00669007 0.00411097) 1968
(0.0205445 0.00639811 0.00122165) 6821
(0.0216494 0.00634821 0.00120158) 12463
(0.0211593 0.00359454 0.00459516) 7182
(0.0227124 0.00360371 0.0046204) 7185
(0.0212687 0.00339516 0.00165662) 462
(0.0230469 0.0033792 0.00168691) 466
(0.0198523 0.00608571 0.0048039) 12219
(0.0217608 0.00610907 0.00473454) 12223
(0.0215753 0.00579688 0.00500775) 12583
(0.0215753 0.00579688 0.00500775) 12583
(0.0215753 0.00579688 0.00500775) 12583
(0.0231991 0.00581855 0.00499689) 12586
(0.0231991 0.00581855 0.00499689) 12586
(0.0231991 0.00581855 0.00499689) 12586
(0.0238858 0.0059137 0.00496033) 12587
(0.0213972 0.00397731 0.00485194) 10542
(0.0228671 0.00398231 0.00489049) 10545
(0.0220328 0.00379468 0.00142268) 12764
(0.0222515 0.00413586 0.00126081) 11504
(0.024412 0.00408335 0.00121308) 11508
(0.0217195 0.00447666 0.00113401) 11563
(0.0215047 0.00480606 0.000976633) 11623
(0.0231239 0.00474105 0.000957617) 11626
(0.0210086 0.00563643 0.00100235) 12162
(0.0208527 0.00600497 0.00107703) 12281
(0.0223612 0.00601916 0.00107345) 12284
(0.0216207 0.00532834 0.00090264) 10123
(0.0232424 0.00528896 0.000892013) 10126
(0.0211243 0.0052224 0.00517633) 11442
(0.0225448 0.00522345 0.00517422) 11445
(0.0203242 0.00391215 0.00111962) 13000
(0.0217655 0.00386157 0.00112222) 13003
(0.0224918 0.00333273 0.00282345) 13304
(0.0197764 0.00301376 0.00312588) 759
(0.0232908 0.0030647 0.00317127) 766
(0.0249934 0.00303467 0.0031375) 769
(0.0252878 0.00299686 0.00316437) 34272
(0.0212163 0.0067147 0.0017392) 2502
(0.0212163 0.0067147 0.0017392) 2502
(0.0212163 0.0067147 0.0017392) 2502
(0.0233124 0.00669989 0.00179623) 2446
(0.0242736 0.006682 0.00175345) 2508
(0.021393 0.00620384 0.00166105) 13482
(0.0232723 0.00630586 0.00174431) 13486
(0.00654949 0.00644316 0.00288391) 13513
(0.00703537 0.00644443 0.00287823) 13514
(0.00750284 0.00644702 0.00287122) 13515
(0.00794007 0.006451 0.00286503) 13515
(0.00545681 0.0063384 0.00252828) 13570
(0.00592387 0.00636029 0.00256435) 13571
(0.0118748 0.00621057 0.00236129) 13643
(0.0124287 0.00620079 0.00236559) 13644
(0.0129628 0.00619534 0.00236733) 13645
(0.0134429 0.00619918 0.00236706) 13646
(0.0178237 0.00623444 0.00235652) 13655
(0.0183826 0.0062297 0.00236098) 13656
(0.0189144 0.00622491 0.00236568) 13657
(0.0194296 0.00621718 0.00236624) 13658
(0.0199585 0.00620683 0.0023644) 13659
(0.0205041 0.00619431 0.00235805) 13661
(0.0210263 0.00618398 0.0023469) 13662
(0.0215186 0.00617775 0.00233504) 13663
(0.00558987 0.00582976 0.00187606) 13751
(0.00607711 0.00582733 0.00186643) 13752
(0.00654188 0.00582767 0.0018621) 13753
(0.00697407 0.0058334 0.00186056) 13753
(0.0055404 0.00558341 0.00171541) 13811
(0.00596951 0.00558855 0.00170876) 13811
(0.00638459 0.00559081 0.00170372) 13812
(0.00583633 0.00467374 0.00160979) 13991
(0.00575207 0.00444243 0.00168727) 14051
(0.00575207 0.00444243 0.00168727) 14051
(0.00575207 0.00444243 0.00168727) 14051
(0.00617802 0.00441413 0.00168876) 14052
(0.00657455 0.00440413 0.00168552) 14053
(0.00696269 0.00439651 0.00168217) 14053
(0.00735802 0.00439017 0.00167755) 14054
(0.00777442 0.00438653 0.00167305) 14055
(0.00577518 0.00421411 0.00181066) 14111
(0.00577518 0.00421411 0.00181066) 14111
(0.00577518 0.00421411 0.00181066) 14111
(0.00621697 0.00418311 0.00182111) 14112
(0.00663993 0.00417081 0.00181997) 14113
(0.00703568 0.00416219 0.00181634) 14114
(0.00741977 0.00415177 0.00181331) 14114
(0.00782081 0.00414403 0.00181074) 14115
(0.0120813 0.00418012 0.00184569) 14124
(0.0125459 0.00418325 0.00184727) 14125
(0.0129825 0.00418352 0.00184521) 14125
(0.00557183 0.00399063 0.00202107) 14171
(0.0060265 0.00397778 0.0020274) 14172
(0.00644362 0.00396741 0.00202891) 14172
(0.0113413 0.00362565 0.00289213) 14362
(0.0118986 0.003637 0.00289385) 14363
(0.0124788 0.00365067 0.00289552) 14364
(0.013019 0.00365813 0.0028955) 14366
(0.0135002 0.00365691 0.0028941) 14367
(0.0139236 0.003649 0.00289211) 14367
(0.00565508 0.00358114 0.00317644) 14411
(0.00608826 0.00358461 0.00320279) 14412
(0.0115004 0.00360009 0.00319217) 14423
(0.0120677 0.00361214 0.00319395) 14424
(0.0126313 0.0036234 0.0031942) 14425
(0.0131503 0.00362823 0.00319323) 14426
(0.0136369 0.00362778 0.00319263) 14427
(0.0140887 0.00362288 0.0031929) 14428
(0.0145239 0.0036155 0.00319485) 14429
(0.00561313 0.00376066 0.0034917) 14471
(0.00561313 0.00376066 0.0034917) 14471
(0.00561313 0.00376066 0.0034917) 14471
(0.00593069 0.00373952 0.00355119) 14471
(0.00640611 0.00371828 0.00355404) 14472
(0.00697753 0.00369521 0.00352135) 14473
(0.00755173 0.00366702 0.00349141) 14475
(0.00804065 0.00364215 0.00347715) 14476
(0.00527359 0.00385912 0.00374598) 14530
(0.00527359 0.00385912 0.00374598) 14530
(0.00527359 0.00385912 0.00374598) 14530
(0.00558686 0.00384847 0.0037863) 14591
(0.00598699 0.00382444 0.00377658) 14531
(0.0065239 0.00379415 0.00375414) 14533
(0.00720245 0.00375972 0.00372588) 14534
(0.00522594 0.00403207 0.00395281) 14590
(0.00575554 0.00406239 0.00397334) 14591
(0.0062911 0.00403857 0.00397665) 14592
(0.00591111 0.00474135 0.00439405) 14771
(0.00564393 0.00502342 0.00441911) 14831
(0.00613302 0.00501602 0.00442854) 14832
(0.00658354 0.00501001 0.00443581) 14833
(0.00698848 0.00501013 0.00444293) 14833
(0.00736917 0.00501077 0.00445115) 14834
(0.0055393 0.0052889 0.0043797) 14891
(0.00690089 0.00528473 0.00440567) 14893
(0.00562855 0.00635479 0.0034203) 15191
(0.00607523 0.00636083 0.00341101) 15192
(0.00642462 0.0063737 0.00340212) 15192
(0.00573613 0.00643219 0.00313082) 15251
(0.00573613 0.00643219 0.00313082) 15251
(0.00573613 0.00643219 0.00313082) 15251
(0.00620852 0.00643095 0.00313453) 15252
(0.00665172 0.00643508 0.00312775) 15253
(0.00708662 0.00643943 0.00312447) 15254
(0.00751876 0.00644491 0.00312523) 15255
(0.00795174 0.00644967 0.00313044) 15255
(0.00217181 0.00645494 0.00282188) 13504
(0.00209468 0.00647953 0.00284166) 13504
(0.00383117 0.00637937 0.0027127) 13567
(0.00430237 0.00636812 0.00263587) 13568
(0.00457835 0.00636874 0.00262744) 13569
(0.00500537 0.00636577 0.00278302) 13510
(0.00501198 0.00582396 0.00189952) 13750
(0.00486094 0.00554893 0.00173373) 13809
(0.00304176 0.00436492 0.00164148) 5706
(0.0048194 0.00447881 0.00162352) 14049
(0.00531098 0.00426094 0.0018352) 14110
(0.00488307 0.00360955 0.00333464) 14469
(0.00404757 0.00364182 0.00358772) 14468
(0.00486839 0.00378915 0.00353898) 15909
(0.00499363 0.00387499 0.00368216) 14529
(0.00193265 0.00492633 0.00443349) 14823
(0.00357506 0.00494822 0.00433891) 14827
(0.00509093 0.00504502 0.0043577) 14830
(0.00416433 0.00533049 0.00431191) 14888
(0.00478551 0.00531836 0.00432089) 14889
(0.00363281 0.0064496 0.00280825) 13507
(0.00457375 0.00642309 0.00273116) 13509
(0.0050611 0.00646417 0.00299683) 13510
(0.0209857 0.00302505 0.00217683) 521
(0.0213723 0.00710953 0.00374442) 23502
(0.0215033 0.00692162 0.00359901) 2023
(0.0127664 0.0064701 0.0041617) 6685
(0.013735 0.00643354 0.00413634) 6687
(0.014486 0.00641076 0.00412661) 6688
(0.0151086 0.00639834 0.00411981) 6690
(0.0156423 0.00639375 0.00411512) 6691
(0.0161287 0.0063923 0.00411355) 6692
(0.0166086 0.0063929 0.00410954) 6693
(0.0171112 0.00639205 0.00410339) 6694
(0.0176346 0.00638538 0.00410013) 6695
(0.0181408 0.00637742 0.00409916) 6696
(0.0213214 0.00325813 0.00331916) 5442
(0.0223068 0.00641909 0.00204086) 13424
(0.0238311 0.00661208 0.00224799) 6107
(0.0247988 0.00665965 0.00222655) 6109
(0.0219564 0.00664056 0.00415207) 6703
(0.023958 0.00668688 0.00411202) 1967
(0.0205135 0.00639963 0.00122235) 6821
(0.0216295 0.00635276 0.0012057) 12463
(0.0210997 0.00359357 0.00459424) 7182
(0.0226806 0.00360203 0.00461694) 7185
(0.0211944 0.0033957 0.00165325) 402
(0.0230068 0.00338153 0.00168567) 466
(0.0197979 0.00608446 0.00480787) 12219
(0.0216969 0.00610743 0.00473534) 12223
(0.0215042 0.00579637 0.00500865) 12583
(0.0215042 0.00579637 0.00500865) 12583
(0.0215042 0.00579637 0.00500865) 12583
(0.0231629 0.00581554 0.00499693) 12586
(0.0231629 0.00581554 0.00499693) 12586
(0.0231629 0.00581554 0.00499693) 12586
(0.0238866 0.00590578 0.00496386) 12587
(0.021341 0.00397613 0.00484982) 10542
(0.0228351 0.00398127 0.00488722) 10545
(0.0219313 0.00379533 0.00142231) 12763
(0.0221516 0.0041393 0.00126164) 11504
(0.024388 0.00408704 0.00121538) 11508
(0.0216524 0.00448126 0.00113398) 11563
(0.0214366 0.00480873 0.00097698) 11622
(0.0230849 0.00474479 0.000959298) 11626
(0.0209528 0.00563859 0.00100393) 12161
(0.020799 0.00600422 0.00107709) 12281
(0.0223276 0.00602037 0.00107598) 12284
(0.0215446 0.00533117 0.000902675) 10123
(0.0232087 0.00529111 0.00089479) 10126
(0.0210726 0.00522234 0.00517654) 11442
(0.0225121 0.00522113 0.00517327) 11445
(0.0202929 0.00391608 0.00111825) 13000
(0.0217291 0.0038653 0.00112195) 13003
(0.0223432 0.00332964 0.00281835) 13304
(0.0196919 0.00301569 0.00311866) 759
(0.0231573 0.00306534 0.00317216) 766
(0.0249726 0.00303793 0.00313774) 769
(0.0252867 0.00299748 0.00316088) 34272
(0.02111 0.00671786 0.00173447) 2502
(0.02111 0.00671786 0.00173447) 2502
(0.02111 0.00671786 0.00173447) 2502
(0.0232576 0.0066998 0.00179669) 2446
(0.024269 0.00668474 0.00175925) 2508
(0.0211848 0.00621319 0.00166174) 13482
(0.0232518 0.00630264 0.00174482) 13486
(0.00652621 0.00644318 0.00288398) 13513
(0.00701182 0.00644439 0.00287855) 13514
(0.00748026 0.00644691 0.00287159) 13514
(0.00791806 0.00645089 0.0028652) 13515
(0.00543428 0.00633772 0.00252723) 13570
(0.00589815 0.00636009 0.00256278) 13571
(0.0118517 0.00621096 0.00236113) 13643
(0.0124053 0.0062012 0.00236548) 13644
(0.012941 0.00619545 0.00236729) 13645
(0.0134229 0.00619894 0.00236709) 13646
(0.017798 0.00623473 0.00235643) 13655
(0.0183582 0.00622993 0.00236082) 13656
(0.0188912 0.00622521 0.00236565) 13657
(0.0194069 0.00621759 0.00236632) 13658
(0.0199349 0.00620741 0.00236464) 13659
(0.0204805 0.00619495 0.00235858) 13660
(0.021004 0.00618446 0.00234753) 13662
(0.0214972 0.00617811 0.00233572) 13662
(0.00556872 0.00582964 0.00187605) 13751
(0.00605467 0.00582739 0.00186641) 13752
(0.00651936 0.00582746 0.00186192) 13753
(0.00695328 0.00583305 0.00186049) 13753
(0.00551873 0.00558315 0.00171528) 13811
(0.00594723 0.00558831 0.00170863) 13811
(0.0063627 0.0055907 0.00170367) 13812
(0.00581171 0.00467429 0.0016097) 13991
(0.0061562 0.00441492 0.00168853) 14052
(0.00655237 0.00440445 0.00168537) 14053
(0.00694145 0.00439679 0.00168217) 14053
(0.00733702 0.00439041 0.00167768) 14054
(0.00775255 0.00438668 0.0016731) 14055
(0.00575621 0.00421603 0.00180939) 14111
(0.00575621 0.00421603 0.00180939) 14111
(0.00575621 0.00421603 0.00180939) 14111
(0.0061947 0.00418392 0.00182072) 14112
(0.00661733 0.00417106 0.00181991) 14113
(0.00701464 0.00416252 0.00181636) 14114
(0.00739935 0.00415219 0.00181334) 14114
(0.00779962 0.00414415 0.00181084) 14115
(0.0120595 0.00417986 0.00184552) 14124
(0.0125258 0.00418311 0.00184724) 14125
(0.0129626 0.00418343 0.00184525) 14125
(0.00555031 0.00399106 0.00202008) 14171
(0.00600356 0.00397819 0.00202691) 14172
(0.00642086 0.00396772 0.00202861) 14172
(0.011318 0.00362529 0.00289205) 14362
(0.0118742 0.00363643 0.00289378) 14363
(0.0124545 0.00365013 0.00289547) 14364
(0.0129968 0.00365789 0.00289552) 14365
(0.0134805 0.00365702 0.00289416) 14366
(0.013906 0.00364936 0.00289219) 14367
(0.0056365 0.00358089 0.00317503) 14411
(0.00606831 0.00358414 0.00320219) 14412
(0.0114756 0.00359962 0.00319206) 14422
(0.0120427 0.00361158 0.003194) 14424
(0.0126075 0.00362299 0.00319425) 14425
(0.013128 0.00362805 0.00319332) 14426
(0.0136158 0.00362779 0.00319267) 14427
(0.0140691 0.00362309 0.00319295) 14428
(0.014504 0.00361577 0.00319479) 14429
(0.00560687 0.00375838 0.00348703) 14471
(0.00560687 0.00375838 0.00348703) 14471
(0.00560687 0.00375838 0.00348703) 14471
(0.0059139 0.00373967 0.00354877) 14471
(0.00638283 0.00371874 0.00355449) 14472
(0.00695035 0.00369622 0.00352292) 14473
(0.00752616 0.00366822 0.00349253) 14475
(0.00801877 0.00364306 0.00347764) 14476
(0.00526251 0.00385704 0.00374398) 14530
(0.00526251 0.00385704 0.00374398) 14530
(0.00526251 0.00385704 0.00374398) 14530
(0.00557193 0.00384819 0.00378561) 14591
(0.00596849 0.00382486 0.00377679) 14531
(0.00649702 0.00379539 0.00375539) 14532
(0.00717049 0.00376106 0.00372709) 14534
(0.00520407 0.0040281 0.0039512) 14590
(0.00573041 0.00406123 0.00397261) 14591
(0.00626671 0.00403957 0.00397617) 14592
(0.00589052 0.00474179 0.00439366) 14771
(0.0056229 0.00502337 0.00441888) 14831
(0.00610995 0.00501624 0.00442842) 14832
(0.00656005 0.00501003 0.00443585) 14833
(0.00696651 0.00501004 0.00444289) 14833
(0.0073488 0.00501086 0.0044509) 14834
(0.0055156 0.00528886 0.00437962) 14891
(0.00688028 0.00528446 0.00440558) 14893
(0.00560527 0.00635504 0.0034206) 15191
(0.00605505 0.00636057 0.00341153) 15192
(0.00640583 0.00637334 0.00340246) 15192
(0.00571355 0.00643285 0.00313003) 15251
(0.00571355 0.00643285 0.00313003) 15251
(0.00571355 0.00643285 0.00313003) 15251
(0.00618647 0.00643098 0.00313484) 15252
(0.00662928 0.00643508 0.00312822) 15253
(0.0070645 0.00643927 0.00312471) 15254
(0.00749683 0.00644471 0.00312518) 15254
(0.00792914 0.00644959 0.0031303) 15255
(0.00239033 0.00644463 0.00282085) 13504
(0.00211511 0.00647771 0.00283825) 13504
(0.00376784 0.00638469 0.00272274) 13567
(0.00429182 0.00636699 0.00263635) 13568
(0.00456231 0.00637117 0.00262298) 13569
(0.00498915 0.00636545 0.00277836) 13509
(0.00499422 0.00582335 0.00190187) 13749
(0.00483781 0.00554666 0.00173511) 13809
(0.0024157 0.00436064 0.0016244) 5704
(0.00486721 0.00446668 0.00161509) 14049
(0.00529864 0.0042635 0.00183706) 14110
(0.00474037 0.00365704 0.00340074) 14469
(0.00368923 0.00363923 0.00358485) 14467
(0.0048954 0.00377727 0.00353292) 14469
(0.00498953 0.00387918 0.00367681) 14529
(0.0018399 0.00492544 0.00443598) 14823
(0.00348792 0.00494492 0.00434582) 14826
(0.00506827 0.00504416 0.0043558) 14830
(0.00414152 0.00532995 0.00431236) 14888
(0.00476852 0.00531906 0.00432067) 14889
(0.00348729 0.00646222 0.00282539) 13506
(0.00455513 0.00642133 0.00272845) 13569
(0.00504935 0.0064634 0.0029887) 13510
(0.0209419 0.00302667 0.00217428) 521
(0.0213542 0.0071046 0.00375002) 23862
(0.0214491 0.00691727 0.00360303) 2022
(0.02291 0.00702461 0.00353723) 23505
(0.0127285 0.00647178 0.0041632) 6685
(0.0137075 0.00643442 0.00413679) 6687
(0.0144643 0.0064113 0.00412659) 6688
(0.0150905 0.00639845 0.00411982) 6690
(0.0156267 0.00639367 0.00411498) 6691
(0.016114 0.00639224 0.00411324) 6692
(0.0165933 0.00639284 0.00410931) 6693
(0.0170946 0.00639203 0.00410333) 6694
(0.0176178 0.00638545 0.00409996) 6695
(0.018125 0.00637746 0.00409893) 6696
(0.0211478 0.00324888 0.00331805) 822
(0.0221785 0.0064193 0.00203217) 13424
(0.0237876 0.00660766 0.00224549) 6107
(0.0247752 0.00665795 0.00222945) 6109
(0.0218622 0.00663922 0.00415504) 6703
(0.0239098 0.00668387 0.00411307) 1967
(0.0204824 0.00640115 0.00122301) 6820
(0.0216087 0.00635705 0.00120958) 12463
(0.0210408 0.00359268 0.00459337) 7182
(0.0226471 0.0036005 0.00461362) 7185
(0.0211195 0.00339616 0.00164965) 402
(0.022965 0.00338376 0.00168454) 465
(0.021632 0.00610585 0.00473624) 12223
(0.0214331 0.00579594 0.0050096) 12582
(0.0214331 0.00579594 0.0050096) 12582
(0.0214331 0.00579594 0.0050096) 12582
(0.0231251 0.00581267 0.00499692) 12586
(0.0231251 0.00581267 0.00499692) 12586
(0.0231251 0.00581267 0.00499692) 12586
(0.0238863 0.00589817 0.00496701) 12587
(0.021285 0.00397482 0.0048477) 10542
(0.0228017 0.00398033 0.00488405) 10545
(0.021829 0.00379597 0.00142168) 12763
(0.0242202 0.00380009 0.00139531) 12768
(0.0220522 0.00414287 0.00126233) 11504
(0.0243611 0.00409072 0.00121784) 11508
(0.0215849 0.0044858 0.00113381) 11563
(0.0213679 0.00481129 0.000977219) 11622
(0.0230442 0.00474845 0.000960973) 11626
(0.0208972 0.00564085 0.00100549) 12161
(0.0207457 0.00600348 0.00107711) 12281
(0.0222926 0.00602141 0.00107839) 12464
(0.0214671 0.00533412 0.000902575) 10122
(0.0231724 0.00529311 0.000897446) 10126
(0.0210211 0.00522225 0.00517682) 11442
(0.0224784 0.00521903 0.00517233) 11444
(0.0202622 0.00392007 0.00111687) 13000
(0.021692 0.00386887 0.00112169) 13003
(0.0221835 0.00332519 0.00281308) 13304
(0.0230249 0.00306576 0.00317296) 766
(0.0249507 0.00304116 0.00313811) 769
(0.0252845 0.00299841 0.00315762) 34272
(0.0210119 0.00672132 0.00173036) 2502
(0.0210119 0.00672132 0.00173036) 2502
(0.0210119 0.00672132 0.00173036) 2502
(0.023201 0.00669973 0.00179705) 2446
(0.0242631 0.00668714 0.00176488) 2508
(0.0209727 0.00622634 0.00166441) 13481
(0.0232308 0.00629933 0.00174513) 13486
(0.00650296 0.0064432 0.00288403) 13513
(0.00698828 0.00644435 0.00287886) 13513
(0.00745764 0.0064468 0.00287196) 13514
(0.00789609 0.00645076 0.00286538) 13515
(0.00541192 0.00633704 0.0025262) 13570
(0.00587241 0.00635989 0.00256121) 13571
(0.0118287 0.00621134 0.00236097) 13643
(0.0123819 0.0062016 0.00236536) 13644
(0.0129191 0.00619558 0.00236726) 13645
(0.0134028 0.00619871 0.0023671) 13646
(0.0138389 0.00620882 0.0023649) 13647
(0.0177723 0.00623502 0.00235634) 13655
(0.0183336 0.00623016 0.00236067) 13656
(0.018868 0.00622551 0.00236562) 13657
(0.0193842 0.006218 0.00236639) 13658
(0.0199114 0.00620799 0.00236487) 13659
(0.0204568 0.00619559 0.00235909) 13660
(0.0209816 0.00618495 0.00234814) 13661
(0.0214758 0.00617847 0.00233639) 13662
(0.00554765 0.0058295 0.00187604) 13751
(0.0060323 0.00582746 0.00186641) 13752
(0.0064968 0.00582727 0.00186175) 13752
(0.0069324 0.0058327 0.00186041) 13753
(0.00549707 0.00558287 0.00171517) 13810
(0.00592501 0.00558807 0.00170851) 13811
(0.00634079 0.00559059 0.00170361) 13812
(0.00578704 0.00467487 0.00160961) 13991
(0.00613446 0.00441574 0.00168828) 14052
(0.00653018 0.00440477 0.00168521) 14053
(0.00692014 0.00439708 0.00168216) 14053
(0.00731603 0.00439066 0.00167781) 14054
(0.00773077 0.00438683 0.00167316) 14055
(0.00573758 0.00421796 0.00180808) 14111
(0.00573758 0.00421796 0.00180808) 14111
(0.00573758 0.00421796 0.00180808) 14111
(0.00617255 0.00418478 0.00182029) 14112
(0.00659471 0.00417131 0.00181985) 14113
(0.0069935 0.00416284 0.00181636) 14113
(0.00737895 0.00415261 0.00181338) 14114
(0.00777849 0.00414429 0.00181095) 14115
(0.0120376 0.0041796 0.00184535) 14124
(0.0125056 0.00418296 0.0018472) 14125
(0.0129427 0.00418335 0.00184529) 14125
(0.00552892 0.00399143 0.00201912) 14171
(0.00598075 0.00397862 0.00202639) 14171
(0.00639811 0.00396805 0.0020283) 14172
(0.0112947 0.00362493 0.00289197) 14362
(0.0118499 0.00363587 0.00289371) 14363
(0.0124301 0.00364959 0.00289542) 14364
(0.0129745 0.00365765 0.00289553) 14365
(0.0134607 0.00365712 0.00289421) 14366
(0.0138884 0.00364972 0.00289227) 14367
(0.00561794 0.00358065 0.00317358) 14411
(0.00604832 0.00358365 0.00320155) 14412
(0.0114508 0.00359915 0.00319196) 14422
(0.0120176 0.00361101 0.00319401) 14424
(0.0125836 0.00362258 0.00319432) 14425
(0.0131056 0.00362786 0.00319341) 14426
(0.0135947 0.00362779 0.00319271) 14427
(0.0140494 0.0036233 0.003193) 14428
(0.0144843 0.00361604 0.00319473) 14428
(0.0056006 0.00375619 0.0034823) 14471
(0.0056006 0.00375619 0.0034823) 14471
(0.0056006 0.00375619 0.0034823) 14471
(0.00589748 0.00373972 0.00354625) 14471
(0.00635981 0.00371916 0.00355481) 14472
(0.00692321 0.00369719 0.00352444) 14473
(0.00750048 0.00366942 0.00349367) 14475
(0.00799675 0.00364399 0.00347816) 14475
(0.00525173 0.0038549 0.00374203) 14530
(0.00525173 0.0038549 0.00374203) 14530
(0.00525173 0.0038549 0.00374203) 14530
(0.00555711 0.00384788 0.00378486) 14591
(0.00595023 0.00382524 0.00377695) 14531
(0.00647057 0.00379658 0.00375659) 14532
(0.00713866 0.00376242 0.00372832) 14534
(0.00518248 0.00402407 0.00394959) 14590
(0.00570532 0.00405996 0.00397191) 14591
(0.00624226 0.00404047 0.00397562) 14592
(0.0058699 0.00474221 0.00439327) 14771
(0.00560194 0.00502328 0.00441865) 14831
(0.00608696 0.00501645 0.00442828) 14832
(0.00653654 0.00501006 0.00443589) 14833
(0.00694442 0.00500995 0.00444286) 14833
(0.00732838 0.00501094 0.00445065) 14834
(0.00549198 0.00528882 0.00437955) 14890
(0.00685954 0.00528421 0.00440551) 14893
(0.00558191 0.00635533 0.00342089) 15191
(0.00603482 0.0063603 0.00341205) 15192
(0.00638704 0.00637298 0.00340281) 15192
(0.00569101 0.00643356 0.00312913) 15251
(0.00569101 0.00643356 0.00312913) 15251
(0.00569101 0.00643356 0.00312913) 15251
(0.00616443 0.00643104 0.00313512) 15252
(0.00660684 0.00643508 0.0031287) 15253
(0.00704237 0.00643912 0.00312496) 15254
(0.00747489 0.00644452 0.00312514) 15254
(0.00790667 0.00644949 0.00313017) 15255
(0.00260293 0.0064312 0.00281928) 13505
(0.00216581 0.00647554 0.00283401) 13504
(0.00369962 0.00639033 0.00273301) 13567
(0.00428171 0.00636572 0.00263677) 13568
(0.00453783 0.00637461 0.00261774) 13569
(0.0049731 0.00636506 0.00277361) 13509
(0.00497612 0.0058227 0.00190431) 13749
(0.00481575 0.0055447 0.00173659) 13809
(0.00489762 0.00445649 0.0016082) 5709
(0.00528605 0.00426604 0.00183886) 14110
(0.00448502 0.00367903 0.00345148) 14468
(0.00314677 0.00362957 0.00357761) 14466
(0.00490576 0.00375882 0.00353063) 14469
(0.00498655 0.00388245 0.00367088) 14529
(0.00176561 0.00492475 0.00443783) 14823
(0.00339655 0.0049423 0.00435307) 14826
(0.00411908 0.00532942 0.00431306) 14888
(0.00475086 0.00531945 0.00432051) 14889
(0.00337609 0.00647205 0.00283738) 13506
(0.00453658 0.00641896 0.00272708) 13569
(0.00503692 0.00646266 0.00298076) 13510
(0.0208975 0.00302814 0.00217186) 521
(0.0213356 0.00709988 0.00375549) 23862
(0.0213949 0.006913 0.00360711) 2022
(0.022878 0.00701972 0.00354042) 23505
(0.01269 0.00647353 0.00416479) 6685
(0.0136798 0.00643533 0.00413725) 6687
(0.0144425 0.00641186 0.00412658) 6688
(0.0150723 0.00639857 0.00411985) 6690
(0.015611 0.00639358 0.00411486) 6691
(0.0160993 0.00639219 0.00411291) 6692
(0.0165781 0.00639278 0.00410906) 6693
(0.0170779 0.006392 0.00410327) 6694
(0.0176009 0.00638554 0.00409979) 6695
(0.0181091 0.0063775 0.0040987) 6696
(0.0209663 0.00323804 0.00331678) 821
(0.0220389 0.00642396 0.00202677) 13424
(0.0237439 0.006603 0.00224254) 6107
(0.0247499 0.00665622 0.00223222) 6109
(0.0217668 0.00663806 0.00415819) 6643
(0.023858 0.00668107 0.00411412) 1967
(0.0204513 0.00640266 0.00122363) 6820
(0.0215871 0.00636111 0.00121323) 12463
(0.0209829 0.00359193 0.00459257) 7181
(0.0226121 0.0035991 0.00461046) 7185
(0.0210442 0.00339654 0.00164584) 402
(0.0229216 0.0033859 0.00168349) 465
(0.0215661 0.00610434 0.00473726) 12223
(0.0213621 0.00579559 0.00501062) 12582
(0.0213621 0.00579559 0.00501062) 12582
(0.0213621 0.00579559 0.00501062) 12582
(0.0230857 0.00580992 0.00499687) 12586
(0.0230857 0.00580992 0.00499687) 12586
(0.0230857 0.00580992 0.00499687) 12586
(0.0238847 0.00589087 0.00496984) 12587
(0.0212293 0.00397339 0.0048456) 10542
(0.0227668 0.00397946 0.00488096) 10545
(0.021726 0.0037966 0.00142077) 12763
(0.0241811 0.00380387 0.00139669) 12768
(0.0219531 0.00414646 0.00126286) 11503
(0.0243309 0.00409442 0.00122043) 11508
(0.0215169 0.00449026 0.00113348) 11563
(0.021299 0.00481376 0.000977344) 11622
(0.0230018 0.00475201 0.000962634) 11626
(0.020842 0.00564319 0.00100704) 12161
(0.0206932 0.00600276 0.00107711) 12281
(0.0222564 0.0060223 0.00108065) 12464
(0.0213881 0.00533716 0.000902328) 10122
(0.0231337 0.00529497 0.000899977) 10126
(0.0209701 0.0052221 0.00517715) 11441
(0.0224435 0.00521713 0.00517143) 11444
(0.0232568 0.00530426 0.00517946) 11446
(0.0202321 0.00392412 0.00111547) 13000
(0.0216543 0.00387228 0.00112143) 13003
(0.0220135 0.00331932 0.00280755) 13304
(0.0228953 0.00306605 0.00317362) 765
(0.0249279 0.00304435 0.00313862) 769
(0.0252816 0.0029996 0.00315454) 34272
(0.0209315 0.00672443 0.00172764) 2501
(0.0209315 0.00672443 0.00172764) 2501
(0.0209315 0.00672443 0.00172764) 2501
(0.0231427 0.00669969 0.00179729) 2446
(0.0242559 0.00668927 0.00177033) 2508
(0.0207646 0.00624244 0.00166855) 13481
(0.0232093 0.0062959 0.00174516) 13486
(0.00647974 0.00644323 0.00288406) 13512
(0.00696475 0.00644431 0.00287918) 13513
(0.007435 0.0064467 0.00287232) 13514
(0.00787416 0.00645064 0.00286557) 13515
(0.00538975 0.00633636 0.0025252) 13570
(0.00584664 0.00635968 0.00255964) 13571
(0.0118057 0.00621172 0.00236081) 13643
(0.0123584 0.00620201 0.00236523) 13644
(0.0128972 0.00619572 0.00236722) 13645
(0.0133827 0.0061985 0.00236711) 13646
(0.0138204 0.00620837 0.002365) 13647
(0.0177466 0.00623532 0.00235626) 13655
(0.018309 0.00623039 0.00236051) 13656
(0.0188448 0.0062258 0.00236557) 13657
(0.0193616 0.0062184 0.00236646) 13658
(0.0198878 0.00620855 0.00236509) 13659
(0.0204331 0.00619622 0.00235959) 13660
(0.0209592 0.00618543 0.00234875) 13661
(0.0214544 0.00617883 0.00233706) 13662
(0.00552665 0.00582933 0.00187603) 13751
(0.00601 0.00582753 0.00186641) 13752
(0.0064742 0.00582708 0.00186157) 13752
(0.00691141 0.00583235 0.00186031) 13753
(0.00547547 0.00558258 0.00171505) 13810
(0.00590285 0.00558781 0.00170838) 13811
(0.00631886 0.00559047 0.00170356) 13812
(0.00576235 0.00467549 0.00160951) 13991
(0.0061128 0.00441661 0.00168802) 14052
(0.006508 0.0044051 0.00168505) 14053
(0.00689877 0.00439737 0.00168214) 14053
(0.00729504 0.0043909 0.00167793) 14054
(0.00770905 0.00438699 0.00167322) 14055
(0.00571926 0.0042199 0.00180674) 14111
(0.00571926 0.0042199 0.00180674) 14111
(0.00571926 0.0042199 0.00180674) 14111
(0.00615054 0.00418568 0.00181984) 14112
(0.00657209 0.00417159 0.00181977) 14113
(0.00697225 0.00416315 0.00181637) 14113
(0.00735854 0.00415302 0.00181342) 14114
(0.00775742 0.00414443 0.00181106) 14115
(0.0120156 0.00417933 0.00184517) 14124
(0.0124854 0.00418282 0.00184715) 14124
(0.0129228 0.00418327 0.00184534) 14125
(0.00550771 0.00399175 0.00201818) 14171
(0.00595806 0.00397905 0.00202587) 14171
(0.00637536 0.00396838 0.00202798) 14172
(0.0112714 0.00362457 0.00289189) 14362
(0.0118256 0.00363532 0.00289364) 14363
(0.0124056 0.00364904 0.00289536) 14364
(0.0129521 0.00365739 0.00289554) 14365
(0.0134409 0.00365721 0.00289427) 14366
(0.0138707 0.00365006 0.00289236) 14367
(0.00559939 0.00358042 0.00317209) 14411
(0.00602832 0.00358315 0.00320087) 14412
(0.0114259 0.00359869 0.00319185) 14422
(0.0119925 0.00361044 0.00319402) 14423
(0.0125596 0.00362216 0.00319438) 14425
(0.0130833 0.00362767 0.00319349) 14426
(0.0135735 0.00362779 0.00319275) 14427
(0.0140296 0.00362349 0.00319305) 14428
(0.0144645 0.0036163 0.00319466) 14428
(0.00559477 0.00375387 0.00347738) 14471
(0.00559477 0.00375387 0.00347738) 14471
(0.00559477 0.00375387 0.00347738) 14471
(0.00588165 0.00373956 0.00354367) 14471
(0.00633699 0.00371957 0.00355501) 14472
(0.00689619 0.00369814 0.00352596) 14473
(0.00747469 0.00367062 0.00349484) 14474
(0.00797459 0.00364494 0.00347869) 14475
(0.00524123 0.00385271 0.00374015) 14530
(0.00524123 0.00385271 0.00374015) 14530
(0.00524123 0.00385271 0.00374015) 14530
(0.00554235 0.00384751 0.00378406) 14531
(0.00593219 0.00382558 0.00377708) 14531
(0.00644451 0.00379771 0.00375772) 14532
(0.00710697 0.00376377 0.00372957) 14534
(0.00516118 0.00402 0.00394801) 14590
(0.00568025 0.00405858 0.00397124) 14591
(0.00621779 0.00404127 0.00397502) 14592
(0.00584924 0.00474259 0.00439287) 14771
(0.00558105 0.00502318 0.00441843) 14831
(0.00606407 0.00501666 0.00442814) 14832
(0.006513 0.00501011 0.00443592) 14833
(0.00692222 0.00500985 0.00444284) 14833
(0.00730791 0.005011 0.00445041) 14834
(0.00546845 0.00528878 0.00437948) 14890
(0.00683865 0.00528397 0.00440544) 14893
(0.00555846 0.00635565 0.00342115) 15191
(0.00601452 0.00636005 0.00341256) 15192
(0.00636824 0.00637262 0.00340317) 15192
(0.00566853 0.0064343 0.00312813) 15251
(0.00566853 0.0064343 0.00312813) 15251
(0.00566853 0.0064343 0.00312813) 15251
(0.00614241 0.0064311 0.00313536) 15252
(0.00658438 0.00643508 0.00312918) 15253
(0.00702023 0.00643897 0.00312522) 15254
(0.00745295 0.00644432 0.00312512) 15254
(0.0078843 0.00644939 0.00313003) 15255
(0.00278185 0.0064142 0.0028149) 13505
(0.00224988 0.00647248 0.00282989) 13504
(0.00362249 0.00639702 0.00274456) 13507
(0.00427105 0.00636453 0.00263744) 13568
(0.00452121 0.0063803 0.0026154) 13569
(0.00495725 0.00636459 0.0027688) 13509
(0.00495757 0.00582212 0.00190692) 13749
(0.00479597 0.00554283 0.00173824) 13809
(0.00491512 0.0044486 0.00160335) 5709
(0.0049164 0.004249 0.0017083) 14109
(0.00527651 0.00426859 0.00184112) 14110
(0.00414852 0.00367419 0.00347665) 14468
(0.00242404 0.00360346 0.00357819) 5344
(0.00490919 0.00374066 0.00352946) 14469
(0.00498315 0.00388403 0.00366576) 14529
(0.00171359 0.00492449 0.00443887) 14823
(0.00331351 0.004941 0.00435949) 14826
(0.00409664 0.00532883 0.00431408) 14888
(0.00473266 0.00531965 0.00432042) 14889
(0.00319084 0.00648628 0.00285764) 6126
(0.0045157 0.00641733 0.00272538) 13569
(0.00502398 0.00646187 0.00297301) 13510
(0.0208525 0.00302946 0.00216956) 521
(0.0213163 0.00709537 0.00376078) 23862
(0.0213404 0.00690887 0.00361124) 2022
(0.0228441 0.00701486 0.00354351) 23505
(0.0126509 0.00647533 0.00416645) 6685
(0.0136517 0.00643628 0.00413774) 6687
(0.0144205 0.00641244 0.00412656) 6688
(0.015054 0.0063987 0.00411988) 6690
(0.0155952 0.0063935 0.00411475) 6691
(0.0160846 0.00639215 0.00411257) 6692
(0.0165629 0.00639272 0.0041088) 6693
(0.0170613 0.00639198 0.00410321) 6694
(0.0175841 0.00638562 0.00409962) 6695
(0.0180932 0.00637754 0.00409847) 6696
(0.018557 0.00637188 0.00409925) 6697
(0.0207828 0.00322571 0.00331525) 821
(0.0218871 0.00643333 0.00202387) 13423
(0.0237002 0.00659809 0.00223919) 6107
(0.024723 0.00665447 0.00223487) 6109
(0.0216713 0.00663679 0.00416172) 6643
(0.023803 0.00667843 0.00411515) 1967
(0.0204201 0.00640416 0.00122421) 6820
(0.0215647 0.00636495 0.00121667) 6823
(0.0209258 0.00359131 0.00459187) 7181
(0.0225753 0.00359782 0.00460744) 7185
(0.0233985 0.00365761 0.00468811) 7186
(0.0209697 0.00339715 0.00164183) 401
(0.0228764 0.00338794 0.00168252) 465
(0.0214993 0.00610289 0.00473841) 12222
(0.0212914 0.00579532 0.0050117) 12582
(0.0212914 0.00579532 0.0050117) 12582
(0.0212914 0.00579532 0.0050117) 12582
(0.0230448 0.00580729 0.00499678) 12586
(0.0230448 0.00580729 0.00499678) 12586
(0.0230448 0.00580729 0.00499678) 12586
(0.0238814 0.00588393 0.00497237) 12587
(0.0211742 0.00397184 0.00484353) 10542
(0.0227304 0.00397866 0.00487795) 10545
(0.0216222 0.0037972 0.00141958) 12763
(0.0241374 0.00380746 0.00139829) 12768
(0.0218546 0.00415002 0.00126321) 11503
(0.0242967 0.00409815 0.00122312) 11508
(0.0214487 0.00449467 0.00113298) 9822
(0.0212302 0.00481619 0.00097735) 11622
(0.0229576 0.00475549 0.000964279) 11625
(0.0207875 0.00564562 0.0010086) 12161
(0.0206416 0.00600206 0.00107711) 12281
(0.0222187 0.00602303 0.00108278) 12464
(0.0213091 0.00534035 0.000902012) 10122
(0.0230925 0.0052967 0.000902383) 10126
(0.0209194 0.0052219 0.00517756) 11441
(0.0224075 0.00521542 0.00517056) 11444
(0.0232547 0.00529585 0.0051788) 11446
(0.0202027 0.00392823 0.00111407) 13000
(0.0216159 0.00387555 0.00112118) 13003
(0.0218363 0.00331186 0.00280201) 13303
(0.0227683 0.00306624 0.00317411) 765
(0.0249038 0.00304747 0.00313927) 769
(0.0252777 0.00300106 0.00315168) 770
(0.0208627 0.00672714 0.0017257) 2501
(0.0208627 0.00672714 0.0017257) 2501
(0.0208627 0.00672714 0.0017257) 2501
(0.0230825 0.00669967 0.00179739) 2446
(0.0242469 0.00669114 0.00177553) 2508
(0.0231863 0.0062924 0.00174492) 13486
(0.00645654 0.00644326 0.00288407) 13512
(0.00694123 0.00644428 0.00287948) 13513
(0.00741232 0.0064466 0.00287269) 13514
(0.00785227 0.00645051 0.00286576) 13515
(0.00536778 0.00633566 0.00252421) 13570
(0.00582088 0.00635948 0.00255808) 13571
(0.0117827 0.00621209 0.00236064) 13643
(0.012335 0.00620243 0.00236511) 13644
(0.0128752 0.00619588 0.00236719) 13645
(0.0133625 0.00619829 0.0023671) 13646
(0.0138018 0.00620793 0.0023651) 13647
(0.0182843 0.00623063 0.00236037) 13656
(0.0188215 0.00622608 0.00236551) 13657
(0.0193389 0.00621879 0.00236652) 13658
(0.0198644 0.00620911 0.0023653) 13659
(0.0204094 0.00619684 0.00236005) 13660
(0.0209367 0.00618593 0.00234936) 13661
(0.0214329 0.00617919 0.00233771) 13662
(0.00550571 0.00582915 0.00187602) 13751
(0.00598776 0.00582761 0.00186642) 13751
(0.00645155 0.00582691 0.0018614) 13752
(0.00689031 0.00583201 0.00186021) 13753
(0.00545389 0.00558226 0.00171495) 13810
(0.00588075 0.00558754 0.00170826) 13811
(0.00629692 0.00559036 0.0017035) 13812
(0.00609121 0.00441752 0.00168774) 14052
(0.00648583 0.00440544 0.00168488) 14052
(0.00687733 0.00439766 0.00168211) 14053
(0.00727405 0.00439115 0.00167804) 14054
(0.00768741 0.00438715 0.00167329) 14055
(0.00570127 0.00422184 0.00180536) 14111
(0.00570127 0.00422184 0.00180536) 14111
(0.00570127 0.00422184 0.00180536) 14111
(0.00612868 0.00418662 0.00181936) 14112
(0.00654949 0.00417188 0.00181968) 14113
(0.00695091 0.00416346 0.00181636) 14113
(0.00733813 0.00415344 0.00181345) 14114
(0.00773641 0.0041446 0.00181117) 14115
(0.0119935 0.00417907 0.00184499) 14123
(0.0124652 0.00418267 0.0018471) 14124
(0.012903 0.00418318 0.00184538) 14125
(0.00548663 0.00399201 0.00201726) 14170
(0.0059355 0.00397949 0.00202533) 14171
(0.00635263 0.00396872 0.00202766) 14172
(0.011248 0.00362422 0.00289181) 14362
(0.0118013 0.00363477 0.00289356) 14363
(0.0123811 0.00364848 0.00289531) 14364
(0.0129297 0.00365711 0.00289555) 14365
(0.0134209 0.00365728 0.00289433) 14366
(0.013853 0.0036504 0.00289244) 14367
(0.00558086 0.00358023 0.00317054) 14411
(0.00600831 0.00358264 0.00320015) 14412
(0.011401 0.00359824 0.00319173) 14422
(0.0119674 0.00360988 0.00319403) 14423
(0.0125356 0.00362173 0.00319444) 14425
(0.0130608 0.00362747 0.00319358) 14426
(0.0135523 0.00362778 0.0031928) 14427
(0.0140098 0.00362368 0.00319311) 14428
(0.0144448 0.00361657 0.00319459) 14428
(0.00559098 0.00375066 0.00347241) 14471
(0.00559098 0.00375066 0.00347241) 14471
(0.00559098 0.00375066 0.00347241) 14471
(0.00586644 0.00373927 0.00354101) 14471
(0.00631432 0.00371999 0.00355512) 14472
(0.00686939 0.0036991 0.0035275) 14473
(0.00744879 0.00367182 0.00349603) 14474
(0.00795228 0.00364589 0.00347925) 14475
(0.00523098 0.00385047 0.00373835) 14530
(0.00523098 0.00385047 0.00373835) 14530
(0.00523098 0.00385047 0.00373835) 14530
(0.00552767 0.0038471 0.00378321) 14531
(0.00591438 0.00382588 0.00377716) 14531
(0.00641889 0.00379878 0.00375879) 14532
(0.0070754 0.00376513 0.00373085) 14534
(0.0051402 0.00401589 0.00394645) 14590
(0.00565519 0.0040571 0.00397059) 14591
(0.00619327 0.00404197 0.00397437) 14592
(0.00582855 0.00474294 0.00439247) 14771
(0.00556022 0.00502305 0.0044182) 14831
(0.00604128 0.00501686 0.00442799) 14832
(0.00648945 0.00501017 0.00443596) 14832
(0.0068999 0.00500975 0.00444283) 14833
(0.00728737 0.00501104 0.00445018) 14834
(0.00544498 0.00528874 0.00437942) 14890
(0.00681763 0.00528375 0.00440538) 14893
(0.00553491 0.00635601 0.00342138) 15191
(0.00599415 0.00635981 0.00341307) 15191
(0.00634943 0.00637226 0.00340354) 15192
(0.00564611 0.00643508 0.00312701) 15251
(0.00564611 0.00643508 0.00312701) 15251
(0.00564611 0.00643508 0.00312701) 15251
(0.00612041 0.00643119 0.00313557) 15252
(0.00656193 0.00643508 0.00312966) 15253
(0.00699807 0.00643883 0.00312548) 15253
(0.00743101 0.00644412 0.00312512) 15254
(0.00786202 0.00644927 0.0031299) 15255
(0.00291858 0.00639669 0.00280629) 13505
(0.00230093 0.00646963 0.00282633) 13504
(0.00351938 0.00640565 0.00275918) 13507
(0.00426723 0.00636328 0.00263591) 13568
(0.00450653 0.00638589 0.00261524) 13569
(0.00494164 0.00636415 0.00276391) 13509
(0.00493857 0.00582147 0.00190947) 13749
(0.00477725 0.00554118 0.00173996) 13809
(0.00492698 0.00444153 0.0015996) 5709
(0.004833 0.00425439 0.00169752) 5709
(0.00526324 0.00427096 0.00184261) 14110
(0.00372477 0.0036515 0.00347781) 14467
(0.0050964 0.00351297 0.00321017) 5410
(0.00490529 0.00372672 0.00352628) 14469
(0.00164242 0.00492475 0.00444056) 14823
(0.00321993 0.0049399 0.00436713) 14826
(0.00407458 0.0053281 0.00431536) 14888
(0.00471403 0.00531972 0.00432033) 14889
(0.0014338 0.00649692 0.00292033) 6122
(0.00299953 0.00649974 0.00287638) 6125
(0.00449444 0.00641553 0.00272409) 13568
(0.00501032 0.0064612 0.00296513) 13510
(0.020807 0.00303065 0.0021674) 521
(0.0212965 0.00709104 0.00376595) 23862
(0.0212857 0.00690487 0.00361539) 2022
(0.0228086 0.00701002 0.00354652) 23505
(0.0126114 0.00647718 0.00416819) 6685
(0.0136234 0.00643725 0.00413823) 6687
(0.0143983 0.00641303 0.00412655) 6688
(0.0150355 0.00639884 0.00411994) 6690
(0.0155794 0.00639341 0.00411467) 6691
(0.0160699 0.0063921 0.00411224) 6692
(0.0165478 0.00639267 0.00410853) 6693
(0.0170447 0.00639195 0.00410315) 6694
(0.0175672 0.00638571 0.00409946) 6695
(0.0180771 0.00637759 0.00409825) 6696
(0.018544 0.0063718 0.00409886) 6697
(0.0206082 0.00321257 0.00331365) 821
(0.0217213 0.00644808 0.00202371) 13423
(0.0236563 0.00659296 0.00223543) 6107
(0.0246943 0.0066527 0.00223737) 6109
(0.0215758 0.00663562 0.00416545) 6643
(0.023745 0.00667594 0.00411615) 1967
(0.0203889 0.00640565 0.00122474) 6820
(0.0215413 0.00636857 0.00121989) 6823
(0.020869 0.00359079 0.0045913) 7181
(0.0225369 0.00359666 0.00460458) 7185
(0.0233982 0.00365145 0.00468132) 7186
(0.0208977 0.00339838 0.00163766) 401
(0.0228294 0.00338988 0.00168162) 465
(0.0214317 0.00610152 0.00473971) 12222
(0.021221 0.0057951 0.00501286) 12582
(0.021221 0.0057951 0.00501286) 12582
(0.021221 0.0057951 0.00501286) 12582
(0.0230021 0.00580479 0.00499666) 12586
(0.0230021 0.00580479 0.00499666) 12586
(0.0230021 0.00580479 0.00499666) 12586
(0.0238768 0.0058773 0.00497463) 12587
(0.0211196 0.00397019 0.0048415) 10542
(0.0226923 0.00397792 0.00487503) 10545
(0.0215177 0.00379779 0.00141808) 12763
(0.0240888 0.00381077 0.0014001) 12768
(0.0217565 0.00415341 0.00126341) 11503
(0.0242579 0.00410193 0.00122589) 11508
(0.0213804 0.00449905 0.0011323) 9822
(0.0211621 0.00481867 0.00097724) 11622
(0.0229117 0.00475888 0.000965904) 11625
(0.0207338 0.00564815 0.00101019) 12161
(0.0205914 0.0060014 0.00107712) 12281
(0.0221797 0.00602361 0.00108478) 12464
(0.0212308 0.0053437 0.000901653) 12102
(0.0230491 0.00529834 0.000904664) 10126
(0.0208689 0.00522167 0.00517804) 11441
(0.0223704 0.0052139 0.00516971) 11444
(0.0232508 0.00528791 0.00517805) 11446
(0.021577 0.0038787 0.00112092) 13003
(0.0216451 0.0033019 0.00279667) 13303
(0.0226447 0.00306638 0.00317436) 765
(0.0248782 0.00305048 0.00314004) 769
(0.0252729 0.00300275 0.00314901) 770
(0.0207977 0.00672972 0.00172392) 2501
(0.0207977 0.00672972 0.00172392) 2501
(0.0207977 0.00672972 0.00172392) 2501
(0.0230208 0.00669969 0.00179738) 2446
(0.0242363 0.00669276 0.00178055) 2448
(0.0231612 0.00628881 0.00174436) 13486
(0.00643335 0.0064433 0.00288405) 13512
(0.00691773 0.00644425 0.00287978) 13513
(0.00738961 0.0064465 0.00287305) 13514
(0.0078304 0.00645038 0.00286597) 13515
(0.00534601 0.00633496 0.00252323) 13570
(0.00579511 0.00635927 0.00255653) 13571
(0.0117598 0.00621245 0.00236048) 13643
(0.0123116 0.00620284 0.00236498) 13644
(0.0128531 0.00619606 0.00236716) 13645
(0.0133423 0.0061981 0.00236709) 13646
(0.0137831 0.00620749 0.0023652) 13647
(0.0182594 0.00623088 0.00236024) 13656
(0.0187982 0.00622633 0.00236541) 13657
(0.0193162 0.00621918 0.00236658) 13658
(0.0198409 0.00620966 0.0023655) 13659
(0.0203856 0.00619745 0.00236049) 13660
(0.0209142 0.00618644 0.00234997) 13661
(0.0214114 0.00617955 0.00233835) 13662
(0.00548481 0.00582895 0.00187602) 13750
(0.0059656 0.00582771 0.00186645) 13751
(0.00642887 0.00582675 0.00186123) 13752
(0.0068691 0.00583166 0.00186009) 13753
(0.00543227 0.00558195 0.00171485) 13810
(0.00585871 0.00558725 0.00170813) 13811
(0.00627498 0.00559024 0.00170343) 13812
(0.0060697 0.00441847 0.00168745) 14052
(0.00646369 0.0044058 0.00168472) 14052
(0.00685582 0.00439795 0.00168206) 14053
(0.00725305 0.00439141 0.00167816) 14054
(0.00766583 0.00438731 0.00167337) 14055
(0.00568359 0.00422379 0.00180392) 14111
(0.00568359 0.00422379 0.00180392) 14111
(0.00568359 0.00422379 0.00180392) 14111
(0.00610697 0.0041876 0.00181885) 14112
(0.0065269 0.00417219 0.00181958) 14113
(0.00692947 0.00416377 0.00181634) 14113
(0.0073177 0.00415386 0.00181349) 14114
(0.00771546 0.00414477 0.00181128) 14115
(0.0119713 0.0041788 0.00184481) 14123
(0.0124449 0.00418251 0.00184704) 14124
(0.0128832 0.0041831 0.00184541) 14125
(0.0054657 0.0039922 0.00201636) 14170
(0.00591308 0.00397994 0.00202477) 14171
(0.00632992 0.00396906 0.00202733) 14172
(0.0112247 0.00362388 0.00289173) 14362
(0.0117771 0.00363423 0.00289349) 14363
(0.0123565 0.00364792 0.00289525) 14364
(0.0129072 0.00365683 0.00289555) 14365
(0.0134009 0.00365734 0.00289439) 14366
(0.0138352 0.00365073 0.00289252) 14367
(0.00556222 0.00358007 0.00316888) 14411
(0.00598835 0.00358212 0.00319941) 14411
(0.0113759 0.00359778 0.00319158) 14422
(0.0119422 0.00360931 0.00319404) 14423
(0.0125115 0.00362129 0.0031945) 14425
(0.0130384 0.00362726 0.00319365) 14426
(0.013531 0.00362776 0.00319285) 14427
(0.0139899 0.00362386 0.00319316) 14427
(0.0144251 0.00361682 0.00319452) 14428
(0.00558631 0.00374792 0.00346732) 14471
(0.00558631 0.00374792 0.00346732) 14471
(0.00558631 0.00374792 0.00346732) 14471
(0.00585163 0.00373887 0.0035383) 14471
(0.00629197 0.00372036 0.00355495) 14472
(0.00684258 0.0037 0.00352896) 14473
(0.0074228 0.00367301 0.00349725) 14474
(0.00792984 0.00364685 0.00347983) 14475
(0.005221 0.00384816 0.00373656) 14530
(0.005221 0.00384816 0.00373656) 14530
(0.005221 0.00384816 0.00373656) 14530
(0.00551309 0.00384663 0.00378231) 14531
(0.00589678 0.00382614 0.00377721) 14531
(0.00639372 0.0037998 0.00375979) 14532
(0.00704401 0.00376647 0.00373213) 14534
(0.00511947 0.00401174 0.00394493) 14590
(0.00563015 0.00405553 0.00396997) 14591
(0.00616866 0.00404257 0.00397367) 14592
(0.00580782 0.00474325 0.00439207) 14771
(0.00553944 0.00502291 0.00441798) 14831
(0.00601859 0.00501706 0.00442783) 14832
(0.00646591 0.00501025 0.00443599) 14832
(0.00687747 0.00500964 0.00444283) 14833
(0.00726676 0.00501108 0.00444996) 14834
(0.0054216 0.0052887 0.00437935) 14890
(0.00594666 0.00528782 0.00438695) 14891
(0.00679647 0.00528354 0.00440533) 14893
(0.0059737 0.00635959 0.00341355) 15191
(0.00633062 0.00637189 0.00340392) 15192
(0.00562375 0.0064359 0.00312577) 15251
(0.00562375 0.0064359 0.00312577) 15251
(0.00562375 0.0064359 0.00312577) 15251
(0.00609841 0.00643129 0.00313573) 15252
(0.00653947 0.00643508 0.00313015) 15253
(0.0069759 0.0064387 0.00312576) 15253
(0.00740907 0.00644393 0.00312514) 15254
(0.00783984 0.00644915 0.00312976) 15255
(0.00300517 0.00638209 0.00279605) 13506
(0.00236063 0.00646588 0.00282251) 13504
(0.00342625 0.00641393 0.00277064) 13506
(0.00425573 0.00636191 0.00263691) 13568
(0.00449275 0.00639056 0.00261664) 13568
(0.00492633 0.00636344 0.00275908) 13569
(0.00491914 0.00582073 0.00191186) 13749
(0.00475827 0.00553985 0.00174165) 13809
(0.0049361 0.00443506 0.00159656) 5709
(0.00469542 0.00425763 0.00168991) 5709
(0.00524968 0.00427319 0.00184399) 14110
(0.00307196 0.00360215 0.00345688) 14466
(0.00509561 0.00350488 0.00321061) 5410
(0.00489097 0.00371675 0.00352421) 14469
(0.00158662 0.00492475 0.0044418) 14823
(0.00311629 0.00493878 0.00437589) 14826
(0.00405333 0.00532711 0.00431707) 14888
(0.00469504 0.00531967 0.00432026) 14889
(0.00218277 0.00649496 0.00290749) 6124
(0.004472 0.00641318 0.00272418) 13568
(0.00499595 0.00646054 0.00295705) 13509
(0.0207611 0.00303171 0.00216533) 521
(0.0212762 0.00708687 0.00377097) 23862
(0.0212308 0.006901 0.00361961) 2022
(0.0227713 0.0070052 0.00354945) 23505
(0.0125714 0.00647908 0.00417) 6685
(0.0135947 0.00643826 0.00413874) 6687
(0.0143759 0.00641364 0.00412655) 6688
(0.0150168 0.00639899 0.00412001) 6690
(0.0155635 0.00639332 0.00411459) 6691
(0.0160551 0.00639205 0.00411191) 6692
(0.0165327 0.00639259 0.00410827) 6693
(0.0170282 0.0063919 0.0041031) 6694
(0.0175502 0.00638581 0.0040993) 6695
(0.0180609 0.00637765 0.00409804) 6696
(0.0185307 0.00637173 0.00409847) 6697
(0.0215395 0.00646919 0.00202727) 13423
(0.0236119 0.00658762 0.00223128) 6107
(0.0246637 0.00665093 0.00223972) 6109
(0.0214822 0.00663414 0.00416966) 6642
(0.0236837 0.00667363 0.00411713) 1967
(0.0203576 0.00640713 0.00122526) 6820
(0.0215172 0.00637197 0.0012229) 6823
(0.0208126 0.00359035 0.00459089) 7181
(0.0224968 0.00359562 0.00460187) 7184
(0.0233962 0.00364574 0.0046748) 7186
(0.0208281 0.00339988 0.00163326) 401
(0.0227808 0.00339174 0.00168076) 465
(0.0213636 0.00610021 0.00474113) 12222
(0.0230001 0.00613474 0.00472317) 12226
(0.021151 0.00579492 0.00501408) 12582
(0.021151 0.00579492 0.00501408) 12582
(0.021151 0.00579492 0.00501408) 12582
(0.0229577 0.00580241 0.00499652) 12585
(0.0229577 0.00580241 0.00499652) 12585
(0.0229577 0.00580241 0.00499652) 12585
(0.0238704 0.00587102 0.00497664) 12587
(0.0210656 0.00396848 0.0048395) 10542
(0.0226527 0.00397724 0.00487219) 10545
(0.0214128 0.00379829 0.00141633) 12762
(0.0240342 0.00381365 0.00140205) 12768
(0.021659 0.00415668 0.00126344) 11503
(0.0242134 0.00410574 0.0012287) 11508
(0.0213123 0.0045035 0.00113143) 9822
(0.0210951 0.00482131 0.000977025) 11622
(0.0228641 0.0047622 0.000967501) 11625
(0.0206812 0.00565076 0.00101182) 12161
(0.0205427 0.0060008 0.00107717) 12281
(0.0221393 0.00602404 0.00108665) 12464
(0.0211532 0.00534723 0.000901263) 12102
(0.0230035 0.00529989 0.000906817) 10126
(0.0208181 0.00522144 0.00517859) 11441
(0.0223321 0.00521255 0.00516889) 11444
(0.0232451 0.00528044 0.00517723) 11446
(0.0215376 0.00388173 0.00112066) 13003
(0.0214471 0.0032902 0.00279158) 13302
(0.0225247 0.00306654 0.00317431) 765
(0.0248511 0.00305338 0.00314093) 769
(0.0252674 0.00300465 0.00314652) 770
(0.020736 0.00673216 0.0017223) 2501
(0.0229575 0.00669974 0.00179724) 2445
(0.0242238 0.0066941 0.00178538) 2448
(0.023134 0.00628509 0.00174341) 13486
(0.0238607 0.00633573 0.00171589) 13487
(0.00641016 0.00644335 0.00288399) 13512
(0.00689425 0.00644422 0.00288008) 13513
(0.00736687 0.0064464 0.00287342) 13514
(0.00780855 0.00645025 0.0028662) 13515
(0.00532442 0.00633421 0.00252225) 13570
(0.00576934 0.00635906 0.00255499) 13571
(0.0117368 0.00621281 0.00236031) 13643
(0.0122882 0.00620326 0.00236485) 13644
(0.012831 0.00619625 0.00236713) 13645
(0.013322 0.00619792 0.00236708) 13646
(0.0137644 0.00620707 0.00236529) 13647
(0.0182344 0.00623114 0.00236012) 13656
(0.0187749 0.00622657 0.0023653) 13657
(0.0192936 0.00621956 0.00236663) 13658
(0.0198175 0.0062102 0.00236569) 13659
(0.0203619 0.00619806 0.00236091) 13660
(0.0208916 0.00618695 0.00235058) 13661
(0.0213899 0.00617992 0.00233899) 13662
(0.00546395 0.00582874 0.00187602) 13750
(0.00594351 0.0058278 0.00186649) 13751
(0.00640616 0.0058266 0.00186106) 13752
(0.00684779 0.00583132 0.00185996) 13753
(0.00541059 0.00558162 0.00171477) 13810
(0.00583674 0.00558696 0.00170801) 13811
(0.00625304 0.00559012 0.00170337) 13812
(0.00604827 0.00441948 0.00168713) 14052
(0.00644158 0.00440616 0.00168455) 14052
(0.00683426 0.00439824 0.00168201) 14053
(0.00723203 0.00439166 0.00167826) 14054
(0.00764432 0.00438748 0.00167345) 14055
(0.0056662 0.00422573 0.00180244) 14111
(0.0056662 0.00422573 0.00180244) 14111
(0.0056662 0.00422573 0.00180244) 14111
(0.00608542 0.00418863 0.00181831) 14112
(0.00650434 0.00417252 0.00181948) 14113
(0.00690793 0.00416407 0.00181632) 14113
(0.00729725 0.00415427 0.00181352) 14114
(0.00769455 0.00414496 0.00181139) 14115
(0.0119491 0.00417852 0.00184462) 14123
(0.0124245 0.00418235 0.00184698) 14124
(0.0128634 0.00418301 0.00184545) 14125
(0.0054449 0.00399232 0.00201548) 14170
(0.00589079 0.00398039 0.00202419) 14171
(0.00630723 0.0039694 0.00202701) 14172
(0.0112013 0.00362354 0.00289164) 14362
(0.0117529 0.00363371 0.00289341) 14363
(0.0123319 0.00364735 0.00289519) 14364
(0.0128846 0.00365653 0.00289555) 14365
(0.0133807 0.00365738 0.00289444) 14366
(0.0138172 0.00365104 0.00289261) 14367
(0.0055435 0.00357995 0.00316714) 14411
(0.00596841 0.00358159 0.00319865) 14411
(0.0113509 0.00359732 0.00319144) 14422
(0.0119171 0.00360875 0.00319405) 14423
(0.0124873 0.00362084 0.00319456) 14424
(0.0130159 0.00362705 0.00319373) 14426
(0.0135096 0.00362773 0.0031929) 14427
(0.01397 0.00362403 0.00319321) 14427
(0.0144055 0.00361708 0.00319446) 14428
(0.00558109 0.00374547 0.00346223) 14471
(0.00558109 0.00374547 0.00346223) 14471
(0.00558109 0.00374547 0.00346223) 14471
(0.00583736 0.0037383 0.00353554) 14471
(0.00626984 0.00372069 0.00355464) 14472
(0.0068159 0.00370088 0.00353038) 14473
(0.00739671 0.0036742 0.00349849) 14474
(0.00790726 0.00364783 0.00348043) 14475
(0.0052113 0.00384583 0.0037348) 14530
(0.0052113 0.00384583 0.0037348) 14530
(0.0052113 0.00384583 0.0037348) 14530
(0.00549864 0.00384613 0.00378132) 14530
(0.0058794 0.00382638 0.00377727) 14531
(0.00636901 0.00380078 0.00376072) 14532
(0.00701287 0.00376782 0.00373343) 14534
(0.00509896 0.00400755 0.00394345) 14590
(0.00560519 0.00405388 0.00396941) 14591
(0.00614395 0.00404305 0.0039729) 14592
(0.00578704 0.00474353 0.00439167) 14771
(0.0055187 0.00502273 0.00441776) 14831
(0.005996 0.00501726 0.00442767) 14831
(0.00644237 0.00501033 0.00443602) 14832
(0.00685493 0.00500955 0.00444283) 14833
(0.00724606 0.00501109 0.00444975) 14834
(0.00539827 0.00528867 0.00437929) 14890
(0.00592246 0.00528793 0.00438683) 14891
(0.00677516 0.00528336 0.00440528) 14893
(0.00595316 0.00635938 0.00341403) 15191
(0.0063118 0.00637152 0.00340431) 15192
(0.00560126 0.00643659 0.00312423) 15251
(0.00560126 0.00643659 0.00312423) 15251
(0.00560126 0.00643659 0.00312423) 15251
(0.00607647 0.00643147 0.00313584) 15252
(0.00651703 0.00643508 0.00313064) 15253
(0.00695371 0.00643858 0.00312604) 15253
(0.00738712 0.00644374 0.00312517) 15254
(0.00781774 0.00644902 0.00312962) 15255
(0.00249318 0.00645864 0.00281721) 13504
(0.00330828 0.00642385 0.00278425) 13506
(0.00424401 0.00636073 0.00263816) 13568
(0.00448019 0.00639338 0.00261853) 13568
(0.00491121 0.00636252 0.00275426) 13569
(0.0048993 0.0058199 0.0019141) 13749
(0.00473878 0.00553883 0.0017433) 13809
(0.00294783 0.00427971 0.00166735) 5705
(0.00494496 0.00442914 0.00159426) 5709
(0.00449122 0.00425982 0.00168967) 5708
(0.00523328 0.00427513 0.00184478) 14110
(0.00218082 0.00356083 0.00344632) 5344
(0.00509117 0.00349725 0.00321123) 5410
(0.00486508 0.00370708 0.00352504) 14469
(0.00154116 0.00492483 0.00444271) 14823
(0.00301224 0.00493762 0.00438469) 14826
(0.00403301 0.0053256 0.00431927) 14888
(0.00467576 0.00531952 0.00432019) 14889
(0.004445 0.00641174 0.00272346) 13568
(0.00498968 0.0064518 0.00294951) 13509
(0.020715 0.00303265 0.00216337) 521
(0.0212553 0.0070829 0.00377588) 23862
(0.022118 0.00720157 0.00364949) 23504
(0.0211759 0.00689723 0.00362391) 2022
(0.0227322 0.00700042 0.00355232) 23505
(0.012531 0.00648104 0.0041719) 6685
(0.0135657 0.00643933 0.00413928) 6687
(0.0143533 0.00641429 0.00412656) 6688
(0.014998 0.00639916 0.0041201) 6689
(0.0155473 0.00639327 0.00411454) 6691
(0.0160402 0.00639201 0.00411162) 6692
(0.0165176 0.00639249 0.00410807) 6693
(0.0170117 0.00639187 0.00410305) 6694
(0.0175333 0.00638593 0.00409913) 6695
(0.0180446 0.00637774 0.00409784) 6696
(0.0185172 0.00637168 0.0040981) 6697
(0.0230734 0.00327683 0.00332691) 5446
(0.0213382 0.00649808 0.00203553) 13422
(0.0235669 0.00658209 0.00222675) 6107
(0.0246311 0.00664918 0.00224192) 6109
(0.0213907 0.0066327 0.00417411) 6642
(0.0236199 0.00667147 0.00411807) 1967
(0.0203263 0.00640862 0.00122583) 6820
(0.0214922 0.00637521 0.00122573) 6822
(0.0207562 0.00358999 0.00459066) 7181
(0.0224551 0.00359471 0.00459932) 7184
(0.0233926 0.00364047 0.00466856) 7186
(0.0207608 0.00340167 0.00162861) 401
(0.0227304 0.00339352 0.00167996) 465
(0.0212955 0.00609899 0.00474271) 12222
(0.0229596 0.0061317 0.0047234) 12225
(0.0210816 0.00579481 0.00501538) 12582
(0.0210816 0.00579481 0.00501538) 12582
(0.0210816 0.00579481 0.00501538) 12582
(0.0229117 0.00580017 0.00499637) 12585
(0.0229117 0.00580017 0.00499637) 12585
(0.0229117 0.00580017 0.00499637) 12585
(0.0238624 0.00586505 0.00497844) 12587
(0.0210123 0.00396674 0.00483758) 10542
(0.0226115 0.00397664 0.00486944) 10545
(0.021308 0.00379873 0.00141438) 12762
(0.0239736 0.00381598 0.00140411) 12767
(0.0215622 0.00415991 0.00126334) 11503
(0.0241626 0.00410955 0.00123149) 11508
(0.0212451 0.00450818 0.00113041) 9822
(0.0210299 0.00482422 0.000976741) 11622
(0.0228149 0.00476548 0.000969084) 11625
(0.0206299 0.00565348 0.00101352) 12161
(0.0204959 0.00600029 0.00107728) 12280
(0.0220976 0.00602436 0.0010884) 12464
(0.0210817 0.00535127 0.000901129) 12102
(0.0229561 0.00530142 0.000908861) 10125
(0.0207668 0.00522125 0.00517922) 11441
(0.0222927 0.00521139 0.00516812) 11444
(0.0232376 0.00527343 0.00517636) 11446
(0.0214979 0.00388469 0.00112041) 13002
(0.0212559 0.003278 0.00278686) 13302
(0.0224093 0.00306684 0.00317394) 764
(0.0248224 0.00305615 0.00314197) 769
(0.0252611 0.00300676 0.00314422) 770
(0.0206765 0.00673451 0.00172084) 2501
(0.0228927 0.00669983 0.00179698) 2445
(0.0242095 0.00669522 0.00179002) 2448
(0.0231045 0.0062813 0.00174211) 13486
(0.0238278 0.00633553 0.00171898) 13487
(0.00638697 0.00644341 0.00288391) 13512
(0.00687078 0.0064442 0.00288037) 13513
(0.0073441 0.00644631 0.00287379) 13514
(0.00778673 0.00645012 0.00286644) 13515
(0.00530303 0.00633346 0.00252128) 13570
(0.00574359 0.00635885 0.00255346) 13571
(0.0117139 0.00621316 0.00236014) 13643
(0.0122648 0.00620367 0.00236471) 13644
(0.0128089 0.00619646 0.0023671) 13645
(0.0133016 0.00619776 0.00236706) 13646
(0.0137457 0.00620666 0.00236538) 13647
(0.0182094 0.00623141 0.00236) 13656
(0.0187515 0.00622683 0.00236519) 13657
(0.0192709 0.00621995 0.00236668) 13658
(0.0197942 0.00621073 0.00236588) 13659
(0.0203381 0.00619867 0.00236133) 13660
(0.020869 0.00618748 0.00235119) 13661
(0.0213684 0.00618029 0.00233963) 13662
(0.00544313 0.00582852 0.00187603) 13750
(0.0059215 0.00582791 0.00186653) 13751
(0.00638343 0.00582645 0.00186089) 13752
(0.00682637 0.00583099 0.00185982) 13753
(0.00538885 0.00558129 0.00171469) 13810
(0.00581483 0.00558666 0.00170789) 13811
(0.00623111 0.00559001 0.00170332) 13812
(0.00602692 0.00442053 0.0016868) 14052
(0.00641951 0.00440654 0.00168438) 14052
(0.00681263 0.00439853 0.00168196) 14053
(0.007211 0.00439192 0.00167836) 14054
(0.00762286 0.00438766 0.00167355) 14055
(0.00564906 0.00422767 0.00180089) 14111
(0.00564906 0.00422767 0.00180089) 14111
(0.00564906 0.00422767 0.00180089) 14111
(0.00606404 0.00418969 0.00181773) 14112
(0.00648182 0.00417287 0.00181936) 14112
(0.00688629 0.00416437 0.00181629) 14113
(0.00727677 0.00415468 0.00181355) 14114
(0.0076737 0.00414517 0.0018115) 14115
(0.0119267 0.00417825 0.00184443) 14123
(0.0124041 0.0041822 0.00184692) 14124
(0.0128437 0.00418292 0.00184548) 14125
(0.00542422 0.00399237 0.00201463) 14170
(0.00586862 0.00398085 0.0020236) 14171
(0.00628457 0.00396975 0.00202668) 14172
(0.0111778 0.00362321 0.00289156) 14362
(0.0117288 0.00363319 0.00289333) 14363
(0.0123072 0.00364679 0.00289512) 14364
(0.012862 0.00365622 0.00289557) 14365
(0.0133604 0.00365741 0.0028945) 14366
(0.0137992 0.00365135 0.00289269) 14367
(0.00552471 0.00357984 0.00316533) 14411
(0.00594849 0.00358106 0.00319784) 14411
(0.0113258 0.00359687 0.00319129) 14422
(0.0118919 0.00360819 0.00319406) 14423
(0.0124629 0.00362037 0.00319458) 14424
(0.0129935 0.00362684 0.00319384) 14425
(0.0134882 0.00362769 0.00319296) 14426
(0.01395 0.0036242 0.00319327) 14427
(0.0143859 0.00361734 0.0031944) 14428
(0.0148389 0.0036104 0.00319628) 14429
(0.00557617 0.00374303 0.00345701) 14471
(0.00557617 0.00374303 0.00345701) 14471
(0.00557617 0.00374303 0.00345701) 14471
(0.00582358 0.00373761 0.00353273) 14471
(0.00624798 0.003721 0.00355417) 14472
(0.00678929 0.00370171 0.00353172) 14473
(0.00737054 0.00367539 0.00349976) 14474
(0.00788454 0.00364882 0.00348105) 14475
(0.00520196 0.00384349 0.00373307) 14530
(0.00520196 0.00384349 0.00373307) 14530
(0.00520196 0.00384349 0.00373307) 14530
(0.00548413 0.00384563 0.00378015) 14530
(0.00586236 0.00382657 0.00377745) 14531
(0.00634464 0.0038017 0.0037616) 14532
(0.00698196 0.00376916 0.00373474) 14533
(0.00507862 0.00400329 0.00394204) 14590
(0.00558023 0.0040522 0.00396886) 14591
(0.00611918 0.00404344 0.00397211) 14592
(0.00576623 0.00474376 0.00439126) 14771
(0.00549798 0.00502254 0.00441755) 14830
(0.00597351 0.00501744 0.00442749) 14831
(0.00641885 0.00501043 0.00443604) 14832
(0.0068323 0.00500945 0.00444284) 14833
(0.00722528 0.00501109 0.00444956) 14834
(0.00537501 0.00528865 0.00437924) 14890
(0.00589824 0.00528809 0.00438672) 14891
(0.0067537 0.00528322 0.00440525) 14893
(0.00593251 0.00635918 0.0034145) 15191
(0.00629295 0.00637116 0.00340471) 15192
(0.00557875 0.00643735 0.00312262) 15251
(0.00557875 0.00643735 0.00312262) 15251
(0.00557875 0.00643735 0.00312262) 15251
(0.0060545 0.00643166 0.00313589) 15252
(0.00649459 0.00643509 0.00313113) 15252
(0.00693151 0.00643847 0.00312633) 15253
(0.00736517 0.00644355 0.00312523) 15254
(0.00779572 0.00644888 0.00312948) 15255
(0.00259908 0.00645073 0.0028115) 13505
(0.00325602 0.00642829 0.00278875) 13506
(0.00423164 0.00635959 0.00263958) 13568
(0.00446881 0.00639394 0.00261969) 13568
(0.00488933 0.0063614 0.00274695) 13569
(0.00487901 0.00581903 0.00191635) 13749
(0.00494741 0.00442244 0.00159209) 5709
(0.00425712 0.00425801 0.00169533) 5708
(0.00522131 0.00427698 0.00184545) 14110
(0.00161988 0.00356176 0.00344905) 5343
(0.00508793 0.00349249 0.00321221) 5410
(0.00308415 0.00364681 0.00361022) 14526
(0.00484915 0.00370295 0.00352609) 14469
(0.00151143 0.00492476 0.0044431) 14823
(0.00290425 0.00493663 0.00439398) 14825
(0.00401392 0.00532302 0.00432257) 14888
(0.00465617 0.00531929 0.00432014) 14889
(0.00441983 0.00640969 0.00272376) 13568
(0.00497505 0.00645114 0.00294203) 13509
(0.0206688 0.00303344 0.00216148) 521
(0.0212338 0.00707909 0.00378065) 23862
(0.0221105 0.00719285 0.00365912) 23504
(0.0211211 0.00689353 0.00362832) 2022
(0.0226915 0.00699566 0.00355514) 2025
(0.0124897 0.00648308 0.00417391) 6684
(0.0135363 0.00644042 0.00413984) 6687
(0.0143305 0.00641495 0.00412658) 6688
(0.0149791 0.00639935 0.00412019) 6689
(0.015531 0.00639322 0.00411451) 6691
(0.0160253 0.00639195 0.00411135) 6692
(0.0165025 0.00639238 0.00410788) 6693
(0.0169953 0.00639183 0.00410299) 6693
(0.0175163 0.00638606 0.00409895) 6695
(0.0180284 0.00637783 0.00409764) 6696
(0.0185036 0.00637165 0.00409774) 6697
(0.0230128 0.00327807 0.00332635) 5446
(0.0211125 0.00653616 0.00204838) 13422
(0.0235217 0.00657635 0.00222191) 6107
(0.0245966 0.00664745 0.00224397) 6109
(0.0213014 0.00663127 0.00417879) 6642
(0.0235538 0.0066694 0.00411899) 1967
(0.020295 0.0064101 0.00122641) 6820
(0.0214664 0.00637826 0.00122837) 6822
(0.0206996 0.00358962 0.00459058) 7181
(0.0224117 0.00359389 0.00459693) 7184
(0.0233872 0.0036356 0.00466259) 7186
(0.0206959 0.00340374 0.00162367) 401
(0.0226785 0.00339521 0.00167917) 465
(0.0212281 0.00609782 0.00474439) 12222
(0.0229175 0.00612878 0.00472361) 12225
(0.0210131 0.00579471 0.00501671) 12582
(0.0210131 0.00579471 0.00501671) 12582
(0.0210131 0.00579471 0.00501671) 12582
(0.0228639 0.00579806 0.0049962) 12585
(0.0228639 0.00579806 0.0049962) 12585
(0.0228639 0.00579806 0.0049962) 12585
(0.0238528 0.00585938 0.00498003) 12587
(0.0209596 0.00396499 0.0048357) 10541
(0.0225688 0.00397608 0.00486678) 10545
(0.0212036 0.00379908 0.00141224) 12762
(0.0239065 0.00381759 0.0014062) 12767
(0.0214658 0.00416311 0.00126307) 11502
(0.0241044 0.00411327 0.00123423) 11508
(0.0211787 0.00451309 0.0011292) 9822
(0.0209663 0.00482744 0.000976385) 11621
(0.0227639 0.00476869 0.000970634) 11625
(0.0205798 0.00565625 0.00101528) 12161
(0.020451 0.00599984 0.00107744) 12280
(0.0220546 0.00602454 0.00109003) 12464
(0.0210167 0.00535573 0.00090128) 12102
(0.0229069 0.00530291 0.000910784) 10125
(0.0207153 0.00522107 0.00517991) 11441
(0.0222522 0.00521039 0.00516738) 11444
(0.0232283 0.00526684 0.00517545) 11446
(0.0214579 0.00388756 0.00112015) 13002
(0.0222952 0.00306714 0.00317323) 764
(0.0247914 0.00305873 0.00314312) 769
(0.0252538 0.00300906 0.0031421) 770
(0.0206184 0.0067367 0.00171945) 2501
(0.0228266 0.00669997 0.00179659) 2445
(0.0241934 0.00669611 0.00179445) 2448
(0.0230716 0.00627736 0.00174037) 13486
(0.0237954 0.00633522 0.00172207) 13487
(0.00636376 0.00644347 0.0028838) 13512
(0.00684733 0.00644418 0.00288064) 13513
(0.0073213 0.00644622 0.00287416) 13514
(0.00528185 0.0063327 0.0025203) 13570
(0.00571788 0.00635863 0.00255193) 13571
(0.0116911 0.00621351 0.00235997) 13643
(0.0122414 0.00620409 0.00236458) 13644
(0.0127866 0.00619669 0.00236707) 13645
(0.0132812 0.00619761 0.00236704) 13646
(0.0137269 0.00620625 0.00236546) 13647
(0.0181843 0.00623168 0.00235988) 13656
(0.018728 0.00622707 0.00236507) 13657
(0.0192482 0.00622033 0.00236673) 13658
(0.0197709 0.00621126 0.00236605) 13659
(0.0203143 0.00619928 0.00236174) 13660
(0.0208464 0.00618801 0.00235179) 13661
(0.0213468 0.00618067 0.00234026) 13662
(0.00542231 0.00582833 0.00187609) 13750
(0.00589953 0.00582797 0.00186655) 13751
(0.00636068 0.00582632 0.00186073) 13752
(0.00680483 0.00583065 0.00185966) 13753
(0.00536704 0.00558095 0.00171462) 13810
(0.00579299 0.00558635 0.00170778) 13811
(0.00620919 0.0055899 0.00170326) 13812
(0.00600564 0.00442163 0.00168644) 14052
(0.00639749 0.00440693 0.00168421) 14052
(0.00679095 0.00439882 0.00168189) 14053
(0.00718996 0.00439218 0.00167846) 14054
(0.00760145 0.00438785 0.00167364) 14055
(0.00563224 0.0042296 0.00179928) 14111
(0.00563224 0.0042296 0.00179928) 14111
(0.00563224 0.0042296 0.00179928) 14111
(0.00604283 0.0041908 0.00181712) 14112
(0.00645936 0.00417325 0.00181923) 14112
(0.00686456 0.00416466 0.00181626) 14113
(0.00725627 0.00415509 0.00181359) 14114
(0.00765289 0.00414539 0.00181161) 14115
(0.0119043 0.00417798 0.00184424) 14123
(0.0123837 0.00418203 0.00184685) 14124
(0.012824 0.00418284 0.00184552) 14125
(0.00540366 0.00399233 0.00201384) 14170
(0.00584658 0.0039813 0.002023) 14171
(0.00626196 0.0039701 0.00202636) 14172
(0.0111544 0.00362288 0.00289148) 14362
(0.0117047 0.00363269 0.00289326) 14363
(0.0122825 0.00364621 0.00289504) 14364
(0.0128392 0.0036559 0.00289558) 14365
(0.0133401 0.00365743 0.00289456) 14366
(0.0137811 0.00365164 0.00289278) 14367
(0.00550584 0.00357974 0.00316345) 14411
(0.0059286 0.00358052 0.00319702) 14411
(0.0113006 0.00359642 0.00319115) 14422
(0.0118667 0.00360764 0.00319407) 14423
(0.0124385 0.0036199 0.0031946) 14424
(0.012971 0.00362663 0.00319395) 14425
(0.0134667 0.00362764 0.00319302) 14426
(0.01393 0.00362436 0.00319332) 14427
(0.0143663 0.0036176 0.00319435) 14428
(0.014818 0.00361067 0.00319634) 14429
(0.00557167 0.00374037 0.00345182) 14471
(0.00557167 0.00374037 0.00345182) 14471
(0.00557167 0.00374037 0.00345182) 14471
(0.00581028 0.00373683 0.00352984) 14471
(0.00622638 0.00372129 0.00355361) 14472
(0.00676293 0.00370253 0.00353309) 14473
(0.00734427 0.00367656 0.00350105) 14474
(0.00786168 0.00364982 0.0034817) 14475
(0.00519279 0.00384113 0.00373135) 14530
(0.00519279 0.00384113 0.00373135) 14530
(0.00519279 0.00384113 0.00373135) 14530
(0.00546967 0.00384507 0.00377893) 14530
(0.00584553 0.00382673 0.00377758) 14531
(0.00632067 0.00380256 0.00376242) 14532
(0.00695124 0.00377049 0.00373606) 14533
(0.00505848 0.00399901 0.00394071) 14590
(0.00555524 0.00405042 0.00396827) 14591
(0.00609436 0.00404371 0.0039713) 14592
(0.00574536 0.00474394 0.00439086) 14771
(0.00547728 0.00502232 0.00441735) 14830
(0.00595112 0.00501762 0.00442731) 14831
(0.00639536 0.00501054 0.00443606) 14832
(0.00680958 0.00500937 0.00444286) 14833
(0.00720441 0.00501107 0.00444938) 14834
(0.00535182 0.00528863 0.00437918) 14890
(0.00587401 0.00528829 0.00438659) 14891
(0.00673209 0.00528311 0.00440522) 14893
(0.00591176 0.00635901 0.00341496) 15191
(0.00627407 0.0063708 0.00340512) 15192
(0.00555625 0.00643816 0.00312089) 15251
(0.00555625 0.00643816 0.00312089) 15251
(0.00555625 0.00643816 0.00312089) 15251
(0.00603247 0.00643187 0.00313588) 15252
(0.00647215 0.0064351 0.00313161) 15252
(0.00690928 0.00643837 0.00312663) 15253
(0.00734321 0.00644336 0.0031253) 15254
(0.00777375 0.00644873 0.00312935) 15255
(0.00272524 0.00644129 0.00280609) 13505
(0.00313817 0.00643774 0.00279948) 13506
(0.00421828 0.00635867 0.00264141) 13568
(0.00445744 0.00639334 0.00262026) 13568
(0.00487429 0.00636061 0.00274184) 13569
(0.00485816 0.00581811 0.0019184) 13749
(0.00494094 0.00441495 0.00159045) 5709
(0.00456649 0.00454774 0.00164932) 13989
(0.00385674 0.00425279 0.00170358) 14107
(0.00520977 0.00427862 0.00184576) 14110
(0.00117869 0.00357053 0.00345252) 5342
(0.00508282 0.00348821 0.00321348) 5410
(0.0048193 0.00369649 0.00353078) 14469
(0.00148938 0.00492472 0.00444323) 14822
(0.00279996 0.00493591 0.00440289) 14825
(0.00399608 0.00531871 0.00432708) 14887
(0.00463636 0.005319 0.00432009) 14889
(0.00439506 0.00640752 0.0027243) 13568
(0.00496057 0.00645054 0.00293433) 13509
(0.0206224 0.00303407 0.00215963) 521
(0.0219699 0.00299239 0.00221546) 33260
(0.021212 0.00707545 0.00378528) 23862
(0.0221021 0.00718444 0.00366834) 23504
(0.0210666 0.00688985 0.00363289) 2022
(0.0226493 0.00699091 0.00355792) 2025
(0.0124481 0.00648514 0.00417599) 6684
(0.0135067 0.00644153 0.00414044) 6687
(0.0143076 0.00641561 0.0041266) 6688
(0.01496 0.00639955 0.00412028) 6689
(0.0155147 0.00639319 0.00411446) 6691
(0.0160103 0.00639188 0.0041111) 6692
(0.0164874 0.00639226 0.00410771) 6692
(0.0169789 0.00639179 0.00410292) 6693
(0.0174992 0.0063862 0.00409877) 6694
(0.018012 0.00637793 0.00409744) 6696
(0.0184897 0.00637161 0.00409739) 6696
(0.0229518 0.0032792 0.00332585) 5445
(0.0234756 0.00657032 0.00221664) 6106
(0.0245602 0.00664572 0.00224584) 6109
(0.0212149 0.00662983 0.00418371) 6642
(0.0234855 0.00666742 0.00411988) 1966
(0.0202636 0.00641156 0.00122689) 6820
(0.0214398 0.00638116 0.00123084) 6822
(0.0206423 0.00358915 0.00459064) 7181
(0.0223669 0.00359318 0.00459467) 7184
(0.0233802 0.00363109 0.00465685) 7186
(0.0206332 0.00340599 0.00161844) 401
(0.0226249 0.0033968 0.00167839) 465
(0.0211621 0.00609669 0.00474617) 12222
(0.0228734 0.00612599 0.00472378) 12225
(0.0209457 0.00579463 0.00501808) 12581
(0.0209457 0.00579463 0.00501808) 12581
(0.0209457 0.00579463 0.00501808) 12581
(0.0228144 0.00579607 0.00499602) 12585
(0.0228144 0.00579607 0.00499602) 12585
(0.0228144 0.00579607 0.00499602) 12585
(0.0238416 0.00585398 0.00498142) 12587
(0.0209073 0.00396326 0.00483386) 10541
(0.0225247 0.00397555 0.00486418) 10545
(0.0211003 0.00379938 0.00140996) 12762
(0.0238334 0.0038184 0.00140825) 12767
(0.0213701 0.0041664 0.00126268) 11502
(0.0240381 0.00411675 0.0012369) 11508
(0.0211134 0.00451822 0.00112781) 9822
(0.0209042 0.00483093 0.000975918) 11621
(0.0227113 0.00477185 0.000972141) 11625
(0.0205308 0.00565907 0.00101711) 12161
(0.0204078 0.00599942 0.00107766) 12280
(0.0220104 0.00602461 0.00109153) 12464
(0.0209538 0.00536032 0.000901508) 12101
(0.0228557 0.00530437 0.000912578) 10125
(0.0206642 0.00522083 0.00518062) 11441
(0.0222107 0.00520952 0.00516667) 11444
(0.0232172 0.00526065 0.0051745) 11446
(0.0214177 0.00389036 0.00111989) 13002
(0.022183 0.0030676 0.0031722) 764
(0.0247581 0.00306109 0.00314438) 769
(0.0252458 0.00301151 0.00314014) 770
(0.0205612 0.00673871 0.00171809) 2501
(0.0227597 0.00670014 0.00179612) 2445
(0.0241752 0.00669679 0.00179862) 2448
(0.0230345 0.00627327 0.00173817) 13486
(0.023764 0.00633479 0.00172517) 13487
(0.00634054 0.00644355 0.00288367) 13512
(0.00682389 0.00644417 0.00288091) 13513
(0.00729847 0.00644613 0.00287454) 13514
(0.00526087 0.00633192 0.00251931) 13570
(0.00569221 0.00635839 0.00255041) 13571
(0.0116682 0.00621384 0.0023598) 13643
(0.012218 0.00620451 0.00236444) 13644
(0.0127644 0.00619693 0.00236703) 13645
(0.0132607 0.00619748 0.00236702) 13646
(0.0137081 0.00620585 0.00236554) 13647
(0.0181591 0.00623194 0.00235976) 13656
(0.0187045 0.00622731 0.00236495) 13657
(0.0192255 0.00622072 0.00236678) 13658
(0.0197477 0.00621179 0.00236623) 13659
(0.0202905 0.00619989 0.00236213) 13660
(0.0208238 0.00618854 0.00235238) 13661
(0.0213252 0.00618106 0.00234088) 13662
(0.00540148 0.00582815 0.00187616) 13750
(0.00587762 0.00582801 0.00186656) 13751
(0.00633792 0.0058262 0.00186057) 13752
(0.00678317 0.00583031 0.00185949) 13753
(0.00534514 0.00558062 0.00171455) 13810
(0.00577119 0.00558603 0.00170767) 13811
(0.00618728 0.00558978 0.0017032) 13812
(0.00598443 0.00442277 0.00168605) 14051
(0.00637551 0.00440734 0.00168404) 14052
(0.00676921 0.00439911 0.00168182) 14053
(0.00716889 0.00439244 0.00167855) 14054
(0.00758008 0.00438804 0.00167374) 14055
(0.00561569 0.0042315 0.0017976) 14111
(0.00561569 0.0042315 0.0017976) 14111
(0.00561569 0.0042315 0.0017976) 14111
(0.00602179 0.00419195 0.00181647) 14112
(0.00643696 0.00417364 0.00181909) 14112
(0.00684274 0.00416496 0.00181623) 14113
(0.00723574 0.0041555 0.00181362) 14114
(0.00763211 0.00414562 0.00181171) 14115
(0.0118818 0.00417771 0.00184404) 14123
(0.0123631 0.00418187 0.00184677) 14124
(0.0128043 0.00418275 0.00184555) 14125
(0.00538306 0.00399219 0.00201309) 14170
(0.00582466 0.00398174 0.00202239) 14171
(0.0062394 0.00397044 0.00202604) 14172
(0.0111309 0.00362256 0.0028914) 14362
(0.0116807 0.0036322 0.00289318) 14363
(0.0122577 0.00364563 0.00289497) 14364
(0.0128164 0.00365557 0.00289558) 14365
(0.0133196 0.00365743 0.00289462) 14366
(0.0137629 0.00365192 0.00289286) 14367
(0.0141621 0.00364177 0.0028911) 14368
(0.0054869 0.00357965 0.00316148) 14410
(0.00590872 0.00357998 0.00319618) 14411
(0.0112754 0.00359598 0.00319104) 14422
(0.0118415 0.00360708 0.00319408) 14423
(0.0124141 0.00361942 0.00319461) 14424
(0.0129484 0.00362641 0.00319405) 14425
(0.0134452 0.00362759 0.0031931) 14426
(0.01391 0.00362451 0.00319337) 14427
(0.0143467 0.00361785 0.00319431) 14428
(0.0147972 0.00361093 0.0031964) 14429
(0.00556737 0.00373766 0.0034465) 14471
(0.00556737 0.00373766 0.0034465) 14471
(0.00556737 0.00373766 0.0034465) 14471
(0.00579744 0.00373591 0.00352697) 14471
(0.00620506 0.00372153 0.00355284) 14472
(0.00673667 0.00370333 0.00353439) 14473
(0.00731791 0.00367773 0.00350236) 14474
(0.00783868 0.00365083 0.00348236) 14475
(0.005184 0.00383876 0.00372963) 14530
(0.005184 0.00383876 0.00372963) 14530
(0.005184 0.00383876 0.00372963) 14530
(0.00545537 0.00384446 0.00377765) 14530
(0.00582885 0.00382685 0.00377768) 14531
(0.0062971 0.00380338 0.00376317) 14532
(0.00692079 0.00377181 0.00373739) 14533
(0.00503846 0.00399471 0.00393949) 14590
(0.00553026 0.00404856 0.00396765) 14591
(0.00606954 0.00404389 0.00397048) 14592
(0.00572443 0.00474408 0.00439045) 14771
(0.00545659 0.00502208 0.00441716) 14830
(0.00592882 0.00501779 0.00442713) 14831
(0.0063719 0.00501064 0.00443606) 14832
(0.00678676 0.00500929 0.00444289) 14833
(0.00718345 0.00501104 0.00444922) 14834
(0.00532868 0.00528862 0.00437913) 14890
(0.00584977 0.00528851 0.00438646) 14891
(0.00671036 0.00528302 0.0044052) 14893
(0.00589089 0.00635886 0.00341539) 15191
(0.00625519 0.00637043 0.00340554) 15192
(0.00553376 0.00643904 0.00311904) 15251
(0.00553376 0.00643904 0.00311904) 15251
(0.00553376 0.00643904 0.00311904) 15251
(0.0060104 0.0064321 0.00313582) 15252
(0.00644971 0.0064351 0.00313209) 15252
(0.00688702 0.00643828 0.00312693) 15253
(0.00732124 0.00644318 0.00312538) 15254
(0.00775183 0.00644857 0.00312923) 15255
(0.00284136 0.006431 0.00280072) 13505
(0.00308892 0.00644159 0.0028022) 13506
(0.00420317 0.00635832 0.00264396) 13568
(0.00445458 0.00639305 0.00261988) 13568
(0.00485936 0.00635977 0.00273661) 13569
(0.00492846 0.00440871 0.00158996) 5709
(0.00475483 0.00451432 0.00162078) 14049
(0.0033889 0.00424064 0.0017066) 5646
(0.00507916 0.0034833 0.00321649) 5410
(0.00476332 0.00368533 0.00354) 14469
(0.00147059 0.00492477 0.00444325) 14822
(0.00270242 0.00493539 0.00441099) 14825
(0.00397946 0.00531246 0.00433219) 14887
(0.00461637 0.00531864 0.00432004) 14889
(0.00437076 0.00640539 0.00272511) 13568
(0.00494628 0.00644996 0.00292646) 13509
(0.020576 0.00303452 0.00215781) 521
(0.021941 0.0029963 0.00221148) 33260
(0.0211897 0.00707197 0.00378978) 23862
(0.0220927 0.00717632 0.00367717) 23504
(0.0210126 0.00688612 0.00363764) 2022
(0.0226055 0.00698618 0.00356066) 2025
(0.0124068 0.00648717 0.00417809) 6684
(0.0134767 0.00644267 0.00414105) 6686
(0.0142844 0.0064163 0.00412664) 6688
(0.0149408 0.00639978 0.00412036) 6689
(0.0154983 0.00639316 0.00411443) 6690
(0.0159953 0.0063918 0.00411085) 6691
(0.0164723 0.00639213 0.00410755) 6692
(0.0169626 0.00639174 0.00410285) 6693
(0.0174822 0.00638634 0.00409859) 6694
(0.0179956 0.00637804 0.00409723) 6695
(0.0184757 0.00637159 0.00409704) 6696
(0.0228901 0.00328018 0.00332536) 5445
(0.0234285 0.00656397 0.00221093) 6106
(0.0245217 0.00664404 0.00224754) 6109
(0.0224913 0.00696214 0.00418149) 1904
(0.021131 0.00662837 0.0041889) 6642
(0.0234153 0.00666547 0.00412078) 1966
(0.0202322 0.00641297 0.00122735) 6820
(0.0214126 0.0063839 0.00123314) 6822
(0.0205836 0.00358842 0.00459079) 7181
(0.0223204 0.00359255 0.00459257) 7184
(0.0233714 0.00362693 0.00465136) 7186
(0.020573 0.00340839 0.00161295) 401
(0.0225698 0.00339832 0.00167762) 465
(0.0210979 0.00609555 0.00474807) 12222
(0.0228276 0.00612332 0.00472392) 12225
(0.0208799 0.00579456 0.00501945) 12581
(0.0208799 0.00579456 0.00501945) 12581
(0.0208799 0.00579456 0.00501945) 12581
(0.0227633 0.00579418 0.00499585) 12585
(0.0227633 0.00579418 0.00499585) 12585
(0.0227633 0.00579418 0.00499585) 12585
(0.0238287 0.00584884 0.00498264) 12587
(0.0208552 0.00396154 0.00483206) 10541
(0.0224794 0.00397504 0.00486166) 10544
(0.0209992 0.00379967 0.00140758) 12761
(0.0237547 0.00381841 0.00141019) 12767
(0.0212753 0.00416989 0.00126216) 11502
(0.0239633 0.00411983 0.00123945) 11507
(0.0210491 0.00452356 0.00112625) 9822
(0.0229208 0.00442158 0.00112609) 11565
(0.0208436 0.00483466 0.000975431) 11621
(0.0226574 0.00477495 0.000973601) 11625
(0.0204826 0.00566195 0.00101903) 12160
(0.0203662 0.005999 0.00107794) 12280
(0.021965 0.00602456 0.00109291) 12463
(0.0208916 0.00536499 0.000901759) 12101
(0.0228028 0.00530582 0.00091425) 10125
(0.0206141 0.00522047 0.00518137) 11441
(0.0221681 0.00520879 0.005166) 11444
(0.0232045 0.00525485 0.00517353) 11446
(0.0213774 0.00389308 0.00111962) 13002
(0.0220696 0.00306811 0.00317088) 764
(0.0247218 0.0030632 0.00314574) 769
(0.0252368 0.00301412 0.00313835) 770
(0.0205045 0.00674052 0.00171674) 2501
(0.0226916 0.00670037 0.00179553) 2445
(0.0241548 0.00669731 0.00180251) 2448
(0.0229931 0.00626905 0.00173551) 13485
(0.0237328 0.00633425 0.00172819) 13487
(0.00631729 0.00644363 0.00288351) 13512
(0.00680047 0.00644416 0.00288116) 13513
(0.0072756 0.00644604 0.00287487) 13514
(0.00524015 0.00633114 0.00251832) 13570
(0.00566662 0.00635813 0.00254888) 13571
(0.0116454 0.00621417 0.00235963) 13643
(0.0121946 0.00620493 0.0023643) 13644
(0.012742 0.00619718 0.00236699) 13645
(0.0132402 0.00619737 0.00236701) 13646
(0.0136892 0.00620546 0.00236561) 13647
(0.0181338 0.00623222 0.00235964) 13656
(0.0186809 0.00622756 0.00236481) 13657
(0.0192027 0.00622109 0.00236682) 13658
(0.0197245 0.0062123 0.00236639) 13659
(0.0202667 0.00620051 0.00236252) 13660
(0.0208011 0.00618908 0.00235297) 13661
(0.0213035 0.00618145 0.00234151) 13662
(0.00538062 0.00582796 0.00187625) 13750
(0.00585578 0.00582805 0.00186658) 13751
(0.00631515 0.00582607 0.0018604) 13752
(0.00676142 0.00582999 0.00185932) 13753
(0.00532316 0.0055803 0.0017145) 13810
(0.00574945 0.00558571 0.00170756) 13811
(0.0061654 0.00558966 0.00170315) 13812
(0.00596328 0.00442396 0.00168564) 14051
(0.00635359 0.00440777 0.00168387) 14052
(0.00674743 0.00439939 0.00168174) 14053
(0.00714781 0.00439269 0.00167864) 14054
(0.00755876 0.00438823 0.00167385) 14055
(0.00559943 0.00423337 0.00179586) 14111
(0.00559943 0.00423337 0.00179586) 14111
(0.00559943 0.00423337 0.00179586) 14111
(0.00600094 0.00419315 0.00181577) 14112
(0.00641463 0.00417406 0.00181894) 14112
(0.00682084 0.00416524 0.00181619) 14113
(0.00721517 0.00415591 0.00181364) 14114
(0.00761137 0.00414586 0.00181182) 14115
(0.0118592 0.00417744 0.00184384) 14123
(0.0123425 0.00418169 0.00184669) 14124
(0.0127847 0.00418266 0.00184558) 14125
(0.00536269 0.00399195 0.0020124) 14170
(0.00580285 0.00398217 0.00202176) 14171
(0.00621691 0.00397077 0.00202573) 14172
(0.0111075 0.00362225 0.00289132) 14362
(0.0116568 0.00363172 0.0028931) 14363
(0.0122329 0.00364505 0.00289489) 14364
(0.0127935 0.00365522 0.00289558) 14365
(0.0132989 0.00365742 0.00289468) 14366
(0.0137446 0.00365219 0.00289294) 14367
(0.0141451 0.00364219 0.00289119) 14368
(0.00546793 0.00357956 0.00315945) 14410
(0.00588885 0.00357944 0.0031953) 14411
(0.0112501 0.00359555 0.00319093) 14422
(0.0118163 0.00360653 0.00319408) 14423
(0.0123895 0.00361893 0.00319463) 14424
(0.0129258 0.00362618 0.00319416) 14425
(0.0134236 0.00362753 0.00319317) 14426
(0.0138898 0.00362465 0.00319342) 14427
(0.0143272 0.0036181 0.00319428) 14428
(0.0147763 0.00361119 0.00319645) 14429
(0.00556274 0.00373514 0.00344105) 14471
(0.00556274 0.00373514 0.00344105) 14471
(0.00556274 0.00373514 0.00344105) 14471
(0.005785 0.00373494 0.00352407) 14471
(0.00618405 0.00372175 0.00355194) 14472
(0.00671052 0.00370407 0.00353556) 14473
(0.00729148 0.00367889 0.00350369) 14474
(0.00781555 0.00365185 0.00348305) 14475
(0.00517541 0.00383638 0.00372789) 14530
(0.00517541 0.00383638 0.00372789) 14530
(0.00517541 0.00383638 0.00372789) 14530
(0.0054413 0.00384381 0.00377633) 14530
(0.00581229 0.00382695 0.00377774) 14531
(0.00627388 0.00380413 0.00376385) 14532
(0.00689067 0.00377311 0.00373869) 14533
(0.00501856 0.00399039 0.0039384) 14590
(0.00550528 0.0040466 0.00396698) 14591
(0.00604471 0.00404396 0.00396966) 14592
(0.00570344 0.00474417 0.00439005) 14771
(0.00543594 0.00502182 0.00441697) 14830
(0.00590661 0.00501796 0.00442694) 14831
(0.00634849 0.00501076 0.00443606) 14832
(0.00676386 0.00500921 0.00444292) 14833
(0.00716239 0.005011 0.00444907) 14834
(0.0053056 0.00528862 0.00437907) 14890
(0.00582556 0.00528875 0.00438633) 14891
(0.00668848 0.00528297 0.00440518) 14893
(0.00586989 0.00635874 0.00341581) 15191
(0.00623626 0.00637006 0.003406) 15192
(0.00551128 0.00643999 0.00311706) 15251
(0.00551128 0.00643999 0.00311706) 15251
(0.00551128 0.00643999 0.00311706) 15251
(0.00598827 0.00643235 0.00313571) 15251
(0.00642726 0.00643511 0.00313254) 15252
(0.00686475 0.0064382 0.00312724) 15253
(0.00729924 0.006443 0.00312553) 15254
(0.00773 0.00644841 0.00312908) 15255
(0.00296209 0.00641847 0.00279276) 13505
(0.0030467 0.00644442 0.0028041) 13506
(0.00418556 0.00635855 0.00264708) 13568
(0.00444329 0.00639145 0.00261966) 13568
(0.00484414 0.00635923 0.00273135) 13569
(0.00490842 0.00440161 0.00158995) 5709
(0.00479699 0.00450522 0.00161012) 14049
(0.00281134 0.00421832 0.00170309) 5645
(0.00506579 0.00348202 0.00322068) 5410
(0.0046995 0.00367646 0.00354967) 14469
(0.00145266 0.00492489 0.00444323) 14822
(0.00260968 0.00493497 0.00441798) 14825
(0.0039635 0.00530417 0.00433764) 14887
(0.00459617 0.00531824 0.00431999) 14889
(0.00434662 0.00640368 0.00272618) 13568
(0.00493216 0.00644937 0.00291844) 13509
(0.0205296 0.00303478 0.002156) 521
(0.0219109 0.00300007 0.00220765) 523
(0.0211669 0.00706865 0.00379416) 23862
(0.0220824 0.00716849 0.00368562) 23504
(0.0209594 0.00688235 0.00364258) 2021
(0.0225602 0.00698148 0.00356338) 2025
(0.0123655 0.00648921 0.00418026) 6684
(0.0134465 0.00644384 0.00414169) 6686
(0.0142611 0.00641699 0.00412669) 6688
(0.0149214 0.00640002 0.00412045) 6689
(0.0154817 0.00639313 0.0041144) 6690
(0.0159803 0.00639172 0.00411061) 6691
(0.0164572 0.00639199 0.00410741) 6692
(0.0169463 0.00639168 0.00410278) 6693
(0.0174651 0.00638647 0.0040984) 6694
(0.0179791 0.00637815 0.00409702) 6695
(0.0184618 0.00637156 0.00409669) 6696
(0.0228277 0.00328102 0.00332489) 5445
(0.0233802 0.00655732 0.00220483) 6106
(0.0244816 0.00664239 0.00224909) 6108
(0.0224651 0.0069555 0.00418868) 1904
(0.0210496 0.00662678 0.00419442) 6642
(0.0233437 0.00666352 0.00412171) 1966
(0.0202009 0.00641431 0.00122784) 6820
(0.0213846 0.00638649 0.00123526) 6822
(0.0205228 0.00358726 0.00459098) 7181
(0.0222725 0.003592 0.00459062) 7184
(0.0233608 0.0036231 0.00464611) 7186
(0.020515 0.00341089 0.00160725) 9221
(0.0225133 0.00339975 0.00167682) 465
(0.0237438 0.00336956 0.00170648) 467
(0.0210357 0.00609436 0.00475011) 12222
(0.0227799 0.00612078 0.00472406) 12225
(0.0208159 0.00579447 0.00502081) 12581
(0.0208159 0.00579447 0.00502081) 12581
(0.0208159 0.00579447 0.00502081) 12581
(0.0227105 0.00579241 0.00499569) 12585
(0.0227105 0.00579241 0.00499569) 12585
(0.0227105 0.00579241 0.00499569) 12585
(0.0238142 0.00584396 0.00498369) 12587
(0.0208028 0.00395987 0.0048303) 10541
(0.0224329 0.00397455 0.00485921) 10544
(0.0209016 0.00379997 0.0014051) 12761
(0.0236715 0.00381771 0.00141197) 12767
(0.0211816 0.00417358 0.0012615) 11502
(0.0238805 0.00412235 0.00124185) 11507
(0.0209855 0.00452899 0.00112457) 9821
(0.0228633 0.00442515 0.00112759) 11565
(0.020784 0.00483847 0.000974949) 11621
(0.0226022 0.00477801 0.000975022) 11625
(0.0204351 0.00566489 0.00102102) 12160
(0.0203256 0.00599855 0.00107828) 12280
(0.0219187 0.00602441 0.00109418) 12463
(0.02083 0.00536972 0.000902034) 12101
(0.022748 0.00530726 0.000915801) 10125
(0.0213899 0.00501697 0.00072099) 11922
(0.0205654 0.00521994 0.00518211) 11441
(0.0221245 0.00520819 0.00516537) 11444
(0.0231902 0.0052494 0.00517252) 11446
(0.021337 0.00389575 0.00111935) 13002
(0.0219498 0.00306832 0.00316927) 763
(0.024682 0.00306501 0.00314717) 769
(0.0252272 0.00301685 0.00313672) 770
(0.0204481 0.00674216 0.00171544) 2500
(0.0226228 0.00670065 0.00179485) 2445
(0.0241321 0.00669767 0.00180611) 2448
(0.0244029 0.00661321 0.00168748) 2508
(0.0229467 0.00626462 0.00173232) 13485
(0.0237028 0.00633357 0.0017312) 13487
(0.00629402 0.00644372 0.00288331) 13512
(0.00677705 0.00644415 0.00288141) 13513
(0.0072527 0.00644596 0.00287519) 13514
(0.00521972 0.00633037 0.00251732) 13570
(0.00564112 0.00635782 0.00254733) 13571
(0.0116226 0.0062145 0.00235946) 13643
(0.0121713 0.00620534 0.00236416) 13644
(0.0127196 0.00619744 0.00236695) 13645
(0.0132196 0.00619727 0.00236699) 13646
(0.0136703 0.00620508 0.00236569) 13647
(0.0181085 0.00623249 0.00235952) 13656
(0.0186572 0.00622778 0.00236465) 13657
(0.0191799 0.00622148 0.00236689) 13658
(0.0197014 0.00621282 0.00236658) 13659
(0.0202429 0.00620113 0.00236292) 13660
(0.0207783 0.00618962 0.00235354) 13661
(0.0212818 0.00618185 0.00234213) 13662
(0.0217557 0.00617743 0.00233012) 13663
(0.00535974 0.0058278 0.00187637) 13750
(0.00583399 0.00582809 0.0018666) 13751
(0.00629237 0.00582594 0.00186024) 13752
(0.00673956 0.00582968 0.00185915) 13753
(0.00530111 0.00558 0.00171445) 13810
(0.00572775 0.00558537 0.00170745) 13811
(0.00614353 0.00558953 0.0017031) 13812
(0.0059422 0.0044252 0.00168519) 14051
(0.00633172 0.00440822 0.00168369) 14052
(0.00672561 0.00439968 0.00168166) 14053
(0.00712671 0.00439294 0.00167872) 14054
(0.00753747 0.00438844 0.00167395) 14055
(0.00558342 0.0042352 0.00179403) 14111
(0.00558342 0.0042352 0.00179403) 14111
(0.00558342 0.0042352 0.00179403) 14111
(0.00598025 0.00419438 0.00181503) 14111
(0.00639238 0.00417449 0.00181878) 14112
(0.00679887 0.00416553 0.00181615) 14113
(0.00719455 0.00415631 0.00181367) 14114
(0.00759067 0.00414612 0.00181192) 14115
(0.0118365 0.00417716 0.00184363) 14123
(0.0123219 0.00418152 0.00184661) 14124
(0.012765 0.00418257 0.00184561) 14125
(0.00534242 0.00399163 0.00201175) 14170
(0.00578116 0.00398258 0.00202114) 14171
(0.00619448 0.0039711 0.00202543) 14172
(0.011084 0.00362194 0.00289124) 14362
(0.011633 0.00363125 0.00289303) 14363
(0.012208 0.00364447 0.00289481) 14364
(0.0127705 0.00365486 0.00289558) 14365
(0.0132782 0.00365739 0.00289474) 14366
(0.0137262 0.00365245 0.00289303) 14367
(0.0141281 0.00364262 0.00289129) 14368
(0.00544896 0.00357947 0.00315735) 14410
(0.00586895 0.0035789 0.00319438) 14411
(0.0112247 0.00359511 0.0031908) 14422
(0.011791 0.00360598 0.00319409) 14423
(0.0123649 0.00361844 0.00319466) 14424
(0.0129032 0.00362594 0.00319425) 14425
(0.013402 0.00362746 0.00319326) 14426
(0.0138696 0.00362477 0.00319344) 14427
(0.0143076 0.00361835 0.00319429) 14428
(0.0147556 0.00361144 0.00319649) 14429
(0.00555818 0.00373259 0.00343552) 14471
(0.00555818 0.00373259 0.00343552) 14471
(0.00555818 0.00373259 0.00343552) 14471
(0.0057729 0.00373389 0.00352109) 14471
(0.00616332 0.00372191 0.00355088) 14472
(0.00668456 0.00370476 0.00353666) 14473
(0.00726496 0.00368003 0.00350504) 14474
(0.00779227 0.00365288 0.00348377) 14475
(0.00516702 0.00383399 0.00372614) 14530
(0.00516702 0.00383399 0.00372614) 14530
(0.00516702 0.00383399 0.00372614) 14530
(0.0054274 0.00384311 0.00377497) 14530
(0.0054274 0.00384311 0.00377497) 14530
(0.0054274 0.00384311 0.00377497) 14530
(0.00579582 0.00382701 0.00377775) 14531
(0.00625104 0.00380483 0.00376448) 14532
(0.00686082 0.00377438 0.00374) 14533
(0.00499884 0.00398605 0.00393746) 14589
(0.00548033 0.00404455 0.00396629) 14590
(0.00601986 0.00404394 0.00396884) 14592
(0.00541531 0.00502155 0.00441679) 14830
(0.0058845 0.00501811 0.00442675) 14831
(0.00632513 0.00501088 0.00443604) 14832
(0.00674087 0.00500913 0.00444295) 14833
(0.00714126 0.00501094 0.00444893) 14834
(0.00528257 0.00528863 0.00437902) 14890
(0.00580137 0.00528898 0.0043862) 14891
(0.00666646 0.00528297 0.00440516) 14893
(0.00584876 0.00635864 0.00341619) 15191
(0.00621733 0.00636968 0.00340646) 15192
(0.00548882 0.00644099 0.00311494) 15250
(0.00548882 0.00644099 0.00311494) 15250
(0.00548882 0.00644099 0.00311494) 15250
(0.00596609 0.00643262 0.00313554) 15251
(0.00640481 0.00643513 0.00313299) 15252
(0.00684245 0.00643814 0.00312755) 15253
(0.00727722 0.00644281 0.00312569) 15254
(0.00770821 0.00644824 0.00312892) 15255
(0.00303284 0.00640861 0.0027861) 13506
(0.00298409 0.00644766 0.00280711) 13505
(0.00416614 0.00635917 0.00265044) 13568
(0.00443184 0.00638961 0.00261945) 13568
(0.00482869 0.00635929 0.00272614) 13569
(0.00487709 0.00439454 0.00159107) 5709
(0.00483667 0.00449494 0.00159876) 5709
(0.00236323 0.00419532 0.00170214) 5644
(0.0050121 0.00349482 0.00323101) 5410
(0.00466112 0.00367122 0.00355386) 14469
(0.0014378 0.00492506 0.0044431) 14822
(0.00251007 0.00493435 0.00442352) 14825
(0.00394761 0.00529429 0.00434288) 14887
(0.00457582 0.00531779 0.00431992) 14889
(0.00236337 0.00650484 0.00289366) 6124
(0.00432302 0.0064023 0.0027273) 13568
(0.00491811 0.00644881 0.00291025) 13509
(0.0204833 0.00303485 0.00215419) 520
(0.0218794 0.00300369 0.00220396) 523
(0.0211439 0.00706543 0.00379847) 23862
(0.0220711 0.00716095 0.00369372) 23504
(0.0209067 0.00687856 0.00364764) 2021
(0.0225137 0.0069768 0.00356609) 2025
(0.012324 0.00649129 0.00418249) 6684
(0.0134159 0.00644503 0.00414236) 6686
(0.0142376 0.0064177 0.00412676) 6688
(0.0149018 0.00640029 0.00412052) 6689
(0.0154651 0.00639312 0.00411438) 6690
(0.0159653 0.00639163 0.00411038) 6691
(0.0164422 0.00639185 0.00410728) 6692
(0.0169301 0.00639161 0.00410272) 6693
(0.0174481 0.0063866 0.00409822) 6694
(0.0179626 0.00637828 0.00409681) 6695
(0.0184476 0.00637155 0.00409636) 6696
(0.0227639 0.00328168 0.00332442) 5445
(0.0233304 0.0065503 0.00219824) 13426
(0.0244398 0.00664075 0.00225047) 6108
(0.0224367 0.00694918 0.00419566) 1904
(0.0209702 0.00662496 0.00420038) 6641
(0.0232708 0.00666155 0.0041227) 1966
(0.021356 0.00638895 0.00123723) 6822
(0.0204595 0.00358541 0.00459105) 7180
(0.0222231 0.00359154 0.00458882) 7184
(0.0233486 0.00361956 0.00464106) 7186
(0.0204587 0.00341346 0.00160136) 9220
(0.0224554 0.00340111 0.00167601) 464
(0.0237272 0.00337351 0.00170361) 467
(0.0209757 0.00609304 0.00475236) 12221
(0.0227307 0.00611834 0.00472418) 12225
(0.0207537 0.0057944 0.00502213) 12581
(0.0207537 0.0057944 0.00502213) 12581
(0.0207537 0.0057944 0.00502213) 12581
(0.0226561 0.00579074 0.00499555) 12585
(0.0226561 0.00579074 0.00499555) 12585
(0.0226561 0.00579074 0.00499555) 12585
(0.0237981 0.00583932 0.00498459) 12587
(0.0237981 0.00583932 0.00498459) 12587
(0.0237981 0.00583932 0.00498459) 12587
(0.0207497 0.00395822 0.00482855) 10541
(0.0223851 0.00397407 0.00485683) 10544
(0.0208083 0.00380018 0.00140252) 12761
(0.0235847 0.00381649 0.00141358) 12767
(0.0210896 0.00417744 0.00126071) 11502
(0.0237911 0.00412421 0.00124404) 11507
(0.0209224 0.00453427 0.0011228) 9821
(0.0228048 0.00442875 0.00112903) 11565
(0.0207248 0.00484216 0.000974499) 11621
(0.022546 0.00478103 0.000976389) 11625
(0.0203883 0.00566788 0.00102312) 12160
(0.0202859 0.00599805 0.00107869) 12280
(0.0218714 0.00602417 0.00109534) 12463
(0.0207687 0.00537448 0.000902327) 12101
(0.0226916 0.0053087 0.00091723) 10125
(0.0213701 0.00502001 0.000720532) 11922
(0.0205185 0.00521922 0.0051828) 11441
(0.0220801 0.00520771 0.00516477) 11444
(0.0231744 0.0052443 0.0051715) 11446
(0.0212967 0.00389837 0.00111906) 13002
(0.0234999 0.00331775 0.00286464) 13306
(0.0218178 0.00306788 0.00316733) 763
(0.0246379 0.00306649 0.00314864) 769
(0.0252167 0.00301968 0.00313523) 770
(0.0203923 0.00674377 0.0017142) 2500
(0.022553 0.00670099 0.00179403) 2445
(0.0241071 0.00669792 0.00180943) 2448
(0.0244252 0.00662189 0.00169759) 2508
(0.0228944 0.00625995 0.00172856) 13485
(0.0236735 0.00633274 0.00173411) 13487
(0.00627071 0.00644383 0.00288308) 13512
(0.00675365 0.00644415 0.00288164) 13513
(0.00722977 0.00644588 0.00287552) 13514
(0.00519957 0.00632961 0.00251632) 13570
(0.00561569 0.00635747 0.00254576) 13571
(0.0115998 0.00621482 0.00235929) 13643
(0.0121479 0.00620575 0.00236402) 13644
(0.0126971 0.00619772 0.0023669) 13645
(0.013199 0.00619718 0.00236697) 13646
(0.0136513 0.00620471 0.00236576) 13647
(0.0180832 0.00623276 0.0023594) 13656
(0.0186335 0.00622803 0.00236451) 13657
(0.0191572 0.00622184 0.00236692) 13658
(0.0196783 0.00621331 0.00236673) 13659
(0.0202191 0.00620175 0.00236329) 13660
(0.0207555 0.00619017 0.00235412) 13661
(0.0212601 0.00618225 0.00234274) 13662
(0.021735 0.00617772 0.00233078) 13663
(0.00533887 0.00582767 0.00187652) 13750
(0.00581226 0.00582812 0.00186662) 13751
(0.00626959 0.00582582 0.00186007) 13752
(0.00671761 0.00582937 0.00185897) 13753
(0.00527898 0.0055797 0.00171443) 13810
(0.00570609 0.00558504 0.00170735) 13811
(0.00612168 0.00558939 0.00170305) 13812
(0.00592118 0.00442648 0.00168471) 14051
(0.00630992 0.0044087 0.0016835) 14052
(0.00670376 0.00439997 0.00168157) 14053
(0.00710558 0.00439318 0.0016788) 14054
(0.00751622 0.00438864 0.00167406) 14055
(0.00556766 0.00423698 0.00179215) 14111
(0.00556766 0.00423698 0.00179215) 14111
(0.00556766 0.00423698 0.00179215) 14111
(0.00595974 0.00419564 0.00181426) 14111
(0.00637022 0.00417495 0.00181861) 14112
(0.00677684 0.00416582 0.0018161) 14113
(0.0071739 0.00415672 0.00181368) 14114
(0.00756999 0.00414639 0.00181201) 14115
(0.0118137 0.00417688 0.00184342) 14123
(0.0123011 0.00418134 0.00184652) 14124
(0.0127454 0.00418248 0.00184563) 14125
(0.00532222 0.0039912 0.00201117) 14170
(0.00575957 0.00398297 0.00202051) 14171
(0.00617211 0.00397143 0.00202513) 14172
(0.0110605 0.00362163 0.00289116) 14362
(0.0116092 0.00363079 0.00289295) 14363
(0.0121832 0.00364388 0.00289473) 14364
(0.0127474 0.00365449 0.00289557) 14365
(0.0132573 0.00365734 0.00289479) 14366
(0.0137078 0.0036527 0.00289312) 14367
(0.0141111 0.00364303 0.00289138) 14368
(0.00542991 0.00357938 0.00315518) 14410
(0.00584903 0.00357835 0.00319341) 14411
(0.0111993 0.00359467 0.00319067) 14422
(0.0117657 0.00360542 0.00319409) 14423
(0.0123401 0.00361793 0.00319468) 14424
(0.0128805 0.00362569 0.00319435) 14425
(0.0133803 0.00362738 0.00319334) 14426
(0.0138494 0.00362489 0.00319348) 14427
(0.0142881 0.0036186 0.00319428) 14428
(0.0147348 0.0036117 0.00319653) 14429
(0.00555392 0.00373002 0.00343005) 14471
(0.00555392 0.00373002 0.00343005) 14471
(0.00555392 0.00373002 0.00343005) 14471
(0.00576105 0.00373289 0.00351799) 14471
(0.00614286 0.00372204 0.00354975) 14472
(0.00665875 0.0037054 0.00353766) 14473
(0.00723838 0.00368115 0.00350638) 14474
(0.00776888 0.00365392 0.0034845) 14475
(0.00515901 0.00383158 0.00372435) 14530
(0.00515901 0.00383158 0.00372435) 14530
(0.00515901 0.00383158 0.00372435) 14530
(0.00541355 0.00384237 0.00377355) 14530
(0.00541355 0.00384237 0.00377355) 14530
(0.00541355 0.00384237 0.00377355) 14530
(0.00577946 0.00382705 0.00377772) 14531
(0.00622862 0.00380549 0.00376506) 14532
(0.00683129 0.00377564 0.00374128) 14533
(0.00497948 0.00398161 0.00393673) 14589
(0.00545542 0.0040424 0.00396555) 14590
(0.005995 0.00404382 0.00396802) 14591
(0.00539469 0.00502125 0.00441662) 14830
(0.00586247 0.00501826 0.00442655) 14831
(0.00630183 0.00501101 0.00443601) 14832
(0.00671779 0.00500905 0.004443) 14833
(0.00712004 0.00501088 0.0044488) 14834
(0.0052596 0.00528867 0.00437895) 14890
(0.00577723 0.0052892 0.00438608) 14891
(0.00664431 0.00528299 0.00440515) 14893
(0.00582749 0.00635858 0.00341656) 15191
(0.0061984 0.00636931 0.00340693) 15192
(0.00546641 0.00644206 0.00311268) 15250
(0.00546641 0.00644206 0.00311268) 15250
(0.00546641 0.00644206 0.00311268) 15250
(0.00594387 0.00643291 0.00313531) 15251
(0.00638235 0.00643515 0.00313341) 15252
(0.00682012 0.00643809 0.00312787) 15253
(0.0072552 0.00644263 0.00312587) 15254
(0.00768645 0.00644807 0.00312878) 15255
(0.00308022 0.00640017 0.00278122) 13506
(0.002981 0.00644717 0.00280458) 13505
(0.00414598 0.00636002 0.00265383) 13568
(0.00442199 0.00638726 0.0026199) 13568
(0.00481193 0.00636245 0.00271851) 13569
(0.00482462 0.00438695 0.00159426) 5709
(0.00486357 0.00448466 0.00158842) 5709
(0.00192272 0.00417368 0.00170589) 5643
(0.00492976 0.00352916 0.00326208) 14409
(0.0046132 0.00366661 0.00355918) 14469
(0.00510658 0.00372303 0.00346883) 14470
(0.00142223 0.00492531 0.00444291) 14822
(0.00242812 0.00493259 0.00442681) 14824
(0.00392939 0.00528367 0.00434743) 14887
(0.00455534 0.00531731 0.00431984) 14889
(0.0031271 0.00645376 0.0028464) 13506
(0.00438555 0.00638893 0.00271817) 13568
(0.00490371 0.00644855 0.00290178) 13509
(0.020437 0.00303468 0.00215235) 520
(0.0218467 0.00300717 0.00220039) 523
(0.0211205 0.00706232 0.00380271) 23862
(0.0220589 0.00715367 0.00370151) 23504
(0.020854 0.00687493 0.0036527) 2021
(0.022466 0.00697213 0.0035688) 2024
(0.0122823 0.00649341 0.0041848) 6684
(0.0122823 0.00649341 0.0041848) 6684
(0.0122823 0.00649341 0.0041848) 6684
(0.0133849 0.00644625 0.00414308) 6686
(0.0142138 0.0064184 0.00412686) 6688
(0.0148823 0.00640059 0.00412058) 6689
(0.0154484 0.00639311 0.00411435) 6690
(0.0159503 0.00639154 0.00411014) 6691
(0.0164272 0.0063917 0.00410715) 6692
(0.016914 0.00639152 0.00410266) 6693
(0.017431 0.00638672 0.00409804) 6694
(0.017946 0.0063784 0.0040966) 6695
(0.0184333 0.00637154 0.00409604) 6696
(0.0128042 0.00609668 0.00439514) 9325
(0.0226978 0.00328211 0.00332392) 5445
(0.0232786 0.00654289 0.00219109) 13426
(0.0243969 0.00663913 0.00225172) 6108
(0.0224063 0.00694318 0.00420246) 1904
(0.0208927 0.00662286 0.00420676) 6641
(0.0231967 0.00665953 0.00412378) 1966
(0.0244737 0.00671009 0.00410436) 1968
(0.0213269 0.00639127 0.00123904) 6822
(0.0203945 0.00358264 0.00459083) 7180
(0.0221723 0.00359115 0.00458717) 7184
(0.0233346 0.00361628 0.00463623) 7186
(0.0204033 0.00341601 0.00159534) 9220
(0.0223959 0.00340236 0.00167517) 464
(0.0237086 0.0033772 0.00170097) 467
(0.0209172 0.00609155 0.00475485) 12221
(0.0226799 0.00611601 0.00472431) 12225
(0.0206931 0.00579433 0.00502338) 12581
(0.0206931 0.00579433 0.00502338) 12581
(0.0206931 0.00579433 0.00502338) 12581
(0.0226001 0.00578917 0.00499545) 12585
(0.0226001 0.00578917 0.00499545) 12585
(0.0226001 0.00578917 0.00499545) 12585
(0.0237803 0.0058349 0.00498536) 12587
(0.0237803 0.0058349 0.00498536) 12587
(0.0237803 0.0058349 0.00498536) 12587
(0.0206953 0.00395656 0.00482678) 10541
(0.0223363 0.0039736 0.00485452) 10544
(0.0207205 0.00380035 0.00139988) 12761
(0.0234957 0.00381502 0.00141502) 12766
(0.0209995 0.00418125 0.00125978) 11501
(0.0236968 0.00412546 0.00124604) 11507
(0.0208589 0.00453911 0.00112099) 9821
(0.0227451 0.00443241 0.00113039) 11565
(0.0206652 0.0048455 0.000974093) 11621
(0.0224888 0.00478401 0.000977714) 11624
(0.0203424 0.00567093 0.00102535) 12160
(0.0219813 0.00562966 0.00100159) 12163
(0.020247 0.0059975 0.00107917) 12280
(0.0218233 0.00602385 0.0010964) 12463
(0.0207063 0.00537921 0.000902578) 12101
(0.0226338 0.00531016 0.000918539) 10125
(0.0213499 0.00502286 0.00072001) 11922
(0.0204732 0.00521828 0.00518342) 11440
(0.0220348 0.00520733 0.00516423) 11444
(0.023157 0.00523951 0.00517047) 11446
(0.0212564 0.00390096 0.00111876) 13002
(0.0234515 0.00331939 0.00286234) 13306
(0.0216707 0.00306666 0.00316509) 763
(0.0245884 0.00306762 0.00315008) 769
(0.0252053 0.00302262 0.0031339) 770
(0.0203371 0.00674524 0.00171301) 2500
(0.0224823 0.0067014 0.00179307) 2444
(0.0224823 0.0067014 0.00179307) 2444
(0.0224823 0.0067014 0.00179307) 2444
(0.0240796 0.00669805 0.00181247) 2448
(0.024443 0.00662963 0.0017067) 2508
(0.0228351 0.0062551 0.00172433) 13485
(0.0236449 0.00633177 0.00173693) 13487
(0.00534385 0.00643707 0.00285322) 13510
(0.00534385 0.00643707 0.00285322) 13510
(0.00534385 0.00643707 0.00285322) 13510
(0.00624738 0.00644394 0.00288282) 13512
(0.00673025 0.00644416 0.00288185) 13513
(0.00720681 0.0064458 0.00287584) 13514
(0.0051797 0.00632886 0.00251533) 13570
(0.00559039 0.00635709 0.00254417) 13571
(0.011577 0.00621513 0.00235912) 13643
(0.0121246 0.00620615 0.00236387) 13644
(0.0126745 0.006198 0.00236686) 13645
(0.0131783 0.00619711 0.00236696) 13646
(0.0136322 0.00620435 0.00236583) 13647
(0.0180578 0.00623303 0.00235929) 13656
(0.0186096 0.00622827 0.00236437) 13657
(0.0191344 0.0062222 0.00236694) 13658
(0.0196552 0.00621379 0.00236688) 13659
(0.0201953 0.00620237 0.00236365) 13660
(0.0207327 0.00619073 0.0023547) 13661
(0.0212383 0.00618266 0.00234336) 13662
(0.0217142 0.00617802 0.00233146) 13663
(0.00531796 0.00582753 0.00187669) 13750
(0.00579058 0.00582814 0.00186665) 13751
(0.00624682 0.00582571 0.0018599) 13752
(0.00669556 0.00582908 0.00185879) 13753
(0.00525677 0.00557942 0.00171441) 13810
(0.00568449 0.00558472 0.00170727) 13811
(0.00609984 0.00558924 0.00170299) 13812
(0.00590021 0.0044278 0.00168421) 14051
(0.00628818 0.0044092 0.00168331) 14052
(0.00668188 0.00440026 0.00168147) 14053
(0.00708441 0.00439346 0.00167886) 14054
(0.00749502 0.00438879 0.0016742) 14054
(0.00555212 0.0042387 0.00179019) 14111
(0.00555212 0.0042387 0.00179019) 14111
(0.00555212 0.0042387 0.00179019) 14111
(0.0059394 0.00419694 0.00181343) 14111
(0.00634814 0.00417543 0.00181843) 14112
(0.00675475 0.0041661 0.00181605) 14113
(0.00715321 0.00415708 0.00181372) 14114
(0.00754934 0.00414671 0.00181207) 14115
(0.0117908 0.00417661 0.00184321) 14123
(0.0122803 0.00418116 0.00184642) 14124
(0.0127258 0.00418239 0.00184565) 14125
(0.0131577 0.00418149 0.0018423) 14126
(0.00530204 0.00399067 0.00201067) 14170
(0.00573809 0.00398336 0.00201985) 14171
(0.00614982 0.00397173 0.00202485) 14172
(0.011037 0.00362133 0.00289108) 14362
(0.0115855 0.00363034 0.00289287) 14363
(0.0121583 0.00364329 0.00289466) 14364
(0.0127242 0.00365411 0.00289556) 14365
(0.0132363 0.00365728 0.00289484) 14366
(0.0136893 0.00365294 0.00289321) 14367
(0.0140941 0.00364345 0.00289146) 14368
(0.0054108 0.00357929 0.00315291) 14410
(0.00582906 0.00357781 0.0031924) 14411
(0.0111738 0.00359423 0.00319054) 14422
(0.0117403 0.00360487 0.0031941) 14423
(0.0123153 0.00361742 0.0031947) 14424
(0.0128577 0.00362544 0.00319444) 14425
(0.0133585 0.00362729 0.00319343) 14426
(0.013829 0.003625 0.00319353) 14427
(0.0142685 0.00361883 0.00319427) 14428
(0.0147141 0.00361195 0.00319656) 14429
(0.00554968 0.00372733 0.00342457) 14471
(0.00554968 0.00372733 0.00342457) 14471
(0.00554968 0.00372733 0.00342457) 14471
(0.00574974 0.00373171 0.00351484) 14471
(0.00612273 0.0037221 0.00354845) 14472
(0.00663319 0.00370602 0.00353863) 14473
(0.00721172 0.00368225 0.00350774) 14474
(0.00774534 0.00365497 0.00348526) 14475
(0.00515117 0.00382916 0.00372255) 14530
(0.00515117 0.00382916 0.00372255) 14530
(0.00515117 0.00382916 0.00372255) 14530
(0.00539985 0.00384158 0.0037721) 14530
(0.00539985 0.00384158 0.0037721) 14530
(0.00539985 0.00384158 0.0037721) 14530
(0.00576323 0.00382705 0.00377764) 14531
(0.00620656 0.0038061 0.00376559) 14532
(0.00680202 0.00377687 0.00374256) 14533
(0.00496055 0.00397707 0.00393617) 14589
(0.0054306 0.00404016 0.00396478) 14590
(0.00597012 0.00404361 0.0039672) 14591
(0.00537406 0.00502094 0.00441646) 14830
(0.00584053 0.0050184 0.00442634) 14831
(0.0062786 0.00501116 0.00443597) 14832
(0.00669463 0.00500897 0.00444304) 14833
(0.00709868 0.00501075 0.0044487) 14834
(0.00523667 0.00528873 0.00437888) 14890
(0.00575316 0.0052894 0.00438595) 14891
(0.00621918 0.00528637 0.00439559) 14892
(0.00662204 0.00528303 0.00440514) 14893
(0.00580614 0.00635854 0.00341689) 15191
(0.00617943 0.00636894 0.00340739) 15192
(0.005444 0.0064432 0.00311026) 15250
(0.005444 0.0064432 0.00311026) 15250
(0.005444 0.0064432 0.00311026) 15250
(0.00592158 0.00643322 0.00313504) 15251
(0.00635989 0.00643517 0.00313382) 15252
(0.00679777 0.00643804 0.00312819) 15253
(0.00723317 0.00644245 0.00312606) 15254
(0.00766473 0.00644789 0.00312863) 15255
(0.003113 0.00639301 0.00277677) 13506
(0.00294369 0.00644899 0.00280471) 13505
(0.00411155 0.00636262 0.00266087) 13568
(0.00444486 0.00637191 0.00261778) 13568
(0.00479724 0.00636442 0.00271302) 13569
(0.00474282 0.00437973 0.00159987) 5709
(0.00488024 0.00447491 0.00158011) 5709
(0.00481405 0.00358081 0.00332591) 14469
(0.00456479 0.00366087 0.00356509) 14469
(0.00508882 0.00371571 0.00347285) 14470
(0.00140702 0.00492556 0.0044427) 14822
(0.00234605 0.00493111 0.00442983) 14824
(0.00374973 0.0049415 0.00433007) 14827
(0.00390746 0.00527357 0.00435103) 14887
(0.00453459 0.00531679 0.00431983) 14889
(0.00333543 0.00643126 0.00282537) 13506
(0.00435766 0.00638935 0.00271906) 13568
(0.00488893 0.00644913 0.0028926) 13509
(0.0203908 0.00303423 0.00215049) 520
(0.0218128 0.0030105 0.00219694) 523
(0.0210967 0.0070593 0.00380688) 23862
(0.0220462 0.00714663 0.00370902) 23504
(0.0208002 0.00687167 0.00365762) 2021
(0.0224174 0.00696748 0.00357151) 2024
(0.0122413 0.00649547 0.00418711) 6684
(0.0122413 0.00649547 0.00418711) 6684
(0.0122413 0.00649547 0.00418711) 6684
(0.0133535 0.00644751 0.00414384) 6686
(0.0141899 0.00641912 0.00412699) 6688
(0.0148625 0.00640091 0.00412063) 6689
(0.0154317 0.00639312 0.00411431) 6690
(0.0159353 0.00639146 0.0041099) 6691
(0.0164122 0.00639155 0.00410703) 6692
(0.0168979 0.00639143 0.0041026) 6693
(0.0174139 0.00638684 0.00409787) 6694
(0.0179293 0.00637853 0.00409639) 6695
(0.0184188 0.00637153 0.00409574) 6696
(0.0127724 0.00609694 0.00439609) 9325
(0.0226295 0.00328229 0.00332333) 5445
(0.0232247 0.00653509 0.00218335) 13426
(0.024353 0.00663752 0.00225281) 6108
(0.0223739 0.00693747 0.00420907) 1904
(0.0208161 0.00662054 0.00421344) 6641
(0.0231214 0.00665746 0.00412497) 1966
(0.0244619 0.00670556 0.00410565) 1968
(0.0212973 0.00639347 0.00124072) 6822
(0.0203302 0.00357898 0.00459013) 7180
(0.0221202 0.00359083 0.00458569) 7184
(0.0233189 0.00361324 0.00463161) 7186
(0.0203486 0.00341851 0.00158927) 9220
(0.0223351 0.00340354 0.00167428) 464
(0.0236881 0.00338062 0.00169852) 467
(0.0208595 0.00608989 0.00475758) 12221
(0.0226277 0.00611377 0.00472445) 12225
(0.0206341 0.00579427 0.00502455) 12581
(0.0206341 0.00579427 0.00502455) 12581
(0.0206341 0.00579427 0.00502455) 12581
(0.0225426 0.0057877 0.00499539) 12585
(0.0225426 0.0057877 0.00499539) 12585
(0.0225426 0.0057877 0.00499539) 12585
(0.0237608 0.00583069 0.00498601) 12587
(0.0237608 0.00583069 0.00498601) 12587
(0.0237608 0.00583069 0.00498601) 12587
(0.0206519 0.00438118 0.00499982) 9521
(0.020639 0.00395484 0.00482497) 10541
(0.0222864 0.00397314 0.00485229) 10544
(0.0206389 0.00380056 0.00139721) 12761
(0.0234054 0.00381352 0.0014163) 12766
(0.0209116 0.00418476 0.00125872) 11501
(0.0235999 0.0041263 0.00124788) 11507
(0.0207945 0.00454324 0.00111918) 9821
(0.0226845 0.00443612 0.00113166) 11565
(0.0206042 0.0048483 0.000973737) 11621
(0.022431 0.00478696 0.000978984) 11624
(0.0202977 0.00567406 0.00102775) 12160
(0.0219316 0.0056312 0.00100365) 12163
(0.0202087 0.00599689 0.00107976) 12280
(0.0217744 0.00602348 0.00109737) 12463
(0.0206428 0.00538388 0.000902791) 12101
(0.0225743 0.00531164 0.000919724) 10125
(0.0213294 0.0050256 0.000719438) 11922
(0.0204295 0.00521712 0.00518393) 11440
(0.0219888 0.00520704 0.00516373) 11443
(0.0231383 0.00523503 0.00516943) 11446
(0.0212162 0.00390351 0.00111845) 13002
(0.0233999 0.00332095 0.0028599) 13306
(0.0215026 0.00306426 0.00316251) 763
(0.0245322 0.00306844 0.00315144) 769
(0.0251931 0.00302563 0.00313271) 770
(0.0202825 0.00674645 0.00171184) 2500
(0.0224106 0.00670186 0.00179196) 2444
(0.0224106 0.00670186 0.00179196) 2444
(0.0224106 0.00670186 0.00179196) 2444
(0.0240498 0.00669811 0.00181522) 2448
(0.0244553 0.00663631 0.00171467) 2508
(0.0227676 0.00625007 0.00171963) 13485
(0.0236175 0.00633065 0.00173963) 13487
(0.00532572 0.00643741 0.0028505) 13510
(0.00532572 0.00643741 0.0028505) 13510
(0.00532572 0.00643741 0.0028505) 13510
(0.00622402 0.00644406 0.00288252) 13512
(0.00670685 0.00644417 0.00288205) 13513
(0.00718383 0.00644573 0.00287616) 13514
(0.00516008 0.0063281 0.00251433) 13570
(0.00556522 0.00635667 0.00254257) 13571
(0.0115542 0.00621544 0.00235897) 13643
(0.0121013 0.00620654 0.0023637) 13644
(0.0126519 0.00619831 0.00236681) 13645
(0.0131576 0.00619705 0.00236694) 13646
(0.0136131 0.006204 0.00236589) 13647
(0.0180323 0.00623331 0.00235917) 13656
(0.0185857 0.00622852 0.00236423) 13657
(0.0191116 0.00622256 0.00236697) 13658
(0.0196322 0.00621427 0.00236702) 13659
(0.0201714 0.00620299 0.002364) 13660
(0.0207098 0.0061913 0.00235527) 13661
(0.0212165 0.00618308 0.00234397) 13662
(0.0216933 0.00617833 0.00233215) 13663
(0.00529701 0.00582737 0.00187686) 13750
(0.00576894 0.00582815 0.00186667) 13751
(0.00622406 0.0058256 0.00185975) 13752
(0.00667343 0.0058288 0.00185861) 13753
(0.00523446 0.00557915 0.0017144) 13810
(0.00566295 0.00558442 0.00170721) 13811
(0.00607801 0.00558906 0.00170293) 13812
(0.00587932 0.00442916 0.00168367) 14051
(0.00626652 0.00440973 0.00168311) 14052
(0.00665997 0.00440057 0.00168136) 14053
(0.00706321 0.00439375 0.0016789) 14054
(0.00747386 0.00438893 0.00167435) 14054
(0.00553688 0.00424035 0.00178815) 14111
(0.00553688 0.00424035 0.00178815) 14111
(0.00553688 0.00424035 0.00178815) 14111
(0.00591923 0.00419827 0.00181256) 14111
(0.00632616 0.00417595 0.00181823) 14112
(0.00673263 0.00416637 0.00181601) 14113
(0.00713248 0.00415743 0.00181377) 14114
(0.00752872 0.00414705 0.00181211) 14115
(0.0117678 0.00417633 0.001843) 14123
(0.0122594 0.00418097 0.00184632) 14124
(0.0127061 0.0041823 0.00184567) 14125
(0.0131377 0.00418144 0.00184237) 14126
(0.00528194 0.00399003 0.00201024) 14170
(0.0057167 0.00398373 0.0020192) 14171
(0.00612761 0.00397204 0.00202457) 14172
(0.0110135 0.00362103 0.00289101) 14362
(0.0115618 0.0036299 0.00289279) 14363
(0.0121334 0.0036427 0.00289458) 14364
(0.012701 0.00365372 0.00289554) 14365
(0.0132152 0.0036572 0.00289489) 14366
(0.0136706 0.00365316 0.00289329) 14367
(0.0140771 0.00364386 0.00289155) 14368
(0.00539161 0.00357921 0.00315057) 14410
(0.00580904 0.00357726 0.00319133) 14411
(0.0111482 0.00359379 0.00319042) 14422
(0.011715 0.00360432 0.0031941) 14423
(0.0122904 0.0036169 0.00319473) 14424
(0.0128349 0.00362517 0.00319453) 14425
(0.0133368 0.0036272 0.00319352) 14426
(0.0138086 0.00362509 0.00319358) 14427
(0.014249 0.00361907 0.00319427) 14428
(0.0146934 0.00361219 0.00319659) 14429
(0.00554514 0.00372493 0.00341898) 14471
(0.00554514 0.00372493 0.00341898) 14471
(0.00554514 0.00372493 0.00341898) 14471
(0.00573864 0.00373056 0.00351157) 14471
(0.00610291 0.00372209 0.00354706) 14472
(0.00660784 0.00370661 0.00353954) 14473
(0.00718501 0.00368333 0.0035091) 14474
(0.00772167 0.00365602 0.00348604) 14475
(0.00514349 0.00382671 0.00372075) 14530
(0.00514349 0.00382671 0.00372075) 14530
(0.00514349 0.00382671 0.00372075) 14530
(0.00538639 0.00384075 0.0037706) 14530
(0.00538639 0.00384075 0.0037706) 14530
(0.00538639 0.00384075 0.0037706) 14530
(0.00574715 0.00382703 0.00377752) 14531
(0.00618488 0.00380667 0.00376607) 14532
(0.00677301 0.00377807 0.00374381) 14533
(0.00494183 0.00397254 0.00393571) 14589
(0.00540588 0.00403783 0.00396398) 14590
(0.00594522 0.0040433 0.00396639) 14591
(0.00535343 0.0050206 0.00441631) 14830
(0.00581868 0.00501853 0.00442614) 14831
(0.00625545 0.00501131 0.00443591) 14832
(0.0066714 0.0050089 0.0044431) 14833
(0.00707721 0.00501059 0.00444861) 14834
(0.00521379 0.00528881 0.00437879) 14890
(0.00572915 0.00528958 0.00438583) 14891
(0.0061957 0.00528652 0.00439547) 14892
(0.00659966 0.00528308 0.00440513) 14893
(0.00578465 0.00635854 0.0034172) 15191
(0.00616041 0.00636857 0.00340786) 15192
(0.00542162 0.00644441 0.00310765) 15250
(0.00542162 0.00644441 0.00310765) 15250
(0.00542162 0.00644441 0.00310765) 15250
(0.00589922 0.00643353 0.00313471) 15251
(0.00633742 0.00643519 0.00313421) 15252
(0.00677538 0.00643801 0.00312851) 15253
(0.00721114 0.00644227 0.00312626) 15254
(0.00764303 0.00644771 0.00312849) 15255
(0.00313969 0.00638618 0.00277291) 13506
(0.00296371 0.00644576 0.0028008) 13505
(0.00408443 0.00636503 0.00266528) 13568
(0.00443243 0.00637107 0.0026174) 13568
(0.00478258 0.00636908 0.00270651) 13569
(0.00461765 0.00437483 0.00160935) 5709
(0.00488787 0.00446684 0.00157522) 5709
(0.00453092 0.00361691 0.00339649) 14469
(0.00449411 0.00365511 0.00357226) 14468
(0.00506404 0.00370747 0.00347804) 14470
(0.00139153 0.00492584 0.00444251) 14822
(0.00227112 0.00492995 0.00443238) 14824
(0.00369355 0.00493594 0.0043364) 14827
(0.00388812 0.0052652 0.00435325) 14887
(0.00451325 0.00531626 0.00432006) 14889
(0.00375727 0.0063764 0.00276803) 13507
(0.0043362 0.00638893 0.00271998) 13568
(0.00487477 0.006449 0.00288379) 13509
(0.0203445 0.00303351 0.00214865) 520
(0.0217778 0.00301369 0.0021936) 523
(0.0210725 0.00705637 0.00381099) 23862
(0.0220329 0.00713982 0.00371627) 23504
(0.0207447 0.00686892 0.00366224) 2021
(0.0223679 0.00696285 0.00357424) 2024
(0.0122006 0.00649753 0.00418947) 6684
(0.0122006 0.00649753 0.00418947) 6684
(0.0122006 0.00649753 0.00418947) 6684
(0.0133216 0.0064488 0.00414466) 6686
(0.0141657 0.00641984 0.00412714) 6688
(0.0148427 0.00640126 0.00412064) 6689
(0.0154148 0.00639316 0.00411425) 6690
(0.0159202 0.00639137 0.00410969) 6691
(0.0163971 0.00639138 0.00410694) 6692
(0.0168818 0.00639131 0.00410254) 6693
(0.0173968 0.00638696 0.0040977) 6694
(0.0179127 0.00637866 0.00409617) 6695
(0.0184042 0.00637154 0.00409544) 6696
(0.0127406 0.0060972 0.00439706) 9325
(0.0225588 0.00328222 0.0033227) 5445
(0.0231681 0.00652694 0.0021749) 13426
(0.0243084 0.00663588 0.00225375) 6108
(0.0223398 0.00693204 0.00421552) 1904
(0.0207384 0.00661851 0.00422001) 6641
(0.0230447 0.00665537 0.00412629) 1966
(0.0244478 0.00670116 0.0041068) 1968
(0.0212672 0.00639555 0.00124226) 6822
(0.0202705 0.00357489 0.0045889) 7180
(0.0220669 0.00359057 0.00458436) 7184
(0.0233016 0.00361044 0.00462717) 7186
(0.0202954 0.00342108 0.00158326) 9220
(0.022273 0.00340461 0.00167334) 464
(0.0236655 0.00338379 0.00169625) 467
(0.0208013 0.00608811 0.00476054) 12221
(0.0225741 0.00611161 0.00472461) 12225
(0.020576 0.00579423 0.00502563) 12581
(0.020576 0.00579423 0.00502563) 12581
(0.020576 0.00579423 0.00502563) 12581
(0.0224837 0.00578633 0.00499539) 12584
(0.0224837 0.00578633 0.00499539) 12584
(0.0224837 0.00578633 0.00499539) 12584
(0.0237395 0.00582669 0.00498654) 12587
(0.0237395 0.00582669 0.00498654) 12587
(0.0237395 0.00582669 0.00498654) 12587
(0.0205802 0.003953 0.0048231) 10541
(0.0222355 0.00397268 0.00485013) 10544
(0.0205633 0.00380084 0.00139456) 12761
(0.0233141 0.00381216 0.00141746) 12766
(0.0208256 0.00418757 0.00125753) 11501
(0.0235015 0.00412693 0.00124961) 11507
(0.0207284 0.00454638 0.0011174) 9821
(0.0226232 0.0044399 0.00113284) 11565
(0.0205412 0.00485044 0.000973426) 11621
(0.0223724 0.00478988 0.000980195) 11624
(0.0202545 0.00567726 0.00103034) 12160
(0.0218813 0.0056327 0.00100565) 12163
(0.0201711 0.00599626 0.00108053) 12280
(0.021725 0.00602306 0.00109825) 12463
(0.0205791 0.0053885 0.000903017) 12101
(0.0225136 0.00531315 0.000920794) 10125
(0.0237278 0.00527484 0.00089571) 10127
(0.0213083 0.00502823 0.000718798) 11922
(0.0203872 0.00521576 0.00518434) 11440
(0.0219422 0.00520683 0.00516328) 11443
(0.0231181 0.00523083 0.00516838) 11446
(0.0211761 0.00390605 0.00111811) 13002
(0.0225053 0.00384813 0.00111121) 13005
(0.0233447 0.0033224 0.00285732) 13306
(0.0213081 0.00305991 0.00315936) 762
(0.0244684 0.00306897 0.00315264) 768
(0.0251798 0.00302869 0.0031316) 770
(0.0202289 0.00674741 0.0017107) 2500
(0.0223376 0.00670238 0.00179069) 2444
(0.0223376 0.00670238 0.00179069) 2444
(0.0223376 0.00670238 0.00179069) 2444
(0.0240178 0.00669816 0.00181776) 2448
(0.0244654 0.00664241 0.00172215) 2508
(0.0226898 0.00624493 0.00171453) 13485
(0.023591 0.00632939 0.00174223) 13487
(0.0053077 0.00643778 0.00284762) 13510
(0.0053077 0.00643778 0.00284762) 13510
(0.0053077 0.00643778 0.00284762) 13510
(0.00620062 0.0064442 0.00288219) 13512
(0.00668345 0.00644418 0.00288223) 13513
(0.00716082 0.00644566 0.00287648) 13514
(0.00514068 0.00632735 0.00251334) 13570
(0.00554022 0.00635622 0.00254096) 13571
(0.0115314 0.00621575 0.00235881) 13643
(0.012078 0.00620692 0.00236354) 13644
(0.0126292 0.00619862 0.00236677) 13645
(0.0131367 0.00619701 0.00236692) 13646
(0.0135938 0.00620366 0.00236595) 13647
(0.0180068 0.00623358 0.00235907) 13656
(0.0185617 0.00622877 0.00236409) 13657
(0.0190887 0.00622291 0.00236699) 13658
(0.0196092 0.00621473 0.00236715) 13659
(0.0201475 0.0062036 0.00236434) 13660
(0.0206868 0.00619187 0.00235584) 13661
(0.0211947 0.0061835 0.00234459) 13662
(0.0216724 0.00617865 0.00233284) 13663
(0.00527601 0.0058272 0.00187702) 13750
(0.00574734 0.00582814 0.00186669) 13751
(0.00620133 0.00582552 0.00185961) 13752
(0.00665121 0.00582853 0.00185843) 13753
(0.00521206 0.00557889 0.0017144) 13810
(0.00564147 0.00558415 0.00170717) 13811
(0.00605619 0.00558885 0.00170285) 13812
(0.00585848 0.00443056 0.00168309) 14051
(0.00624493 0.00441028 0.00168291) 14052
(0.00663805 0.00440089 0.00168125) 14053
(0.00704199 0.00439404 0.00167894) 14054
(0.00745271 0.00438907 0.0016745) 14054
(0.00552189 0.00424194 0.00178604) 14111
(0.00552189 0.00424194 0.00178604) 14111
(0.00552189 0.00424194 0.00178604) 14111
(0.00589924 0.00419963 0.00181164) 14111
(0.00630428 0.0041765 0.001818) 14112
(0.00671047 0.00416663 0.00181596) 14113
(0.00711169 0.00415777 0.00181381) 14114
(0.00750812 0.00414741 0.00181216) 14115
(0.0117447 0.00417605 0.00184279) 14123
(0.0122384 0.00418077 0.00184622) 14124
(0.0126865 0.00418221 0.00184568) 14125
(0.0131177 0.00418139 0.00184244) 14126
(0.00526198 0.0039893 0.00200988) 14170
(0.0056954 0.00398407 0.00201854) 14171
(0.00610549 0.00397235 0.00202428) 14172
(0.0109899 0.00362074 0.00289093) 14361
(0.0115382 0.00362947 0.00289272) 14363
(0.0121085 0.00364211 0.00289449) 14364
(0.0126777 0.00365332 0.00289553) 14365
(0.0131939 0.0036571 0.00289494) 14366
(0.0136519 0.00365337 0.00289338) 14367
(0.0140601 0.00364426 0.00289163) 14368
(0.00537235 0.00357913 0.00314813) 14410
(0.005789 0.0035767 0.00319021) 14411
(0.0111225 0.00359336 0.00319031) 14422
(0.0116896 0.00360378 0.0031941) 14423
(0.0122654 0.00361637 0.00319475) 14424
(0.012812 0.0036249 0.00319462) 14425
(0.0133149 0.0036271 0.00319361) 14426
(0.0137882 0.00362518 0.00319362) 14427
(0.0142295 0.0036193 0.00319427) 14428
(0.0146728 0.00361243 0.00319661) 14429
(0.00554069 0.0037225 0.00341335) 14471
(0.00554069 0.0037225 0.00341335) 14471
(0.00554069 0.0037225 0.00341335) 14471
(0.00572807 0.00372928 0.00350823) 14471
(0.00608338 0.00372202 0.00354556) 14472
(0.00658262 0.00370712 0.00354031) 14473
(0.00715823 0.00368439 0.00351046) 14474
(0.00769786 0.00365709 0.00348684) 14475
(0.00513606 0.00382427 0.00371895) 14530
(0.00513606 0.00382427 0.00371895) 14530
(0.00513606 0.00382427 0.00371895) 14530
(0.00537301 0.00383987 0.00376906) 14530
(0.00537301 0.00383987 0.00376906) 14530
(0.00537301 0.00383987 0.00376906) 14530
(0.00573115 0.00382698 0.00377736) 14531
(0.0061635 0.00380719 0.0037665) 14532
(0.00674425 0.00377923 0.00374505) 14533
(0.00492326 0.00396809 0.00393533) 14589
(0.00538131 0.00403541 0.00396314) 14590
(0.00592029 0.0040429 0.00396558) 14591
(0.0053328 0.00502025 0.00441617) 14830
(0.00579691 0.00501866 0.00442593) 14831
(0.00623241 0.00501147 0.00443585) 14832
(0.0066481 0.00500883 0.00444315) 14833
(0.00705562 0.00501043 0.00444853) 14834
(0.00519097 0.00528891 0.00437869) 14890
(0.00570521 0.00528976 0.00438571) 14891
(0.00617217 0.00528669 0.00439535) 14892
(0.00657716 0.00528314 0.00440513) 14893
(0.00576302 0.00635857 0.00341748) 15191
(0.00614135 0.0063682 0.00340834) 15192
(0.00539927 0.00644569 0.00310484) 15250
(0.00539927 0.00644569 0.00310484) 15250
(0.00539927 0.00644569 0.00310484) 15250
(0.00587682 0.00643387 0.00313433) 15251
(0.00631493 0.00643522 0.00313457) 15252
(0.00675296 0.00643799 0.00312884) 15253
(0.00718911 0.0064421 0.00312646) 15254
(0.00762136 0.00644752 0.00312836) 15255
(0.00316076 0.00637849 0.002768) 13506
(0.00294509 0.0064454 0.00279998) 13505
(0.00404535 0.00636769 0.00267227) 13568
(0.00442027 0.0063699 0.00261714) 13568
(0.00476885 0.00637479 0.00270027) 13569
(0.0044434 0.00437225 0.00162217) 5708
(0.00489302 0.00445927 0.00157185) 5709
(0.00413117 0.00362572 0.00343348) 14468
(0.00440196 0.00364948 0.00357963) 14468
(0.0050356 0.00369899 0.00348528) 14470
(0.00137785 0.00492607 0.00444225) 14822
(0.00221037 0.00492899 0.00443422) 14824
(0.00362621 0.00493246 0.00434328) 14827
(0.00387211 0.00525885 0.00435423) 14887
(0.00449161 0.00531574 0.00432057) 14888
(0.00383303 0.00636278 0.0027564) 13567
(0.00431671 0.00638819 0.0027211) 13568
(0.004861 0.00644862 0.00287498) 13509
(0.0202981 0.00303254 0.00214686) 520
(0.0217416 0.00301672 0.00219036) 523
(0.0210479 0.00705353 0.00381506) 23862
(0.0220191 0.00713322 0.0037233) 23504
(0.0206871 0.00686682 0.00366643) 2021
(0.0223178 0.00695824 0.00357699) 2024
(0.0121598 0.00649962 0.00419188) 6684
(0.0121598 0.00649962 0.00419188) 6684
(0.0121598 0.00649962 0.00419188) 6684
(0.0132894 0.00645011 0.00414554) 6686
(0.0141414 0.00642058 0.00412732) 6688
(0.0148226 0.00640164 0.00412064) 6689
(0.0153979 0.0063932 0.00411418) 6690
(0.0159051 0.00639129 0.00410949) 6691
(0.016382 0.00639122 0.00410686) 6692
(0.0168658 0.00639119 0.0041025) 6693
(0.0173797 0.00638706 0.00409753) 6694
(0.017896 0.00637879 0.00409595) 6695
(0.0183893 0.00637156 0.00409516) 6696
(0.012709 0.00609747 0.00439804) 9325
(0.0136032 0.00608687 0.00437336) 9327
(0.0224846 0.0032818 0.003322) 5444
(0.0231094 0.00651839 0.00216569) 13426
(0.0242636 0.00663422 0.00225454) 6108
(0.0249761 0.00666112 0.00220581) 13429
(0.0223042 0.0069269 0.00422179) 1904
(0.0206578 0.0066174 0.00422605) 6641
(0.0229671 0.00665322 0.00412776) 1965
(0.0244316 0.00669687 0.00410785) 1968
(0.0212368 0.00639752 0.00124367) 6822
(0.0202191 0.00357148 0.00458724) 7180
(0.0220124 0.00359036 0.0045832) 7184
(0.0232825 0.00360785 0.00462292) 7186
(0.0202451 0.003424 0.00157749) 9220
(0.0222095 0.00340559 0.00167234) 464
(0.0236412 0.00338678 0.00169414) 467
(0.0207412 0.00608631 0.00476368) 12221
(0.0225195 0.00610952 0.00472479) 12225
(0.0205185 0.0057942 0.00502659) 12581
(0.0205185 0.0057942 0.00502659) 12581
(0.0205185 0.0057942 0.00502659) 12581
(0.0224235 0.00578506 0.00499544) 12584
(0.0224235 0.00578506 0.00499544) 12584
(0.0224235 0.00578506 0.00499544) 12584
(0.0237167 0.00582287 0.00498697) 12587
(0.0237167 0.00582287 0.00498697) 12587
(0.0237167 0.00582287 0.00498697) 12587
(0.0240947 0.00595067 0.00491662) 12348
(0.020518 0.00395088 0.0048211) 10541
(0.0221838 0.00397221 0.00484804) 10544
(0.0204925 0.00380116 0.001392) 12760
(0.0232227 0.00381109 0.00141851) 12766
(0.020741 0.0041892 0.00125622) 11501
(0.0234029 0.00412759 0.00125127) 11506
(0.02066 0.00454832 0.00111565) 9821
(0.0225612 0.00444373 0.00113394) 11565
(0.0204762 0.0048518 0.000973164) 11620
(0.0223131 0.00479276 0.000981345) 11624
(0.020213 0.00568054 0.00103315) 12160
(0.0218302 0.00563417 0.00100759) 12163
(0.0201341 0.00599563 0.00108152) 12280
(0.021675 0.00602259 0.00109904) 12463
(0.0205175 0.00539313 0.000903395) 12101
(0.022452 0.00531476 0.000921749) 10124
(0.0237159 0.0052786 0.000899063) 10127
(0.0212869 0.00503076 0.000718091) 11922
(0.0203463 0.0052142 0.00518465) 11440
(0.0218952 0.00520669 0.00516288) 11443
(0.0230964 0.00522692 0.00516733) 11446
(0.0211362 0.00390858 0.00111775) 13002
(0.0224816 0.00385403 0.00111052) 13004
(0.0232855 0.00332371 0.00285459) 13306
(0.0210904 0.00305268 0.00315545) 762
(0.0243948 0.00306956 0.00315362) 768
(0.0251662 0.00303176 0.0031306) 770
(0.0222633 0.00670297 0.00178923) 2444
(0.0222633 0.00670297 0.00178923) 2444
(0.0222633 0.00670297 0.00178923) 2444
(0.0239836 0.0066982 0.00182007) 2447
(0.0244735 0.00664804 0.00172926) 2508
(0.0226013 0.00623967 0.00170902) 13485
(0.0235652 0.00632799 0.00174469) 13487
(0.0052898 0.00643816 0.00284459) 13510
(0.0052898 0.00643816 0.00284459) 13510
(0.0052898 0.00643816 0.00284459) 13510
(0.00617717 0.00644434 0.00288183) 13512
(0.00666007 0.00644421 0.0028824) 13513
(0.00713779 0.0064456 0.0028768) 13514
(0.00512149 0.0063266 0.00251237) 13570
(0.00551539 0.00635573 0.00253934) 13571
(0.0115086 0.00621605 0.00235866) 13643
(0.0120548 0.0062073 0.00236337) 13644
(0.0126064 0.00619894 0.00236672) 13645
(0.0131159 0.00619699 0.00236691) 13646
(0.0135745 0.00620333 0.002366) 13647
(0.0139978 0.00621471 0.00236369) 13647
(0.0179812 0.00623386 0.00235896) 13655
(0.0185376 0.00622902 0.00236395) 13657
(0.0190659 0.00622326 0.002367) 13658
(0.0195863 0.00621519 0.00236728) 13659
(0.0201236 0.00620422 0.00236467) 13660
(0.0206638 0.00619246 0.00235641) 13661
(0.0211728 0.00618393 0.0023452) 13662
(0.0216515 0.00617897 0.00233351) 13663
(0.00525495 0.00582702 0.00187719) 13750
(0.00572578 0.00582812 0.0018667) 13751
(0.00617862 0.00582545 0.00185949) 13752
(0.00662891 0.00582827 0.00185825) 13753
(0.00518956 0.00557864 0.00171441) 13810
(0.00562005 0.00558389 0.00170715) 13811
(0.00603438 0.00558861 0.00170277) 13812
(0.0058377 0.004432 0.00168248) 14051
(0.00622343 0.00441085 0.0016827) 14052
(0.00661613 0.00440121 0.00168113) 14053
(0.00702074 0.00439434 0.00167897) 14054
(0.0074316 0.0043892 0.00167466) 14054
(0.00550712 0.00424344 0.00178386) 14111
(0.00550712 0.00424344 0.00178386) 14111
(0.00550712 0.00424344 0.00178386) 14111
(0.00587944 0.00420101 0.00181067) 14111
(0.0062825 0.00417708 0.00181776) 14112
(0.00668829 0.00416689 0.00181592) 14113
(0.00709086 0.00415811 0.00181384) 14114
(0.00748754 0.00414779 0.00181218) 14114
(0.0117215 0.00417576 0.00184258) 14123
(0.0122174 0.00418058 0.00184611) 14124
(0.0126668 0.00418211 0.0018457) 14125
(0.0130978 0.00418134 0.0018425) 14126
(0.00524216 0.00398845 0.00200957) 14170
(0.00567418 0.00398438 0.00201789) 14171
(0.00608347 0.00397266 0.00202399) 14172
(0.0109664 0.00362045 0.00289087) 14361
(0.0115146 0.00362905 0.00289265) 14363
(0.0120836 0.00364152 0.00289441) 14364
(0.0126542 0.0036529 0.0028955) 14365
(0.0131726 0.00365699 0.00289499) 14366
(0.0136331 0.00365357 0.00289346) 14367
(0.0140429 0.00364465 0.00289172) 14368
(0.00535301 0.00357905 0.00314559) 14410
(0.00576889 0.00357614 0.00318905) 14411
(0.0110967 0.00359292 0.0031902) 14422
(0.0116641 0.00360323 0.0031941) 14423
(0.0122404 0.00361584 0.00319478) 14424
(0.0127891 0.00362461 0.0031947) 14425
(0.0132931 0.00362699 0.00319371) 14426
(0.0137676 0.00362525 0.00319367) 14427
(0.01421 0.00361953 0.00319428) 14428
(0.0146523 0.00361267 0.0031966) 14429
(0.00553634 0.00371995 0.00340774) 14471
(0.00553634 0.00371995 0.00340774) 14471
(0.00553634 0.00371995 0.00340774) 14471
(0.00571771 0.003728 0.00350479) 14471
(0.00606416 0.00372189 0.00354397) 14472
(0.00655763 0.00370763 0.00354105) 14473
(0.00713139 0.00368542 0.00351181) 14474
(0.00767392 0.00365817 0.00348767) 14475
(0.0051287 0.00382183 0.00371716) 14530
(0.0051287 0.00382183 0.00371716) 14530
(0.0051287 0.00382183 0.00371716) 14530
(0.00535978 0.00383894 0.00376747) 14530
(0.00535978 0.00383894 0.00376747) 14530
(0.00535978 0.00383894 0.00376747) 14530
(0.0057152 0.00382691 0.00377716) 14531
(0.00614245 0.00380765 0.00376688) 14532
(0.00671577 0.00378036 0.00374627) 14533
(0.00490483 0.00396373 0.00393505) 14589
(0.00535691 0.00403291 0.00396227) 14590
(0.00589538 0.00404241 0.00396482) 14591
(0.00531216 0.00501988 0.00441605) 14830
(0.00577521 0.00501877 0.00442572) 14831
(0.00620947 0.00501166 0.00443576) 14832
(0.00662471 0.00500874 0.00444321) 14833
(0.00703391 0.00501025 0.00444847) 14834
(0.0051682 0.00528903 0.00437859) 14890
(0.00568131 0.00528994 0.00438558) 14891
(0.00614865 0.0052868 0.00439523) 14892
(0.00655452 0.00528328 0.00440512) 14893
(0.00574123 0.00635863 0.00341774) 15191
(0.00612224 0.00636784 0.00340882) 15192
(0.00537694 0.00644701 0.00310183) 15250
(0.00537694 0.00644701 0.00310183) 15250
(0.00537694 0.00644701 0.00310183) 15250
(0.00585437 0.00643425 0.00313388) 15251
(0.00629244 0.00643526 0.00313491) 15252
(0.00673051 0.00643798 0.00312917) 15253
(0.00716707 0.00644193 0.00312668) 15254
(0.00759969 0.00644733 0.00312824) 15255
(0.00315356 0.00637224 0.00276469) 13506
(0.00300472 0.00643924 0.0027939) 13506
(0.00399674 0.00637264 0.00268051) 13567
(0.00442599 0.00635524 0.00261816) 13568
(0.0047646 0.00637938 0.00269881) 13569
(0.00421147 0.00437015 0.0016358) 5708
(0.00489402 0.00445164 0.00156986) 5709
(0.00314357 0.00419346 0.00173628) 5646
(0.00502623 0.00422573 0.00172419) 14110
(0.00371241 0.0036173 0.00344251) 14467
(0.00501025 0.0035421 0.00319841) 14410
(0.00423191 0.00364365 0.0035875) 14468
(0.00500295 0.00369157 0.00349233) 14470
(0.00136559 0.00492628 0.00444193) 14822
(0.00216429 0.00492814 0.00443536) 14824
(0.0035542 0.00493054 0.00435031) 14827
(0.00386163 0.00525345 0.00435411) 14887
(0.0044703 0.00531523 0.00432132) 14888
(0.00399778 0.00632851 0.00272269) 13567
(0.00429386 0.00638825 0.00272288) 13568
(0.00484718 0.00644852 0.00286581) 13509
(0.0202514 0.00303135 0.0021452) 520
(0.0217045 0.00301961 0.00218721) 523
(0.0210232 0.00705077 0.00381911) 23862
(0.0220047 0.00712686 0.00373006) 23504
(0.0206266 0.00686553 0.00367008) 2021
(0.0222671 0.00695366 0.00357977) 2024
(0.0121201 0.00650161 0.00419427) 6684
(0.0121201 0.00650161 0.00419427) 6684
(0.0121201 0.00650161 0.00419427) 6684
(0.0132568 0.00645144 0.00414648) 6686
(0.0141167 0.00642133 0.00412757) 6688
(0.0148024 0.00640205 0.00412063) 6689
(0.0153809 0.00639327 0.00411409) 6690
(0.0158898 0.00639121 0.00410928) 6691
(0.0163669 0.00639108 0.00410677) 6692
(0.0168498 0.00639103 0.00410253) 6693
(0.0173626 0.00638712 0.00409744) 6694
(0.0178794 0.00637895 0.00409568) 6695
(0.0183743 0.00637163 0.00409482) 6696
(0.0126774 0.00609774 0.00439904) 9325
(0.0135754 0.00608706 0.00437383) 9327
(0.0224063 0.00328103 0.00332129) 5444
(0.0230469 0.0065095 0.00215556) 13426
(0.0242186 0.00663251 0.00225517) 6108
(0.0249622 0.00665989 0.00220875) 13429
(0.0222674 0.00692199 0.0042279) 1904
(0.0205737 0.00661756 0.00423137) 6641
(0.0228884 0.00665101 0.0041294) 1965
(0.0244132 0.00669269 0.0041088) 1968
(0.0212062 0.00639939 0.00124497) 6822
(0.0201756 0.00356953 0.00458541) 7180
(0.0219568 0.00359018 0.00458219) 7183
(0.0232617 0.00360546 0.00461885) 7186
(0.0201995 0.00342774 0.00157195) 9220
(0.0221446 0.00340643 0.00167125) 464
(0.0236151 0.0033896 0.00169217) 467
(0.0206779 0.00608455 0.00476702) 12221
(0.0224639 0.0061075 0.004725) 12224
(0.020461 0.00579417 0.0050274) 12580
(0.020461 0.00579417 0.0050274) 12580
(0.020461 0.00579417 0.0050274) 12580
(0.0223621 0.00578388 0.00499556) 12584
(0.0223621 0.00578388 0.00499556) 12584
(0.0223621 0.00578388 0.00499556) 12584
(0.0236925 0.00581918 0.00498733) 12587
(0.0236925 0.00581918 0.00498733) 12587
(0.0236925 0.00581918 0.00498733) 12587
(0.0241033 0.00594124 0.00492333) 12348
(0.0204519 0.00394827 0.00481887) 10540
(0.0221312 0.00397173 0.004846) 10544
(0.0204252 0.00380143 0.00138959) 12760
(0.0231309 0.00381029 0.00141945) 12766
(0.0206565 0.00418915 0.00125486) 11501
(0.0233049 0.00412848 0.00125287) 11506
(0.0205888 0.00454889 0.0011139) 9821
(0.0224986 0.00444766 0.00113495) 11564
(0.0204101 0.00485243 0.000972975) 11620
(0.0222532 0.00479558 0.000982421) 11624
(0.0236544 0.00473728 0.000959635) 11627
(0.0217786 0.00563562 0.00100947) 12163
(0.0216245 0.00602207 0.00109974) 12463
(0.0204617 0.00539793 0.000904117) 12100
(0.0223893 0.00531646 0.000922595) 10124
(0.0237014 0.0052821 0.000902324) 10127
(0.0212651 0.00503318 0.000717318) 11922
(0.0218477 0.00520657 0.00516253) 11443
(0.0230733 0.00522327 0.00516628) 11446
(0.0210968 0.00391111 0.00111736) 13002
(0.022457 0.0038597 0.00110989) 13004
(0.0232211 0.00332484 0.00285169) 13306
(0.020871 0.00304306 0.00315079) 761
(0.0243101 0.00307036 0.00315437) 768
(0.0251521 0.00303487 0.00312968) 770
(0.0221879 0.00670365 0.00178757) 2444
(0.0221879 0.00670365 0.00178757) 2444
(0.0221879 0.00670365 0.00178757) 2444
(0.0239472 0.00669824 0.00182218) 2447
(0.0244802 0.00665319 0.00173615) 2508
(0.0224999 0.00623443 0.00170315) 13484
(0.0235399 0.00632647 0.001747) 13487
(0.00527197 0.00643854 0.00284137) 13510
(0.00527197 0.00643854 0.00284137) 13510
(0.00527197 0.00643854 0.00284137) 13510
(0.00615368 0.00644449 0.00288143) 13512
(0.00663668 0.00644424 0.00288255) 13513
(0.00711474 0.00644553 0.00287711) 13514
(0.00510248 0.00632586 0.00251141) 13570
(0.00549074 0.00635522 0.00253772) 13570
(0.0114858 0.00621634 0.0023585) 13642
(0.0120315 0.00620768 0.0023632) 13644
(0.0125836 0.00619928 0.00236666) 13645
(0.0130949 0.00619699 0.0023669) 13646
(0.0135552 0.00620302 0.00236604) 13647
(0.0139794 0.00621426 0.00236381) 13647
(0.0179555 0.00623414 0.00235886) 13655
(0.0185134 0.00622926 0.0023638) 13657
(0.0190429 0.0062236 0.00236701) 13658
(0.0195634 0.00621564 0.0023674) 13659
(0.0200998 0.00620484 0.00236499) 13660
(0.0206408 0.00619304 0.00235697) 13661
(0.0211509 0.00618437 0.00234582) 13662
(0.0216305 0.0061793 0.0023342) 13663
(0.00523381 0.00582681 0.00187735) 13750
(0.00570426 0.00582808 0.00186672) 13751
(0.00615595 0.0058254 0.00185938) 13752
(0.00660654 0.00582802 0.00185806) 13753
(0.00516698 0.00557841 0.00171444) 13810
(0.00559866 0.00558363 0.00170714) 13811
(0.0060126 0.00558836 0.00170268) 13812
(0.00581697 0.00443347 0.00168183) 14051
(0.006202 0.00441145 0.00168249) 14052
(0.00659422 0.00440153 0.00168101) 14053
(0.00699945 0.00439463 0.001679) 14053
(0.0074105 0.00438933 0.00167482) 14054
(0.00549258 0.00424486 0.0017816) 14110
(0.00549258 0.00424486 0.0017816) 14110
(0.00549258 0.00424486 0.0017816) 14110
(0.00585983 0.00420241 0.00180965) 14111
(0.00626083 0.00417769 0.0018175) 14112
(0.0066661 0.00416715 0.00181587) 14113
(0.00706998 0.00415845 0.00181387) 14114
(0.00746698 0.00414818 0.00181221) 14114
(0.0116982 0.00417547 0.00184237) 14123
(0.0121963 0.00418038 0.00184601) 14124
(0.0126471 0.00418202 0.00184571) 14125
(0.0130779 0.00418128 0.00184256) 14126
(0.00522246 0.00398751 0.00200931) 14170
(0.00565306 0.00398464 0.00201725) 14171
(0.00606152 0.00397298 0.0020237) 14172
(0.0109428 0.00362017 0.00289081) 14361
(0.0114911 0.00362864 0.00289257) 14362
(0.0120587 0.00364093 0.00289433) 14364
(0.0126307 0.00365248 0.00289548) 14365
(0.0131511 0.00365687 0.00289504) 14366
(0.0136141 0.00365376 0.00289354) 14367
(0.0140257 0.00364504 0.0028918) 14368
(0.00533355 0.00357898 0.00314291) 14410
(0.00574873 0.00357557 0.00318782) 14411
(0.0110708 0.00359248 0.00319011) 14422
(0.0116386 0.00360268 0.00319408) 14423
(0.0122152 0.0036153 0.00319481) 14424
(0.012766 0.00362432 0.00319478) 14425
(0.0132711 0.00362687 0.0031938) 14426
(0.013747 0.00362532 0.00319372) 14427
(0.0141904 0.00361976 0.00319429) 14428
(0.0146318 0.00361289 0.00319655) 14429
(0.00553185 0.00371731 0.00340212) 14471
(0.00553185 0.00371731 0.00340212) 14471
(0.00553185 0.00371731 0.00340212) 14471
(0.00570776 0.00372666 0.00350127) 14471
(0.00604526 0.00372171 0.00354229) 14472
(0.00653282 0.00370805 0.00354164) 14473
(0.00710453 0.00368642 0.00351316) 14474
(0.00764984 0.00365925 0.00348853) 14475
(0.00512158 0.00381937 0.00371542) 14530
(0.00512158 0.00381937 0.00371542) 14530
(0.00512158 0.00381937 0.00371542) 14530
(0.0053468 0.00383796 0.00376585) 14530
(0.0053468 0.00383796 0.00376585) 14530
(0.0053468 0.00383796 0.00376585) 14530
(0.00569931 0.00382681 0.00377693) 14531
(0.00612171 0.00380807 0.00376721) 14532
(0.00668759 0.00378146 0.00374745) 14533
(0.00488657 0.00395949 0.00393485) 14589
(0.00533269 0.00403033 0.00396138) 14590
(0.00587047 0.00404182 0.0039641) 14591
(0.00639691 0.00401653 0.00396532) 14592
(0.00529151 0.0050195 0.00441594) 14830
(0.00575359 0.00501886 0.0044255) 14831
(0.00618663 0.00501188 0.00443567) 14832
(0.00660126 0.00500865 0.00444328) 14833
(0.00701207 0.00501006 0.00444842) 14834
(0.00514549 0.00528917 0.00437847) 14890
(0.00565747 0.00529012 0.00438546) 14891
(0.0061251 0.00528689 0.00439511) 14892
(0.00653176 0.00528345 0.00440512) 14893
(0.00506109 0.00622889 0.00364684) 15130
(0.0057193 0.00635874 0.00341796) 15191
(0.00610308 0.00636749 0.00340927) 15192
(0.00535466 0.00644839 0.00309859) 15250
(0.00535466 0.00644839 0.00309859) 15250
(0.00535466 0.00644839 0.00309859) 15250
(0.00583187 0.00643465 0.00313337) 15251
(0.00626994 0.0064353 0.00313523) 15252
(0.00670803 0.00643798 0.00312949) 15253
(0.00714504 0.00644176 0.0031269) 15254
(0.00757804 0.00644714 0.00312813) 15255
(0.00316672 0.00636182 0.00276233) 13506
(0.00307359 0.00643151 0.00278695) 13506
(0.0039456 0.0063776 0.00268865) 13567
(0.00441314 0.00635602 0.00261745) 13568
(0.00475236 0.00638438 0.00269341) 13569
(0.00383717 0.00436688 0.00164822) 5707
(0.00489331 0.00444304 0.00156896) 5709
(0.0037201 0.00420485 0.0017353) 5647
(0.00498976 0.00423125 0.00171398) 5649
(0.00315171 0.00358745 0.00343251) 14466
(0.00499412 0.00353379 0.00319626) 14409
(0.0039702 0.00364078 0.00359021) 14467
(0.00496542 0.00368635 0.00350063) 14469
(0.0013551 0.00492643 0.00444163) 14822
(0.00210797 0.0049283 0.00443682) 14824
(0.00348834 0.00493013 0.00435628) 14826
(0.00385463 0.00524845 0.00435309) 14887
(0.00444923 0.00531468 0.00432243) 14888
(0.00410479 0.00629905 0.00269268) 13568
(0.00427619 0.00638787 0.0027241) 13568
(0.00483372 0.00644793 0.00285695) 13509
(0.0202046 0.00302995 0.00214374) 520
(0.0216664 0.00302235 0.00218414) 523
(0.0209981 0.00704803 0.00382321) 23861
(0.0219897 0.00712078 0.00373645) 23503
(0.0205641 0.0068648 0.00367312) 2021
(0.0222158 0.00694911 0.00358258) 2024
(0.0120812 0.00650352 0.00419665) 6684
(0.0120812 0.00650352 0.00419665) 6684
(0.0120812 0.00650352 0.00419665) 6684
(0.0132237 0.00645281 0.00414752) 6686
(0.0132237 0.00645281 0.00414752) 6686
(0.0132237 0.00645281 0.00414752) 6686
(0.0140918 0.00642207 0.00412787) 6688
(0.0147821 0.00640248 0.0041206) 6689
(0.0153638 0.00639336 0.00411398) 6690
(0.0158746 0.00639115 0.00410907) 6691
(0.0163519 0.00639094 0.00410666) 6692
(0.0168338 0.00639087 0.00410255) 6693
(0.0173454 0.00638718 0.00409736) 6694
(0.0178627 0.0063791 0.00409543) 6695
(0.0183592 0.00637172 0.00409448) 6696
(0.0126458 0.00609804 0.00440007) 9325
(0.0135473 0.00608725 0.00437434) 9327
(0.0223237 0.00327986 0.0033206) 5444
(0.0229801 0.00650031 0.00214439) 13425
(0.0241738 0.00663074 0.00225564) 6108
(0.0249473 0.00665856 0.00221166) 13429
(0.0222294 0.00691732 0.00423386) 1904
(0.0204875 0.00661916 0.00423584) 6640
(0.0228083 0.00664877 0.00413122) 1965
(0.0243925 0.00668863 0.00410971) 1968
(0.0211754 0.00640116 0.00124618) 6822
(0.0221781 0.00633524 0.00120778) 12464
(0.0219002 0.00359001 0.00458131) 7183
(0.0232392 0.00360325 0.00461493) 7186
(0.0201579 0.00343221 0.00156672) 9220
(0.0220782 0.00340723 0.00166998) 464
(0.0235876 0.0033923 0.00169032) 467
(0.0206109 0.0060829 0.00477055) 12221
(0.0224073 0.00610553 0.00472524) 12224
(0.0204038 0.00579414 0.00502801) 12580
(0.0204038 0.00579414 0.00502801) 12580
(0.0204038 0.00579414 0.00502801) 12580
(0.0222995 0.00578278 0.00499575) 12584
(0.0222995 0.00578278 0.00499575) 12584
(0.0222995 0.00578278 0.00499575) 12584
(0.0236673 0.00581561 0.00498762) 12587
(0.0236673 0.00581561 0.00498762) 12587
(0.0236673 0.00581561 0.00498762) 12587
(0.024113 0.00593171 0.00492953) 12588
(0.0203824 0.003945 0.00481629) 10540
(0.0220781 0.00397123 0.00484401) 10544
(0.0203612 0.00380174 0.00138742) 12760
(0.0230387 0.00380969 0.00142033) 12766
(0.0205703 0.00418702 0.00125357) 11501
(0.0232075 0.00412966 0.00125441) 11506
(0.0205146 0.00454801 0.00111211) 9821
(0.0224354 0.00445172 0.00113588) 11564
(0.020345 0.00485261 0.000972881) 11620
(0.0221924 0.00479832 0.000983419) 11624
(0.023625 0.00474087 0.000961345) 11627
(0.0217264 0.00563706 0.00101128) 12163
(0.0215737 0.00602153 0.00110036) 12463
(0.0204134 0.00540306 0.000905277) 12100
(0.0223254 0.00531822 0.000923327) 10124
(0.0236842 0.00528535 0.000905485) 10127
(0.0212428 0.0050354 0.000716452) 11922
(0.0217997 0.00520649 0.00516224) 11443
(0.0230487 0.00521987 0.00516525) 11446
(0.021058 0.00391363 0.00111694) 13002
(0.0224314 0.00386514 0.00110931) 13004
(0.0231517 0.00332582 0.00284857) 13306
(0.0207024 0.0030361 0.0031457) 761
(0.0242142 0.00307153 0.00315496) 768
(0.0251374 0.003038 0.00312884) 770
(0.025338 0.00302526 0.0031724) 770
(0.0221105 0.00670446 0.00178562) 2444
(0.0221105 0.00670446 0.00178562) 2444
(0.0221105 0.00670446 0.00178562) 2444
(0.0239086 0.00669828 0.00182405) 2447
(0.0244862 0.00665797 0.00174289) 2508
(0.0223846 0.00622925 0.00169686) 13484
(0.0235154 0.00632482 0.00174914) 13487
(0.00525423 0.00643894 0.00283798) 13510
(0.00525423 0.00643894 0.00283798) 13510
(0.00525423 0.00643894 0.00283798) 13510
(0.00613014 0.00644465 0.002881) 13512
(0.00661329 0.00644429 0.00288267) 13513
(0.00709167 0.00644548 0.00287742) 13514
(0.00508365 0.00632513 0.00251048) 13570
(0.0054663 0.00635468 0.0025361) 13570
(0.011463 0.00621662 0.00235834) 13642
(0.0120083 0.00620805 0.00236304) 13644
(0.0125607 0.00619962 0.00236661) 13645
(0.0130739 0.006197 0.0023669) 13646
(0.0135357 0.00620272 0.00236608) 13647
(0.013961 0.00621382 0.00236392) 13647
(0.0179298 0.00623442 0.00235875) 13655
(0.0184892 0.00622951 0.00236366) 13656
(0.01902 0.00622394 0.00236702) 13658
(0.0195405 0.00621607 0.00236752) 13659
(0.0200758 0.00620545 0.0023653) 13660
(0.0206177 0.00619364 0.00235753) 13661
(0.021129 0.00618482 0.00234644) 13662
(0.0216095 0.00617963 0.00233489) 13663
(0.0052126 0.00582659 0.0018775) 13750
(0.00568279 0.00582802 0.00186674) 13751
(0.0061333 0.00582536 0.00185929) 13752
(0.00658408 0.00582777 0.00185788) 13753
(0.0051443 0.00557819 0.00171449) 13810
(0.00557731 0.00558337 0.00170714) 13811
(0.00599085 0.00558809 0.00170259) 13811
(0.0057963 0.00443499 0.00168113) 14051
(0.00618066 0.00441208 0.00168227) 14052
(0.00657232 0.00440186 0.00168089) 14053
(0.00697815 0.00439494 0.00167901) 14053
(0.00738941 0.00438946 0.00167498) 14054
(0.00547824 0.00424618 0.00177927) 14110
(0.00547824 0.00424618 0.00177927) 14110
(0.00547824 0.00424618 0.00177927) 14110
(0.0058404 0.00420383 0.00180858) 14111
(0.00623928 0.00417833 0.00181722) 14112
(0.00664389 0.00416742 0.00181582) 14113
(0.00704905 0.00415878 0.0018139) 14114
(0.00744643 0.00414859 0.00181223) 14114
(0.0116748 0.00417518 0.00184215) 14123
(0.0121751 0.00418018 0.00184589) 14124
(0.0126275 0.00418192 0.00184572) 14125
(0.013058 0.00418122 0.00184263) 14126
(0.00520282 0.00398648 0.00200909) 14170
(0.00563202 0.00398487 0.00201661) 14171
(0.00603967 0.00397329 0.0020234) 14172
(0.0109192 0.00361989 0.00289076) 14361
(0.0114676 0.00362824 0.0028925) 14362
(0.0120338 0.00364035 0.00289425) 14364
(0.0126071 0.00365205 0.00289545) 14365
(0.0131296 0.00365672 0.00289508) 14366
(0.0135951 0.00365393 0.00289362) 14367
(0.0140084 0.00364542 0.00289189) 14368
(0.00531403 0.0035789 0.00314015) 14410
(0.0057285 0.00357499 0.00318654) 14411
(0.0110448 0.00359204 0.00319003) 14422
(0.0116131 0.00360213 0.00319406) 14423
(0.01219 0.00361475 0.00319484) 14424
(0.0127429 0.00362401 0.00319485) 14425
(0.0132492 0.00362674 0.0031939) 14426
(0.0137263 0.00362538 0.00319376) 14427
(0.0141709 0.00361998 0.00319431) 14428
(0.0146113 0.00361312 0.00319654) 14429
(0.00552555 0.00371457 0.00339652) 14471
(0.00552555 0.00371457 0.00339652) 14471
(0.00552555 0.00371457 0.00339652) 14471
(0.00569819 0.0037252 0.00349768) 14471
(0.00602673 0.00372144 0.00354055) 14472
(0.0065082 0.00370844 0.00354212) 14473
(0.00707763 0.0036874 0.00351449) 14474
(0.00762562 0.00366034 0.00348941) 14475
(0.00511453 0.00381689 0.00371369) 14530
(0.00511453 0.00381689 0.00371369) 14530
(0.00511453 0.00381689 0.00371369) 14530
(0.00533396 0.00383692 0.00376419) 14530
(0.00533396 0.00383692 0.00376419) 14530
(0.00533396 0.00383692 0.00376419) 14530
(0.00568352 0.00382668 0.00377665) 14531
(0.00610126 0.00380844 0.0037675) 14532
(0.00665979 0.00378255 0.0037486) 14533
(0.00486845 0.00395537 0.00393473) 14589
(0.00530866 0.00402767 0.00396046) 14590
(0.00584557 0.00404114 0.00396344) 14591
(0.00637314 0.00401759 0.00396503) 14592
(0.00527087 0.00501912 0.00441584) 14830
(0.00573205 0.00501894 0.00442529) 14831
(0.00616388 0.0050121 0.00443557) 14832
(0.00657777 0.00500857 0.00444335) 14833
(0.00699009 0.00500987 0.00444839) 14833
(0.00512285 0.0052893 0.00437834) 14890
(0.0056337 0.0052903 0.00438533) 14891
(0.00610153 0.00528699 0.00439499) 14892
(0.00650892 0.00528362 0.00440511) 14893
(0.00503906 0.00622941 0.00364573) 15130
(0.0056972 0.00635888 0.00341817) 15191
(0.00608386 0.00636714 0.00340972) 15192
(0.00533242 0.00644983 0.00309512) 15250
(0.00533242 0.00644983 0.00309512) 15250
(0.00533242 0.00644983 0.00309512) 15250
(0.00580933 0.00643509 0.0031328) 15251
(0.00624743 0.00643536 0.00313552) 15252
(0.0066855 0.00643799 0.00312982) 15253
(0.007123 0.0064416 0.00312713) 15254
(0.00755638 0.00644695 0.00312803) 15255
(0.00317365 0.00635084 0.00276206) 13566
(0.00315736 0.00642128 0.00277811) 13506
(0.003891 0.00638263 0.00269676) 13567
(0.00440075 0.00635609 0.0026172) 13568
(0.00474891 0.00638793 0.00269219) 13569
(0.00312515 0.00429718 0.00166706) 5706
(0.00335349 0.0043623 0.00164947) 5706
(0.00489505 0.0044375 0.00156937) 5709
(0.00406998 0.00420928 0.00172512) 5648
(0.00492257 0.00423972 0.00170245) 5649
(0.00261914 0.00355896 0.00342193) 5345
(0.00497646 0.00352597 0.00319472) 14409
(0.00355169 0.00364097 0.0035878) 14467
(0.00493551 0.00368234 0.00350654) 14469
(0.00134226 0.00492667 0.00444137) 14822
(0.00206219 0.00492805 0.00443791) 14824
(0.00341084 0.00492999 0.00436403) 14826
(0.00384962 0.00524374 0.00435154) 14887
(0.00442869 0.00531399 0.00432389) 14888
(0.000746062 0.00648723 0.00309784) 15241
(0.00415462 0.0062696 0.00267098) 13568
(0.00275124 0.00650512 0.00290057) 6125
(0.00425911 0.00638794 0.00272505) 13568
(0.00482072 0.00644712 0.00284799) 13509
(0.0201583 0.00302849 0.00214261) 520
(0.0216274 0.00302493 0.00218115) 523
(0.020973 0.00704529 0.00382739) 23861
(0.0219741 0.00711497 0.0037425) 23503
(0.0205002 0.00686465 0.00367556) 2021
(0.022164 0.00694462 0.00358542) 2024
(0.0120437 0.00650531 0.00419896) 6684
(0.0131902 0.00645419 0.00414862) 6686
(0.0131902 0.00645419 0.00414862) 6686
(0.0131902 0.00645419 0.00414862) 6686
(0.0140666 0.00642282 0.00412822) 6688
(0.0147616 0.00640295 0.00412057) 6689
(0.0153466 0.00639346 0.00411387) 6690
(0.0158592 0.00639109 0.00410885) 6691
(0.0163368 0.00639081 0.00410654) 6692
(0.0168179 0.00639071 0.00410257) 6693
(0.0173283 0.00638722 0.00409729) 6694
(0.0178459 0.00637925 0.00409519) 6695
(0.018344 0.0063718 0.00409416) 6696
(0.0126145 0.00609833 0.0044011) 9325
(0.013519 0.00608744 0.00437487) 9327
(0.0222354 0.00327824 0.00331994) 5444
(0.0229083 0.00649104 0.00213246) 13425
(0.0241291 0.00662889 0.00225592) 6108
(0.0249316 0.00665718 0.00221456) 13429
(0.0221908 0.00691287 0.00423967) 1904
(0.0204042 0.00662188 0.00423953) 6640
(0.0227272 0.0066465 0.00413324) 1965
(0.0243693 0.0066847 0.00411055) 1968
(0.0211446 0.00640281 0.00124726) 6822
(0.0221643 0.00634072 0.00121294) 12464
(0.0218428 0.00358978 0.0045805) 7183
(0.0232153 0.0036012 0.00461116) 7186
(0.0220106 0.00340796 0.0016685) 464
(0.0235588 0.00339488 0.00168858) 467
(0.0205402 0.00608141 0.00477425) 12221
(0.02235 0.00610365 0.00472553) 12224
(0.0203474 0.00579408 0.00502835) 12580
(0.0203474 0.00579408 0.00502835) 12580
(0.0203474 0.00579408 0.00502835) 12580
(0.0222359 0.00578177 0.00499601) 12584
(0.0222359 0.00578177 0.00499601) 12584
(0.0222359 0.00578177 0.00499601) 12584
(0.0236407 0.00581215 0.00498787) 12587
(0.0236407 0.00581215 0.00498787) 12587
(0.0236407 0.00581215 0.00498787) 12587
(0.0241222 0.00592242 0.00493526) 12588
(0.0203116 0.00394094 0.00481326) 10540
(0.0220244 0.00397069 0.00484206) 10544
(0.0203014 0.00380226 0.00138552) 12760
(0.0229462 0.00380925 0.00142114) 12765
(0.0204802 0.00418254 0.0012525) 11500
(0.0231106 0.00413115 0.00125588) 11506
(0.0204378 0.00454585 0.00111033) 11560
(0.022372 0.00445596 0.00113671) 11564
(0.0202833 0.00485284 0.00097292) 11620
(0.0221307 0.00480099 0.000984346) 11624
(0.0235941 0.00474444 0.000963054) 11627
(0.0216734 0.00563858 0.00101307) 12163
(0.0215223 0.00602093 0.00110088) 12463
(0.0228794 0.00602407 0.00108731) 12465
(0.0203678 0.00540828 0.000906638) 12100
(0.0222603 0.00532009 0.000923949) 10124
(0.0236642 0.0052883 0.000908538) 10127
(0.0212201 0.00503728 0.000715456) 11922
(0.0217512 0.00520644 0.005162) 11443
(0.0230229 0.00521669 0.00516422) 11446
(0.0210198 0.00391618 0.00111647) 13002
(0.0224048 0.00387034 0.00110878) 13004
(0.021018 0.00669908 0.00452406) 6582
(0.0230751 0.00332655 0.00284521) 13306
(0.0206024 0.00303647 0.00314047) 761
(0.0241077 0.00307295 0.0031555) 768
(0.0251219 0.00304116 0.00312809) 770
(0.0253416 0.0030244 0.00316831) 770
(0.0220307 0.00670544 0.00178343) 2444
(0.0220307 0.00670544 0.00178343) 2444
(0.0220307 0.00670544 0.00178343) 2444
(0.0238676 0.00669825 0.00182561) 2447
(0.0244906 0.00666243 0.00174943) 2508
(0.0222532 0.00622479 0.00169071) 13484
(0.0234914 0.00632305 0.00175109) 13486
(0.00523663 0.00643936 0.00283443) 13510
(0.00523663 0.00643936 0.00283443) 13510
(0.00523663 0.00643936 0.00283443) 13510
(0.00610656 0.00644483 0.00288055) 13512
(0.00658989 0.00644434 0.00288275) 13513
(0.00706859 0.00644542 0.00287773) 13514
(0.00506501 0.00632443 0.00250962) 13570
(0.00544209 0.00635412 0.00253449) 13570
(0.0114402 0.0062169 0.00235818) 13642
(0.0119852 0.00620842 0.00236289) 13643
(0.0125378 0.00619996 0.00236655) 13645
(0.0130528 0.00619702 0.00236689) 13646
(0.0135162 0.00620243 0.00236612) 13647
(0.0139426 0.00621337 0.00236404) 13647
(0.0179041 0.0062347 0.00235865) 13655
(0.0184648 0.00622976 0.00236351) 13656
(0.018997 0.00622428 0.00236703) 13657
(0.0195177 0.00621651 0.00236764) 13659
(0.020052 0.00620606 0.0023656) 13660
(0.0205945 0.00619424 0.00235808) 13661
(0.0211071 0.00618527 0.00234706) 13662
(0.0215885 0.00617997 0.00233558) 13663
(0.00519131 0.00582635 0.00187764) 13750
(0.00566136 0.00582796 0.00186676) 13751
(0.0061107 0.00582534 0.00185921) 13752
(0.00656156 0.00582753 0.00185769) 13753
(0.00512154 0.00557797 0.00171455) 13810
(0.00555598 0.00558311 0.00170714) 13811
(0.00596913 0.00558782 0.0017025) 13811
(0.00577567 0.00443655 0.00168038) 14051
(0.00615942 0.00441271 0.00168205) 14052
(0.00655042 0.0044022 0.00168076) 14053
(0.00695681 0.00439524 0.00167902) 14053
(0.00736834 0.00438961 0.00167513) 14054
(0.00546407 0.00424738 0.00177688) 14110
(0.00546407 0.00424738 0.00177688) 14110
(0.00546407 0.00424738 0.00177688) 14110
(0.00582114 0.00420526 0.00180746) 14111
(0.00621785 0.00417901 0.0018169) 14112
(0.00662171 0.00416767 0.00181578) 14113
(0.00702805 0.00415911 0.00181393) 14114
(0.00742591 0.00414899 0.00181225) 14114
(0.0116513 0.00417489 0.00184193) 14123
(0.0121538 0.00417997 0.00184578) 14124
(0.0126078 0.00418182 0.00184572) 14125
(0.0130382 0.00418116 0.00184269) 14126
(0.00518334 0.00398537 0.00200893) 14170
(0.00561106 0.00398506 0.00201599) 14171
(0.0060179 0.00397361 0.0020231) 14172
(0.0108955 0.00361962 0.00289071) 14361
(0.0114441 0.00362785 0.00289244) 14362
(0.0120089 0.00363977 0.00289416) 14364
(0.0125833 0.0036516 0.00289541) 14365
(0.0131079 0.00365657 0.00289512) 14366
(0.013576 0.0036541 0.00289369) 14367
(0.0139911 0.00364579 0.00289197) 14367
(0.00529446 0.00357882 0.00313732) 14410
(0.00570823 0.0035744 0.00318522) 14411
(0.0110187 0.0035916 0.00318996) 14422
(0.0115875 0.00360159 0.00319403) 14423
(0.0121647 0.00361419 0.00319487) 14424
(0.0127197 0.00362369 0.00319492) 14425
(0.0132271 0.0036266 0.003194) 14426
(0.0137056 0.00362542 0.00319381) 14427
(0.0141513 0.00362019 0.00319433) 14428
(0.0145909 0.00361336 0.00319654) 14429
(0.00551667 0.00371193 0.00339089) 14471
(0.00551667 0.00371193 0.00339089) 14471
(0.00551667 0.00371193 0.00339089) 14471
(0.00568846 0.00372393 0.00349399) 14471
(0.00600857 0.0037211 0.00353874) 14472
(0.00648385 0.0037088 0.00354252) 14472
(0.0070507 0.00368834 0.00351581) 14474
(0.00760127 0.00366144 0.00349032) 14475
(0.00510769 0.00381439 0.00371193) 14530
(0.00510769 0.00381439 0.00371193) 14530
(0.00510769 0.00381439 0.00371193) 14530
(0.00532141 0.00383583 0.00376247) 14530
(0.00532141 0.00383583 0.00376247) 14530
(0.00532141 0.00383583 0.00376247) 14530
(0.00566784 0.00382652 0.00377634) 14531
(0.00608112 0.00380876 0.00376775) 14532
(0.0066323 0.00378359 0.00374971) 14533
(0.00485048 0.00395134 0.00393467) 14589
(0.00528486 0.00402494 0.00395952) 14590
(0.00582066 0.00404038 0.00396281) 14591
(0.0063493 0.00401856 0.00396469) 14592
(0.00525021 0.0050187 0.00441575) 14830
(0.00571057 0.00501902 0.00442507) 14831
(0.00614122 0.00501233 0.00443545) 14832
(0.00655423 0.0050085 0.00444342) 14833
(0.00696799 0.00500968 0.00444837) 14833
(0.00510028 0.00528945 0.00437819) 14890
(0.00561002 0.00529046 0.00438521) 14891
(0.00607794 0.00528709 0.00439487) 14892
(0.00648599 0.00528379 0.00440511) 14892
(0.00501692 0.00623001 0.00364454) 15130
(0.00567495 0.00635905 0.00341837) 15191
(0.00606457 0.00636681 0.00341017) 15192
(0.00531023 0.00645132 0.00309139) 15250
(0.00531023 0.00645132 0.00309139) 15250
(0.00531023 0.00645132 0.00309139) 15250
(0.00578674 0.00643557 0.00313215) 15251
(0.00622492 0.00643543 0.00313576) 15252
(0.00666293 0.006438 0.00313017) 15253
(0.00710096 0.00644145 0.00312737) 15254
(0.00753472 0.00644675 0.00312796) 15255
(0.00322029 0.00641336 0.0027703) 13506
(0.00397362 0.00636652 0.00266873) 13567
(0.00438852 0.00635514 0.00261691) 13568
(0.004738 0.0063891 0.00268866) 13569
(0.00358055 0.00430033 0.00167203) 5707
(0.0028108 0.00435592 0.0016393) 5705
(0.00489643 0.00443221 0.00157002) 5709
(0.00434201 0.0042122 0.00171101) 5648
(0.00485621 0.00424503 0.00169652) 5649
(0.00495921 0.00351906 0.0031938) 14409
(0.0035657 0.00365143 0.00361098) 14527
(0.00300519 0.00362885 0.00358135) 14466
(0.00490508 0.00367931 0.00351204) 14469
(0.00133196 0.00492689 0.00444104) 14822
(0.00202148 0.00492794 0.00443874) 14824
(0.0033309 0.00493002 0.004372) 14826
(0.00384631 0.00523914 0.00434937) 14887
(0.00440841 0.005313 0.00432585) 14888
(0.000398738 0.00648358 0.00310116) 15240
(0.00416446 0.00624399 0.00265929) 13568
(0.00302247 0.00648408 0.00287665) 13506
(0.00423923 0.00638887 0.00272621) 13568
(0.00480788 0.0064462 0.00283901) 13509
(0.0201135 0.00302717 0.00214191) 520
(0.0215875 0.00302736 0.00217823) 523
(0.0209478 0.00704263 0.00383153) 23861
(0.0219578 0.00710937 0.00374835) 23503
(0.020436 0.00686495 0.00367745) 2020
(0.0221115 0.00694015 0.00358833) 2024
(0.0120072 0.00650699 0.00420124) 6684
(0.0131561 0.00645563 0.0041498) 6686
(0.0131561 0.00645563 0.0041498) 6686
(0.0131561 0.00645563 0.0041498) 6686
(0.0140412 0.00642358 0.0041286) 6688
(0.014741 0.00640344 0.00412055) 6689
(0.0153293 0.00639357 0.00411378) 6690
(0.0158438 0.00639103 0.00410863) 6691
(0.0163217 0.00639069 0.00410639) 6692
(0.016802 0.00639056 0.00410257) 6693
(0.0173112 0.00638725 0.00409723) 6694
(0.0178291 0.00637939 0.00409497) 6695
(0.0183288 0.00637188 0.00409384) 6696
(0.0125833 0.00609863 0.00440215) 9325
(0.0134907 0.00608762 0.00437541) 9326
(0.0221395 0.00327607 0.00331927) 5444
(0.0228305 0.00648202 0.00212009) 13425
(0.0240847 0.00662691 0.00225601) 6108
(0.0249149 0.00665575 0.00221745) 13429
(0.0221517 0.00690863 0.00424531) 1904
(0.0203304 0.00662466 0.00424308) 6640
(0.0226451 0.00664423 0.00413545) 6705
(0.0243436 0.00668092 0.00411133) 1968
(0.0211138 0.00640434 0.00124823) 6822
(0.0221491 0.00634599 0.00121791) 12464
(0.0217845 0.00358944 0.00457973) 7183
(0.0231901 0.00359928 0.00460753) 7186
(0.0219419 0.00340863 0.00166683) 463
(0.0235284 0.00339733 0.00168696) 467
(0.0204676 0.00608013 0.004778) 12220
(0.0222918 0.00610188 0.00472584) 12224
(0.0202927 0.00579392 0.0050283) 12580
(0.0202927 0.00579392 0.0050283) 12580
(0.0202927 0.00579392 0.0050283) 12580
(0.0221712 0.00578084 0.00499636) 12584
(0.0221712 0.00578084 0.00499636) 12584
(0.0221712 0.00578084 0.00499636) 12584
(0.0236124 0.00580884 0.00498806) 12587
(0.0236124 0.00580884 0.00498806) 12587
(0.0236124 0.00580884 0.00498806) 12587
(0.0241309 0.00591333 0.00494052) 12588
(0.0202433 0.00393621 0.00480974) 10540
(0.0219703 0.00397009 0.00484014) 10543
(0.0202467 0.00380332 0.00138387) 12760
(0.0228529 0.00380891 0.00142184) 12765
(0.020387 0.00417611 0.0012519) 11500
(0.0230148 0.00413294 0.00125716) 11506
(0.0203602 0.00454284 0.00110859) 11560
(0.0223084 0.00446042 0.00113746) 11564
(0.0202269 0.00485358 0.000973143) 11620
(0.0220681 0.0048036 0.0009852) 11624
(0.0235617 0.00474799 0.000964766) 11627
(0.0216196 0.00564016 0.00101481) 12163
(0.0214703 0.00602028 0.0011013) 12462
(0.0228521 0.00602584 0.0010903) 12465
(0.0203234 0.0054135 0.000908128) 12100
(0.0221936 0.00532211 0.000924482) 10124
(0.0236416 0.005291 0.000911489) 10127
(0.0211968 0.00503897 0.000714379) 11922
(0.0217021 0.00520639 0.0051618) 11443
(0.0229959 0.00521372 0.00516321) 11445
(0.0209822 0.00391889 0.00111595) 13001
(0.0223782 0.00387559 0.00110806) 13004
(0.0209891 0.00669911 0.00452508) 6581
(0.0229905 0.003327 0.0028416) 13305
(0.0205103 0.00303779 0.00313464) 761
(0.0239909 0.00307444 0.00315606) 767
(0.0251058 0.00304434 0.00312745) 770
(0.0253437 0.00302371 0.00316451) 770
(0.0219473 0.00670663 0.0017809) 2443
(0.0219473 0.00670663 0.0017809) 2443
(0.0219473 0.00670663 0.0017809) 2443
(0.0238243 0.00669816 0.00182682) 2447
(0.0244932 0.00666653 0.00175579) 2508
(0.022105 0.00622163 0.00168518) 13484
(0.0234675 0.00632117 0.00175282) 13486
(0.00521915 0.00643979 0.00283071) 13510
(0.00521915 0.00643979 0.00283071) 13510
(0.00521915 0.00643979 0.00283071) 13510
(0.00608292 0.00644501 0.00288007) 13512
(0.00656648 0.0064444 0.00288281) 13513
(0.00704551 0.00644537 0.00287802) 13514
(0.00504649 0.00632374 0.00250877) 13570
(0.00541812 0.00635353 0.0025329) 13570
(0.0114174 0.00621717 0.00235801) 13642
(0.011962 0.00620878 0.00236273) 13643
(0.0125148 0.00620031 0.00236648) 13645
(0.0130316 0.00619706 0.00236688) 13646
(0.0134966 0.00620215 0.00236617) 13646
(0.0139243 0.00621293 0.00236414) 13647
(0.0178784 0.00623498 0.00235856) 13655
(0.0184404 0.00623 0.00236335) 13656
(0.0189739 0.00622461 0.00236704) 13657
(0.0194949 0.00621694 0.00236776) 13658
(0.0200281 0.00620667 0.0023659) 13660
(0.0205712 0.00619485 0.00235863) 13661
(0.0210851 0.00618573 0.00234768) 13662
(0.0215674 0.00618032 0.00233627) 13663
(0.00516994 0.00582608 0.00187778) 13750
(0.00563997 0.00582788 0.00186678) 13751
(0.00608814 0.00582533 0.00185914) 13752
(0.00653897 0.00582731 0.00185751) 13753
(0.0050987 0.00557777 0.00171463) 13810
(0.00553468 0.00558285 0.00170716) 13811
(0.00594746 0.00558753 0.00170242) 13811
(0.00575507 0.00443814 0.00167958) 14051
(0.00613828 0.00441337 0.00168182) 14052
(0.00652856 0.00440256 0.00168062) 14053
(0.00693547 0.00439552 0.00167904) 14053
(0.00734727 0.00438977 0.00167528) 14054
(0.00545024 0.00424842 0.0017744) 14110
(0.00545024 0.00424842 0.0017744) 14110
(0.00545024 0.00424842 0.0017744) 14110
(0.00580206 0.00420671 0.00180629) 14111
(0.00619654 0.00417972 0.00181656) 14112
(0.00659956 0.00416793 0.00181573) 14113
(0.007007 0.00415944 0.00181395) 14114
(0.0074054 0.0041494 0.00181228) 14114
(0.0116277 0.0041746 0.00184172) 14123
(0.0121325 0.00417976 0.00184566) 14124
(0.0125881 0.00418172 0.00184573) 14125
(0.0130184 0.0041811 0.00184275) 14126
(0.00516404 0.00398418 0.00200883) 14170
(0.00559016 0.0039852 0.00201538) 14171
(0.00599623 0.00397392 0.00202279) 14171
(0.0108719 0.00361934 0.00289066) 14361
(0.0114206 0.00362747 0.00289238) 14362
(0.0119841 0.0036392 0.00289408) 14363
(0.0125595 0.00365115 0.00289537) 14365
(0.0130861 0.0036564 0.00289515) 14366
(0.0135567 0.00365425 0.00289377) 14367
(0.0139738 0.00364615 0.00289205) 14367
(0.00527488 0.00357876 0.00313441) 14410
(0.00568791 0.0035738 0.00318384) 14411
(0.0109925 0.00359116 0.0031899) 14421
(0.0115619 0.00360104 0.00319399) 14423
(0.0121393 0.00361363 0.0031949) 14424
(0.0126964 0.00362336 0.00319499) 14425
(0.0132051 0.00362646 0.0031941) 14426
(0.0136848 0.00362545 0.00319385) 14427
(0.0141317 0.00362039 0.00319435) 14428
(0.0145706 0.00361359 0.00319652) 14429
(0.00550689 0.00370899 0.00338536) 14471
(0.00550689 0.00370899 0.00338536) 14471
(0.00550689 0.00370899 0.00338536) 14471
(0.00567958 0.00372236 0.00349023) 14471
(0.00599085 0.00372066 0.00353687) 14471
(0.00645976 0.00370913 0.00354284) 14472
(0.00702377 0.00368926 0.00351712) 14474
(0.00757678 0.00366255 0.00349126) 14475
(0.00510102 0.00381188 0.00371021) 14530
(0.00510102 0.00381188 0.00371021) 14530
(0.00510102 0.00381188 0.00371021) 14530
(0.00530902 0.00383469 0.00376074) 14530
(0.00530902 0.00383469 0.00376074) 14530
(0.00530902 0.00383469 0.00376074) 14530
(0.00565219 0.00382633 0.003776) 14531
(0.00606127 0.00380905 0.00376796) 14532
(0.00660508 0.00378459 0.00375077) 14533
(0.00483264 0.00394743 0.00393467) 14589
(0.0052613 0.00402215 0.00395857) 14590
(0.00579573 0.00403953 0.00396223) 14591
(0.00632539 0.00401946 0.00396429) 14592
(0.00522954 0.00501822 0.00441569) 14830
(0.00568919 0.00501913 0.00442485) 14831
(0.00611865 0.00501256 0.00443533) 14832
(0.00653066 0.00500846 0.00444349) 14833
(0.00694574 0.00500947 0.00444837) 14833
(0.00507778 0.00528963 0.00437803) 14890
(0.00558643 0.00529057 0.0043851) 14891
(0.00605434 0.0052872 0.00439474) 14892
(0.00646298 0.00528394 0.00440511) 14892
(0.0049947 0.00623069 0.00364329) 15129
(0.00565254 0.00635926 0.00341855) 15191
(0.0060452 0.00636648 0.00341061) 15192
(0.00528811 0.00645285 0.00308741) 15250
(0.00528811 0.00645285 0.00308741) 15250
(0.00528811 0.00645285 0.00308741) 15250
(0.00576411 0.00643608 0.00313142) 15251
(0.0062024 0.00643551 0.00313597) 15252
(0.00664031 0.00643802 0.00313053) 15253
(0.00707892 0.0064413 0.00312761) 15254
(0.00751306 0.00644655 0.0031279) 15255
(0.00328413 0.0064037 0.00275942) 13506
(0.00393483 0.00637051 0.00267635) 13567
(0.00437709 0.00635387 0.00261697) 13568
(0.00472687 0.00638926 0.00268492) 13569
(0.00393489 0.00429808 0.00166903) 5707
(0.00489754 0.00442712 0.00157076) 5709
(0.00450014 0.00421449 0.00170135) 5649
(0.00476043 0.00425 0.00169203) 5709
(0.00495591 0.00351149 0.00319439) 5409
(0.00418259 0.00364823 0.00362104) 14528
(0.00255317 0.00361286 0.00358385) 5345
(0.00488734 0.00367922 0.00351606) 14469
(0.00132015 0.00492711 0.0044408) 14822
(0.00198472 0.00492792 0.00443939) 14823
(0.00325066 0.00493019 0.00437998) 14826
(0.00384277 0.00523483 0.00434683) 14887
(0.00438879 0.00531145 0.0043283) 14888
(0.00330845 0.00645668 0.00284593) 13506
(0.00422089 0.00638939 0.00272749) 13568
(0.00479528 0.00644514 0.00282998) 13509
(0.0215469 0.00302962 0.00217538) 523
(0.0209225 0.00704008 0.00383558) 23861
(0.0219408 0.00710395 0.00375406) 23863
(0.0220583 0.00693573 0.00359133) 2024
(0.0131214 0.00645713 0.00415104) 6686
(0.0131214 0.00645713 0.00415104) 6686
(0.0131214 0.00645713 0.00415104) 6686
(0.0140156 0.00642435 0.004129) 6688
(0.0147201 0.00640395 0.00412052) 6689
(0.0153119 0.00639368 0.00411372) 6690
(0.0158283 0.00639096 0.00410843) 6691
(0.0163067 0.00639057 0.00410623) 6692
(0.0167862 0.00639041 0.00410256) 6693
(0.017294 0.00638728 0.00409719) 6694
(0.0178123 0.00637954 0.00409476) 6695
(0.0183134 0.00637197 0.00409352) 6696
(0.018762 0.00636694 0.00409484) 6697
(0.0125523 0.00609894 0.00440321) 9325
(0.0134618 0.00608782 0.004376) 9326
(0.0220348 0.00327324 0.00331856) 5444
(0.0227453 0.00647351 0.00210752) 13425
(0.0240406 0.00662479 0.00225585) 6108
(0.0248972 0.00665431 0.00222033) 13429
(0.0221124 0.00690461 0.00425077) 1904
(0.0202707 0.0066261 0.00424742) 6640
(0.0225622 0.00664196 0.00413784) 6705
(0.0243152 0.0066773 0.00411204) 1968
(0.0210832 0.00640575 0.00124909) 6822
(0.0221326 0.00635107 0.00122271) 12464
(0.0217255 0.00358897 0.00457897) 7183
(0.0231635 0.0035975 0.00460403) 7186
(0.0218724 0.00340924 0.00166494) 463
(0.0234964 0.00339967 0.00168546) 466
(0.0203965 0.00607903 0.00478167) 12220
(0.0222328 0.00610023 0.00472617) 12224
(0.0202408 0.00579359 0.0050278) 12580
(0.0202408 0.00579359 0.0050278) 12580
(0.0202408 0.00579359 0.0050278) 12580
(0.0221056 0.00578001 0.0049968) 12584
(0.0221056 0.00578001 0.0049968) 12584
(0.0221056 0.00578001 0.0049968) 12584
(0.0235825 0.00580566 0.00498821) 12587
(0.0235825 0.00580566 0.00498821) 12587
(0.0235825 0.00580566 0.00498821) 12587
(0.0241386 0.00590449 0.00494534) 12588
(0.0201812 0.00393117 0.00480586) 10540
(0.021916 0.00396941 0.00483825) 10543
(0.0232834 0.00397633 0.00487269) 10546
(0.0201964 0.00380487 0.00138234) 12760
(0.022759 0.00380862 0.00142245) 12765
(0.0202958 0.00416909 0.00125199) 11500
(0.0229198 0.00413491 0.00125819) 11505
(0.0245854 0.00408517 0.00121751) 11509
(0.0222444 0.00446508 0.0011381) 11564
(0.0220046 0.00480618 0.000985986) 11624
(0.0235279 0.00475164 0.000966483) 11627
(0.0215652 0.00564178 0.00101651) 12163
(0.0214179 0.00601958 0.00110162) 12462
(0.0228238 0.00602748 0.00109318) 12465
(0.0202803 0.0054187 0.000909733) 12100
(0.0221256 0.00532431 0.000924941) 10124
(0.0236164 0.00529345 0.000914335) 10127
(0.021173 0.00504051 0.000713258) 11922
(0.0220768 0.00498052 0.00074189) 11624
(0.0216524 0.00520636 0.00516165) 11443
(0.022968 0.00521095 0.00516222) 11445
(0.0209451 0.00392187 0.00111533) 13001
(0.0223516 0.00388085 0.00110713) 13004
(0.0228962 0.0033271 0.00283773) 13305
(0.0204207 0.00303942 0.00312832) 760
(0.0238664 0.00307575 0.00315663) 767
(0.025089 0.00304754 0.00312689) 770
(0.0253443 0.0030232 0.00316102) 770
(0.0218592 0.00670803 0.00177792) 2443
(0.0218592 0.00670803 0.00177792) 2443
(0.0218592 0.00670803 0.00177792) 2443
(0.0237786 0.00669801 0.0018277) 2447
(0.0244945 0.00667025 0.00176205) 2508
(0.0219406 0.00622023 0.00168049) 13483
(0.0234441 0.00631917 0.00175428) 13486
(0.00520178 0.00644023 0.00282684) 13510
(0.00520178 0.00644023 0.00282684) 13510
(0.00520178 0.00644023 0.00282684) 13510
(0.00605922 0.00644522 0.00287956) 13512
(0.00654305 0.00644447 0.00288283) 13513
(0.00702241 0.00644532 0.00287831) 13514
(0.00502804 0.00632307 0.00250794) 13570
(0.00539442 0.00635293 0.00253133) 13570
(0.0113947 0.00621742 0.00235784) 13642
(0.0119389 0.00620914 0.00236258) 13643
(0.0124918 0.00620068 0.00236641) 13644
(0.0130103 0.00619712 0.00236687) 13646
(0.013477 0.00620189 0.00236621) 13646
(0.0139058 0.00621249 0.00236424) 13647
(0.0178526 0.00623526 0.00235847) 13655
(0.018416 0.00623024 0.00236319) 13656
(0.0189508 0.00622495 0.00236705) 13657
(0.0194721 0.00621735 0.00236787) 13658
(0.0200042 0.00620727 0.00236619) 13660
(0.0205479 0.00619546 0.00235917) 13661
(0.021063 0.0061862 0.0023483) 13662
(0.0215463 0.00618067 0.00233696) 13663
(0.00514848 0.0058258 0.00187791) 13750
(0.00561861 0.00582779 0.00186682) 13751
(0.00606563 0.00582533 0.00185909) 13752
(0.00651632 0.00582709 0.00185733) 13753
(0.00507579 0.00557758 0.00171472) 13810
(0.0055134 0.00558258 0.00170719) 13811
(0.00592582 0.00558723 0.00170234) 13811
(0.00573456 0.00443974 0.00167875) 14051
(0.00611722 0.00441406 0.00168158) 14052
(0.00650674 0.00440293 0.00168049) 14053
(0.00691411 0.00439579 0.00167905) 14053
(0.00732621 0.00438995 0.00167543) 14054
(0.0054366 0.00424931 0.00177184) 14110
(0.0054366 0.00424931 0.00177184) 14110
(0.0054366 0.00424931 0.00177184) 14110
(0.00578314 0.00420817 0.00180504) 14111
(0.00617536 0.00418046 0.00181621) 14112
(0.00657744 0.0041682 0.00181569) 14113
(0.00698588 0.00415978 0.00181395) 14113
(0.00738491 0.0041498 0.00181231) 14114
(0.011604 0.00417431 0.0018415) 14123
(0.0121111 0.00417955 0.00184553) 14124
(0.0125685 0.00418162 0.00184574) 14125
(0.0129986 0.00418104 0.0018428) 14125
(0.00514494 0.00398292 0.00200877) 14170
(0.00556934 0.00398529 0.00201478) 14171
(0.00597465 0.00397423 0.00202249) 14171
(0.0108481 0.00361908 0.00289061) 14361
(0.0113972 0.00362709 0.00289233) 14362
(0.0119593 0.00363863 0.002894) 14363
(0.0125356 0.00365069 0.00289532) 14365
(0.0130643 0.00365622 0.00289519) 14366
(0.0135374 0.00365438 0.00289383) 14367
(0.0139563 0.00364651 0.00289212) 14367
(0.00525526 0.00357869 0.00313141) 14410
(0.00566755 0.00357319 0.00318241) 14411
(0.0109661 0.00359071 0.00318985) 14421
(0.0115362 0.00360049 0.00319395) 14423
(0.0121139 0.00361307 0.00319493) 14424
(0.0126729 0.00362302 0.00319506) 14425
(0.013183 0.00362631 0.0031942) 14426
(0.0136639 0.00362548 0.0031939) 14427
(0.0141121 0.00362059 0.00319438) 14428
(0.0145503 0.00361381 0.00319651) 14429
(0.00549683 0.00370589 0.00337992) 14470
(0.00549683 0.00370589 0.00337992) 14470
(0.00549683 0.00370589 0.00337992) 14470
(0.00567074 0.00372085 0.0034864) 14471
(0.0059735 0.00372015 0.00353494) 14471
(0.00643586 0.00370942 0.00354302) 14472
(0.00699687 0.00369014 0.00351842) 14473
(0.00755215 0.00366365 0.00349221) 14475
(0.0050945 0.00380936 0.0037085) 14530
(0.0050945 0.00380936 0.0037085) 14530
(0.0050945 0.00380936 0.0037085) 14530
(0.00529685 0.00383349 0.00375897) 14530
(0.00529685 0.00383349 0.00375897) 14530
(0.00529685 0.00383349 0.00375897) 14530
(0.00563662 0.00382611 0.00377562) 14531
(0.00604171 0.00380931 0.00376813) 14532
(0.00657821 0.00378556 0.00375181) 14533
(0.00481496 0.00394364 0.00393474) 14589
(0.00523793 0.0040193 0.00395759) 14590
(0.00577076 0.00403859 0.0039617) 14591
(0.00630142 0.00402027 0.00396383) 14592
(0.00520885 0.00501772 0.00441564) 14830
(0.00566788 0.00501922 0.00442463) 14831
(0.00609619 0.0050128 0.00443519) 14832
(0.00650706 0.00500843 0.00444357) 14833
(0.00692336 0.00500927 0.00444837) 14833
(0.00505537 0.00528979 0.00437787) 14890
(0.00556291 0.0052907 0.00438498) 14891
(0.00603073 0.00528732 0.00439461) 14892
(0.00643991 0.0052841 0.00440511) 14892
(0.00497238 0.00623142 0.00364196) 15129
(0.00562997 0.00635951 0.00341872) 15191
(0.00602575 0.00636618 0.00341104) 15192
(0.00526606 0.00645443 0.00308317) 15250
(0.00526606 0.00645443 0.00308317) 15250
(0.00526606 0.00645443 0.00308317) 15250
(0.00574144 0.00643663 0.00313061) 15251
(0.00617988 0.0064356 0.00313613) 15252
(0.00661764 0.00643804 0.0031309) 15253
(0.00705688 0.00644115 0.00312785) 15254
(0.00749138 0.00644636 0.00312786) 15254
(0.00332327 0.00639555 0.00274993) 13506
(0.00390709 0.00637363 0.00268052) 13567
(0.00436567 0.00635259 0.0026172) 13568
(0.00472343 0.00638949 0.00268408) 13569
(0.00490143 0.00442312 0.00157194) 5709
(0.00460332 0.0042153 0.00169502) 5649
(0.00257138 0.00416343 0.00173588) 5645
(0.0046716 0.0042528 0.00169061) 5709
(0.00496108 0.0035015 0.00319625) 5409
(0.00204825 0.00360491 0.003598) 5344
(0.00485665 0.00367735 0.00352187) 14469
(0.00131176 0.00492737 0.00444045) 14822
(0.0019549 0.004928 0.00443978) 14823
(0.00317161 0.00493056 0.00438779) 14826
(0.00384134 0.00523085 0.00434381) 14887
(0.00437011 0.00530893 0.00433134) 14888
(0.00354478 0.00643063 0.00281702) 13507
(0.00420028 0.00639079 0.00272895) 13568
(0.00478254 0.00644402 0.00282103) 13509
(0.0215054 0.00303169 0.00217264) 523
(0.0208972 0.00703762 0.00383954) 23861
(0.0219233 0.00709873 0.00375964) 23863
(0.0220046 0.00693131 0.00359443) 2024
(0.0130866 0.00645864 0.00415232) 6686
(0.0130866 0.00645864 0.00415232) 6686
(0.0130866 0.00645864 0.00415232) 6686
(0.0139897 0.00642516 0.00412941) 6687
(0.0146992 0.00640448 0.00412049) 6689
(0.0152943 0.00639379 0.00411368) 6690
(0.0158129 0.00639087 0.00410825) 6691
(0.0162918 0.00639045 0.00410606) 6692
(0.0167705 0.00639027 0.00410255) 6693
(0.0172769 0.0063873 0.00409716) 6694
(0.0177954 0.00637968 0.00409456) 6695
(0.0182979 0.00637206 0.00409322) 6696
(0.0187497 0.00636689 0.00409434) 6697
(0.0125217 0.00609924 0.00440426) 9325
(0.0134327 0.00608803 0.0043766) 9326
(0.0219185 0.00326957 0.00331782) 5443
(0.0226523 0.00646598 0.00209526) 13425
(0.0239969 0.0066225 0.00225542) 6107
(0.0248785 0.00665284 0.0022232) 6109
(0.0220733 0.00690083 0.00425603) 1904
(0.0202248 0.00662518 0.00425319) 6640
(0.0224787 0.00663975 0.00414038) 6704
(0.0242842 0.00667383 0.00411271) 1968
(0.0210526 0.00640706 0.00124984) 6822
(0.0221152 0.00635595 0.00122731) 12464
(0.0216661 0.00358838 0.00457821) 7183
(0.0231355 0.00359584 0.00460066) 7186
(0.0218019 0.00340986 0.0016628) 463
(0.0234635 0.00340205 0.00168399) 466
(0.0203307 0.00607795 0.00478522) 12220
(0.022173 0.00609868 0.00472657) 12224
(0.0201921 0.00579299 0.00502689) 12580
(0.0201921 0.00579299 0.00502689) 12580
(0.0201921 0.00579299 0.00502689) 12580
(0.022039 0.00577927 0.00499733) 12584
(0.022039 0.00577927 0.00499733) 12584
(0.022039 0.00577927 0.00499733) 12584
(0.0235511 0.00580259 0.00498832) 12587
(0.0235511 0.00580259 0.00498832) 12587
(0.0235511 0.00580259 0.00498832) 12587
(0.0241442 0.00589614 0.00494964) 12588
(0.0218616 0.00396864 0.00483637) 10543
(0.0232555 0.00397515 0.00486952) 10546
(0.0201482 0.00380652 0.00138093) 12760
(0.0226649 0.00380832 0.00142292) 12765
(0.0202148 0.00416357 0.00125265) 11500
(0.0228247 0.00413712 0.00125914) 11505
(0.0245672 0.00408843 0.00121885) 11509
(0.0221801 0.0044699 0.0011386) 11564
(0.0219404 0.0048087 0.000986697) 11623
(0.0234923 0.00475504 0.000968185) 11626
(0.0215103 0.00564346 0.00101816) 12163
(0.0213652 0.00601883 0.00110187) 12462
(0.0227943 0.00602898 0.00109596) 12465
(0.0220561 0.00532666 0.000925315) 10124
(0.0235887 0.00529567 0.000917081) 10127
(0.0211489 0.0050419 0.000712084) 11922
(0.022061 0.00498568 0.000742439) 11624
(0.0216024 0.00520631 0.00516155) 11443
(0.0229392 0.00520837 0.00516127) 11445
(0.0209091 0.00392508 0.00111464) 13001
(0.0223228 0.00388565 0.00110643) 13004
(0.0227904 0.00332665 0.00283366) 13305
(0.020334 0.00304148 0.00312174) 760
(0.0237372 0.00307673 0.00315716) 767
(0.0250714 0.00305077 0.00312661) 770
(0.0253439 0.00302297 0.00315754) 770
(0.0217657 0.00670964 0.0017744) 2503
(0.0217657 0.00670964 0.0017744) 2503
(0.0217657 0.00670964 0.0017744) 2503
(0.0237309 0.00669782 0.00182832) 2447
(0.0244944 0.00667361 0.00176814) 2508
(0.0217622 0.0062213 0.0016771) 13483
(0.0234206 0.00631707 0.0017555) 13486
(0.00518451 0.00644067 0.00282286) 13510
(0.00518451 0.00644067 0.00282286) 13510
(0.00518451 0.00644067 0.00282286) 13510
(0.00603547 0.00644544 0.00287903) 13512
(0.0065196 0.00644455 0.00288284) 13513
(0.00699931 0.00644528 0.00287859) 13513
(0.00500963 0.00632239 0.00250712) 13570
(0.00537097 0.00635233 0.00252979) 13570
(0.0113719 0.00621767 0.00235767) 13642
(0.0119158 0.0062095 0.00236243) 13643
(0.0124687 0.00620104 0.00236635) 13644
(0.012989 0.00619719 0.00236686) 13645
(0.0134574 0.00620165 0.00236626) 13646
(0.0138873 0.00621206 0.00236433) 13647
(0.0178268 0.00623554 0.00235838) 13655
(0.0183914 0.00623049 0.00236304) 13656
(0.0189277 0.00622527 0.00236704) 13657
(0.0194493 0.00621776 0.00236797) 13658
(0.0199804 0.00620787 0.00236646) 13659
(0.0205245 0.00619608 0.00235971) 13661
(0.021041 0.00618667 0.00234891) 13662
(0.0215252 0.00618103 0.00233765) 13663
(0.00512693 0.00582549 0.00187804) 13750
(0.00559732 0.0058277 0.00186686) 13751
(0.00604317 0.00582534 0.00185905) 13752
(0.00649362 0.00582687 0.00185715) 13752
(0.0050528 0.0055774 0.00171484) 13810
(0.00549215 0.00558231 0.00170723) 13810
(0.00590423 0.00558693 0.00170226) 13811
(0.00571409 0.00444134 0.00167787) 14051
(0.00609624 0.00441479 0.00168131) 14052
(0.00648497 0.00440329 0.00168035) 14052
(0.00689273 0.00439607 0.00167906) 14053
(0.00730515 0.00439012 0.00167558) 14054
(0.00542311 0.00425005 0.00176921) 14110
(0.00542311 0.00425005 0.00176921) 14110
(0.00542311 0.00425005 0.00176921) 14110
(0.00576441 0.00420963 0.00180373) 14111
(0.0061543 0.00418122 0.00181583) 14112
(0.00655538 0.0041685 0.00181563) 14113
(0.00696471 0.00416011 0.00181396) 14113
(0.00736442 0.00415021 0.00181235) 14114
(0.0115802 0.00417402 0.00184128) 14123
(0.0120895 0.00417933 0.00184541) 14124
(0.0125487 0.00418152 0.00184574) 14125
(0.0129789 0.00418097 0.00184286) 14125
(0.00512602 0.00398162 0.00200876) 14170
(0.0055486 0.00398532 0.00201421) 14171
(0.00595315 0.00397453 0.00202218) 14171
(0.0108244 0.00361881 0.00289057) 14361
(0.0113738 0.00362673 0.00289228) 14362
(0.0119346 0.00363807 0.00289392) 14363
(0.0125116 0.00365022 0.00289527) 14365
(0.0130423 0.00365602 0.00289522) 14366
(0.0135179 0.0036545 0.0028939) 14367
(0.0139388 0.00364685 0.0028922) 14367
(0.00523562 0.00357861 0.0031283) 14410
(0.00564718 0.00357255 0.00318093) 14411
(0.0109396 0.00359027 0.00318982) 14421
(0.0115104 0.00359995 0.00319391) 14423
(0.0120884 0.0036125 0.00319496) 14424
(0.0126494 0.00362267 0.00319512) 14425
(0.0131608 0.00362615 0.0031943) 14426
(0.0136429 0.00362549 0.00319394) 14427
(0.0140924 0.00362078 0.00319441) 14428
(0.0145301 0.00361404 0.0031965) 14429
(0.0054865 0.00370262 0.00337456) 14470
(0.0054865 0.00370262 0.00337456) 14470
(0.0054865 0.00370262 0.00337456) 14470
(0.00566209 0.00371932 0.0034825) 14471
(0.00595653 0.00371956 0.00353294) 14471
(0.00641216 0.00370966 0.00354304) 14472
(0.00696996 0.00369098 0.00351966) 14473
(0.00752739 0.00366476 0.0034932) 14475
(0.00508815 0.0038068 0.00370681) 14530
(0.00508815 0.0038068 0.00370681) 14530
(0.00508815 0.0038068 0.00370681) 14530
(0.00528496 0.00383224 0.00375719) 14530
(0.00528496 0.00383224 0.00375719) 14530
(0.00528496 0.00383224 0.00375719) 14530
(0.00562109 0.00382586 0.0037752) 14531
(0.00602244 0.00380953 0.00376827) 14532
(0.00655171 0.0037865 0.00375281) 14533
(0.00479744 0.00393997 0.00393488) 14589
(0.00521478 0.0040164 0.00395662) 14590
(0.00574577 0.0040376 0.00396124) 14591
(0.00627737 0.00402097 0.00396329) 14592
(0.00518814 0.0050172 0.0044156) 14830
(0.00564663 0.00501929 0.00442442) 14831
(0.00607381 0.00501305 0.00443504) 14832
(0.00648345 0.00500841 0.00444364) 14832
(0.00690084 0.00500907 0.00444839) 14833
(0.00503307 0.00528991 0.0043777) 14890
(0.00553945 0.00529082 0.00438485) 14891
(0.00600711 0.00528744 0.00439448) 14892
(0.00641677 0.00528425 0.00440511) 14892
(0.00494994 0.00623222 0.00364058) 15129
(0.00560723 0.0063598 0.00341885) 15191
(0.00600623 0.00636588 0.00341145) 15192
(0.00524412 0.00645604 0.00307863) 15250
(0.00524412 0.00645604 0.00307863) 15250
(0.00524412 0.00645604 0.00307863) 15250
(0.00571873 0.0064372 0.00312975) 15251
(0.00615735 0.00643571 0.00313625) 15252
(0.00659494 0.00643807 0.00313128) 15253
(0.00703483 0.00644101 0.00312809) 15254
(0.0074697 0.00644616 0.00312784) 15254
(0.00336852 0.00638692 0.00273912) 13566
(0.00388171 0.00637599 0.00268452) 13567
(0.00435454 0.00635142 0.00261773) 13568
(0.00471149 0.00638859 0.00267978) 13569
(0.00490545 0.004419 0.0015731) 5709
(0.0047204 0.004534 0.0016388) 13989
(0.00275893 0.00417343 0.00173705) 5645
(0.00457279 0.00425476 0.001691) 5709
(0.00496212 0.00349182 0.00319865) 5409
(0.00483061 0.00367437 0.00352767) 14469
(0.00130308 0.00492767 0.00444012) 14822
(0.00193259 0.00492804 0.00443985) 14823
(0.00309269 0.00493115 0.00439564) 14826
(0.00384058 0.00522749 0.00434014) 14887
(0.00435265 0.00530478 0.00433519) 14888
(0.003914 0.00637802 0.00276125) 13507
(0.00417872 0.00639305 0.00273012) 13568
(0.00477018 0.00644276 0.0028118) 13509
(0.0214632 0.00303356 0.00217005) 522
(0.0208721 0.00703521 0.00384341) 23861
(0.021905 0.00709369 0.00376508) 23863
(0.0219508 0.00692683 0.00359768) 2023
(0.0130513 0.00646019 0.00415366) 6686
(0.0130513 0.00646019 0.00415366) 6686
(0.0130513 0.00646019 0.00415366) 6686
(0.0139635 0.006426 0.00412983) 6687
(0.0146781 0.00640503 0.00412045) 6689
(0.0152765 0.00639391 0.00411368) 6690
(0.0157973 0.00639078 0.0041081) 6691
(0.0162769 0.00639033 0.00410588) 6692
(0.0167548 0.00639014 0.00410253) 6693
(0.0172597 0.00638731 0.00409714) 6694
(0.0177784 0.00637982 0.00409437) 6695
(0.0182823 0.00637216 0.00409291) 6696
(0.0187372 0.00636686 0.00409385) 6697
(0.0124911 0.00609957 0.00440535) 9324
(0.0134036 0.00608823 0.00437723) 9326
(0.0217893 0.00326484 0.00331698) 5443
(0.02255 0.00646007 0.00208355) 13425
(0.0239535 0.00662004 0.00225469) 6107
(0.0248587 0.00665137 0.00222605) 6109
(0.0220344 0.00689726 0.00426108) 1904
(0.0223941 0.00663762 0.0041431) 6704
(0.02425 0.00667053 0.00411336) 1968
(0.021022 0.0064083 0.00125054) 6822
(0.0220971 0.00636058 0.00123166) 6824
(0.0216067 0.00358771 0.00457747) 7183
(0.023106 0.00359431 0.00459742) 7186
(0.021731 0.00341024 0.00166053) 463
(0.0234274 0.00340434 0.0016823) 466
(0.020273 0.00607659 0.00478872) 12220
(0.0221121 0.00609717 0.00472703) 12224
(0.0219716 0.00577865 0.00499793) 12583
(0.0219716 0.00577865 0.00499793) 12583
(0.0219716 0.00577865 0.00499793) 12583
(0.0235183 0.00579961 0.0049884) 12587
(0.0235183 0.00579961 0.0049884) 12587
(0.0235183 0.00579961 0.0049884) 12587
(0.0241478 0.00588827 0.00495343) 12588
(0.0218068 0.00396775 0.00483449) 10543
(0.0232265 0.00397407 0.00486645) 10546
(0.0201019 0.00380825 0.00137977) 12760
(0.0225711 0.00380794 0.00142322) 12765
(0.0201485 0.00416066 0.00125353) 11500
(0.0227295 0.0041396 0.00125996) 11505
(0.0245484 0.00409114 0.00122046) 11509
(0.0221152 0.00447488 0.00113896) 11564
(0.0218753 0.00481119 0.000987334) 11623
(0.0234549 0.00475835 0.000969879) 11626
(0.021455 0.00564521 0.00101977) 12162
(0.0213123 0.00601805 0.00110207) 12462
(0.0227636 0.00603032 0.00109861) 12465
(0.0219854 0.00532922 0.000925613) 10123
(0.0235582 0.00529768 0.000919712) 10127
(0.0211245 0.00504314 0.000710881) 11922
(0.0220445 0.00499061 0.000742909) 11624
(0.0215523 0.00520628 0.0051615) 11443
(0.0229093 0.00520596 0.00516034) 11445
(0.0208741 0.00392834 0.00111394) 13001
(0.0222923 0.00389022 0.00110589) 13004
(0.0226701 0.00332543 0.00282933) 13305
(0.0202499 0.00304395 0.00311494) 760
(0.0236055 0.00307736 0.00315764) 767
(0.0250531 0.00305402 0.00312655) 770
(0.0253425 0.00302299 0.00315419) 770
(0.0216667 0.0067115 0.00177026) 2503
(0.0216667 0.0067115 0.00177026) 2503
(0.0216667 0.0067115 0.00177026) 2503
(0.0236807 0.00669767 0.00182874) 2447
(0.0244934 0.00667657 0.0017741) 2508
(0.0215729 0.00622586 0.00167589) 13483
(0.0233977 0.00631481 0.00175647) 13486
(0.00516736 0.00644111 0.00281872) 13510
(0.00516736 0.00644111 0.00281872) 13510
(0.00516736 0.00644111 0.00281872) 13510
(0.00601167 0.00644567 0.00287844) 13512
(0.00649611 0.00644465 0.00288282) 13512
(0.0069762 0.00644523 0.00287886) 13513
(0.00499125 0.00632172 0.0025063) 13569
(0.00534778 0.00635172 0.00252828) 13570
(0.0113492 0.00621792 0.0023575) 13642
(0.0118927 0.00620985 0.00236228) 13643
(0.0124455 0.00620141 0.00236627) 13644
(0.0129676 0.00619727 0.00236686) 13645
(0.0134376 0.00620141 0.00236629) 13646
(0.0138687 0.00621164 0.00236441) 13647
(0.017801 0.00623583 0.0023583) 13655
(0.0183667 0.00623075 0.00236289) 13656
(0.0189045 0.00622559 0.00236703) 13657
(0.0194266 0.00621816 0.00236807) 13658
(0.0199566 0.00620845 0.00236673) 13659
(0.0205011 0.0061967 0.00236024) 13661
(0.0210188 0.00618714 0.00234953) 13662
(0.0215041 0.0061814 0.00233833) 13663
(0.00510529 0.00582516 0.00187816) 13750
(0.00557607 0.00582759 0.00186691) 13751
(0.00602077 0.00582536 0.00185902) 13752
(0.00647088 0.00582667 0.00185697) 13752
(0.00502975 0.00557722 0.00171497) 13810
(0.00547091 0.00558205 0.00170728) 13810
(0.00588268 0.00558661 0.00170218) 13811
(0.00569366 0.00444298 0.00167692) 14051
(0.00607533 0.00441556 0.00168103) 14052
(0.00646327 0.00440365 0.00168022) 14052
(0.00687133 0.00439635 0.00167906) 14053
(0.00728411 0.00439031 0.00167572) 14054
(0.00540989 0.00425062 0.0017665) 14110
(0.00540989 0.00425062 0.0017665) 14110
(0.00540989 0.00425062 0.0017665) 14110
(0.00574586 0.00421108 0.00180237) 14111
(0.00613337 0.004182 0.00181543) 14112
(0.0065334 0.00416881 0.00181556) 14113
(0.00694349 0.00416042 0.00181398) 14113
(0.00734393 0.00415063 0.00181238) 14114
(0.0115563 0.00417372 0.00184106) 14123
(0.0120679 0.00417911 0.00184528) 14124
(0.012529 0.00418142 0.00184574) 14125
(0.0129592 0.00418091 0.00184292) 14125
(0.00510724 0.00398029 0.00200881) 14170
(0.00552792 0.0039853 0.00201366) 14171
(0.00593175 0.00397482 0.00202188) 14171
(0.0108006 0.00361855 0.00289053) 14361
(0.0113504 0.00362637 0.00289223) 14362
(0.01191 0.00363753 0.00289385) 14363
(0.0124875 0.00364974 0.00289522) 14364
(0.0130203 0.00365581 0.00289524) 14366
(0.0134983 0.0036546 0.00289396) 14366
(0.0139212 0.00364719 0.00289227) 14367
(0.00562681 0.0035719 0.00317939) 14411
(0.010913 0.00358983 0.00318979) 14421
(0.0114846 0.0035994 0.00319386) 14422
(0.0120628 0.00361192 0.003195) 14424
(0.0126258 0.0036223 0.00319518) 14425
(0.0131386 0.00362599 0.0031944) 14426
(0.0136218 0.00362549 0.00319398) 14427
(0.0140727 0.00362097 0.00319446) 14428
(0.0145099 0.00361426 0.00319645) 14429
(0.00547644 0.00369826 0.00336936) 14470
(0.00547644 0.00369826 0.00336936) 14470
(0.00547644 0.00369826 0.00336936) 14470
(0.00565376 0.00371768 0.00347852) 14471
(0.00593994 0.00371889 0.00353089) 14471
(0.00638865 0.00370987 0.00354296) 14472
(0.00694314 0.00369178 0.00352087) 14473
(0.0075025 0.00366587 0.00349421) 14475
(0.00508211 0.0038042 0.00370516) 14530
(0.00508211 0.0038042 0.00370516) 14530
(0.00508211 0.0038042 0.00370516) 14530
(0.00527324 0.00383096 0.0037554) 14530
(0.00527324 0.00383096 0.0037554) 14530
(0.00527324 0.00383096 0.0037554) 14530
(0.00560565 0.00382558 0.00377475) 14531
(0.00600344 0.00380972 0.00376837) 14532
(0.00652551 0.0037874 0.00375377) 14533
(0.00478006 0.00393641 0.00393511) 14589
(0.00519189 0.00401345 0.00395563) 14590
(0.00572073 0.00403653 0.00396082) 14591
(0.00625323 0.00402158 0.00396269) 14592
(0.00516744 0.00501666 0.00441556) 14830
(0.00562543 0.00501934 0.0044242) 14831
(0.00605153 0.0050133 0.00443489) 14832
(0.00645981 0.00500842 0.00444372) 14832
(0.00687819 0.00500887 0.00444842) 14833
(0.00501088 0.00528999 0.00437754) 14890
(0.00551606 0.00529095 0.00438473) 14891
(0.00598348 0.00528757 0.00439434) 14891
(0.00639357 0.00528439 0.00440511) 14892
(0.00492736 0.00623308 0.00363913) 15129
(0.00558433 0.00636013 0.00341897) 15191
(0.00598662 0.00636561 0.00341185) 15191
(0.0052223 0.00645769 0.00307382) 15250
(0.0052223 0.00645769 0.00307382) 15250
(0.0052223 0.00645769 0.00307382) 15250
(0.00569599 0.00643783 0.0031288) 15251
(0.00613481 0.00643584 0.00313634) 15252
(0.00657219 0.0064381 0.00313167) 15253
(0.00701277 0.00644088 0.00312834) 15254
(0.007448 0.00644597 0.00312784) 15254
(0.00338695 0.00637991 0.00273282) 13566
(0.00383793 0.00637908 0.00269108) 13567
(0.00434365 0.00635007 0.00261844) 13568
(0.0046993 0.0063874 0.00267537) 13569
(0.00252139 0.00430459 0.00164762) 5705
(0.0049089 0.00441569 0.00157411) 5709
(0.00474208 0.00452854 0.00162786) 14049
(0.00291961 0.00418099 0.00173835) 5645
(0.00444104 0.00425566 0.0016937) 5708
(0.00495885 0.0034837 0.00320194) 5409
(0.00479246 0.00367001 0.00353578) 14469
(0.00129712 0.00492808 0.00443974) 14822
(0.00191554 0.00492806 0.00443971) 14823
(0.00301607 0.00493213 0.00440328) 14826
(0.00384142 0.00522382 0.00433543) 14887
(0.00433846 0.00529823 0.00433927) 14888
(0.0039793 0.00636305 0.00275081) 13567
(0.00415898 0.00639522 0.00273047) 13568
(0.00475843 0.0064408 0.00280305) 13509
(0.0214201 0.00303527 0.00216757) 522
(0.0208469 0.00703286 0.00384719) 23861
(0.0218861 0.00708884 0.00377039) 23863
(0.0218967 0.00692236 0.00360104) 2023
(0.0130156 0.00646176 0.00415507) 6686
(0.0130156 0.00646176 0.00415507) 6686
(0.0130156 0.00646176 0.00415507) 6686
(0.0139371 0.00642686 0.00413026) 6687
(0.014657 0.00640559 0.00412041) 6689
(0.0152588 0.00639402 0.00411369) 6690
(0.0157817 0.00639067 0.00410798) 6691
(0.016262 0.0063902 0.0041057) 6692
(0.0167391 0.00639002 0.0041025) 6693
(0.0172427 0.00638731 0.00409712) 6694
(0.0177615 0.00637996 0.00409419) 6695
(0.0182666 0.00637226 0.00409262) 6696
(0.0187246 0.00636682 0.00409337) 6697
(0.0124612 0.00609987 0.00440641) 9324
(0.013374 0.00608845 0.00437789) 9326
(0.0141631 0.00607831 0.00436154) 9328
(0.0216462 0.00325877 0.00331601) 5443
(0.0224385 0.00645637 0.00207325) 13424
(0.0239102 0.00661739 0.00225359) 6107
(0.0248377 0.00664991 0.00222886) 6109
(0.0219959 0.00689391 0.00426594) 1903
(0.0223081 0.00663564 0.00414594) 6704
(0.0242127 0.00666742 0.00411398) 1968
(0.0209915 0.00640954 0.00125121) 6821
(0.0220781 0.00636495 0.00123577) 6824
(0.0215475 0.00358698 0.00457675) 7183
(0.0230748 0.0035929 0.00459432) 7186
(0.0216596 0.0034105 0.00165808) 463
(0.0233896 0.00340651 0.00168074) 466
(0.0202238 0.00607477 0.00479238) 12220
(0.0220502 0.00609571 0.00472758) 12224
(0.0219035 0.00577813 0.0049986) 12583
(0.0219035 0.00577813 0.0049986) 12583
(0.0219035 0.00577813 0.0049986) 12583
(0.0234842 0.00579674 0.00498844) 12586
(0.0234842 0.00579674 0.00498844) 12586
(0.0234842 0.00579674 0.00498844) 12586
(0.02415 0.00588076 0.00495676) 12588
(0.0217518 0.00396673 0.0048326) 10543
(0.023196 0.00397309 0.00486348) 10546
(0.022477 0.00380757 0.00142344) 12764
(0.0226343 0.00414229 0.00126066) 11505
(0.0245289 0.00409385 0.00122221) 11509
(0.02205 0.00448 0.00113918) 9824
(0.0218094 0.00481362 0.000987892) 11623
(0.0234161 0.00476158 0.000971566) 11626
(0.0213995 0.00564705 0.00102134) 12162
(0.0212593 0.00601725 0.00110222) 12462
(0.0227317 0.00603152 0.00110114) 12465
(0.0219139 0.00533195 0.00092583) 10123
(0.0235252 0.00529951 0.000922237) 10127
(0.0210996 0.00504423 0.000709658) 11922
(0.0220276 0.00499534 0.000743303) 11624
(0.0215022 0.00520621 0.0051615) 11443
(0.0228783 0.00520375 0.00515944) 11445
(0.0208402 0.00393161 0.00111325) 13001
(0.02226 0.00389449 0.00110546) 13004
(0.0225359 0.00332317 0.00282475) 13305
(0.0201684 0.00304682 0.00310782) 760
(0.0234728 0.00307766 0.00315809) 766
(0.025034 0.00305728 0.00312664) 770
(0.0253399 0.00302331 0.00315103) 770
(0.0215648 0.00671374 0.00176582) 2503
(0.0215648 0.00671374 0.00176582) 2503
(0.0215648 0.00671374 0.00176582) 2503
(0.0236284 0.00669757 0.00182903) 2447
(0.0244914 0.00667918 0.00177993) 2508
(0.0213772 0.00623396 0.00167652) 13482
(0.0233744 0.0063125 0.00175727) 13486
(0.00515033 0.00644153 0.00281443) 13510
(0.00515033 0.00644153 0.00281443) 13510
(0.00515033 0.00644153 0.00281443) 13510
(0.0059878 0.00644592 0.00287781) 13511
(0.00647259 0.00644475 0.00288277) 13512
(0.00695309 0.00644519 0.00287912) 13513
(0.00497289 0.00632104 0.00250548) 13569
(0.00532487 0.00635112 0.00252682) 13570
(0.0113264 0.00621816 0.00235733) 13642
(0.0118697 0.00621019 0.00236213) 13643
(0.0124224 0.00620179 0.0023662) 13644
(0.0129461 0.00619737 0.00236686) 13645
(0.0134178 0.00620119 0.00236632) 13646
(0.0138501 0.00621122 0.00236449) 13647
(0.0177752 0.00623611 0.00235822) 13655
(0.0183419 0.00623101 0.00236275) 13656
(0.0188813 0.0062259 0.002367) 13657
(0.0194038 0.00621855 0.00236816) 13658
(0.0199329 0.00620902 0.00236698) 13659
(0.0204776 0.00619733 0.00236076) 13660
(0.0209966 0.00618761 0.00235013) 13661
(0.0214829 0.00618176 0.002339) 13662
(0.00508357 0.00582481 0.00187827) 13750
(0.00555485 0.00582747 0.00186698) 13751
(0.00599843 0.00582539 0.00185901) 13751
(0.00644811 0.00582647 0.0018568) 13752
(0.00500664 0.00557705 0.00171512) 13810
(0.00544969 0.00558178 0.00170734) 13810
(0.00586117 0.00558629 0.00170211) 13811
(0.00567328 0.00444463 0.00167591) 14051
(0.0060545 0.00441636 0.00168073) 14052
(0.00644165 0.00440402 0.0016801) 14052
(0.00684992 0.00439663 0.00167906) 14053
(0.00726307 0.0043905 0.00167586) 14054
(0.00539689 0.00425103 0.00176371) 14110
(0.00539689 0.00425103 0.00176371) 14110
(0.00539689 0.00425103 0.00176371) 14110
(0.00572746 0.00421251 0.00180095) 14111
(0.00611257 0.00418281 0.001815) 14112
(0.00651149 0.00416913 0.00181549) 14113
(0.00692222 0.00416074 0.00181399) 14113
(0.00732345 0.00415105 0.0018124) 14114
(0.0115323 0.00417343 0.00184084) 14123
(0.0120462 0.00417889 0.00184515) 14124
(0.0125092 0.00418131 0.00184573) 14125
(0.0129396 0.00418085 0.00184297) 14125
(0.00508859 0.00397894 0.00200889) 14170
(0.00550731 0.00398523 0.00201313) 14171
(0.00591043 0.00397509 0.00202159) 14171
(0.0107768 0.00361829 0.00289049) 14361
(0.011327 0.00362602 0.00289217) 14362
(0.0118854 0.00363699 0.0028938) 14363
(0.0124633 0.00364925 0.00289516) 14364
(0.0129982 0.00365559 0.00289526) 14365
(0.0134786 0.0036547 0.00289402) 14366
(0.0139035 0.00364752 0.00289234) 14367
(0.0142961 0.00363705 0.00289062) 14368
(0.0056064 0.00357124 0.00317778) 14411
(0.0108863 0.00358938 0.00318978) 14421
(0.0114587 0.00359886 0.00319377) 14422
(0.0120372 0.00361135 0.00319508) 14424
(0.0126021 0.00362192 0.00319522) 14425
(0.0131164 0.00362582 0.0031945) 14426
(0.0136007 0.00362548 0.00319402) 14427
(0.0140529 0.00362115 0.00319451) 14428
(0.0144897 0.00361447 0.0031964) 14428
(0.0149541 0.00360846 0.00319747) 14429
(0.00546605 0.00369413 0.00336422) 14470
(0.00546605 0.00369413 0.00336422) 14470
(0.00546605 0.00369413 0.00336422) 14470
(0.00564532 0.00371604 0.00347447) 14471
(0.0059237 0.00371815 0.00352877) 14471
(0.0063654 0.00371005 0.00354283) 14472
(0.00691637 0.00369255 0.00352205) 14473
(0.00747749 0.00366698 0.00349524) 14474
(0.00507627 0.00380156 0.0037035) 14530
(0.00507627 0.00380156 0.0037035) 14530
(0.00507627 0.00380156 0.0037035) 14530
(0.00526179 0.00382963 0.0037536) 14530
(0.00526179 0.00382963 0.0037536) 14530
(0.00526179 0.00382963 0.0037536) 14530
(0.00559029 0.00382526 0.00377426) 14531
(0.0059847 0.00380988 0.00376845) 14531
(0.00649965 0.00378826 0.00375468) 14532
(0.00476285 0.00393293 0.00393542) 14589
(0.00516924 0.00401045 0.00395463) 14590
(0.00569559 0.00403536 0.00396039) 14591
(0.00622905 0.00402214 0.00396211) 14592
(0.00514673 0.00501612 0.00441554) 14830
(0.00560428 0.00501937 0.00442399) 14831
(0.00602933 0.00501355 0.00443472) 14832
(0.00643618 0.00500844 0.0044438) 14832
(0.0068554 0.00500867 0.00444846) 14833
(0.00498881 0.00529001 0.00437739) 14889
(0.00549274 0.00529107 0.0043846) 14890
(0.00595985 0.00528771 0.00439421) 14891
(0.00637032 0.00528453 0.00440511) 14892
(0.00490462 0.00623402 0.00363761) 15129
(0.00556128 0.00636051 0.00341904) 15191
(0.00596694 0.00636534 0.00341223) 15191
(0.00520064 0.00645936 0.00306871) 15250
(0.00520064 0.00645936 0.00306871) 15250
(0.00520064 0.00645936 0.00306871) 15250
(0.00567321 0.00643849 0.00312774) 15251
(0.00611226 0.00643598 0.00313638) 15252
(0.00654942 0.00643814 0.00313205) 15253
(0.00699071 0.00644076 0.00312858) 15253
(0.0074263 0.00644577 0.00312785) 15254
(0.00340158 0.00637319 0.00272739) 13566
(0.00380511 0.00638173 0.00269465) 13567
(0.00433308 0.00634866 0.00261924) 13568
(0.00468689 0.00638597 0.00267102) 13569
(0.00267972 0.00430757 0.00165147) 5705
(0.00491123 0.00441267 0.00157504) 5709
(0.00477593 0.00452112 0.00161378) 14049
(0.00311128 0.00418847 0.00174007) 5646
(0.00428013 0.00425533 0.00169816) 5708
(0.00493409 0.00348251 0.00320553) 5409
(0.00477222 0.00366812 0.00353949) 14469
(0.00129559 0.00492869 0.00443927) 14822
(0.00189807 0.00492814 0.00443957) 14823
(0.00294379 0.00493321 0.00441021) 14825
(0.00383828 0.00522034 0.00433061) 14887
(0.0043262 0.00529034 0.00434271) 14888
(0.00402809 0.00635004 0.00274167) 13568
(0.00414338 0.00639698 0.00272983) 13568
(0.00474693 0.00643886 0.00279392) 13509
(0.0213761 0.00303682 0.00216521) 522
(0.0218666 0.00708418 0.00377555) 23863
(0.0218422 0.00691797 0.0036045) 2023
(0.0233109 0.00701237 0.00355271) 23506
(0.0129792 0.00646341 0.00415656) 6685
(0.0129792 0.00646341 0.00415656) 6685
(0.0129792 0.00646341 0.00415656) 6685
(0.0139104 0.00642775 0.0041307) 6687
(0.0146357 0.00640616 0.00412037) 6689
(0.0152409 0.00639414 0.00411373) 6690
(0.015766 0.00639057 0.00410788) 6691
(0.0162472 0.00639006 0.00410552) 6692
(0.0167235 0.00638991 0.00410247) 6693
(0.0172257 0.00638731 0.00409712) 6694
(0.0177445 0.0063801 0.00409402) 6695
(0.0182508 0.00637236 0.00409234) 6696
(0.0187117 0.0063668 0.0040929) 6697
(0.0124314 0.00610019 0.00440748) 9324
(0.0133443 0.00608866 0.00437857) 9326
(0.0141385 0.00607853 0.00436175) 9328
(0.0214894 0.00325119 0.00331485) 822
(0.0223169 0.00645564 0.00206532) 13424
(0.023867 0.00661455 0.00225213) 6107
(0.0248154 0.00664842 0.00223161) 6109
(0.021958 0.00689078 0.00427058) 1903
(0.0222207 0.00663386 0.00414889) 6704
(0.0241719 0.00666449 0.00411465) 1968
(0.020961 0.00641079 0.00125184) 6821
(0.0220583 0.00636907 0.00123965) 6824
(0.0214888 0.00358626 0.00457606) 7182
(0.0230421 0.00359162 0.00459137) 7186
(0.0215878 0.00341062 0.00165545) 463
(0.0233501 0.00340858 0.0016793) 466
(0.0219873 0.00609429 0.00472825) 12223
(0.0218352 0.0057777 0.00499931) 12583
(0.0218352 0.0057777 0.00499931) 12583
(0.0218352 0.0057777 0.00499931) 12583
(0.0234486 0.00579398 0.00498846) 12586
(0.0234486 0.00579398 0.00498846) 12586
(0.0234486 0.00579398 0.00498846) 12586
(0.0241508 0.00587358 0.00495971) 12588
(0.0216967 0.00396557 0.00483072) 10543
(0.0231642 0.00397221 0.00486062) 10546
(0.0223825 0.00380728 0.00142351) 12764
(0.0244333 0.00380477 0.00139963) 12768
(0.0225388 0.00414524 0.00126131) 11505
(0.0245091 0.00409649 0.00122412) 11509
(0.0219841 0.00448513 0.00113926) 9823
(0.0217427 0.00481599 0.000988358) 11623
(0.0233756 0.00476472 0.000973244) 11626
(0.0213441 0.00564898 0.00102289) 12162
(0.0212066 0.00601644 0.00110235) 12462
(0.0226985 0.00603257 0.00110356) 12465
(0.0218412 0.00533483 0.000925969) 10123
(0.0234896 0.0053012 0.000924648) 10126
(0.0210742 0.00504517 0.000708422) 11922
(0.0220103 0.00499988 0.000743627) 11624
(0.0214522 0.00520609 0.00516156) 11442
(0.0228463 0.00520174 0.00515857) 11445
(0.0208075 0.00393489 0.00111256) 13001
(0.0222258 0.00389831 0.00110529) 13004
(0.0223885 0.00331986 0.00281992) 13304
(0.0200895 0.00305013 0.00310032) 760
(0.0233417 0.0030778 0.00315852) 766
(0.0250141 0.00306053 0.00312683) 770
(0.0253366 0.00302391 0.00314805) 770
(0.0214652 0.0067164 0.00176154) 2502
(0.0214652 0.0067164 0.00176154) 2502
(0.0214652 0.0067164 0.00176154) 2502
(0.0235739 0.00669753 0.00182917) 2447
(0.0244879 0.00668147 0.00178557) 2448
(0.0211785 0.00624605 0.0016794) 13482
(0.023351 0.0063101 0.00175785) 13486
(0.00513342 0.00644193 0.00280998) 13510
(0.00513342 0.00644193 0.00280998) 13510
(0.00513342 0.00644193 0.00280998) 13510
(0.0059639 0.00644619 0.00287713) 13511
(0.00644902 0.00644486 0.0028827) 13512
(0.00692998 0.00644516 0.00287937) 13513
(0.00495454 0.00632035 0.00250465) 13569
(0.00530226 0.00635052 0.0025254) 13570
(0.0113037 0.0062184 0.00235716) 13642
(0.0118467 0.00621053 0.00236197) 13643
(0.0123992 0.00620217 0.00236612) 13644
(0.0129246 0.00619749 0.00236686) 13645
(0.0133979 0.00620098 0.00236634) 13646
(0.0138314 0.00621081 0.00236457) 13647
(0.0177494 0.00623639 0.00235814) 13655
(0.018317 0.00623127 0.0023626) 13656
(0.018858 0.0062262 0.00236696) 13657
(0.0193811 0.00621895 0.00236825) 13658
(0.0199092 0.00620959 0.00236723) 13659
(0.020454 0.00619795 0.00236127) 13660
(0.0209744 0.00618808 0.00235072) 13661
(0.0214617 0.00618212 0.00233966) 13662
(0.00506176 0.00582444 0.00187837) 13750
(0.00553366 0.00582734 0.00186705) 13751
(0.00597615 0.00582543 0.00185901) 13751
(0.00642532 0.00582629 0.00185663) 13752
(0.00498348 0.00557689 0.0017153) 13809
(0.00542847 0.00558151 0.00170741) 13810
(0.0058397 0.00558597 0.00170205) 13811
(0.00477699 0.00472896 0.00161083) 13989
(0.00565294 0.00444631 0.00167483) 14051
(0.00603373 0.00441719 0.0016804) 14052
(0.0064201 0.00440438 0.00167997) 14052
(0.00682851 0.00439691 0.00167906) 14053
(0.00724203 0.00439069 0.001676) 14054
(0.00538411 0.00425128 0.00176085) 14110
(0.00538411 0.00425128 0.00176085) 14110
(0.00538411 0.00425128 0.00176085) 14110
(0.00570923 0.0042139 0.00179948) 14111
(0.0060919 0.00418364 0.00181455) 14112
(0.00648966 0.00416947 0.00181542) 14112
(0.00690091 0.00416105 0.001814) 14113
(0.00730297 0.00415147 0.00181243) 14114
(0.0115081 0.00417314 0.00184063) 14123
(0.0120245 0.00417867 0.00184501) 14124
(0.0124893 0.0041812 0.00184573) 14124
(0.01292 0.00418078 0.00184303) 14125
(0.00507007 0.00397756 0.00200901) 14170
(0.00548677 0.0039851 0.00201263) 14170
(0.00588919 0.00397535 0.00202129) 14171
(0.010753 0.00361804 0.00289046) 14361
(0.0113036 0.00362568 0.00289211) 14362
(0.0118609 0.00363647 0.00289374) 14363
(0.0124391 0.00364876 0.0028951) 14364
(0.012976 0.00365536 0.00289528) 14365
(0.0134588 0.00365478 0.00289408) 14366
(0.0138859 0.00364785 0.00289242) 14367
(0.0142789 0.00363746 0.00289075) 14368
(0.00558603 0.00357057 0.00317611) 14411
(0.0108595 0.00358893 0.00318977) 14421
(0.0114327 0.00359831 0.00319369) 14422
(0.0120115 0.00361078 0.00319517) 14424
(0.0125782 0.00362154 0.00319527) 14425
(0.0130942 0.00362564 0.00319459) 14426
(0.0135796 0.00362546 0.00319406) 14427
(0.0140331 0.00362132 0.00319457) 14428
(0.0144697 0.00361468 0.00319634) 14428
(0.0149328 0.00360868 0.00319756) 14429
(0.00545579 0.00368916 0.00335921) 14470
(0.00545579 0.00368916 0.00335921) 14470
(0.00545579 0.00368916 0.00335921) 14470
(0.00563732 0.00371417 0.00347036) 14471
(0.00590775 0.00371734 0.00352657) 14471
(0.00634233 0.00371017 0.00354253) 14472
(0.00688971 0.00369329 0.00352322) 14473
(0.00745235 0.00366808 0.00349629) 14474
(0.0050706 0.00379885 0.00370192) 14530
(0.0050706 0.00379885 0.00370192) 14530
(0.0050706 0.00379885 0.00370192) 14530
(0.00525068 0.00382825 0.00375179) 14530
(0.00525068 0.00382825 0.00375179) 14530
(0.00525068 0.00382825 0.00375179) 14530
(0.00557499 0.00382491 0.00377374) 14531
(0.00596624 0.00381002 0.0037685) 14531
(0.00647414 0.00378906 0.00375554) 14532
(0.00474579 0.00392958 0.00393578) 14589
(0.00514683 0.00400741 0.00395363) 14590
(0.00567036 0.00403408 0.00395995) 14591
(0.00620481 0.00402262 0.00396153) 14592
(0.00512601 0.00501558 0.00441551) 14830
(0.00558317 0.00501936 0.00442379) 14831
(0.00600722 0.0050138 0.00443455) 14832
(0.00641253 0.00500845 0.00444388) 14832
(0.00683251 0.00500853 0.00444851) 14833
(0.00496685 0.00528997 0.00437724) 14889
(0.00546948 0.0052912 0.00438447) 14890
(0.0059362 0.00528785 0.00439406) 14891
(0.00634697 0.00528472 0.0044051) 14892
(0.00488177 0.00623501 0.00363605) 15129
(0.00553805 0.00636093 0.0034191) 15191
(0.00594718 0.00636509 0.0034126) 15191
(0.00517916 0.00646104 0.00306331) 15250
(0.00517916 0.00646104 0.00306331) 15250
(0.00517916 0.00646104 0.00306331) 15250
(0.0056504 0.00643919 0.00312658) 15251
(0.00608969 0.00643613 0.00313639) 15252
(0.00652661 0.00643817 0.00313243) 15253
(0.00696862 0.00644065 0.00312883) 15253
(0.00740457 0.00644558 0.00312788) 15254
(0.00339411 0.00636849 0.00272514) 13566
(0.0037742 0.00638369 0.00269786) 13567
(0.00432189 0.00634772 0.00261998) 13568
(0.0046744 0.00638411 0.002667) 13569
(0.00296472 0.00431226 0.00165818) 5705
(0.00490272 0.00440593 0.0015757) 5709
(0.00481592 0.00451266 0.00160068) 14049
(0.00332719 0.0041952 0.00174128) 5646
(0.00418441 0.00425391 0.00170126) 5708
(0.00489836 0.00348878 0.00321312) 5409
(0.00474659 0.00366605 0.00354329) 14469
(0.00518777 0.00371433 0.00345322) 14470
(0.00129652 0.00492944 0.0044387) 14822
(0.00188207 0.00492826 0.00443937) 14823
(0.00287769 0.00493431 0.0044163) 14825
(0.0038301 0.00521696 0.00432567) 14887
(0.00431571 0.00528265 0.00434533) 14888
(0.00406434 0.00633838 0.00273315) 13568
(0.00412752 0.00639882 0.0027292) 13568
(0.00473592 0.00643591 0.00278564) 13509
(0.0213315 0.00303823 0.00216296) 522
(0.0218465 0.00707972 0.00378057) 23863
(0.0217873 0.00691375 0.00360806) 2023
(0.023278 0.00700806 0.00355544) 23506
(0.0129426 0.00646508 0.00415811) 6685
(0.0129426 0.00646508 0.00415811) 6685
(0.0129426 0.00646508 0.00415811) 6685
(0.0138835 0.00642868 0.00413115) 6687
(0.0146144 0.00640675 0.00412032) 6689
(0.0152228 0.00639427 0.00411378) 6690
(0.0157503 0.00639045 0.00410781) 6691
(0.0162323 0.00638993 0.00410534) 6692
(0.0167078 0.0063898 0.00410243) 6693
(0.0172087 0.0063873 0.00409712) 6694
(0.0177274 0.00638024 0.00409386) 6695
(0.018235 0.00637248 0.00409205) 6696
(0.0186987 0.00636678 0.00409244) 6697
(0.0124021 0.00610051 0.00440855) 9324
(0.0133144 0.00608889 0.00437928) 9326
(0.0141138 0.00607877 0.00436197) 9328
(0.0213222 0.00324204 0.00331348) 822
(0.0221851 0.00645857 0.00205942) 13424
(0.0238237 0.00661153 0.00225029) 6107
(0.0247919 0.00664689 0.00223426) 6109
(0.0219207 0.00688784 0.00427503) 1903
(0.0221318 0.00663223 0.00415198) 6704
(0.0241278 0.00666171 0.00411537) 1968
(0.0209305 0.00641205 0.00125244) 6821
(0.0220377 0.00637297 0.0012433) 6824
(0.0214309 0.00358563 0.00457541) 7182
(0.0230077 0.00359045 0.00458854) 7186
(0.0215152 0.00341079 0.00165241) 463
(0.0233093 0.00341027 0.00167847) 466
(0.0219234 0.00609293 0.00472903) 12223
(0.021767 0.00577735 0.00500007) 12583
(0.021767 0.00577735 0.00500007) 12583
(0.021767 0.00577735 0.00500007) 12583
(0.0234115 0.00579132 0.00498844) 12586
(0.0234115 0.00579132 0.00498844) 12586
(0.0234115 0.00579132 0.00498844) 12586
(0.0241502 0.00586674 0.00496233) 12588
(0.0216416 0.0039643 0.00482888) 10543
(0.0231309 0.00397139 0.00485785) 10546
(0.0222859 0.00380743 0.0014234) 12764
(0.0244094 0.00380836 0.00139999) 12768
(0.0224427 0.00414826 0.00126204) 11504
(0.0244891 0.00409992 0.00122595) 11508
(0.0219176 0.00449004 0.00113921) 9823
(0.0216753 0.00481828 0.000988719) 11623
(0.0233335 0.00476777 0.00097491) 11626
(0.021289 0.00565102 0.00102444) 12162
(0.0211543 0.00601565 0.00110246) 12462
(0.022664 0.00603348 0.00110585) 12465
(0.0217676 0.00533784 0.000926017) 10123
(0.0234514 0.00530275 0.000926949) 10126
(0.0210483 0.00504596 0.00070718) 11922
(0.0219926 0.00500424 0.000743889) 11623
(0.0214023 0.00520593 0.00516167) 11442
(0.0228132 0.00519992 0.00515772) 11445
(0.0207757 0.00393811 0.00111188) 13001
(0.0221897 0.00390132 0.00110548) 13004
(0.0222287 0.00331526 0.00281486) 13304
(0.0232136 0.00307786 0.0031589) 766
(0.0249934 0.00306375 0.00312714) 769
(0.0253322 0.0030248 0.00314527) 770
(0.0213771 0.00671919 0.00175818) 2502
(0.0213771 0.00671919 0.00175818) 2502
(0.0213771 0.00671919 0.00175818) 2502
(0.0235176 0.00669753 0.00182921) 2447
(0.024483 0.00668346 0.00179106) 2448
(0.0209817 0.00626182 0.00168442) 13481
(0.0233276 0.00630761 0.00175822) 13486
(0.00511664 0.00644229 0.00280539) 13510
(0.00511664 0.00644229 0.00280539) 13510
(0.00511664 0.00644229 0.00280539) 13510
(0.00593994 0.00644648 0.00287641) 13511
(0.00642541 0.00644499 0.0028826) 13512
(0.00690686 0.00644513 0.00287962) 13513
(0.00493618 0.00631963 0.00250376) 13569
(0.00527992 0.00634992 0.002524) 13570
(0.0112809 0.00621864 0.002357) 13642
(0.0118237 0.00621086 0.00236182) 13643
(0.0123759 0.00620255 0.00236603) 13644
(0.012903 0.00619762 0.00236686) 13645
(0.013378 0.00620078 0.00236635) 13646
(0.0138127 0.00621041 0.00236464) 13647
(0.0177237 0.00623667 0.00235806) 13655
(0.0182921 0.00623153 0.00236246) 13656
(0.0188347 0.0062265 0.00236691) 13657
(0.0193585 0.00621933 0.00236833) 13658
(0.0198855 0.00621014 0.00236747) 13659
(0.0204303 0.00619858 0.00236178) 13660
(0.0209521 0.00618855 0.00235131) 13661
(0.0214405 0.00618248 0.00234032) 13662
(0.00503985 0.00582403 0.00187845) 13750
(0.00551249 0.0058272 0.00186712) 13751
(0.00595394 0.00582548 0.00185903) 13751
(0.00640252 0.00582611 0.00185647) 13752
(0.00496026 0.00557673 0.0017155) 13809
(0.00540727 0.00558124 0.0017075) 13810
(0.00581826 0.00558563 0.00170198) 13811
(0.00475352 0.00473045 0.00161007) 13989
(0.00563266 0.00444799 0.00167368) 14051
(0.00601304 0.00441806 0.00168005) 14052
(0.00639864 0.00440476 0.00167985) 14052
(0.00680709 0.00439719 0.00167905) 14053
(0.007221 0.0043909 0.00167614) 14054
(0.00537198 0.00425095 0.00175751) 14110
(0.00537198 0.00425095 0.00175751) 14110
(0.00537198 0.00425095 0.00175751) 14110
(0.00569118 0.00421526 0.00179795) 14111
(0.00607135 0.00418448 0.00181408) 14112
(0.00646793 0.00416983 0.00181534) 14112
(0.00687955 0.00416136 0.00181401) 14113
(0.00728248 0.00415189 0.00181246) 14114
(0.0114839 0.00417284 0.00184041) 14122
(0.0120026 0.00417844 0.00184487) 14124
(0.0124694 0.00418109 0.00184571) 14124
(0.0129004 0.00418071 0.00184308) 14125
(0.00505163 0.00397618 0.00200919) 14170
(0.00546631 0.00398491 0.00201215) 14170
(0.00586803 0.00397558 0.00202101) 14171
(0.0107291 0.00361779 0.00289043) 14361
(0.0112802 0.00362535 0.00289207) 14362
(0.0118364 0.00363595 0.00289368) 14363
(0.0124148 0.00364827 0.00289504) 14364
(0.0129537 0.00365511 0.00289529) 14365
(0.0134389 0.00365485 0.00289413) 14366
(0.0138681 0.00364816 0.00289249) 14367
(0.0142618 0.00363787 0.00289087) 14368
(0.00556567 0.00356991 0.00317437) 14411
(0.0108325 0.00358847 0.00318977) 14421
(0.0114067 0.00359777 0.00319363) 14422
(0.0119858 0.0036102 0.00319521) 14423
(0.0125543 0.00362115 0.00319533) 14425
(0.0130719 0.00362546 0.00319468) 14426
(0.0135584 0.00362544 0.00319411) 14427
(0.0140133 0.00362149 0.00319463) 14428
(0.0144496 0.0036149 0.00319628) 14428
(0.0149115 0.0036089 0.00319764) 14429
(0.00544561 0.00368424 0.00335439) 14470
(0.00544561 0.00368424 0.00335439) 14470
(0.00544561 0.00368424 0.00335439) 14470
(0.00562949 0.00371226 0.00346617) 14471
(0.00589226 0.00371643 0.00352434) 14471
(0.00631949 0.00371024 0.00354212) 14472
(0.00686307 0.00369399 0.00352433) 14473
(0.0074271 0.00366918 0.00349736) 14474
(0.00506518 0.00379609 0.00370034) 14530
(0.00506518 0.00379609 0.00370034) 14530
(0.00506518 0.00379609 0.00370034) 14530
(0.00523978 0.00382683 0.00374996) 14530
(0.00523978 0.00382683 0.00374996) 14530
(0.00523978 0.00382683 0.00374996) 14530
(0.00555973 0.00382453 0.00377317) 14531
(0.00594803 0.00381014 0.00376853) 14531
(0.00644898 0.00378982 0.00375636) 14532
(0.00472887 0.00392633 0.00393619) 14589
(0.00512463 0.00400433 0.00395264) 14590
(0.00564505 0.00403273 0.00395954) 14591
(0.0061805 0.00402302 0.00396093) 14592
(0.00510527 0.00501505 0.00441547) 14830
(0.00556208 0.00501931 0.0044236) 14831
(0.00598519 0.00501405 0.00443437) 14831
(0.00638889 0.00500845 0.00444395) 14832
(0.0068095 0.00500845 0.00444856) 14833
(0.00494499 0.00528984 0.00437711) 14889
(0.00544627 0.00529135 0.00438433) 14890
(0.00591256 0.00528802 0.00439392) 14891
(0.00632356 0.00528497 0.00440507) 14892
(0.00485878 0.00623607 0.00363441) 15129
(0.00551467 0.0063614 0.0034191) 15191
(0.00592738 0.00636486 0.00341296) 15191
(0.00515792 0.00646273 0.0030576) 15250
(0.00515792 0.00646273 0.0030576) 15250
(0.00515792 0.00646273 0.0030576) 15250
(0.00562756 0.00643994 0.0031253) 15251
(0.00606711 0.0064363 0.00313636) 15252
(0.00650378 0.00643822 0.00313281) 15253
(0.00694652 0.00644054 0.00312908) 15253
(0.00738284 0.00644539 0.00312793) 15254
(0.00338468 0.00636357 0.00272319) 13566
(0.00374631 0.00638506 0.0027001) 13567
(0.00431028 0.00634758 0.00262024) 13568
(0.00466121 0.00638271 0.00266238) 13569
(0.00317107 0.00431462 0.00166231) 5706
(0.00488735 0.00439872 0.00157694) 5709
(0.00484911 0.00450344 0.00158702) 5709
(0.00353713 0.00420019 0.00174084) 14107
(0.00400168 0.00425195 0.00170541) 14108
(0.00483586 0.00351498 0.00323588) 5409
(0.00472039 0.0036634 0.00354765) 14469
(0.00519046 0.00370185 0.00345573) 14470
(0.00129323 0.00493055 0.0044383) 14822
(0.00186496 0.00492846 0.00443912) 14823
(0.00281922 0.00493414 0.00442001) 14825
(0.00381691 0.00521251 0.00432079) 14887
(0.00430359 0.00527574 0.00434673) 14888
(-0.000445867 0.00647028 0.00306203) 35998
(0.00410062 0.0063257 0.00272335) 13568
(0.00411997 0.00640015 0.00272803) 13568
(0.00472459 0.0064328 0.00277759) 13509
(0.0212862 0.0030395 0.00216083) 522
(0.0218258 0.00707546 0.00378545) 23863
(0.0217319 0.00690966 0.00361169) 2023
(0.0232435 0.00700378 0.00355809) 23506
(0.0129053 0.00646681 0.00415975) 6685
(0.0129053 0.00646681 0.00415975) 6685
(0.0129053 0.00646681 0.00415975) 6685
(0.0138564 0.00642962 0.00413163) 6687
(0.0145929 0.00640735 0.00412029) 6689
(0.0152047 0.00639441 0.00411384) 6690
(0.0157344 0.00639035 0.00410776) 6691
(0.0162174 0.0063898 0.00410515) 6692
(0.0166922 0.0063897 0.00410239) 6693
(0.0171917 0.00638727 0.00409714) 6694
(0.0177103 0.00638038 0.00409371) 6695
(0.018219 0.0063726 0.00409177) 6696
(0.0186857 0.00636676 0.00409198) 6697
(0.0123734 0.00610083 0.00440961) 9324
(0.0132841 0.00608914 0.00438002) 9326
(0.014089 0.006079 0.00436219) 9328
(0.0211497 0.00323138 0.00331181) 822
(0.0220427 0.00646576 0.00205569) 13424
(0.0237803 0.00660833 0.00224805) 6107
(0.0247669 0.00664533 0.00223681) 6109
(0.0218839 0.00688508 0.00427928) 1903
(0.0230685 0.00696757 0.00416549) 1906
(0.0220425 0.00663052 0.00415539) 6704
(0.0240799 0.00665911 0.00411615) 1968
(0.0209001 0.00641331 0.001253) 6821
(0.0220163 0.00637665 0.00124675) 6824
(0.0213739 0.00358512 0.00457482) 7182
(0.0229717 0.00358939 0.00458586) 7185
(0.0237689 0.00364394 0.004653) 7187
(0.0214423 0.0034109 0.00164914) 402
(0.0232671 0.00341187 0.00167773) 466
(0.0218586 0.00609162 0.00472996) 12223
(0.0234195 0.00612002 0.00471813) 12226
(0.0216987 0.00577711 0.00500089) 12583
(0.0216987 0.00577711 0.00500089) 12583
(0.0216987 0.00577711 0.00500089) 12583
(0.0233728 0.00578877 0.0049884) 12586
(0.0233728 0.00578877 0.0049884) 12586
(0.0233728 0.00578877 0.0049884) 12586
(0.024148 0.00586026 0.00496463) 12588
(0.0215866 0.00396291 0.00482707) 9583
(0.023096 0.00397064 0.00485515) 10546
(0.022189 0.00380767 0.00142306) 12764
(0.0243833 0.00381198 0.00140061) 12768
(0.0223475 0.00415142 0.00126266) 11504
(0.024467 0.00410334 0.00122794) 11508
(0.0218505 0.0044949 0.00113902) 9823
(0.0216079 0.00482051 0.000988974) 11623
(0.0232897 0.00477075 0.000976559) 11626
(0.0212345 0.00565317 0.00102599) 12162
(0.0211028 0.00601487 0.00110257) 12462
(0.0226283 0.00603425 0.00110803) 12465
(0.0216922 0.00534091 0.000925937) 10123
(0.023411 0.0053042 0.000929137) 10126
(0.0219746 0.00500842 0.000744091) 11923
(0.0213527 0.00520572 0.00516184) 11442
(0.022779 0.00519828 0.0051569) 11445
(0.0235748 0.00527452 0.00516011) 11447
(0.0207447 0.00394139 0.0011112) 13001
(0.022153 0.0039042 0.00110567) 13004
(0.0220588 0.00330924 0.00280948) 13304
(0.0230884 0.00307787 0.00315919) 766
(0.0249718 0.00306695 0.00312755) 769
(0.0253269 0.00302594 0.00314267) 770
(0.021306 0.00672154 0.0017561) 2502
(0.021306 0.00672154 0.0017561) 2502
(0.021306 0.00672154 0.0017561) 2502
(0.0234592 0.00669758 0.00182909) 2446
(0.0244768 0.00668518 0.00179644) 2448
(0.0233033 0.00630505 0.00175835) 13486
(0.00510001 0.00644262 0.00280065) 13510
(0.00510001 0.00644262 0.00280065) 13510
(0.00510001 0.00644262 0.00280065) 13510
(0.00547117 0.00644539 0.00285698) 13510
(0.00591595 0.00644679 0.00287565) 13511
(0.00640173 0.00644513 0.00288247) 13512
(0.00688374 0.0064451 0.00287985) 13513
(0.00491783 0.00631894 0.0025029) 13569
(0.00525783 0.00634931 0.0025226) 13570
(0.0112581 0.00621888 0.00235684) 13642
(0.0118008 0.00621119 0.00236166) 13643
(0.0123527 0.00620293 0.00236594) 13644
(0.0128814 0.00619776 0.00236687) 13645
(0.0133581 0.00620059 0.00236636) 13646
(0.0137939 0.00621002 0.00236471) 13647
(0.0176979 0.00623695 0.00235799) 13655
(0.018267 0.0062318 0.00236232) 13656
(0.0188114 0.00622679 0.00236686) 13657
(0.0193358 0.0062197 0.00236841) 13658
(0.0198619 0.00621069 0.0023677) 13659
(0.0204067 0.00619921 0.00236228) 13660
(0.0209297 0.00618903 0.00235189) 13661
(0.0214192 0.00618285 0.00234097) 13662
(0.00501786 0.00582361 0.00187853) 13750
(0.00549134 0.00582704 0.00186719) 13750
(0.00593181 0.00582556 0.00185907) 13751
(0.00637973 0.00582593 0.00185631) 13752
(0.004937 0.00557657 0.00171571) 13809
(0.00538608 0.00558099 0.0017076) 13810
(0.00579684 0.00558527 0.00170191) 13811
(0.00473037 0.00473184 0.00160926) 13989
(0.00599239 0.00441897 0.00167968) 14051
(0.00637727 0.00440513 0.00167973) 14052
(0.00678568 0.00439748 0.00167904) 14053
(0.00719998 0.00439111 0.00167627) 14054
(0.00536035 0.00425011 0.00175394) 14110
(0.00536035 0.00425011 0.00175394) 14110
(0.00536035 0.00425011 0.00175394) 14110
(0.00567333 0.00421656 0.00179636) 14111
(0.00605093 0.00418535 0.00181357) 14112
(0.0064463 0.0041702 0.00181525) 14112
(0.00685817 0.00416167 0.00181402) 14113
(0.00726199 0.00415231 0.00181249) 14114
(0.0114595 0.00417255 0.00184019) 14122
(0.0119806 0.00417821 0.00184473) 14123
(0.0124494 0.00418098 0.0018457) 14124
(0.0128808 0.00418064 0.00184313) 14125
(0.0050332 0.0039748 0.00200945) 14170
(0.00544591 0.00398467 0.0020117) 14170
(0.00584695 0.0039758 0.00202073) 14171
(0.0107052 0.00361754 0.0028904) 14361
(0.0112569 0.00362503 0.00289202) 14362
(0.0118121 0.00363545 0.00289361) 14363
(0.0123904 0.00364776 0.00289498) 14364
(0.0129314 0.00365485 0.0028953) 14365
(0.013419 0.0036549 0.00289418) 14366
(0.0138503 0.00364847 0.00289257) 14367
(0.0142448 0.00363829 0.00289098) 14368
(0.00554537 0.00356925 0.00317257) 14411
(0.0108054 0.00358802 0.00318979) 14421
(0.0113805 0.00359723 0.00319357) 14422
(0.0119599 0.00360962 0.00319524) 14423
(0.0125303 0.00362075 0.00319539) 14425
(0.0130496 0.00362527 0.00319476) 14426
(0.0135372 0.00362541 0.00319415) 14427
(0.0139934 0.00362164 0.00319469) 14427
(0.0144297 0.00361511 0.00319622) 14428
(0.0148902 0.00360912 0.00319773) 14429
(0.00543546 0.00367872 0.00334968) 14470
(0.00543546 0.00367872 0.00334968) 14470
(0.00543546 0.00367872 0.00334968) 14470
(0.0056219 0.00371033 0.00346195) 14471
(0.005877 0.0037155 0.00352203) 14471
(0.00629702 0.00371026 0.00354163) 14472
(0.00683649 0.00369465 0.00352535) 14473
(0.00740174 0.00367027 0.00349845) 14474
(0.00522897 0.00382537 0.00374815) 14530
(0.00522897 0.00382537 0.00374815) 14530
(0.00522897 0.00382537 0.00374815) 14530
(0.0055446 0.00382411 0.00377257) 14531
(0.00593005 0.00381024 0.00376853) 14531
(0.00642416 0.00379054 0.00375711) 14532
(0.00471208 0.0039232 0.00393664) 14589
(0.00510264 0.00400122 0.00395166) 14590
(0.00561965 0.0040313 0.00395915) 14591
(0.00615612 0.00402334 0.0039603) 14592
(0.00554102 0.00501922 0.00442342) 14831
(0.00596323 0.00501431 0.00443419) 14831
(0.00636525 0.00500846 0.00444402) 14832
(0.00678637 0.00500836 0.00444863) 14833
(0.00492329 0.00528965 0.004377) 14889
(0.00542311 0.0052915 0.0043842) 14890
(0.0058889 0.00528819 0.00439377) 14891
(0.00630011 0.00528521 0.00440505) 14892
(0.00483568 0.00623721 0.00363271) 15129
(0.00549111 0.00636193 0.00341907) 15190
(0.00590748 0.00636466 0.0034133) 15191
(0.00513691 0.00646442 0.00305154) 15250
(0.00513691 0.00646442 0.00305154) 15250
(0.00513691 0.00646442 0.00305154) 15250
(0.00560469 0.00644074 0.0031239) 15251
(0.00604451 0.00643649 0.00313629) 15252
(0.00648093 0.00643826 0.00313319) 15252
(0.00692439 0.00644044 0.00312933) 15253
(0.00736108 0.0064452 0.003128) 15254
(0.00337731 0.00635837 0.00272287) 13566
(0.00374184 0.00638442 0.00269807) 13567
(0.00429852 0.0063475 0.00262072) 13568
(0.00464819 0.00638091 0.0026583) 13569
(0.00335534 0.00431585 0.0016651) 5706
(0.00486431 0.00439145 0.00157903) 5709
(0.00486276 0.00449471 0.00157463) 5709
(0.00371839 0.00420363 0.00173857) 14107
(0.00383056 0.00424855 0.00170856) 14107
(0.00474433 0.00355491 0.00328107) 14409
(0.00468264 0.00366037 0.00355362) 14469
(0.0052533 0.00365406 0.00344083) 14470
(0.00128253 0.00493218 0.00443819) 14822
(0.00184807 0.00492865 0.00443886) 14823
(0.00275848 0.00493396 0.00442321) 14825
(0.00386193 0.00493819 0.00433006) 14827
(0.00379792 0.00520883 0.00431659) 14887
(0.00428975 0.00527021 0.00434709) 14888
(-0.000336579 0.00646955 0.00305922) 35998
(0.00419453 0.00629421 0.00269206) 13568
(0.00410723 0.0064008 0.00272833) 13568
(0.00471267 0.00642969 0.00277004) 13509
(0.0212406 0.00304065 0.00215883) 522
(0.0218044 0.00707136 0.0037902) 23863
(0.0226608 0.00718611 0.0036672) 23505
(0.0216763 0.00690568 0.00361542) 2023
(0.023207 0.00699952 0.00356066) 2026
(0.0128676 0.00646857 0.00416146) 6685
(0.0128676 0.00646857 0.00416146) 6685
(0.0128676 0.00646857 0.00416146) 6685
(0.013829 0.0064306 0.00413212) 6687
(0.0145712 0.00640796 0.00412026) 6689
(0.0151864 0.00639456 0.00411392) 6690
(0.0157184 0.00639026 0.00410772) 6691
(0.0162024 0.00638968 0.00410498) 6692
(0.0166766 0.00638959 0.00410235) 6693
(0.0171748 0.00638724 0.00409717) 6694
(0.0176932 0.00638052 0.00409356) 6695
(0.0182029 0.00637273 0.00409149) 6696
(0.0186726 0.00636674 0.00409153) 6697
(0.012345 0.00610115 0.00441066) 9324
(0.0132538 0.00608938 0.00438078) 9326
(0.0140639 0.00607923 0.00436245) 9328
(0.0209824 0.00321977 0.00331002) 821
(0.0233747 0.00327509 0.00332377) 5446
(0.0218877 0.00647832 0.00205542) 13423
(0.0237366 0.00660494 0.0022454) 6107
(0.0247404 0.00664374 0.00223925) 6109
(0.0218478 0.00688249 0.00428336) 1903
(0.023059 0.00695969 0.0041731) 1906
(0.0219526 0.00662889 0.00415899) 6703
(0.0240284 0.00665672 0.00411697) 1968
(0.0208698 0.00641454 0.00125352) 6821
(0.0219942 0.00638014 0.00125002) 6823
(0.0213176 0.00358475 0.00457433) 7182
(0.0229341 0.00358844 0.00458331) 7185
(0.0237686 0.00363835 0.00464688) 7187
(0.0213695 0.00341109 0.00164562) 402
(0.0232229 0.00341335 0.00167708) 466
(0.0217928 0.00609037 0.00473105) 12223
(0.0233816 0.0061172 0.00471833) 12226
(0.0216306 0.00577694 0.00500177) 12583
(0.0216306 0.00577694 0.00500177) 12583
(0.0216306 0.00577694 0.00500177) 12583
(0.0233326 0.00578633 0.00498833) 12586
(0.0233326 0.00578633 0.00498833) 12586
(0.0233326 0.00578633 0.00498833) 12586
(0.0241443 0.00585409 0.00496666) 12588
(0.0213899 0.00439385 0.00500367) 9522
(0.0215319 0.00396142 0.00482531) 9583
(0.0230595 0.00396994 0.00485253) 10546
(0.0220918 0.00380797 0.00142248) 12764
(0.0243546 0.0038156 0.00140148) 12768
(0.0222533 0.00415468 0.00126314) 11504
(0.0244426 0.00410676 0.00123011) 11508
(0.0217831 0.00449972 0.00113867) 9823
(0.021541 0.0048228 0.000989119) 11623
(0.0232444 0.00477365 0.000978191) 11626
(0.0211808 0.00565543 0.00102758) 12162
(0.0210525 0.00601412 0.00110271) 12462
(0.0225913 0.00603488 0.00111008) 12465
(0.0216172 0.00534417 0.000925818) 10123
(0.0233683 0.00530554 0.000931213) 10126
(0.0219563 0.00501241 0.00074423) 11923
(0.0213032 0.00520547 0.00516206) 11442
(0.0227438 0.00519682 0.00515611) 11445
(0.0235726 0.00526692 0.00515949) 11447
(0.0207144 0.00394473 0.00111051) 13001
(0.0221157 0.00390698 0.00110588) 13004
(0.021882 0.0033017 0.00280398) 13303
(0.0229676 0.00307794 0.00315931) 765
(0.0249493 0.00307011 0.00312807) 769
(0.0253209 0.0030273 0.00314021) 770
(0.0212406 0.00672375 0.00175436) 2502
(0.0212406 0.00672375 0.00175436) 2502
(0.0212406 0.00672375 0.00175436) 2502
(0.023399 0.00669767 0.00182884) 2446
(0.024469 0.00668663 0.00180167) 2448
(0.0232784 0.00630238 0.00175819) 13486
(0.0240792 0.0063311 0.00172442) 13488
(0.00508355 0.0064429 0.00279579) 13510
(0.00508355 0.0064429 0.00279579) 13510
(0.00508355 0.0064429 0.00279579) 13510
(0.00544982 0.00644582 0.00285491) 13510
(0.00589193 0.00644711 0.00287483) 13511
(0.006378 0.00644529 0.00288232) 13512
(0.00686062 0.00644508 0.00288008) 13513
(0.00489946 0.00631824 0.00250203) 13569
(0.005236 0.00634869 0.00252122) 13570
(0.0112353 0.00621912 0.00235668) 13642
(0.0117779 0.00621151 0.00236151) 13643
(0.0123294 0.00620332 0.00236585) 13644
(0.0128597 0.00619792 0.00236688) 13645
(0.0133381 0.00620041 0.00236636) 13646
(0.0137751 0.00620963 0.00236477) 13647
(0.0176721 0.00623724 0.00235791) 13655
(0.0182419 0.00623208 0.0023622) 13656
(0.018788 0.00622705 0.00236676) 13657
(0.0193131 0.00622008 0.00236849) 13658
(0.0198384 0.00621123 0.00236792) 13659
(0.0203829 0.00619982 0.00236273) 13660
(0.0209073 0.00618952 0.00235249) 13661
(0.0213979 0.00618322 0.00234161) 13662
(0.00499578 0.00582316 0.00187861) 13749
(0.00547022 0.00582686 0.00186728) 13750
(0.00590976 0.00582563 0.00185913) 13751
(0.00635694 0.00582577 0.00185616) 13752
(0.00491369 0.00557642 0.00171595) 13809
(0.00536488 0.00558074 0.00170771) 13810
(0.00577547 0.00558492 0.00170185) 13811
(0.00470774 0.0047331 0.00160841) 13989
(0.0059718 0.0044199 0.00167927) 14051
(0.006356 0.00440552 0.00167961) 14052
(0.00676427 0.00439776 0.00167902) 14053
(0.00717896 0.00439133 0.0016764) 14054
(0.00534882 0.00424915 0.00175036) 14110
(0.00534882 0.00424915 0.00175036) 14110
(0.00534882 0.00424915 0.00175036) 14110
(0.00565571 0.00421779 0.00179471) 14111
(0.00603064 0.00418623 0.00181305) 14112
(0.00642477 0.00417058 0.00181516) 14112
(0.00683676 0.00416199 0.00181403) 14113
(0.0072415 0.00415274 0.00181252) 14114
(0.0114351 0.00417226 0.00183997) 14122
(0.0119585 0.00417798 0.00184459) 14123
(0.0124294 0.00418087 0.00184568) 14124
(0.0128613 0.00418058 0.00184318) 14125
(0.00501483 0.00397342 0.00200976) 14170
(0.00542559 0.00398438 0.00201127) 14170
(0.00582593 0.003976 0.00202046) 14171
(0.0106812 0.0036173 0.00289037) 14361
(0.0112335 0.00362471 0.00289198) 14362
(0.0117878 0.00363496 0.00289355) 14363
(0.0123659 0.00364726 0.00289492) 14364
(0.012909 0.00365458 0.0028953) 14365
(0.0133989 0.00365495 0.00289424) 14366
(0.0138324 0.00364876 0.00289264) 14367
(0.0142278 0.0036387 0.00289109) 14368
(0.0055251 0.00356859 0.00317069) 14411
(0.0107782 0.00358756 0.0031898) 14421
(0.0113543 0.00359669 0.0031935) 14422
(0.0119341 0.00360904 0.00319528) 14423
(0.0125062 0.00362034 0.00319545) 14425
(0.0130273 0.00362508 0.00319484) 14426
(0.0135159 0.00362538 0.00319421) 14427
(0.0139734 0.0036218 0.00319475) 14427
(0.0144098 0.00361531 0.00319616) 14428
(0.014869 0.00360934 0.00319782) 14429
(0.00542536 0.00367323 0.0033452) 14470
(0.00542536 0.00367323 0.0033452) 14470
(0.00542536 0.00367323 0.0033452) 14470
(0.00561444 0.00370835 0.00345765) 14471
(0.00586225 0.00371444 0.0035197) 14471
(0.00627483 0.00371025 0.00354104) 14472
(0.00681005 0.00369527 0.00352634) 14473
(0.00737628 0.00367135 0.00349955) 14474
(0.00521856 0.00382386 0.00374634) 14530
(0.00521856 0.00382386 0.00374634) 14530
(0.00521856 0.00382386 0.00374634) 14530
(0.0055296 0.00382367 0.00377193) 14531
(0.00591228 0.00381032 0.0037685) 14531
(0.00639969 0.00379121 0.00375782) 14532
(0.00469546 0.00392018 0.00393712) 14589
(0.00508085 0.0039981 0.00395071) 14590
(0.00559416 0.00402979 0.00395878) 14591
(0.00613168 0.00402358 0.00395965) 14592
(0.00551999 0.00501911 0.00442325) 14831
(0.00594134 0.00501455 0.004434) 14831
(0.00634163 0.00500849 0.00444408) 14832
(0.00676312 0.00500828 0.00444871) 14833
(0.00490186 0.0052894 0.00437689) 14889
(0.00540001 0.00529163 0.00438406) 14890
(0.00586525 0.00528838 0.00439362) 14891
(0.00627662 0.00528544 0.00440502) 14892
(0.00481243 0.00623842 0.00363094) 15129
(0.00546738 0.0063625 0.003419) 15190
(0.00588745 0.00636448 0.00341362) 15191
(0.0051162 0.00646612 0.00304515) 15250
(0.0051162 0.00646612 0.00304515) 15250
(0.0051162 0.00646612 0.00304515) 15250
(0.00558178 0.00644159 0.00312237) 15251
(0.0060219 0.0064367 0.00313617) 15252
(0.00645805 0.00643831 0.00313355) 15252
(0.00690224 0.00644036 0.00312959) 15253
(0.00733931 0.00644501 0.00312808) 15254
(0.00337331 0.00635269 0.00272405) 13566
(0.00373182 0.00638271 0.00269749) 13567
(0.00428656 0.00634763 0.00262118) 13568
(0.00463498 0.00637906 0.00265428) 13569
(0.00355445 0.00431625 0.00166679) 5707
(0.0048299 0.00438505 0.0015825) 5709
(0.0048582 0.00448591 0.0015644) 5709
(0.00393499 0.00420791 0.00173259) 5647
(0.00362712 0.00424444 0.00171007) 14107
(0.00128346 0.00356009 0.00343789) 5342
(0.00509094 0.00357464 0.00321467) 14410
(0.00461592 0.00365446 0.0035643) 14469
(0.00522624 0.00365076 0.00344768) 14470
(0.0012563 0.00493468 0.00443872) 14822
(0.00182969 0.00492886 0.00443866) 14823
(0.00269994 0.0049337 0.00442588) 14825
(0.00382775 0.00492953 0.00433648) 14827
(0.00427572 0.00526561 0.00434638) 14888
(-0.000244024 0.00647006 0.00305639) 35999
(0.00125986 0.00649337 0.00310118) 4562
(0.00423 0.00626545 0.00267272) 13568
(0.00411195 0.00639928 0.00272726) 13568
(0.00470055 0.00642646 0.00276257) 13509
(0.0211946 0.00304169 0.00215695) 522
(0.0217825 0.00706743 0.00379482) 23863
(0.0226546 0.00717767 0.00367674) 23505
(0.0216203 0.00690183 0.00361921) 2023
(0.0231691 0.00699527 0.00356315) 2026
(0.0128299 0.00647034 0.00416324) 6685
(0.0128299 0.00647034 0.00416324) 6685
(0.0128299 0.00647034 0.00416324) 6685
(0.0138013 0.00643159 0.00413265) 6687
(0.0138013 0.00643159 0.00413265) 6687
(0.0138013 0.00643159 0.00413265) 6687
(0.0145494 0.00640857 0.00412026) 6689
(0.0151679 0.00639473 0.00411399) 6690
(0.0157023 0.00639018 0.00410768) 6691
(0.0161874 0.00638957 0.0041048) 6692
(0.016661 0.00638949 0.00410231) 6693
(0.017158 0.0063872 0.0040972) 6694
(0.0176761 0.00638066 0.00409343) 6695
(0.0181867 0.00637286 0.00409121) 6696
(0.0186593 0.00636674 0.00409108) 6697
(0.012317 0.00610149 0.00441172) 9324
(0.0132232 0.00608963 0.00438159) 9326
(0.0140387 0.00607944 0.00436274) 9328
(0.0208263 0.00320737 0.00330805) 821
(0.0233147 0.00327597 0.00332283) 5446
(0.0217189 0.00649704 0.00205863) 13423
(0.0236925 0.00660136 0.0022424) 6107
(0.0247124 0.00664214 0.00224157) 6109
(0.0218123 0.00688006 0.00428727) 1903
(0.0230469 0.00695223 0.00418037) 1906
(0.0218641 0.00662703 0.00416303) 6703
(0.0239738 0.00665451 0.00411782) 1967
(0.0208394 0.00641575 0.001254) 6821
(0.0219711 0.00638345 0.0012531) 6823
(0.0212618 0.00358444 0.00457392) 7182
(0.0228947 0.00358759 0.00458091) 7185
(0.0237669 0.0036332 0.00464098) 7187
(0.0212989 0.00341184 0.00164194) 402
(0.0231769 0.00341474 0.0016765) 466
(0.0217261 0.00608918 0.0047323) 12223
(0.0233418 0.00611452 0.00471849) 12226
(0.0215627 0.00577684 0.00500273) 12583
(0.0215627 0.00577684 0.00500273) 12583
(0.0215627 0.00577684 0.00500273) 12583
(0.0232908 0.005784 0.00498824) 12586
(0.0232908 0.005784 0.00498824) 12586
(0.0232908 0.005784 0.00498824) 12586
(0.0241392 0.0058482 0.00496845) 12588
(0.0213547 0.00439148 0.00500175) 9522
(0.0214776 0.00395984 0.0048236) 9582
(0.0230212 0.00396929 0.00485) 10546
(0.0219941 0.0038083 0.00142162) 12763
(0.0243229 0.00381921 0.00140258) 12768
(0.0221599 0.00415793 0.00126349) 11504
(0.0244157 0.0041102 0.00123242) 11508
(0.0217156 0.00450456 0.00113815) 9823
(0.0214755 0.00482522 0.000989164) 11622
(0.0231974 0.00477647 0.0009798) 11626
(0.0211282 0.00565781 0.00102921) 12162
(0.0210037 0.00601341 0.00110289) 12462
(0.0225531 0.00603538 0.00111203) 12465
(0.0215429 0.00534761 0.000925675) 10123
(0.0233234 0.0053068 0.000933173) 10126
(0.0219376 0.00501623 0.000744311) 11923
(0.0212541 0.00520516 0.00516233) 11442
(0.0227075 0.00519551 0.00515534) 11445
(0.0235685 0.00525978 0.0051588) 11447
(0.0206847 0.00394815 0.00110981) 13001
(0.0220778 0.00390966 0.00110609) 13004
(0.0216972 0.00329219 0.00279856) 13303
(0.0228517 0.0030781 0.0031592) 765
(0.0249255 0.0030732 0.00312871) 769
(0.0253141 0.0030289 0.00313793) 770
(0.0211791 0.00672583 0.00175282) 2502
(0.0211791 0.00672583 0.00175282) 2502
(0.0211791 0.00672583 0.00175282) 2502
(0.023337 0.00669781 0.00182847) 2446
(0.02446 0.00668786 0.00180679) 2448
(0.0232513 0.00629962 0.00175769) 13486
(0.024046 0.00633114 0.00172728) 13488
(0.00506725 0.00644314 0.00279081) 13510
(0.00506725 0.00644314 0.00279081) 13510
(0.00506725 0.00644314 0.00279081) 13510
(0.00542857 0.00644628 0.00285273) 13510
(0.00586791 0.00644743 0.00287398) 13511
(0.00635419 0.00644546 0.0028821) 13512
(0.00683749 0.00644507 0.00288029) 13513
(0.00488112 0.00631753 0.00250112) 13569
(0.00521442 0.00634805 0.00251985) 13570
(0.0112124 0.00621935 0.00235653) 13642
(0.011755 0.00621183 0.00236135) 13643
(0.0123062 0.00620371 0.00236576) 13644
(0.012838 0.0061981 0.00236689) 13645
(0.013318 0.00620025 0.00236636) 13646
(0.0137563 0.00620925 0.00236483) 13647
(0.0176464 0.00623751 0.00235784) 13655
(0.0182166 0.00623237 0.00236208) 13656
(0.0187646 0.00622731 0.00236665) 13657
(0.0192905 0.00622045 0.00236857) 13658
(0.0198149 0.00621176 0.00236813) 13659
(0.0203592 0.00620042 0.00236316) 13660
(0.0208848 0.00619003 0.00235309) 13661
(0.0213766 0.0061836 0.00234225) 13662
(0.00497361 0.00582268 0.00187867) 13749
(0.00544911 0.00582669 0.00186737) 13750
(0.00588778 0.00582572 0.0018592) 13751
(0.00633414 0.00582559 0.001856) 13752
(0.00489035 0.00557626 0.0017162) 13809
(0.00534366 0.00558049 0.00170783) 13810
(0.00575412 0.00558455 0.0017018) 13811
(0.00468546 0.0047343 0.00160754) 13989
(0.00595127 0.00442087 0.00167883) 14051
(0.00633483 0.00440592 0.00167949) 14052
(0.00674288 0.00439805 0.00167901) 14053
(0.00715795 0.00439155 0.00167653) 14054
(0.00533767 0.00424767 0.00174658) 14110
(0.00533767 0.00424767 0.00174658) 14110
(0.00533767 0.00424767 0.00174658) 14110
(0.00563836 0.00421894 0.00179299) 14111
(0.00601047 0.00418713 0.00181248) 14112
(0.00640335 0.00417098 0.00181507) 14112
(0.00681532 0.0041623 0.00181403) 14113
(0.007221 0.00415316 0.00181255) 14114
(0.0114105 0.00417197 0.00183974) 14122
(0.0119364 0.00417775 0.00184444) 14123
(0.0124093 0.00418075 0.00184565) 14124
(0.0128418 0.00418051 0.00184324) 14125
(0.00499646 0.00397204 0.00201014) 14169
(0.00540535 0.00398404 0.00201086) 14170
(0.00580499 0.00397616 0.0020202) 14171
(0.0106572 0.00361706 0.00289034) 14361
(0.0112101 0.0036244 0.00289193) 14362
(0.0117636 0.00363448 0.00289349) 14363
(0.0123414 0.00364675 0.00289485) 14364
(0.0128864 0.0036543 0.0028953) 14365
(0.0133787 0.00365498 0.0028943) 14366
(0.0138143 0.00364905 0.00289271) 14367
(0.0142107 0.0036391 0.0028912) 14368
(0.00550487 0.00356792 0.00316874) 14411
(0.0107508 0.00358711 0.00318984) 14421
(0.011328 0.00359615 0.00319342) 14422
(0.0119083 0.00360846 0.00319532) 14423
(0.012482 0.00361992 0.00319552) 14424
(0.0130049 0.00362488 0.00319492) 14426
(0.0134946 0.00362533 0.00319426) 14426
(0.0139534 0.00362194 0.0031948) 14427
(0.0143899 0.00361552 0.0031961) 14428
(0.0148477 0.00360955 0.00319791) 14429
(0.00541536 0.00366777 0.00334096) 14470
(0.00541536 0.00366777 0.00334096) 14470
(0.00541536 0.00366777 0.00334096) 14470
(0.00560717 0.00370631 0.00345327) 14471
(0.00584779 0.00371334 0.00351735) 14471
(0.00625284 0.00371019 0.00354031) 14472
(0.00678388 0.00369588 0.00352735) 14473
(0.00735071 0.00367242 0.00350066) 14474
(0.00520823 0.00382232 0.00374455) 14530
(0.00520823 0.00382232 0.00374455) 14530
(0.00520823 0.00382232 0.00374455) 14530
(0.00551465 0.00382319 0.00377125) 14531
(0.00589471 0.00381038 0.00376846) 14531
(0.00637559 0.00379184 0.00375846) 14532
(0.00467899 0.00391728 0.00393761) 14589
(0.00505924 0.0039949 0.00394979) 14590
(0.00556855 0.00402827 0.00395844) 14591
(0.00610715 0.00402373 0.00395897) 14592
(0.00549897 0.00501897 0.00442309) 14830
(0.00591952 0.0050148 0.0044338) 14831
(0.00631804 0.00500852 0.00444414) 14832
(0.00673975 0.00500821 0.00444879) 14833
(0.00488071 0.0052891 0.0043768) 14889
(0.00537695 0.00529174 0.00438394) 14890
(0.0058416 0.00528859 0.00439346) 14891
(0.0062531 0.00528566 0.00440499) 14892
(0.00478904 0.00623971 0.00362911) 15129
(0.00544347 0.00636313 0.00341888) 15190
(0.00586729 0.00636432 0.00341392) 15191
(0.00509584 0.0064678 0.00303841) 15250
(0.00509584 0.0064678 0.00303841) 15250
(0.00509584 0.0064678 0.00303841) 15250
(0.00555885 0.00644248 0.00312071) 15251
(0.00599928 0.00643694 0.00313598) 15251
(0.00643514 0.00643837 0.00313393) 15252
(0.00688006 0.00644028 0.00312985) 15253
(0.00731752 0.00644483 0.00312818) 15254
(0.000951313 0.00644903 0.00292876) 13501
(0.0033636 0.00634547 0.00272568) 13566
(0.00373312 0.00638068 0.00269408) 13567
(0.00427317 0.00634808 0.00262161) 13568
(0.00462857 0.00637794 0.00265242) 13569
(0.0010546 0.00442707 0.00175531) 14042
(0.00378535 0.00431539 0.00166627) 5707
(0.00477982 0.00437975 0.00158787) 5709
(0.00484707 0.00447632 0.00155763) 5709
(0.00418985 0.00421433 0.00172057) 5648
(0.00349109 0.00424066 0.00171054) 5646
(0.00504552 0.00419661 0.00174391) 5650
(0.00149742 0.00355718 0.00343849) 5342
(0.00507946 0.00356546 0.00321082) 14410
(0.00451926 0.00364867 0.00357612) 14469
(0.00519172 0.00362323 0.00345151) 14470
(0.00121869 0.00493819 0.00443975) 14822
(0.00181221 0.00492905 0.00443844) 14823
(0.00264648 0.00493344 0.00442805) 14825
(0.00378816 0.00492222 0.00434347) 14827
(0.00426158 0.00526148 0.00434492) 14888
(-0.000171068 0.00647057 0.00305386) 35999
(0.000780431 0.00648988 0.00310792) 4561
(0.00423073 0.00625506 0.00267069) 13568
(0.00410662 0.00639765 0.00272868) 13568
(0.00468812 0.00642274 0.00275605) 13509
(0.0211485 0.00304263 0.00215518) 522
(0.0224432 0.00299822 0.0022094) 33404
(0.0217601 0.00706366 0.00379932) 23863
(0.0226474 0.00716953 0.00368586) 23505
(0.0215643 0.00689808 0.00362309) 2023
(0.0231293 0.00699104 0.00356559) 2026
(0.0127916 0.00647216 0.0041651) 6685
(0.0127916 0.00647216 0.0041651) 6685
(0.0127916 0.00647216 0.0041651) 6685
(0.0137733 0.00643261 0.00413321) 6687
(0.0137733 0.00643261 0.00413321) 6687
(0.0137733 0.00643261 0.00413321) 6687
(0.0145274 0.00640919 0.00412028) 6689
(0.0151494 0.00639493 0.00411406) 6690
(0.0156862 0.00639011 0.00410765) 6691
(0.0161723 0.00638945 0.00410463) 6692
(0.0166455 0.00638938 0.00410226) 6693
(0.0171411 0.00638716 0.00409724) 6694
(0.0176589 0.00638079 0.00409331) 6695
(0.0181704 0.006373 0.00409095) 6696
(0.0186458 0.00636674 0.00409064) 6697
(0.0122898 0.0061018 0.00441276) 9324
(0.0131925 0.00608987 0.00438242) 9326
(0.0140132 0.00607962 0.00436307) 9328
(0.0206813 0.00319411 0.00330536) 821
(0.0232546 0.00327675 0.00332201) 5446
(0.0215331 0.00652309 0.00206517) 13423
(0.023648 0.00659762 0.00223906) 6107
(0.0246828 0.00664054 0.00224378) 6109
(0.0217773 0.00687779 0.00429102) 1903
(0.0230325 0.00694514 0.00418735) 1906
(0.0217763 0.00662523 0.00416728) 6643
(0.0239154 0.0066525 0.00411871) 1967
(0.0208091 0.00641691 0.00125446) 6821
(0.0219474 0.00638659 0.001256) 6823
(0.0212064 0.00358417 0.00457361) 7182
(0.022854 0.00358683 0.00457863) 7185
(0.0237635 0.00362845 0.00463533) 7187
(0.0212301 0.00341284 0.00163803) 402
(0.0231293 0.00341604 0.00167597) 466
(0.0216593 0.00608807 0.00473368) 12223
(0.0233003 0.00611195 0.00471861) 12226
(0.0214951 0.00577679 0.00500375) 12582
(0.0214951 0.00577679 0.00500375) 12582
(0.0214951 0.00577679 0.00500375) 12582
(0.0232473 0.00578179 0.00498813) 12586
(0.0232473 0.00578179 0.00498813) 12586
(0.0232473 0.00578179 0.00498813) 12586
(0.0241327 0.00584257 0.00497003) 12588
(0.0213196 0.00438908 0.00499986) 9522
(0.0214239 0.0039582 0.00482193) 9582
(0.0229813 0.0039687 0.00484754) 10545
(0.0218959 0.00380864 0.00142049) 12763
(0.024288 0.00382277 0.0014039) 12768
(0.0220672 0.0041611 0.00126369) 11504
(0.0243855 0.00411365 0.00123484) 11508
(0.0216487 0.00450951 0.00113749) 9823
(0.0214116 0.00482786 0.000989127) 11622
(0.0231488 0.00477924 0.000981384) 11626
(0.0210769 0.0056603 0.00103091) 12162
(0.0209566 0.00601276 0.00110313) 12461
(0.0225136 0.00603576 0.00111385) 12465
(0.0214695 0.00535122 0.000925527) 12102
(0.0232766 0.00530801 0.000935024) 10126
(0.0219186 0.00501989 0.000744355) 11923
(0.021205 0.00520482 0.00516266) 11442
(0.0226702 0.00519435 0.00515459) 11445
(0.0235626 0.00525306 0.00515804) 11447
(0.0206556 0.00395166 0.00110912) 13001
(0.0220394 0.00391225 0.00110629) 13004
(0.0215123 0.00328157 0.00279333) 13303
(0.0227408 0.00307841 0.00315884) 765
(0.0249005 0.00307621 0.00312947) 769
(0.0253065 0.0030307 0.0031358) 770
(0.0211204 0.00672779 0.00175145) 2502
(0.0232734 0.00669798 0.00182797) 2446
(0.0244494 0.00668889 0.00181172) 2448
(0.023222 0.00629677 0.00175685) 13486
(0.0240114 0.00633114 0.00173007) 13488
(0.00505109 0.00644332 0.00278569) 13510
(0.00505109 0.00644332 0.00278569) 13510
(0.00505109 0.00644332 0.00278569) 13510
(0.00540746 0.00644678 0.00285044) 13510
(0.00584388 0.00644775 0.00287307) 13511
(0.00633032 0.00644564 0.00288186) 13512
(0.00681435 0.00644506 0.0028805) 13513
(0.00486274 0.0063168 0.00250017) 13569
(0.00519307 0.0063474 0.0025185) 13570
(0.0111896 0.00621957 0.00235636) 13642
(0.0117321 0.00621214 0.0023612) 13643
(0.0122829 0.0062041 0.00236566) 13644
(0.0128162 0.00619829 0.0023669) 13645
(0.0132979 0.00620009 0.00236636) 13646
(0.0137374 0.00620888 0.00236489) 13647
(0.0141575 0.00622036 0.00236301) 13648
(0.0181914 0.00623266 0.00236196) 13656
(0.0187411 0.00622756 0.00236654) 13657
(0.0192678 0.00622082 0.00236864) 13658
(0.0197915 0.00621229 0.00236834) 13659
(0.0203354 0.00620102 0.00236359) 13660
(0.0208623 0.00619053 0.00235368) 13661
(0.0213552 0.00618397 0.00234287) 13662
(0.00495137 0.00582218 0.00187873) 13749
(0.00542803 0.00582654 0.00186751) 13750
(0.00586585 0.00582579 0.00185927) 13751
(0.00631137 0.00582541 0.00185584) 13752
(0.00532243 0.00558024 0.00170795) 13810
(0.0057328 0.00558417 0.00170174) 13811
(0.00466345 0.00473548 0.00160666) 13989
(0.00593078 0.00442187 0.00167837) 14051
(0.00631375 0.00440633 0.00167937) 14052
(0.00672151 0.00439834 0.00167899) 14053
(0.00713695 0.00439178 0.00167665) 14054
(0.00532678 0.00424605 0.00174285) 14110
(0.00532678 0.00424605 0.00174285) 14110
(0.00532678 0.00424605 0.00174285) 14110
(0.00562126 0.00422002 0.0017912) 14111
(0.00599042 0.00418804 0.00181189) 14111
(0.00638205 0.00417139 0.00181497) 14112
(0.00679388 0.00416262 0.00181403) 14113
(0.00720049 0.00415358 0.00181258) 14114
(0.0113858 0.00417167 0.00183952) 14122
(0.0119141 0.00417752 0.00184429) 14123
(0.0123892 0.00418063 0.00184563) 14124
(0.0128224 0.00418044 0.00184329) 14125
(0.0132508 0.00417905 0.00183953) 14126
(0.00497808 0.00397074 0.00201058) 14169
(0.00538529 0.00398361 0.00201043) 14170
(0.00578411 0.0039763 0.00201994) 14171
(0.0106332 0.00361683 0.00289032) 14361
(0.0111867 0.0036241 0.00289189) 14362
(0.0117394 0.00363401 0.00289343) 14363
(0.0123169 0.00364623 0.00289479) 14364
(0.0128638 0.003654 0.00289529) 14365
(0.0133584 0.00365499 0.00289436) 14366
(0.0137962 0.00364932 0.00289278) 14367
(0.0141936 0.0036395 0.0028913) 14368
(0.00548468 0.00356727 0.00316672) 14410
(0.0107234 0.00358665 0.00318991) 14421
(0.0113016 0.00359561 0.00319332) 14422
(0.0118823 0.00360788 0.00319535) 14423
(0.0124576 0.00361949 0.00319555) 14424
(0.0129826 0.00362468 0.00319501) 14425
(0.0134732 0.00362528 0.00319432) 14426
(0.0139334 0.00362208 0.00319486) 14427
(0.0143701 0.00361573 0.00319604) 14428
(0.0148265 0.00360977 0.003198) 14429
(0.00540535 0.00366232 0.00333694) 14470
(0.00540535 0.00366232 0.00333694) 14470
(0.00540535 0.00366232 0.00333694) 14470
(0.00560021 0.00370418 0.00344885) 14471
(0.00583374 0.00371215 0.00351496) 14471
(0.00623115 0.0037101 0.00353947) 14472
(0.0067577 0.00369642 0.00352822) 14473
(0.00732506 0.00367348 0.00350179) 14474
(0.00519819 0.00382074 0.00374277) 14530
(0.00519819 0.00382074 0.00374277) 14530
(0.00519819 0.00382074 0.00374277) 14530
(0.00549974 0.00382266 0.00377054) 14530
(0.00587734 0.00381042 0.00376838) 14531
(0.00635177 0.00379242 0.00375905) 14532
(0.00466265 0.00391452 0.00393812) 14589
(0.0050378 0.00399167 0.00394892) 14590
(0.00554288 0.00402668 0.00395811) 14591
(0.00608253 0.00402379 0.00395827) 14592
(0.00547795 0.00501881 0.00442295) 14830
(0.00589775 0.00501504 0.00443361) 14831
(0.00629448 0.00500857 0.00444419) 14832
(0.00671626 0.00500813 0.00444889) 14833
(0.0048598 0.00528874 0.00437672) 14889
(0.00535395 0.00529183 0.00438382) 14890
(0.00581795 0.00528882 0.0043933) 14891
(0.00622956 0.00528587 0.00440495) 14892
(0.00476553 0.00624109 0.00362718) 15129
(0.00541937 0.00636382 0.0034187) 15190
(0.005847 0.0063642 0.0034142) 15191
(0.00507582 0.00646944 0.00303136) 15250
(0.00507582 0.00646944 0.00303136) 15250
(0.00507582 0.00646944 0.00303136) 15250
(0.00553587 0.00644342 0.00311891) 15251
(0.00597664 0.0064372 0.00313574) 15251
(0.00641222 0.00643842 0.0031343) 15252
(0.00685785 0.00644021 0.0031301) 15253
(0.0072957 0.00644464 0.0031283) 15254
(0.000489123 0.00645107 0.00293477) 13500
(0.00335679 0.00633729 0.0027277) 13566
(0.00373781 0.00637775 0.00268963) 13567
(0.00425905 0.00634876 0.00262222) 13568
(0.00461499 0.00637585 0.00264866) 13569
(0.000922816 0.00444217 0.0017485) 14041
(0.00401126 0.00431292 0.00166258) 5708
(0.0047062 0.00437538 0.00159596) 5709
(0.00484222 0.00446649 0.00155309) 5709
(0.00438821 0.00421957 0.00170964) 5648
(0.00333715 0.00423591 0.00171034) 5646
(0.00503644 0.00419844 0.00173597) 5650
(0.00168585 0.00355537 0.00343894) 5343
(0.00506797 0.0035546 0.00320732) 14410
(0.00289088 0.00363559 0.00359995) 14465
(0.00435917 0.00364233 0.00358775) 14468
(0.00513869 0.00362841 0.00346756) 14470
(0.00118204 0.00494242 0.00444078) 14822
(0.00179624 0.00492923 0.00443816) 14823
(0.00260309 0.0049331 0.00442956) 14825
(0.00374098 0.00491727 0.00435047) 14827
(0.00424738 0.00525747 0.00434284) 14888
(-0.000109978 0.00647047 0.00305197) 35999
(0.00423752 0.00622579 0.002659) 13568
(0.00412088 0.00639287 0.00272901) 13568
(0.00467569 0.00641862 0.00275031) 13509
(0.0211024 0.00304345 0.00215351) 522
(0.022417 0.00300209 0.00220565) 524
(0.0217372 0.00706005 0.00380368) 23863
(0.0226391 0.00716167 0.00369459) 23505
(0.0215087 0.0068943 0.00362713) 2023
(0.0230879 0.00698683 0.00356797) 2026
(0.0127532 0.006474 0.00416703) 6685
(0.0127532 0.006474 0.00416703) 6685
(0.0127532 0.006474 0.00416703) 6685
(0.013745 0.00643366 0.00413381) 6687
(0.013745 0.00643366 0.00413381) 6687
(0.013745 0.00643366 0.00413381) 6687
(0.0145052 0.00640982 0.00412032) 6689
(0.0151307 0.00639515 0.00411414) 6690
(0.01567 0.00639004 0.00410765) 6691
(0.0161572 0.00638935 0.00410446) 6692
(0.0166301 0.00638929 0.00410219) 6693
(0.0171243 0.00638713 0.00409727) 6694
(0.0176417 0.00638092 0.00409321) 6695
(0.0181541 0.00637314 0.00409069) 6696
(0.0186322 0.00636676 0.00409021) 6697
(0.0122629 0.00610213 0.00441379) 9324
(0.0131618 0.00609012 0.00438327) 9326
(0.0139875 0.00607981 0.00436344) 9327
(0.0231949 0.00327744 0.00332127) 5446
(0.0213305 0.00655726 0.00207604) 13422
(0.0236031 0.00659369 0.00223538) 6107
(0.0246515 0.00663895 0.00224588) 6109
(0.0217426 0.00687566 0.00429461) 1903
(0.0230156 0.00693841 0.00419408) 1906
(0.0216905 0.00662344 0.00417176) 6643
(0.0238542 0.00665067 0.00411959) 1967
(0.0207787 0.00641802 0.00125493) 6821
(0.0219228 0.00638956 0.00125873) 6823
(0.0211513 0.00358396 0.00457339) 7182
(0.0228117 0.00358615 0.00457648) 7185
(0.0237587 0.00362407 0.00462989) 7187
(0.0211643 0.00341419 0.00163386) 9222
(0.0230799 0.00341724 0.00167548) 466
(0.021593 0.006087 0.00473518) 12223
(0.023257 0.00610951 0.00471869) 12226
(0.0214281 0.0057768 0.00500482) 12582
(0.0214281 0.0057768 0.00500482) 12582
(0.0214281 0.0057768 0.00500482) 12582
(0.0232022 0.00577971 0.004988) 12586
(0.0232022 0.00577971 0.004988) 12586
(0.0232022 0.00577971 0.004988) 12586
(0.0241247 0.00583721 0.00497141) 12588
(0.0212845 0.00438664 0.004998) 9522
(0.0213708 0.00395654 0.00482032) 9582
(0.0229399 0.00396814 0.00484516) 10545
(0.0217973 0.00380898 0.00141905) 12763
(0.0242491 0.00382622 0.00140541) 12768
(0.021975 0.00416422 0.00126377) 11503
(0.0243515 0.00411712 0.00123736) 11508
(0.0215826 0.00451463 0.00113668) 9823
(0.0234474 0.00442309 0.00112911) 11566
(0.0213498 0.00483084 0.000989034) 11622
(0.0230986 0.00478195 0.000982933) 11626
(0.0210271 0.00566287 0.0010327) 12162
(0.0209116 0.00601217 0.00110344) 12461
(0.0224729 0.00603601 0.00111557) 12464
(0.0214002 0.00535519 0.00092553) 12102
(0.0232277 0.00530917 0.000936758) 10126
(0.0218992 0.00502337 0.000744344) 11923
(0.0211557 0.00520448 0.00516303) 11442
(0.0226319 0.00519334 0.00515387) 11445
(0.023555 0.00524675 0.00515723) 11447
(0.0206271 0.00395528 0.00110843) 13001
(0.0220007 0.00391475 0.0011065) 13004
(0.0213409 0.00327088 0.00278846) 13302
(0.0237315 0.00330916 0.00286697) 13307
(0.0226343 0.0030789 0.00315823) 765
(0.0248741 0.0030791 0.00313032) 769
(0.0252981 0.00303269 0.00313382) 770
(0.0210636 0.00672961 0.0017502) 2502
(0.0232083 0.0066982 0.00182737) 2446
(0.0244372 0.00668973 0.00181646) 2448
(0.0231897 0.00629377 0.0017556) 13486
(0.0239777 0.00633107 0.00173296) 13487
(0.00503505 0.00644345 0.00278044) 13510
(0.00503505 0.00644345 0.00278044) 13510
(0.00503505 0.00644345 0.00278044) 13510
(0.00538645 0.0064473 0.00284803) 13510
(0.00581986 0.00644808 0.00287211) 13511
(0.00630637 0.00644583 0.00288158) 13512
(0.0067912 0.00644506 0.00288072) 13513
(0.00484427 0.00631605 0.00249917) 13569
(0.00517194 0.00634673 0.00251716) 13570
(0.0111669 0.00621977 0.00235617) 13642
(0.0117092 0.00621247 0.00236107) 13643
(0.0122596 0.00620449 0.00236556) 13644
(0.0127943 0.00619849 0.00236691) 13645
(0.0132778 0.00619995 0.00236636) 13646
(0.0137185 0.00620851 0.00236494) 13647
(0.0141391 0.00621994 0.00236309) 13648
(0.018166 0.00623294 0.00236183) 13656
(0.0187176 0.00622782 0.00236642) 13657
(0.0192452 0.00622118 0.00236871) 13658
(0.0197681 0.0062128 0.00236854) 13659
(0.0203116 0.00620163 0.00236401) 13660
(0.0208397 0.00619105 0.00235428) 13661
(0.0213339 0.00618435 0.0023435) 13662
(0.021801 0.00618027 0.00233172) 13663
(0.00492904 0.00582167 0.00187878) 13749
(0.00540697 0.00582641 0.00186767) 13750
(0.00584396 0.00582581 0.00185931) 13751
(0.00628868 0.00582526 0.00185572) 13752
(0.00530119 0.00557999 0.00170809) 13810
(0.00571154 0.00558382 0.00170171) 13811
(0.00464186 0.0047366 0.0016058) 13989
(0.00591034 0.0044229 0.00167787) 14051
(0.00629277 0.00440676 0.00167925) 14052
(0.00670017 0.00439862 0.00167897) 14053
(0.00711596 0.00439201 0.00167678) 14054
(0.0123162 0.00440598 0.00171777) 14064
(0.00531605 0.00424429 0.00173921) 14110
(0.00531605 0.00424429 0.00173921) 14110
(0.00531605 0.00424429 0.00173921) 14110
(0.00560443 0.00422102 0.00178937) 14111
(0.00597052 0.00418896 0.00181126) 14111
(0.00636086 0.00417182 0.00181487) 14112
(0.00677244 0.00416294 0.00181403) 14113
(0.00717997 0.00415399 0.00181261) 14114
(0.011361 0.00417139 0.0018393) 14122
(0.0118918 0.00417729 0.00184413) 14123
(0.012369 0.00418051 0.00184559) 14124
(0.0128029 0.00418038 0.00184334) 14125
(0.0132309 0.00417902 0.00183961) 14126
(0.00495977 0.00396948 0.00201103) 14169
(0.00536534 0.0039831 0.00201004) 14170
(0.0057633 0.00397643 0.00201969) 14171
(0.0106091 0.00361659 0.0028903) 14361
(0.0111633 0.0036238 0.00289186) 14362
(0.0117153 0.00363355 0.00289338) 14363
(0.0122922 0.00364571 0.0028947) 14364
(0.0128412 0.0036537 0.0028953) 14365
(0.013338 0.00365499 0.00289442) 14366
(0.013778 0.00364958 0.00289285) 14367
(0.0141765 0.00363989 0.0028914) 14368
(0.00546454 0.00356661 0.00316463) 14410
(0.0106958 0.00358619 0.00318998) 14421
(0.0112752 0.00359508 0.00319322) 14422
(0.0118563 0.0036073 0.00319539) 14423
(0.0124331 0.00361904 0.00319556) 14424
(0.0129602 0.00362448 0.00319512) 14425
(0.0134517 0.00362522 0.00319439) 14426
(0.0139133 0.00362221 0.00319491) 14427
(0.0143503 0.00361594 0.003196) 14428
(0.0148053 0.00360998 0.00319808) 14429
(0.00539575 0.00365631 0.00333306) 14470
(0.00539575 0.00365631 0.00333306) 14470
(0.00539575 0.00365631 0.00333306) 14470
(0.0055934 0.00370198 0.0034444) 14471
(0.0058196 0.00371107 0.00351248) 14471
(0.00620984 0.00370997 0.00353859) 14472
(0.00673163 0.00369693 0.00352904) 14473
(0.00729931 0.00367452 0.00350292) 14474
(0.0051883 0.00381912 0.003741) 14530
(0.0051883 0.00381912 0.003741) 14530
(0.0051883 0.00381912 0.003741) 14530
(0.00548486 0.00382213 0.00376974) 14530
(0.00586025 0.00381043 0.00376837) 14531
(0.00632827 0.00379295 0.00375959) 14532
(0.0046465 0.00391187 0.00393866) 14589
(0.00501659 0.00398837 0.00394812) 14590
(0.00551712 0.00402503 0.00395779) 14591
(0.00605787 0.00402376 0.00395755) 14592
(0.00545697 0.00501868 0.0044228) 14830
(0.00587599 0.00501519 0.00443342) 14831
(0.00627097 0.00500867 0.00444423) 14832
(0.00669267 0.00500806 0.00444899) 14833
(0.00483913 0.00528832 0.00437665) 14889
(0.00533101 0.00529185 0.00438372) 14890
(0.00579423 0.00528918 0.00439311) 14891
(0.00620604 0.00528599 0.00440493) 14892
(0.00474188 0.00624253 0.0036252) 15129
(0.00539509 0.00636456 0.00341848) 15190
(0.00582658 0.0063641 0.00341445) 15191
(0.0050562 0.00647103 0.00302395) 15250
(0.0050562 0.00647103 0.00302395) 15250
(0.0050562 0.00647103 0.00302395) 15250
(0.00551286 0.0064444 0.00311696) 15251
(0.00595399 0.00643748 0.00313545) 15251
(0.00638928 0.00643848 0.00313465) 15252
(0.00683561 0.00644016 0.00313034) 15253
(0.00727386 0.00644446 0.00312844) 15254
(0.000260563 0.00645336 0.00293814) 13500
(0.00335274 0.00632776 0.00273013) 13566
(0.00374288 0.00637435 0.00268482) 13567
(0.00424343 0.00634954 0.00262309) 13568
(0.00460121 0.00637365 0.00264517) 13569
(0.000780248 0.00445051 0.00173808) 14041
(0.0042316 0.00430816 0.00165571) 5708
(0.0026127 0.00431457 0.00164826) 5705
(0.00459959 0.00437226 0.00160696) 5709
(0.00482657 0.00442281 0.00154418) 5709
(0.00450996 0.00422277 0.00170351) 5649
(0.00260642 0.00416759 0.00173343) 5645
(0.00319911 0.0042314 0.00170945) 5646
(0.00501958 0.0042014 0.0017264) 5650
(0.0018662 0.00355469 0.00343925) 5343
(0.00505178 0.00354446 0.00320367) 14410
(0.00370505 0.00365441 0.00361506) 14527
(0.00411366 0.00364107 0.00359482) 14468
(0.00508024 0.00363345 0.00348247) 14470
(0.00115743 0.00494753 0.00444139) 14822
(0.00177973 0.00492941 0.00443798) 14823
(0.0025541 0.00493338 0.00443127) 14825
(0.00369093 0.00491454 0.004357) 14827
(0.00423255 0.00525346 0.00434031) 14888
(-8.60561e-05 0.00646985 0.00305122) 35999
(0.00423159 0.00621506 0.00266054) 13568
(0.00413631 0.00638704 0.0027297) 13568
(0.00466244 0.00641445 0.00274501) 13509
(0.0210563 0.00304415 0.00215193) 522
(0.0223896 0.00300585 0.00220204) 524
(0.0217137 0.00705659 0.00380793) 23863
(0.0226298 0.00715408 0.00370295) 23505
(0.021454 0.00689035 0.00363137) 2022
(0.0230447 0.00698263 0.00357031) 2026
(0.0127145 0.00647586 0.00416902) 6685
(0.0127145 0.00647586 0.00416902) 6685
(0.0127145 0.00647586 0.00416902) 6685
(0.0137164 0.00643475 0.00413443) 6687
(0.0137164 0.00643475 0.00413443) 6687
(0.0137164 0.00643475 0.00413443) 6687
(0.0144828 0.00641046 0.0041204) 6688
(0.0151119 0.00639538 0.00411422) 6690
(0.0156537 0.00638998 0.00410766) 6691
(0.0161421 0.00638924 0.0041043) 6692
(0.0166147 0.00638919 0.0041021) 6693
(0.0171076 0.00638709 0.0040973) 6694
(0.0176244 0.00638105 0.00409313) 6695
(0.0181377 0.00637328 0.00409045) 6696
(0.0186183 0.00636679 0.00408979) 6697
(0.0122366 0.00610246 0.00441482) 9324
(0.013131 0.00609038 0.00438414) 9326
(0.0139617 0.00607999 0.00436382) 9327
(0.0146581 0.00607149 0.00435242) 9329
(0.0231352 0.003278 0.00332061) 5446
(0.0211094 0.00660047 0.00209118) 13422
(0.0235575 0.00658956 0.00223137) 6107
(0.0246184 0.00663739 0.00224785) 6109
(0.0217084 0.00687366 0.00429806) 1903
(0.0229965 0.006932 0.0042006) 1905
(0.0216063 0.00662173 0.00417643) 6643
(0.0237901 0.00664901 0.00412049) 1967
(0.0207484 0.00641911 0.00125543) 6821
(0.0218974 0.00639239 0.0012613) 6823
(0.0210963 0.00358373 0.00457327) 7182
(0.022768 0.00358555 0.00457446) 7185
(0.0237521 0.00362005 0.00462471) 7187
(0.021101 0.00341582 0.00162944) 9222
(0.0230289 0.00341836 0.00167501) 466
(0.021528 0.00608596 0.0047368) 12223
(0.023212 0.00610719 0.00471874) 12226
(0.0213622 0.00577684 0.00500591) 12582
(0.0213622 0.00577684 0.00500591) 12582
(0.0213622 0.00577684 0.00500591) 12582
(0.0231553 0.00577775 0.00498787) 12586
(0.0231553 0.00577775 0.00498787) 12586
(0.0231553 0.00577775 0.00498787) 12586
(0.0241153 0.00583208 0.00497261) 12588
(0.0212493 0.00438418 0.00499616) 9522
(0.0213184 0.00395491 0.00481874) 9582
(0.0228971 0.0039676 0.00484285) 10545
(0.0216985 0.00380931 0.00141733) 12763
(0.0242056 0.00382948 0.00140711) 12768
(0.0218836 0.00416732 0.00126371) 11503
(0.0243132 0.00412062 0.00123994) 11508
(0.0215178 0.00451999 0.0011357) 9823
(0.0233888 0.00442602 0.00113068) 11566
(0.02129 0.00483416 0.000988918) 11622
(0.0230468 0.00478461 0.000984444) 11626
(0.0209788 0.00566553 0.00103457) 12161
(0.0208687 0.00601165 0.00110381) 12461
(0.0224311 0.00603615 0.00111718) 12464
(0.021339 0.00535969 0.000925903) 12102
(0.023177 0.0053103 0.000938383) 10126
(0.0218795 0.00502668 0.000744268) 11923
(0.0211066 0.00520409 0.00516344) 11442
(0.0225926 0.00519244 0.00515318) 11445
(0.0235457 0.00524083 0.00515638) 11447
(0.0219615 0.00391718 0.0011067) 13003
(0.021184 0.00326037 0.00278394) 13302
(0.0236932 0.00331068 0.0028655) 13307
(0.0225322 0.00307964 0.00315736) 765
(0.0248458 0.00308185 0.0031313) 769
(0.0252889 0.00303485 0.00313198) 770
(0.021008 0.00673124 0.00174901) 2502
(0.0231421 0.00669846 0.0018267) 2446
(0.0244234 0.00669038 0.00182101) 2448
(0.0231548 0.00629062 0.00175393) 13486
(0.0239437 0.00633094 0.00173584) 13487
(0.00501916 0.00644353 0.00277506) 13510
(0.00501916 0.00644353 0.00277506) 13510
(0.00501916 0.00644353 0.00277506) 13510
(0.00536555 0.00644784 0.0028455) 13510
(0.00579587 0.00644843 0.0028711) 13511
(0.00628235 0.00644603 0.00288127) 13512
(0.00676802 0.00644507 0.00288093) 13513
(0.00482571 0.00631529 0.00249812) 13569
(0.00515103 0.00634606 0.00251586) 13570
(0.0111441 0.00621997 0.00235598) 13642
(0.0116864 0.00621279 0.00236094) 13643
(0.0122363 0.00620488 0.00236546) 13644
(0.0127724 0.00619871 0.00236692) 13645
(0.0132577 0.00619982 0.00236635) 13646
(0.0136996 0.00620816 0.00236499) 13647
(0.0141207 0.00621952 0.00236317) 13648
(0.0181406 0.00623322 0.0023617) 13656
(0.018694 0.00622806 0.00236629) 13657
(0.0192225 0.00622155 0.00236878) 13658
(0.0197448 0.00621331 0.00236874) 13659
(0.0202878 0.00620223 0.00236442) 13660
(0.0208171 0.00619157 0.00235486) 13661
(0.0213125 0.00618473 0.00234412) 13662
(0.0217804 0.00618055 0.00233236) 13663
(0.00490663 0.00582113 0.00187883) 13749
(0.0053859 0.00582627 0.00186784) 13750
(0.00582214 0.00582582 0.00185935) 13751
(0.00626605 0.00582513 0.0018556) 13752
(0.00527993 0.00557974 0.00170823) 13810
(0.00569031 0.00558347 0.00170169) 13811
(0.00462063 0.00473769 0.00160495) 13989
(0.00588994 0.00442395 0.00167734) 14051
(0.00627189 0.0044072 0.00167912) 14052
(0.00667887 0.00439892 0.00167896) 14053
(0.00709498 0.00439224 0.0016769) 14054
(0.0122959 0.00440591 0.00171765) 14064
(0.0055879 0.00422194 0.00178749) 14111
(0.00595074 0.00418989 0.0018106) 14111
(0.00633978 0.00417226 0.00181476) 14112
(0.006751 0.00416327 0.00181403) 14113
(0.00715944 0.00415441 0.00181264) 14114
(0.0113361 0.0041711 0.00183907) 14122
(0.0118694 0.00417705 0.00184397) 14123
(0.0123487 0.00418038 0.00184555) 14124
(0.0127836 0.00418031 0.0018434) 14125
(0.0132111 0.004179 0.00183969) 14126
(0.00494151 0.00396824 0.00201148) 14169
(0.00534548 0.00398252 0.00200969) 14170
(0.00574257 0.00397654 0.00201942) 14171
(0.010585 0.00361636 0.00289027) 14361
(0.0111399 0.00362351 0.00289182) 14362
(0.0116913 0.00363311 0.00289332) 14363
(0.0122676 0.00364519 0.00289462) 14364
(0.0128184 0.00365339 0.0028953) 14365
(0.0133174 0.00365498 0.00289447) 14366
(0.0137597 0.00364983 0.00289293) 14367
(0.0141594 0.00364028 0.0028915) 14368
(0.00544448 0.00356596 0.00316247) 14410
(0.0106681 0.00358573 0.00319004) 14421
(0.0112487 0.00359455 0.00319312) 14422
(0.0118303 0.00360672 0.00319543) 14423
(0.0124086 0.00361859 0.00319558) 14424
(0.0129377 0.00362428 0.00319523) 14425
(0.0134302 0.00362515 0.00319446) 14426
(0.0138932 0.00362233 0.00319496) 14427
(0.0143305 0.00361615 0.00319597) 14428
(0.0147842 0.00361019 0.00319815) 14429
(0.00538634 0.0036504 0.00332942) 14470
(0.00538634 0.0036504 0.00332942) 14470
(0.00538634 0.0036504 0.00332942) 14470
(0.00558672 0.00369972 0.00343993) 14471
(0.00580629 0.00370978 0.00350997) 14471
(0.00618868 0.00370978 0.00353758) 14472
(0.00670572 0.00369739 0.00352979) 14473
(0.00727348 0.00367554 0.00350406) 14474
(0.00517868 0.00381745 0.00373924) 14530
(0.00517868 0.00381745 0.00373924) 14530
(0.00517868 0.00381745 0.00373924) 14530
(0.00547006 0.00382157 0.00376886) 14530
(0.00584343 0.00381041 0.00376839) 14531
(0.00630507 0.00379345 0.00376008) 14532
(0.0046305 0.00390935 0.00393921) 14589
(0.00499567 0.00398497 0.0039474) 14589
(0.00549128 0.00402333 0.00395748) 14590
(0.00603315 0.00402365 0.00395682) 14592
(0.00543599 0.00501855 0.00442266) 14830
(0.00585427 0.00501531 0.00443323) 14831
(0.00624749 0.00500878 0.00444426) 14832
(0.00666897 0.00500799 0.00444909) 14833
(0.00481868 0.00528783 0.00437658) 14889
(0.00530813 0.00529187 0.00438363) 14890
(0.00577055 0.00528954 0.00439292) 14891
(0.00618247 0.00528614 0.00440489) 14892
(0.00471812 0.00624403 0.00362317) 15129
(0.00537061 0.00636537 0.00341821) 15190
(0.005806 0.00636403 0.00341468) 15191
(0.00503692 0.00647254 0.00301621) 15250
(0.00503692 0.00647254 0.00301621) 15250
(0.00503692 0.00647254 0.00301621) 15250
(0.00548982 0.00644544 0.00311486) 15250
(0.00593132 0.00643778 0.0031351) 15251
(0.00636634 0.00643855 0.00313499) 15252
(0.00681334 0.00644012 0.00313059) 15253
(0.007252 0.00644428 0.00312859) 15254
(0.000195328 0.00645388 0.0029425) 13500
(0.00375778 0.00637003 0.00267758) 13567
(0.00422531 0.00635092 0.00262441) 13568
(0.00458738 0.00637138 0.00264193) 13569
(0.000616526 0.00445376 0.00172383) 14041
(0.00439763 0.00430247 0.00164901) 5708
(0.00286005 0.00431886 0.00165398) 5705
(0.00447153 0.0043697 0.00161863) 5708
(0.00482427 0.00441845 0.00154572) 5709
(0.0046083 0.00422549 0.00169972) 5649
(0.00314305 0.0041901 0.00173968) 5646
(0.00306422 0.00422644 0.00170831) 5646
(0.00499564 0.004206 0.00171791) 5649
(0.00200176 0.00355532 0.0034397) 5344
(0.00502931 0.00353543 0.00319975) 14410
(0.00425775 0.00364898 0.00362054) 14528
(0.00372272 0.0036452 0.00359527) 14467
(0.00503407 0.00363629 0.00349391) 14470
(0.0011405 0.00495239 0.00444167) 14822
(0.00176423 0.00492961 0.00443774) 14823
(0.00251433 0.00493329 0.00443248) 14825
(0.00363334 0.00491289 0.00436485) 14827
(0.00421702 0.0052495 0.00433738) 14888
(-9.62936e-05 0.00646886 0.0030513) 35999
(0.00421625 0.00618751 0.00266334) 13568
(0.00414772 0.00637941 0.00273099) 13568
(0.00464856 0.00641081 0.00273948) 13509
(0.0210104 0.00304472 0.00215039) 522
(0.0223611 0.0030095 0.00219854) 524
(0.0216899 0.00705328 0.00381205) 23863
(0.0226195 0.00714674 0.00371098) 23505
(0.0214004 0.00688627 0.00363583) 2022
(0.0230001 0.00697844 0.00357261) 2026
(0.0126762 0.0064777 0.00417105) 6685
(0.0126762 0.0064777 0.00417105) 6685
(0.0126762 0.0064777 0.00417105) 6685
(0.0136874 0.00643586 0.00413509) 6687
(0.0136874 0.00643586 0.00413509) 6687
(0.0136874 0.00643586 0.00413509) 6687
(0.0144602 0.00641111 0.0041205) 6688
(0.015093 0.00639564 0.00411429) 6690
(0.0156373 0.00638993 0.00410768) 6691
(0.016127 0.00638914 0.00410415) 6692
(0.0165995 0.00638909 0.00410201) 6693
(0.0170909 0.00638705 0.00409734) 6694
(0.017607 0.00638117 0.00409306) 6695
(0.0181212 0.00637342 0.00409021) 6696
(0.0186043 0.00636683 0.00408936) 6697
(0.0122108 0.00610279 0.00441583) 9324
(0.0131001 0.00609065 0.00438504) 9326
(0.0139357 0.00608018 0.00436421) 9327
(0.0146368 0.00607164 0.00435245) 9329
(0.0230753 0.00327842 0.00331999) 5446
(0.0235109 0.00658521 0.00222697) 6107
(0.0245834 0.00663585 0.00224967) 6109
(0.0216746 0.00687182 0.00430136) 1903
(0.0229749 0.00692593 0.0042069) 1905
(0.0215252 0.00662005 0.00418131) 6643
(0.0237234 0.00664749 0.00412138) 1967
(0.0207179 0.00642016 0.00125591) 6821
(0.0218714 0.00639506 0.0012637) 6823
(0.0210406 0.00358339 0.00457323) 7182
(0.022723 0.00358503 0.00457257) 7185
(0.023744 0.00361635 0.00461972) 7187
(0.0210404 0.00341765 0.00162476) 9222
(0.0229761 0.00341939 0.00167456) 465
(0.0240698 0.00339295 0.00170561) 468
(0.0214649 0.0060849 0.00473852) 12222
(0.0231652 0.00610499 0.00471877) 12226
(0.0212977 0.0057769 0.00500702) 12582
(0.0212977 0.0057769 0.00500702) 12582
(0.0212977 0.0057769 0.00500702) 12582
(0.0231068 0.0057759 0.00498773) 12586
(0.0231068 0.0057759 0.00498773) 12586
(0.0231068 0.0057759 0.00498773) 12586
(0.0241043 0.0058272 0.00497365) 12588
(0.0212137 0.00438171 0.00499433) 9522
(0.0212664 0.00395331 0.0048172) 9582
(0.022853 0.00396709 0.00484061) 10545
(0.0215998 0.00380956 0.00141543) 12763
(0.024157 0.0038325 0.00140894) 12768
(0.0217929 0.00417048 0.00126354) 11503
(0.0242697 0.00412414 0.00124254) 11508
(0.0214547 0.00452566 0.00113458) 9822
(0.0233288 0.00442895 0.0011322) 11566
(0.0212321 0.00483778 0.000988756) 11622
(0.0229936 0.00478724 0.000985916) 11625
(0.0209316 0.00566824 0.00103654) 12161
(0.0208276 0.00601117 0.00110424) 12461
(0.0223881 0.00603618 0.00111869) 12464
(0.02128 0.00536431 0.000926397) 12102
(0.0231247 0.00531142 0.000939904) 10126
(0.0218594 0.0050298 0.000744123) 11923
(0.0210581 0.00520364 0.00516387) 11442
(0.0225524 0.00519167 0.00515252) 11445
(0.0235348 0.00523528 0.00515551) 11447
(0.0219221 0.00391955 0.0011069) 13003
(0.0210453 0.00325042 0.00277976) 13302
(0.0236537 0.00331209 0.00286388) 13307
(0.0224332 0.00308067 0.00315622) 764
(0.0248155 0.00308445 0.00313238) 769
(0.0252791 0.00303716 0.00313028) 770
(0.020953 0.00673272 0.00174787) 2501
(0.0230751 0.00669877 0.00182596) 2446
(0.0244078 0.00669089 0.00182536) 2448
(0.023115 0.00628732 0.00175177) 13486
(0.0239105 0.00633072 0.00173877) 13487
(0.00500341 0.00644354 0.00276955) 13510
(0.00500341 0.00644354 0.00276955) 13510
(0.00500341 0.00644354 0.00276955) 13510
(0.00534477 0.00644839 0.00284285) 13510
(0.00577192 0.00644879 0.00287003) 13511
(0.00625827 0.00644625 0.00288093) 13512
(0.00674483 0.00644509 0.00288112) 13513
(0.00480702 0.00631448 0.00249698) 13569
(0.00513031 0.00634538 0.00251458) 13570
(0.0111213 0.00622016 0.00235579) 13642
(0.0116635 0.00621311 0.00236081) 13643
(0.012213 0.00620527 0.00236536) 13644
(0.0127504 0.00619894 0.00236693) 13645
(0.0132375 0.00619971 0.00236635) 13646
(0.0136806 0.00620781 0.00236504) 13647
(0.0141023 0.0062191 0.00236325) 13648
(0.0181152 0.00623349 0.00236157) 13656
(0.0186703 0.00622831 0.00236616) 13657
(0.0191998 0.0062219 0.00236884) 13658
(0.0197215 0.00621382 0.00236893) 13659
(0.020264 0.00620284 0.00236483) 13660
(0.0207945 0.00619209 0.00235544) 13661
(0.021291 0.00618512 0.00234473) 13662
(0.0217598 0.00618084 0.00233301) 13663
(0.00536483 0.00582612 0.00186802) 13750
(0.0058004 0.00582583 0.00185941) 13751
(0.00624348 0.00582499 0.00185549) 13752
(0.00525866 0.00557949 0.00170839) 13810
(0.00566913 0.00558313 0.00170168) 13811
(0.00459981 0.00473872 0.00160412) 13989
(0.0058696 0.00442502 0.00167678) 14051
(0.00625112 0.00440767 0.00167898) 14052
(0.0066576 0.00439921 0.00167894) 14053
(0.00707401 0.00439248 0.00167702) 14054
(0.0122755 0.00440583 0.00171753) 14064
(0.0055716 0.00422277 0.00178556) 14111
(0.0059311 0.00419083 0.0018099) 14111
(0.00631883 0.00417271 0.00181465) 14112
(0.00672957 0.0041636 0.00181402) 14113
(0.00713891 0.00415482 0.00181268) 14114
(0.0113111 0.00417083 0.00183883) 14122
(0.0118468 0.00417682 0.00184381) 14123
(0.0123283 0.00418025 0.00184551) 14124
(0.0127642 0.00418024 0.00184345) 14125
(0.0131912 0.00417897 0.00183976) 14126
(0.00492324 0.00396702 0.00201194) 14169
(0.0053257 0.00398187 0.0020094) 14170
(0.00572192 0.00397663 0.00201913) 14171
(0.0111165 0.00362323 0.00289179) 14362
(0.0116673 0.00363268 0.00289327) 14363
(0.0122428 0.00364467 0.00289453) 14364
(0.0127956 0.00365306 0.0028953) 14365
(0.0132968 0.00365495 0.00289453) 14366
(0.0137413 0.00365008 0.002893) 14367
(0.0141423 0.00364066 0.00289159) 14368
(0.00542452 0.00356531 0.00316022) 14410
(0.0106404 0.00358527 0.0031901) 14421
(0.0112221 0.00359402 0.00319304) 14422
(0.0118042 0.00360614 0.00319547) 14423
(0.0123839 0.00361813 0.00319559) 14424
(0.0129152 0.00362407 0.00319533) 14425
(0.0134086 0.00362508 0.00319453) 14426
(0.013873 0.00362245 0.00319501) 14427
(0.0143107 0.00361636 0.00319594) 14428
(0.0147631 0.00361039 0.00319821) 14429
(0.00537719 0.00364454 0.00332606) 14410
(0.00537719 0.00364454 0.00332606) 14410
(0.00537719 0.00364454 0.00332606) 14410
(0.00558014 0.0036974 0.00343545) 14471
(0.00579325 0.00370844 0.00350739) 14471
(0.0061678 0.00370955 0.00353649) 14472
(0.00667996 0.00369782 0.00353047) 14473
(0.00724756 0.00367654 0.00350519) 14474
(0.00516929 0.00381575 0.00373749) 14530
(0.00516929 0.00381575 0.00373749) 14530
(0.00516929 0.00381575 0.00373749) 14530
(0.00545536 0.00382098 0.00376795) 14530
(0.00582673 0.00381038 0.00376838) 14531
(0.00628221 0.0037939 0.00376051) 14532
(0.00461466 0.00390698 0.00393975) 14589
(0.00497509 0.00398147 0.00394677) 14589
(0.00546542 0.00402157 0.00395717) 14590
(0.00600837 0.00402346 0.00395609) 14592
(0.00541499 0.00501841 0.00442253) 14830
(0.00583259 0.00501543 0.00443304) 14831
(0.00622406 0.0050089 0.00444428) 14832
(0.00664516 0.00500793 0.00444921) 14833
(0.00479841 0.00528729 0.00437652) 14889
(0.00528529 0.00529188 0.00438354) 14890
(0.00574689 0.0052899 0.00439273) 14891
(0.00615889 0.00528628 0.00440486) 14892
(0.00469423 0.00624558 0.00362109) 15129
(0.00578528 0.00636399 0.00341488) 15191
(0.00501799 0.00647395 0.00300813) 15250
(0.00501799 0.00647395 0.00300813) 15250
(0.00501799 0.00647395 0.00300813) 15250
(0.00546673 0.00644652 0.00311261) 15250
(0.00590864 0.00643811 0.0031347) 15251
(0.00634339 0.00643862 0.0031353) 15252
(0.00679102 0.00644008 0.00313084) 15253
(0.00723013 0.00644411 0.00312875) 15254
(0.000129691 0.00645441 0.00294647) 13500
(0.00375906 0.00636572 0.00267328) 13567
(0.00420295 0.00635342 0.00262594) 13568
(0.00456739 0.00636762 0.00263827) 13569
(0.000443352 0.00445259 0.00170787) 14040
(0.00452372 0.00429663 0.0016439) 5709
(0.00309149 0.00432216 0.00165881) 5706
(0.00432477 0.00436719 0.0016299) 5708
(0.0048213 0.00441376 0.0015475) 5709
(0.00470238 0.00422777 0.00169773) 5649
(0.00357883 0.00420104 0.00174267) 14107
(0.00293105 0.00422104 0.00170722) 5645
(0.00496388 0.00421135 0.00171108) 5649
(0.000750829 0.00358009 0.00346119) 5341
(0.0021558 0.00355699 0.00343994) 5344
(0.0050031 0.00352748 0.00319619) 14410
(0.00453839 0.0036449 0.00361005) 14529
(0.00325356 0.00363995 0.00358946) 14466
(0.00497442 0.00364015 0.00350619) 14469
(0.0011172 0.00495852 0.00444222) 14822
(0.00174831 0.00492985 0.00443753) 14823
(0.00247807 0.00493326 0.00443347) 14824
(0.00357258 0.00491229 0.00437294) 14827
(0.00420111 0.00524567 0.00433422) 14888
(-0.000106611 0.00646783 0.0030514) 35999
(0.00420704 0.00617515 0.00267037) 13568
(0.00414683 0.00637524 0.00273303) 13568
(0.00463443 0.00640652 0.00273496) 13569
(0.0209647 0.00304515 0.00214887) 521
(0.0223312 0.00301303 0.00219517) 524
(0.0216656 0.00705012 0.00381607) 23863
(0.0226082 0.00713964 0.00371868) 23505
(0.0213474 0.00688213 0.00364048) 2022
(0.022954 0.00697426 0.00357489) 2025
(0.0126379 0.00647955 0.00417313) 6685
(0.0126379 0.00647955 0.00417313) 6685
(0.0126379 0.00647955 0.00417313) 6685
(0.0136582 0.006437 0.00413579) 6687
(0.0136582 0.006437 0.00413579) 6687
(0.0136582 0.006437 0.00413579) 6687
(0.0144374 0.00641176 0.00412062) 6688
(0.0150739 0.00639593 0.00411435) 6690
(0.0156207 0.00638988 0.00410771) 6691
(0.0161118 0.00638903 0.004104) 6692
(0.0165842 0.00638899 0.00410191) 6693
(0.0170742 0.006387 0.00409739) 6694
(0.0175897 0.00638128 0.00409302) 6695
(0.0181047 0.00637357 0.00408999) 6696
(0.0185903 0.00636688 0.00408894) 6697
(0.0121858 0.0061031 0.00441681) 9324
(0.0130692 0.00609092 0.00438595) 9326
(0.0139096 0.00608037 0.00436463) 9327
(0.0146154 0.0060718 0.00435251) 9329
(0.0230154 0.00327872 0.00331942) 5446
(0.0234632 0.00658063 0.00222222) 6106
(0.0245467 0.00663437 0.00225137) 6109
(0.0216412 0.00687011 0.00430452) 1903
(0.0229511 0.00692016 0.00421303) 1905
(0.0214467 0.00661828 0.00418644) 6642
(0.0236545 0.00664609 0.00412226) 1967
(0.0206875 0.00642113 0.00125635) 6821
(0.0218446 0.0063976 0.00126594) 6823
(0.0209836 0.00358277 0.00457321) 7181
(0.0226766 0.00358457 0.0045708) 7185
(0.0237341 0.00361298 0.00461496) 7187
(0.0209826 0.00341965 0.00161984) 9221
(0.022922 0.00342037 0.00167411) 465
(0.0240578 0.00339699 0.00170267) 468
(0.021656 0.00629882 0.0044468) 12883
(0.0214041 0.00608377 0.00474038) 12222
(0.0231166 0.0061029 0.00471879) 12226
(0.021235 0.00577695 0.0050081) 12582
(0.021235 0.00577695 0.0050081) 12582
(0.021235 0.00577695 0.0050081) 12582
(0.0230567 0.00577415 0.0049876) 12586
(0.0230567 0.00577415 0.0049876) 12586
(0.0230567 0.00577415 0.0049876) 12586
(0.0240919 0.00582254 0.00497454) 12588
(0.0211775 0.00437924 0.00499252) 9522
(0.0212146 0.00395176 0.00481568) 9582
(0.0228077 0.00396659 0.00483843) 10545
(0.0215019 0.00380977 0.00141337) 12763
(0.0241027 0.00383516 0.00141087) 12768
(0.0217028 0.00417376 0.00126324) 11503
(0.0242204 0.00412762 0.00124514) 11508
(0.0213931 0.00453156 0.00113337) 9822
(0.0232677 0.0044319 0.00113366) 11566
(0.0211755 0.00484155 0.000988636) 11622
(0.0229392 0.00478984 0.000987344) 11625
(0.0208853 0.00567103 0.00103859) 12161
(0.0207878 0.00601068 0.00110474) 12461
(0.0223442 0.00603612 0.0011201) 12464
(0.0212218 0.00536902 0.000926946) 12102
(0.0230708 0.00531254 0.000941325) 10126
(0.0218391 0.00503277 0.000743918) 11923
(0.0210109 0.00520305 0.00516431) 11442
(0.0225114 0.00519101 0.0051519) 11445
(0.0235223 0.00523007 0.00515461) 11447
(0.0218825 0.00392186 0.0011071) 13003
(0.0236128 0.00331342 0.00286212) 13307
(0.0223345 0.00308186 0.00315482) 764
(0.0247828 0.00308681 0.00313355) 769
(0.0252684 0.00303963 0.00312872) 770
(0.0208984 0.00673406 0.0017468) 2501
(0.0230073 0.00669911 0.00182516) 2446
(0.0243905 0.00669125 0.0018295) 2448
(0.0230707 0.00628385 0.00174915) 13486
(0.0238776 0.00633042 0.00174167) 13487
(0.00498778 0.0064435 0.00276392) 13509
(0.00498778 0.0064435 0.00276392) 13509
(0.00498778 0.0064435 0.00276392) 13509
(0.00532414 0.00644896 0.00284007) 13510
(0.00574802 0.00644917 0.00286891) 13511
(0.00623412 0.00644649 0.00288055) 13512
(0.00672161 0.00644511 0.0028813) 13513
(0.00478818 0.00631365 0.00249582) 13569
(0.00510979 0.00634471 0.00251331) 13570
(0.0110985 0.00622034 0.0023556) 13642
(0.0116407 0.00621342 0.00236068) 13643
(0.0121898 0.00620566 0.00236525) 13644
(0.0127283 0.00619918 0.00236694) 13645
(0.0132173 0.00619961 0.00236635) 13646
(0.0136616 0.00620747 0.00236508) 13647
(0.0140839 0.00621869 0.00236333) 13648
(0.0180897 0.00623377 0.00236143) 13656
(0.0186465 0.00622856 0.00236602) 13657
(0.0191771 0.00622226 0.0023689) 13658
(0.0196983 0.00621431 0.00236911) 13659
(0.0202402 0.00620345 0.00236522) 13660
(0.0207717 0.00619263 0.00235603) 13661
(0.0212695 0.00618552 0.00234534) 13662
(0.0217392 0.00618115 0.00233366) 13663
(0.00534375 0.00582597 0.00186821) 13750
(0.00577872 0.00582584 0.00185947) 13751
(0.00622096 0.00582485 0.00185538) 13752
(0.00523736 0.00557925 0.00170855) 13810
(0.005648 0.00558279 0.00170168) 13811
(0.00457945 0.00473969 0.00160331) 13989
(0.00584929 0.00442611 0.00167618) 14051
(0.00623044 0.00440816 0.00167884) 14052
(0.00663637 0.00439951 0.00167892) 14053
(0.00705306 0.00439272 0.00167714) 14054
(0.012255 0.00440575 0.0017174) 14064
(0.00555558 0.00422351 0.00178358) 14111
(0.0059116 0.00419176 0.00180917) 14111
(0.006298 0.00417318 0.00181453) 14112
(0.00670816 0.00416393 0.00181402) 14113
(0.00711838 0.00415524 0.00181271) 14114
(0.011286 0.00417056 0.00183859) 14122
(0.0118242 0.00417658 0.00184364) 14123
(0.0123079 0.00418012 0.00184546) 14124
(0.0127449 0.00418018 0.0018435) 14125
(0.0131714 0.00417894 0.00183984) 14126
(0.00490495 0.0039658 0.00201241) 14169
(0.00530599 0.00398116 0.00200915) 14170
(0.00570133 0.00397671 0.00201884) 14171
(0.0110931 0.00362296 0.00289177) 14362
(0.0116434 0.00363225 0.00289321) 14363
(0.0122181 0.00364415 0.00289444) 14364
(0.0127727 0.00365273 0.0028953) 14365
(0.013276 0.00365491 0.00289458) 14366
(0.0137229 0.00365031 0.00289307) 14367
(0.0141252 0.00364105 0.00289167) 14368
(0.00540467 0.00356466 0.00315792) 14410
(0.0106126 0.00358482 0.00319014) 14421
(0.0111954 0.00359351 0.00319299) 14422
(0.0117781 0.00360556 0.00319551) 14423
(0.0123592 0.00361765 0.0031956) 14424
(0.0128927 0.00362386 0.00319543) 14425
(0.013387 0.003625 0.00319461) 14426
(0.0138528 0.00362255 0.00319506) 14427
(0.014291 0.00361656 0.00319592) 14428
(0.014742 0.0036106 0.00319826) 14429
(0.00536875 0.00363817 0.00332283) 14410
(0.00536875 0.00363817 0.00332283) 14410
(0.00536875 0.00363817 0.00332283) 14410
(0.00557383 0.003695 0.00343095) 14471
(0.00578043 0.00370707 0.00350473) 14471
(0.00614725 0.00370926 0.00353532) 14472
(0.00665435 0.00369819 0.00353107) 14473
(0.00722156 0.00367752 0.00350633) 14474
(0.0051601 0.003814 0.00373576) 14530
(0.0051601 0.003814 0.00373576) 14530
(0.0051601 0.003814 0.00373576) 14530
(0.00544078 0.00382035 0.003767) 14530
(0.00581014 0.00381032 0.00376835) 14531
(0.00625965 0.00379432 0.00376089) 14532
(0.00459905 0.00390473 0.00394031) 14589
(0.00495485 0.0039779 0.00394621) 14589
(0.00543954 0.00401975 0.00395684) 14590
(0.00598354 0.00402319 0.00395537) 14591
(0.00539395 0.00501824 0.00442242) 14830
(0.00581097 0.00501558 0.00443285) 14831
(0.00620068 0.00500902 0.0044443) 14832
(0.00662125 0.00500787 0.00444932) 14833
(0.00477829 0.00528669 0.00437645) 14889
(0.0052625 0.00529191 0.00438344) 14890
(0.00572328 0.0052902 0.00439254) 14891
(0.00613525 0.00528648 0.00440481) 14892
(0.0046702 0.00624718 0.00361896) 15129
(0.0057644 0.00636399 0.00341506) 15191
(0.00499947 0.0064752 0.00299977) 13509
(0.00499947 0.0064752 0.00299977) 13509
(0.00499947 0.0064752 0.00299977) 13509
(0.00544361 0.00644765 0.00311019) 15250
(0.00588594 0.00643846 0.00313424) 15251
(0.00632045 0.0064387 0.00313558) 15252
(0.00676865 0.00644006 0.00313109) 15253
(0.00720824 0.00644395 0.00312892) 15254
(7.87501e-05 0.00645504 0.00294912) 13500
(0.00376774 0.0063606 0.00266721) 13567
(0.00418253 0.00635513 0.00262827) 13568
(0.00455328 0.00636552 0.00263559) 13569
(0.000282239 0.00444903 0.00169381) 14040
(0.00330443 0.00432425 0.00166213) 5706
(0.00417531 0.00436426 0.00163946) 5708
(0.00481881 0.00440945 0.0015495) 5709
(0.00477788 0.00422933 0.0016972) 5649
(0.00372524 0.00420399 0.00174148) 14107
(0.00279454 0.00421482 0.00170626) 5645
(0.00492499 0.00421685 0.00170607) 5649
(0.002169 0.00355764 0.003441) 5344
(0.00497352 0.00351992 0.00319309) 14409
(0.00469577 0.0036481 0.00359889) 14469
(0.00302385 0.0036338 0.00358798) 14466
(0.00493055 0.00364266 0.00351486) 14469
(0.00111565 0.00496496 0.00444186) 14822
(0.00173351 0.00493015 0.00443732) 14823
(0.00244551 0.0049333 0.00443422) 14824
(0.00351161 0.00491269 0.00438092) 14827
(0.00418326 0.00524201 0.00433095) 14888
(-0.000117532 0.00646677 0.00305152) 35999
(0.00417453 0.00615111 0.00269349) 16448
(0.00423057 0.0063457 0.00271754) 13568
(0.00461913 0.00640249 0.0027301) 13569
(0.0209192 0.0030454 0.00214737) 521
(0.0223002 0.00301643 0.00219192) 524
(0.0216409 0.00704711 0.00381997) 23863
(0.0225959 0.00713276 0.00372608) 23505
(0.0212949 0.00687805 0.00364527) 2022
(0.0229065 0.00697009 0.00357716) 2025
(0.0125995 0.00648143 0.00417528) 6685
(0.0125995 0.00648143 0.00417528) 6685
(0.0125995 0.00648143 0.00417528) 6685
(0.0136287 0.00643816 0.00413656) 6687
(0.0136287 0.00643816 0.00413656) 6687
(0.0136287 0.00643816 0.00413656) 6687
(0.0144144 0.00641243 0.00412079) 6688
(0.0150548 0.00639625 0.00411438) 6690
(0.0156042 0.00638986 0.00410772) 6691
(0.0160966 0.00638893 0.00410386) 6692
(0.016569 0.00638889 0.00410182) 6693
(0.0170576 0.00638695 0.00409744) 6694
(0.0175722 0.0063814 0.00409298) 6695
(0.0180881 0.00637373 0.00408977) 6696
(0.0185761 0.00636694 0.00408852) 6697
(0.0121611 0.00610341 0.00441779) 9324
(0.0130385 0.00609119 0.00438689) 9326
(0.0138833 0.00608056 0.00436506) 9327
(0.0145937 0.00607196 0.00435258) 9329
(0.0229547 0.0032789 0.00331891) 5445
(0.023414 0.00657572 0.00221699) 6106
(0.0245083 0.00663294 0.00225292) 6109
(0.0216083 0.00686856 0.00430753) 1903
(0.0229248 0.00691468 0.004219) 1905
(0.0213712 0.00661626 0.00419195) 6642
(0.0235834 0.00664478 0.00412314) 1967
(0.0246437 0.00669353 0.00410905) 1969
(0.0206573 0.00642202 0.00125684) 6821
(0.0218172 0.00640001 0.00126803) 6823
(0.0209245 0.00358168 0.00457313) 7181
(0.022629 0.00358418 0.00456915) 7185
(0.0237226 0.00360988 0.00461041) 7187
(0.0209272 0.00342177 0.00161473) 9221
(0.0228664 0.00342126 0.00167365) 465
(0.0240441 0.00340077 0.00169998) 468
(0.0215941 0.0062963 0.00445049) 12883
(0.0213457 0.00608251 0.0047424) 12222
(0.0230664 0.00610092 0.0047188) 12226
(0.0211742 0.00577701 0.00500915) 12582
(0.0211742 0.00577701 0.00500915) 12582
(0.0211742 0.00577701 0.00500915) 12582
(0.0230049 0.00577252 0.00498748) 12586
(0.0230049 0.00577252 0.00498748) 12586
(0.0230049 0.00577252 0.00498748) 12586
(0.0240779 0.00581811 0.00497529) 12588
(0.0211404 0.00437677 0.00499069) 9522
(0.0211626 0.00395025 0.00481416) 9582
(0.0227614 0.00396609 0.00483632) 10545
(0.0214059 0.00380994 0.00141123) 12762
(0.0240421 0.00383733 0.00141283) 12768
(0.0216137 0.00417717 0.00126284) 11503
(0.0241643 0.00413103 0.00124767) 11508
(0.0213325 0.00453749 0.00113212) 9822
(0.0232057 0.00443489 0.00113508) 11566
(0.0211197 0.0048453 0.00098858) 11622
(0.022884 0.00479242 0.000988732) 11625
(0.0208398 0.00567389 0.00104075) 12161
(0.0224482 0.00564003 0.00101944) 12164
(0.020749 0.00601015 0.00110531) 12461
(0.0222993 0.00603599 0.00112142) 12464
(0.0211644 0.00537379 0.000927543) 12102
(0.0230156 0.00531369 0.000942655) 10126
(0.0218184 0.00503564 0.000743669) 11923
(0.0209655 0.0052023 0.00516473) 11441
(0.0224696 0.00519044 0.0051513) 11444
(0.0235084 0.00522518 0.00515369) 11447
(0.0218428 0.00392413 0.0011073) 13003
(0.0216768 0.00667549 0.00452224) 6583
(0.0235702 0.00331466 0.00286024) 13307
(0.0222296 0.00308286 0.00315316) 764
(0.0247473 0.00308894 0.00313481) 769
(0.025257 0.00304223 0.00312731) 770
(0.0208444 0.0067353 0.00174579) 2501
(0.0229391 0.00669951 0.00182432) 2445
(0.0243711 0.00669148 0.00183341) 2448
(0.0245977 0.00661425 0.0017198) 2509
(0.023021 0.00628017 0.00174601) 13486
(0.0238456 0.00633002 0.00174458) 13487
(0.00497228 0.00644341 0.00275816) 13509
(0.00497228 0.00644341 0.00275816) 13509
(0.00497228 0.00644341 0.00275816) 13509
(0.00530363 0.00644955 0.00283716) 13510
(0.00572418 0.00644956 0.00286772) 13511
(0.00620991 0.00644673 0.00288014) 13512
(0.00669837 0.00644514 0.00288146) 13513
(0.00476918 0.00631276 0.00249457) 13569
(0.00508943 0.00634404 0.00251208) 13570
(0.0110757 0.00622053 0.0023554) 13642
(0.011618 0.00621372 0.00236054) 13643
(0.0121665 0.00620605 0.00236514) 13644
(0.0127062 0.00619944 0.00236694) 13645
(0.013197 0.00619953 0.00236635) 13646
(0.0136426 0.00620714 0.00236513) 13647
(0.0140655 0.00621828 0.00236341) 13648
(0.0180642 0.00623405 0.0023613) 13656
(0.0186226 0.00622881 0.00236588) 13657
(0.0191544 0.00622262 0.00236895) 13658
(0.0196752 0.0062148 0.00236929) 13659
(0.0202163 0.00620406 0.0023656) 13660
(0.020749 0.00619317 0.00235661) 13661
(0.021248 0.00618592 0.00234595) 13662
(0.0217185 0.00618147 0.00233431) 13663
(0.00532267 0.0058258 0.0018684) 13750
(0.00575713 0.00582584 0.00185954) 13751
(0.0061985 0.00582472 0.00185528) 13752
(0.00521601 0.005579 0.00170872) 13810
(0.00562692 0.00558247 0.0017017) 13811
(0.0045595 0.00474059 0.00160251) 13989
(0.00582904 0.00442722 0.00167556) 14051
(0.00620987 0.00440866 0.0016787) 14052
(0.0066152 0.0043998 0.0016789) 14053
(0.00703212 0.00439296 0.00167725) 14054
(0.0122344 0.00440567 0.00171726) 14064
(0.00553982 0.00422416 0.00178156) 14111
(0.00589225 0.00419269 0.00180839) 14111
(0.00627728 0.00417366 0.0018144) 14112
(0.00668678 0.00416426 0.00181401) 14113
(0.00709784 0.00415565 0.00181275) 14114
(0.0112608 0.00417031 0.00183833) 14122
(0.0118015 0.00417635 0.00184347) 14123
(0.0122874 0.00417999 0.0018454) 14124
(0.0127255 0.00418011 0.00184356) 14125
(0.0131516 0.00417891 0.00183991) 14126
(0.00488666 0.00396459 0.00201287) 14169
(0.00528632 0.0039804 0.00200896) 14170
(0.00568082 0.00397677 0.00201855) 14171
(0.0110697 0.00362269 0.00289175) 14362
(0.0116195 0.00363184 0.00289315) 14363
(0.0121933 0.00364362 0.00289435) 14364
(0.0127497 0.00365238 0.0028953) 14365
(0.0132551 0.00365485 0.00289463) 14366
(0.0137044 0.00365054 0.00289314) 14367
(0.0141081 0.00364143 0.00289176) 14368
(0.0053849 0.00356402 0.00315556) 14410
(0.0105847 0.00358436 0.00319021) 14421
(0.0111687 0.00359299 0.00319292) 14422
(0.011752 0.00360499 0.00319555) 14423
(0.0123343 0.00361718 0.00319562) 14424
(0.0128701 0.00362363 0.00319553) 14425
(0.0133654 0.00362492 0.0031947) 14426
(0.0138324 0.00362264 0.00319509) 14427
(0.0142713 0.00361677 0.00319593) 14428
(0.014721 0.0036108 0.0031983) 14429
(0.00536069 0.00363196 0.00331985) 14410
(0.00536069 0.00363196 0.00331985) 14410
(0.00536069 0.00363196 0.00331985) 14410
(0.00556761 0.00369256 0.00342644) 14471
(0.00576787 0.0037057 0.003502) 14471
(0.00612702 0.0037089 0.00353409) 14472
(0.00662902 0.00369855 0.00353166) 14473
(0.00719549 0.00367848 0.00350746) 14474
(0.00515112 0.00381222 0.00373403) 14530
(0.00515112 0.00381222 0.00373403) 14530
(0.00515112 0.00381222 0.00373403) 14530
(0.00542634 0.00381967 0.00376602) 14530
(0.00579367 0.00381025 0.00376829) 14531
(0.00623738 0.00379469 0.00376123) 14532
(0.00458373 0.00390258 0.00394085) 14589
(0.00493487 0.00397433 0.00394572) 14589
(0.00541372 0.00401785 0.0039565) 14590
(0.00595866 0.00402284 0.00395465) 14591
(0.00537286 0.00501804 0.00442232) 14830
(0.00578939 0.00501574 0.00443265) 14831
(0.00617735 0.00500914 0.0044443) 14832
(0.00659725 0.0050078 0.00444945) 14833
(0.0047583 0.00528603 0.00437638) 14889
(0.00523978 0.00529195 0.00438335) 14890
(0.00569972 0.00529046 0.00439237) 14891
(0.00611158 0.00528671 0.00440475) 14892
(0.00464605 0.00624882 0.00361679) 15129
(0.00574336 0.00636403 0.00341521) 15191
(0.00498147 0.0064763 0.00299106) 13509
(0.00498147 0.0064763 0.00299106) 13509
(0.00498147 0.0064763 0.00299106) 13509
(0.00542048 0.00644882 0.00310759) 15250
(0.00586324 0.00643884 0.00313372) 15251
(0.00629752 0.00643879 0.00313584) 15252
(0.00674625 0.00644004 0.00313134) 15253
(0.00718634 0.00644378 0.00312908) 15254
(3.40469e-05 0.00645545 0.00295113) 13500
(0.00376048 0.00635549 0.00266568) 13567
(0.00416342 0.00635602 0.0026309) 13568
(0.00453926 0.00636384 0.00263289) 13569
(0.000147226 0.00444578 0.00168388) 14040
(0.00349226 0.00432556 0.00166386) 5706
(0.00403592 0.00436039 0.0016467) 5708
(0.00481832 0.00440544 0.00155124) 5709
(0.00483737 0.00422975 0.00169667) 5649
(0.00381019 0.00420653 0.00173935) 14107
(0.00264785 0.0042074 0.00170569) 5645
(0.00488082 0.00422234 0.00170207) 5649
(0.00217484 0.00355811 0.00344177) 5344
(0.0049474 0.0035113 0.00319144) 5409
(0.00290013 0.00363003 0.00358824) 14465
(0.00487561 0.0036425 0.00352558) 14469
(0.00113516 0.00497149 0.00444063) 14822
(0.00171973 0.00493053 0.00443709) 14823
(0.0024159 0.0049334 0.00443479) 14824
(0.00345266 0.00491379 0.00438846) 14826
(0.00416389 0.00523864 0.00432776) 14888
(-0.000131203 0.00646563 0.00305166) 35999
(0.00412028 0.00613366 0.00271767) 16448
(0.00428221 0.0063156 0.00270252) 13568
(0.00460447 0.00639742 0.0027262) 13569
(0.0208738 0.0030454 0.00214586) 521
(0.022268 0.0030197 0.00218879) 524
(0.021616 0.00704424 0.00382377) 23863
(0.0225827 0.00712611 0.00373319) 23505
(0.0212422 0.00687414 0.00365011) 2022
(0.0228579 0.00696594 0.00357943) 2025
(0.0125613 0.00648329 0.00417746) 6685
(0.0125613 0.00648329 0.00417746) 6685
(0.0125613 0.00648329 0.00417746) 6685
(0.0135986 0.00643934 0.00413743) 6687
(0.0135986 0.00643934 0.00413743) 6687
(0.0135986 0.00643934 0.00413743) 6687
(0.0143911 0.00641309 0.00412104) 6688
(0.0150357 0.00639659 0.00411437) 6690
(0.0155876 0.00638988 0.00410768) 6691
(0.0160814 0.00638884 0.00410371) 6692
(0.0165537 0.00638878 0.00410174) 6693
(0.017041 0.0063869 0.00409749) 6694
(0.0175548 0.00638152 0.00409296) 6695
(0.0180714 0.00637389 0.00408956) 6696
(0.0185618 0.00636701 0.0040881) 6697
(0.0121371 0.00610372 0.00441874) 9324
(0.0130076 0.00609147 0.00438785) 9326
(0.0138566 0.00608076 0.00436552) 9327
(0.0145718 0.00607212 0.00435267) 9329
(0.0228933 0.00327895 0.00331843) 5445
(0.0233633 0.00657048 0.00221132) 6106
(0.0244683 0.00663156 0.00225432) 6108
(0.0215758 0.00686722 0.00431036) 1903
(0.0228965 0.00690947 0.00422481) 1905
(0.0212982 0.00661388 0.00419788) 6642
(0.0235108 0.00664352 0.00412404) 1967
(0.0246352 0.00668923 0.00411054) 1969
(0.0206272 0.0064228 0.0012574) 6821
(0.0217891 0.00640229 0.00126997) 6823
(0.020863 0.00357986 0.00457286) 7181
(0.0225804 0.00358385 0.00456762) 7185
(0.0237096 0.00360703 0.00460604) 7187
(0.0208734 0.00342393 0.00160943) 9221
(0.0228097 0.00342212 0.00167317) 465
(0.0240286 0.00340435 0.00169753) 468
(0.0215341 0.00629373 0.00445441) 12883
(0.0212894 0.00608107 0.00474464) 12222
(0.0230146 0.00609904 0.0047188) 12226
(0.0211152 0.00577706 0.00501013) 12582
(0.0211152 0.00577706 0.00501013) 12582
(0.0211152 0.00577706 0.00501013) 12582
(0.0229516 0.00577099 0.00498739) 12585
(0.0229516 0.00577099 0.00498739) 12585
(0.0229516 0.00577099 0.00498739) 12585
(0.0240625 0.00581387 0.00497591) 12588
(0.0211022 0.00437431 0.00498885) 9522
(0.0211098 0.00394875 0.00481261) 9582
(0.022714 0.0039656 0.00483426) 10545
(0.0213128 0.00381013 0.00140903) 12762
(0.0239749 0.00383884 0.00141477) 12767
(0.0215259 0.00418078 0.00126236) 11503
(0.0241007 0.00413428 0.00125011) 11508
(0.0212724 0.00454322 0.00113088) 9822
(0.0231426 0.00443792 0.00113644) 11566
(0.0210639 0.00484876 0.000988605) 11622
(0.0228281 0.00479498 0.00099007) 11625
(0.0207951 0.00567681 0.00104303) 12161
(0.0224012 0.00564142 0.00102154) 12164
(0.0207111 0.00600953 0.00110593) 12461
(0.0222536 0.0060358 0.00112266) 12464
(0.0211068 0.00537859 0.000928154) 12102
(0.0229595 0.00531489 0.000943899) 10125
(0.0217973 0.00503845 0.000743394) 11923
(0.0209217 0.00520137 0.00516508) 11441
(0.022427 0.00518996 0.00515075) 11444
(0.0234931 0.0052206 0.00515277) 11446
(0.021803 0.00392636 0.00110749) 13003
(0.0216493 0.00667477 0.0045238) 6583
(0.0235253 0.00331582 0.00285823) 13307
(0.0221148 0.00308349 0.00315121) 764
(0.0247083 0.00309075 0.00313614) 769
(0.025245 0.00304494 0.00312602) 770
(0.0207909 0.00673652 0.00174484) 2501
(0.0228701 0.00669995 0.00182338) 2445
(0.0243499 0.00669161 0.00183709) 2448
(0.0246152 0.00662176 0.001728) 2509
(0.0229645 0.00627627 0.00174232) 13485
(0.0238142 0.00632952 0.00174744) 13487
(0.00495691 0.00644329 0.0027523) 13509
(0.00495691 0.00644329 0.0027523) 13509
(0.00495691 0.00644329 0.0027523) 13509
(0.00528324 0.00645015 0.00283413) 13510
(0.00570037 0.00644997 0.00286648) 13511
(0.00618563 0.00644699 0.00287969) 13512
(0.0066751 0.00644519 0.0028816) 13513
(0.00475001 0.00631184 0.00249328) 13569
(0.00506922 0.00634337 0.00251086) 13570
(0.0110528 0.00622071 0.00235521) 13642
(0.0115952 0.00621402 0.00236041) 13643
(0.0121433 0.00620644 0.00236504) 13644
(0.0126839 0.00619971 0.00236694) 13645
(0.0131768 0.00619946 0.00236635) 13646
(0.0136235 0.00620682 0.00236517) 13647
(0.014047 0.00621788 0.00236348) 13648
(0.0180386 0.00623433 0.00236117) 13656
(0.0185986 0.00622906 0.00236574) 13657
(0.0191316 0.00622297 0.002369) 13658
(0.0196521 0.00621528 0.00236945) 13659
(0.0201924 0.00620467 0.00236597) 13660
(0.0207262 0.00619373 0.00235718) 13661
(0.0212264 0.00618633 0.00234656) 13662
(0.0216979 0.00618179 0.00233497) 13663
(0.00530158 0.00582563 0.00186859) 13750
(0.00573561 0.00582584 0.00185963) 13751
(0.00617611 0.00582459 0.00185519) 13752
(0.00519463 0.00557875 0.0017089) 13810
(0.00560589 0.00558215 0.00170173) 13811
(0.00453982 0.00474145 0.00160176) 13989
(0.00580883 0.00442836 0.00167489) 14051
(0.0061894 0.00440919 0.00167854) 14052
(0.00659408 0.00440011 0.00167889) 14053
(0.0070112 0.00439321 0.00167736) 14054
(0.0122139 0.00440559 0.00171712) 14064
(0.00552428 0.0042247 0.0017795) 14111
(0.00587304 0.00419363 0.00180758) 14111
(0.0062567 0.00417415 0.00181426) 14112
(0.00666544 0.0041646 0.001814) 14113
(0.0070773 0.00415606 0.00181279) 14114
(0.0112355 0.00417009 0.00183805) 14122
(0.0117787 0.00417612 0.0018433) 14123
(0.0122668 0.00417985 0.00184534) 14124
(0.0127062 0.00418004 0.00184361) 14125
(0.0131318 0.00417888 0.00183998) 14126
(0.00486835 0.00396338 0.00201335) 14169
(0.0052667 0.00397956 0.00200884) 14170
(0.00566037 0.00397682 0.00201823) 14171
(0.0110462 0.00362243 0.00289174) 14362
(0.0115957 0.00363144 0.0028931) 14363
(0.0121685 0.0036431 0.00289427) 14364
(0.0127266 0.00365203 0.00289529) 14365
(0.0132341 0.00365478 0.00289468) 14366
(0.0136858 0.00365076 0.00289321) 14367
(0.014091 0.00364181 0.00289184) 14368
(0.00536522 0.00356338 0.00315314) 14410
(0.0105568 0.00358391 0.00319028) 14421
(0.0111419 0.00359248 0.00319285) 14422
(0.0117259 0.00360442 0.00319559) 14423
(0.0123093 0.00361669 0.00319563) 14424
(0.0128475 0.0036234 0.00319563) 14425
(0.0133437 0.00362484 0.00319479) 14426
(0.0138121 0.00362272 0.00319511) 14427
(0.0142516 0.00361698 0.00319595) 14428
(0.0147001 0.00361101 0.00319834) 14429
(0.00535323 0.00362583 0.0033171) 14410
(0.00535323 0.00362583 0.0033171) 14410
(0.00535323 0.00362583 0.0033171) 14410
(0.00556089 0.00369005 0.00342194) 14471
(0.00575573 0.00370422 0.0034992) 14471
(0.00610711 0.00370847 0.0035328) 14472
(0.00660368 0.00369887 0.0035321) 14473
(0.00716936 0.00367941 0.00350859) 14474
(0.00514235 0.00381038 0.00373232) 14530
(0.00514235 0.00381038 0.00373232) 14530
(0.00514235 0.00381038 0.00373232) 14530
(0.00541198 0.00381896 0.00376501) 14530
(0.00577729 0.00381016 0.0037682) 14531
(0.00621538 0.00379502 0.00376152) 14532
(0.00456864 0.00390059 0.00394138) 14589
(0.00491513 0.00397078 0.00394529) 14589
(0.00538791 0.0040159 0.00395615) 14590
(0.00593374 0.00402242 0.00395394) 14591
(0.00535172 0.00501784 0.00442224) 14830
(0.00576784 0.00501588 0.00443246) 14831
(0.00615409 0.00500928 0.00444429) 14832
(0.00657315 0.00500774 0.00444958) 14833
(0.00473845 0.00528533 0.00437631) 14889
(0.00521714 0.00529198 0.00438325) 14890
(0.00567619 0.00529071 0.0043922) 14891
(0.00608788 0.00528695 0.00440468) 14892
(0.00462177 0.00625049 0.00361458) 15129
(0.00572217 0.0063641 0.00341533) 15191
(0.00496397 0.00647722 0.00298201) 13509
(0.00496397 0.00647722 0.00298201) 13509
(0.00496397 0.00647722 0.00298201) 13509
(0.00539733 0.00645003 0.00310481) 15250
(0.00584052 0.00643925 0.00313314) 15251
(0.00627459 0.00643889 0.00313607) 15252
(0.00672379 0.00644004 0.00313159) 15253
(0.00716443 0.00644363 0.00312925) 15254
(2.25076e-06 0.00645554 0.0029521) 13500
(0.00375191 0.00635036 0.00266485) 13567
(0.00413682 0.00635658 0.00263565) 13568
(0.00452569 0.00636152 0.00263102) 13569
(1.56155e-05 0.00444268 0.00167487) 14040
(0.00366086 0.00432602 0.0016641) 5707
(0.00396237 0.00435555 0.00165076) 5707
(0.00482466 0.0044038 0.00155194) 5709
(0.00393099 0.0042083 0.00173669) 14107
(0.00249349 0.00419884 0.00170565) 5644
(0.00483044 0.00422748 0.00169928) 5649
(0.00217972 0.00355856 0.00344252) 5344
(0.00491617 0.00350311 0.00319057) 5409
(0.0027946 0.00362648 0.00358881) 14465
(0.00481631 0.00364142 0.00353652) 14469
(0.00117638 0.00497797 0.00443845) 14822
(0.00170756 0.00493103 0.00443685) 14823
(0.00238842 0.00493355 0.00443523) 14824
(0.00339723 0.00491541 0.00439536) 14826
(0.00414279 0.00523552 0.00432473) 14888
(-0.00014745 0.00646448 0.00305186) 35999
(0.00428842 0.00630723 0.0026981) 13568
(0.0045897 0.006392 0.00272242) 13569
(0.0208286 0.00304514 0.00214435) 521
(0.0222346 0.00302284 0.00218576) 524
(0.0215906 0.00704149 0.0038275) 23863
(0.0225688 0.00711967 0.00374005) 23505
(0.021189 0.00687045 0.00365491) 2022
(0.0228083 0.00696179 0.00358171) 2025
(0.0125238 0.0064851 0.00417966) 6685
(0.0125238 0.0064851 0.00417966) 6685
(0.0125238 0.0064851 0.00417966) 6685
(0.0135682 0.00644054 0.00413835) 6687
(0.0135682 0.00644054 0.00413835) 6687
(0.0135682 0.00644054 0.00413835) 6687
(0.0143677 0.00641376 0.00412133) 6688
(0.0150165 0.00639697 0.00411435) 6690
(0.015571 0.00638991 0.00410764) 6691
(0.0160661 0.00638875 0.00410358) 6692
(0.0165385 0.00638867 0.00410165) 6693
(0.0170245 0.00638685 0.00409754) 6694
(0.0175374 0.00638166 0.0040929) 6695
(0.0180547 0.00637408 0.00408933) 6696
(0.0185472 0.00636708 0.00408772) 6697
(0.0121137 0.00610403 0.00441967) 9324
(0.012977 0.00609174 0.00438882) 9325
(0.0138299 0.00608096 0.00436601) 9327
(0.0145497 0.00607228 0.00435279) 9329
(0.0228306 0.00327885 0.00331794) 5445
(0.0233107 0.00656483 0.00220512) 6106
(0.0244271 0.00663024 0.00225561) 6108
(0.0215438 0.0068661 0.00431303) 1903
(0.022866 0.00690453 0.00423049) 1905
(0.0212269 0.00661127 0.00420415) 6642
(0.0234366 0.0066423 0.00412496) 6706
(0.0246249 0.00668502 0.00411184) 1969
(0.0217605 0.00640446 0.00127178) 6823
(0.0208007 0.00357719 0.00457222) 7181
(0.0225306 0.00358359 0.00456622) 7185
(0.0236948 0.00360442 0.00460188) 7187
(0.0208205 0.00342609 0.00160401) 9221
(0.0227518 0.00342293 0.00167266) 465
(0.0240116 0.00340776 0.00169529) 468
(0.021476 0.00629107 0.00445853) 12882
(0.0212344 0.00607943 0.00474712) 12222
(0.0229614 0.00609725 0.00471882) 12225
(0.0210581 0.0057771 0.00501098) 12582
(0.0210581 0.0057771 0.00501098) 12582
(0.0210581 0.0057771 0.00501098) 12582
(0.0228969 0.00576955 0.00498732) 12585
(0.0228969 0.00576955 0.00498732) 12585
(0.0228969 0.00576955 0.00498732) 12585
(0.0240454 0.00580985 0.00497643) 12588
(0.0240454 0.00580985 0.00497643) 12588
(0.0240454 0.00580985 0.00497643) 12588
(0.0210626 0.00437186 0.00498697) 9522
(0.0210557 0.00394719 0.00481099) 9582
(0.0226658 0.00396511 0.00483227) 10545
(0.0212237 0.00381026 0.00140679) 12762
(0.0239014 0.00383957 0.00141665) 12767
(0.0214399 0.00418452 0.00126182) 11502
(0.0240292 0.00413725 0.00125239) 11508
(0.021212 0.00454845 0.0011297) 9822
(0.0230786 0.00444103 0.00113774) 11566
(0.021007 0.00485174 0.000988709) 11622
(0.0227717 0.00479752 0.00099138) 11625
(0.0207515 0.00567979 0.00104547) 12161
(0.0223534 0.00564277 0.0010236) 12164
(0.0206739 0.00600882 0.00110665) 12461
(0.022207 0.00603557 0.00112381) 12464
(0.021048 0.00538335 0.000928735) 12102
(0.0229024 0.00531616 0.000945051) 10125
(0.021776 0.00504112 0.000743038) 11923
(0.0226206 0.00496244 0.000759112) 11625
(0.0208793 0.00520029 0.00516534) 11441
(0.0223837 0.00518958 0.00515024) 11444
(0.0234764 0.0052163 0.00515184) 11446
(0.0217633 0.00392857 0.00110767) 13003
(0.0216219 0.00667423 0.0045252) 6583
(0.0234781 0.0033169 0.0028561) 13306
(0.0219821 0.00308326 0.00314898) 763
(0.0246652 0.00309222 0.00313753) 769
(0.0252321 0.00304774 0.00312486) 770
(0.0207382 0.00673756 0.00174397) 2501
(0.0228007 0.00670046 0.00182238) 2445
(0.0243265 0.00669164 0.00184055) 2448
(0.0246299 0.0066286 0.00173556) 2509
(0.0229005 0.00627212 0.00173806) 13485
(0.0237833 0.00632893 0.00175022) 13487
(0.00494165 0.00644312 0.00274632) 13509
(0.00494165 0.00644312 0.00274632) 13509
(0.00494165 0.00644312 0.00274632) 13509
(0.00526298 0.00645076 0.00283097) 13510
(0.00567663 0.00645039 0.00286518) 13511
(0.00616128 0.00644727 0.0028792) 13512
(0.00665181 0.00644524 0.00288173) 13513
(0.00473064 0.00631085 0.00249191) 13569
(0.00504915 0.0063427 0.00250967) 13570
(0.01103 0.00622088 0.00235501) 13642
(0.0115724 0.00621432 0.00236028) 13643
(0.0121201 0.00620683 0.00236493) 13644
(0.0126617 0.00619999 0.00236693) 13645
(0.0131564 0.00619941 0.00236636) 13646
(0.0136044 0.00620651 0.0023652) 13647
(0.0140284 0.00621748 0.00236355) 13648
(0.018013 0.00623462 0.00236105) 13656
(0.0185746 0.00622932 0.00236559) 13657
(0.0191088 0.00622331 0.00236904) 13658
(0.0196291 0.00621575 0.00236962) 13659
(0.0201686 0.00620528 0.00236634) 13660
(0.0207034 0.00619429 0.00235776) 13661
(0.0212048 0.00618675 0.00234717) 13662
(0.0216773 0.00618213 0.00233565) 13663
(0.00528046 0.00582544 0.00186879) 13750
(0.00571418 0.00582583 0.00185971) 13751
(0.0061538 0.00582447 0.00185512) 13752
(0.0051732 0.00557851 0.00170909) 13810
(0.00558489 0.00558184 0.00170177) 13811
(0.0045206 0.00474226 0.00160102) 13989
(0.00578868 0.00442951 0.00167419) 14051
(0.00616903 0.00440974 0.00167837) 14052
(0.00657302 0.00440041 0.00167887) 14053
(0.00699027 0.00439352 0.00167745) 14053
(0.0121932 0.00440552 0.00171698) 14064
(0.00550898 0.00422514 0.00177741) 14111
(0.00585398 0.00419456 0.00180672) 14111
(0.00623623 0.00417465 0.00181411) 14112
(0.00664414 0.00416494 0.00181399) 14113
(0.00705676 0.00415641 0.00181287) 14114
(0.0112101 0.00416987 0.00183777) 14122
(0.0117558 0.00417589 0.00184312) 14123
(0.0122461 0.00417971 0.00184527) 14124
(0.0126869 0.00417997 0.00184365) 14125
(0.0131121 0.00417885 0.00184006) 14126
(0.00485002 0.00396217 0.00201383) 14169
(0.0052471 0.00397869 0.00200876) 14170
(0.00563998 0.00397685 0.00201792) 14171
(0.0110228 0.00362217 0.00289172) 14362
(0.0115719 0.00363105 0.00289305) 14363
(0.0121437 0.00364257 0.00289418) 14364
(0.0127035 0.00365167 0.00289528) 14365
(0.0132129 0.0036547 0.00289473) 14366
(0.0136671 0.00365096 0.00289328) 14367
(0.0140738 0.00364218 0.00289191) 14368
(0.00534562 0.00356274 0.00315067) 14410
(0.0105289 0.00358347 0.00319035) 14421
(0.011115 0.00359198 0.00319279) 14422
(0.0116997 0.00360386 0.00319563) 14423
(0.0122843 0.0036162 0.00319566) 14424
(0.0128247 0.00362316 0.00319572) 14425
(0.013322 0.00362474 0.00319489) 14426
(0.0137916 0.0036228 0.00319513) 14427
(0.0142319 0.00361719 0.00319596) 14428
(0.0146792 0.00361121 0.00319838) 14429
(0.00534655 0.00361979 0.00331454) 14410
(0.00534655 0.00361979 0.00331454) 14410
(0.00534655 0.00361979 0.00331454) 14410
(0.00555355 0.00368743 0.00341746) 14471
(0.00574393 0.00370268 0.00349634) 14471
(0.00608752 0.00370797 0.00353144) 14472
(0.00657846 0.00369915 0.00353246) 14473
(0.00714316 0.00368032 0.00350971) 14474
(0.00513382 0.00380848 0.00373062) 14530
(0.00513382 0.00380848 0.00373062) 14530
(0.00513382 0.00380848 0.00373062) 14530
(0.0053978 0.00381822 0.00376398) 14530
(0.00576105 0.00381004 0.00376807) 14531
(0.00619368 0.00379531 0.00376177) 14532
(0.00455379 0.00389871 0.00394189) 14589
(0.00489562 0.00396727 0.00394492) 14589
(0.00536212 0.00401389 0.0039558) 14590
(0.0059088 0.00402192 0.00395327) 14591
(0.00533052 0.00501763 0.00442217) 14830
(0.00574631 0.00501601 0.00443227) 14831
(0.00613089 0.00500943 0.00444428) 14832
(0.00654898 0.00500767 0.00444971) 14833
(0.00471876 0.00528458 0.00437621) 14889
(0.00519461 0.005292 0.00438316) 14890
(0.00565268 0.00529096 0.00439203) 14891
(0.00606416 0.0052872 0.00440461) 14892
(0.00459734 0.00625218 0.00361233) 15129
(0.00570079 0.00636422 0.00341542) 15191
(0.00494696 0.00647784 0.0029728) 13509
(0.00494696 0.00647784 0.0029728) 13509
(0.00494696 0.00647784 0.0029728) 13509
(0.00537417 0.00645129 0.00310184) 15250
(0.00581778 0.00643968 0.00313249) 15251
(0.00625168 0.00643899 0.00313628) 15252
(0.00670129 0.00644004 0.00313185) 15253
(0.00714251 0.00644348 0.00312942) 15254
(-2.33957e-05 0.0064555 0.00295263) 35709
(0.00161153 0.00643629 0.0028628) 13503
(0.00373981 0.00634526 0.00266516) 13567
(0.00412722 0.00635596 0.00263543) 13568
(0.00451241 0.00635919 0.00262949) 13569
(-0.000102677 0.00444017 0.00166811) 35799
(0.00381848 0.00432576 0.00166293) 5707
(0.00398725 0.00435104 0.0016517) 5707
(0.00483087 0.00440201 0.00155272) 5709
(0.00404839 0.00421153 0.00173207) 5648
(0.00226555 0.00418584 0.00170633) 5644
(0.00477251 0.00423229 0.00169753) 5649
(0.00217671 0.00355888 0.00344326) 5344
(0.00488106 0.00349606 0.00319117) 5409
(0.00270173 0.00362316 0.00358938) 14465
(0.00475389 0.00364015 0.00354727) 14469
(0.0012424 0.00498393 0.00443517) 14822
(0.00169901 0.00493172 0.00443653) 14823
(0.00236657 0.00493362 0.00443535) 14824
(0.00334431 0.00491753 0.00440191) 14826
(0.00412016 0.00523256 0.00432178) 14888
(-0.00016361 0.00646332 0.00305208) 35999
(0.00433072 0.00627453 0.00268273) 13568
(0.00457375 0.00638601 0.00271878) 13569
(0.0207836 0.0030446 0.00214282) 521
(0.0222001 0.00302585 0.00218283) 524
(0.0215648 0.00703883 0.0038312) 23863
(0.0225544 0.00711343 0.00374667) 23505
(0.0211346 0.00686719 0.00365953) 2022
(0.0227578 0.00695766 0.003584) 2025
(0.012487 0.00648685 0.00418185) 6684
(0.012487 0.00648685 0.00418185) 6684
(0.012487 0.00648685 0.00418185) 6684
(0.0135376 0.00644177 0.00413931) 6687
(0.0135376 0.00644177 0.00413931) 6687
(0.0135376 0.00644177 0.00413931) 6687
(0.014344 0.00641445 0.00412163) 6688
(0.0149971 0.00639737 0.00411432) 6689
(0.0155542 0.00638994 0.00410763) 6691
(0.0160507 0.00638867 0.00410348) 6692
(0.0165232 0.00638857 0.00410158) 6693
(0.0170081 0.00638681 0.00409757) 6694
(0.01752 0.00638181 0.00409283) 6695
(0.018038 0.00637427 0.00408911) 6696
(0.0185325 0.00636714 0.00408736) 6697
(0.0189638 0.00636235 0.0040901) 6697
(0.0120909 0.00610434 0.00442058) 9324
(0.0129461 0.00609204 0.00438983) 9325
(0.0138029 0.00608117 0.00436652) 9327
(0.0145273 0.00607245 0.00435293) 9329
(0.0227666 0.00327862 0.00331743) 5445
(0.0232552 0.00655878 0.00219835) 13426
(0.0243848 0.00662896 0.00225675) 6108
(0.0228336 0.00689984 0.00423603) 1905
(0.0211558 0.00660872 0.00421047) 6642
(0.0233612 0.00664108 0.00412593) 6706
(0.024613 0.0066809 0.00411298) 1969
(0.0217314 0.00640652 0.00127345) 6823
(0.0207411 0.00357391 0.00457112) 7181
(0.0224798 0.00358338 0.00456497) 7184
(0.0236784 0.00360204 0.0045979) 7187
(0.0207684 0.00342823 0.00159855) 9221
(0.0226927 0.00342369 0.00167211) 9285
(0.023993 0.00341101 0.00169324) 467
(0.021419 0.0062883 0.00446287) 12882
(0.0211793 0.00607765 0.00474983) 12222
(0.0229071 0.00609553 0.00471886) 12225
(0.0210023 0.00577715 0.00501171) 12582
(0.0210023 0.00577715 0.00501171) 12582
(0.0210023 0.00577715 0.00501171) 12582
(0.022841 0.0057682 0.0049873) 12585
(0.022841 0.0057682 0.0049873) 12585
(0.022841 0.0057682 0.0049873) 12585
(0.0240268 0.00580601 0.00497685) 12588
(0.0240268 0.00580601 0.00497685) 12588
(0.0240268 0.00580601 0.00497685) 12588
(0.0243057 0.00593504 0.0049037) 12588
(0.0210216 0.00436944 0.00498497) 9522
(0.0209994 0.00394551 0.00480926) 9581
(0.0226168 0.00396463 0.00483033) 10545
(0.0211397 0.00381037 0.00140455) 12762
(0.0238221 0.0038395 0.0014184) 12767
(0.0213562 0.00418828 0.00126123) 11502
(0.02395 0.00413979 0.00125449) 11507
(0.0211506 0.00455287 0.00112862) 9822
(0.0230142 0.00444422 0.00113897) 11566
(0.0209481 0.00485404 0.000988879) 11621
(0.0227151 0.00480005 0.000992643) 11625
(0.0207093 0.00568287 0.0010481) 12161
(0.022305 0.0056441 0.00102562) 12164
(0.0206374 0.00600806 0.00110751) 12461
(0.0221599 0.00603529 0.00112489) 12464
(0.0209883 0.00538805 0.000929313) 12101
(0.0228441 0.00531749 0.000946101) 10125
(0.0217542 0.00504371 0.000742633) 11923
(0.02261 0.0049686 0.000760249) 11625
(0.0208382 0.00519904 0.00516548) 11441
(0.0223397 0.00518927 0.00514977) 11444
(0.0234582 0.00521228 0.00515091) 11446
(0.0217236 0.00393076 0.00110785) 13003
(0.0215947 0.00667382 0.00452648) 6583
(0.0234281 0.00331789 0.00285385) 13306
(0.0218264 0.00308191 0.00314639) 763
(0.0246174 0.00309333 0.00313892) 769
(0.0252185 0.00305061 0.0031238) 770
(0.0206862 0.00673837 0.00174319) 2501
(0.0227309 0.00670102 0.00182129) 2445
(0.0227309 0.00670102 0.00182129) 2445
(0.0227309 0.00670102 0.00182129) 2445
(0.0243011 0.00669164 0.00184381) 2448
(0.024643 0.00663508 0.00174282) 2509
(0.0228278 0.00626773 0.00173328) 13485
(0.0237537 0.00632823 0.00175295) 13487
(0.00492649 0.00644288 0.00274026) 13509
(0.00492649 0.00644288 0.00274026) 13509
(0.00492649 0.00644288 0.00274026) 13509
(0.00524284 0.00645139 0.00282768) 13510
(0.00565295 0.00645084 0.00286382) 13511
(0.00613687 0.00644755 0.00287866) 13512
(0.0066285 0.00644531 0.00288183) 13513
(0.00471107 0.00630981 0.00249047) 13569
(0.00502919 0.00634203 0.00250851) 13570
(0.0110071 0.00622105 0.0023548) 13642
(0.0115497 0.00621461 0.00236014) 13643
(0.0120969 0.00620722 0.00236483) 13644
(0.0126393 0.00620029 0.00236692) 13645
(0.013136 0.00619937 0.00236637) 13646
(0.0135852 0.00620621 0.00236524) 13647
(0.0140099 0.0062171 0.00236362) 13648
(0.0179873 0.00623492 0.00236093) 13655
(0.0185504 0.00622958 0.00236544) 13657
(0.019086 0.00622366 0.00236908) 13658
(0.0196061 0.00621622 0.00236977) 13659
(0.0201447 0.00620589 0.00236669) 13660
(0.0206805 0.00619486 0.00235832) 13661
(0.0211832 0.00618717 0.00234778) 13662
(0.0216566 0.00618248 0.00233633) 13663
(0.00525932 0.00582524 0.00186899) 13750
(0.00569282 0.00582581 0.0018598) 13751
(0.0061316 0.00582436 0.00185506) 13752
(0.00515174 0.00557828 0.00170929) 13810
(0.00556395 0.00558153 0.00170183) 13811
(0.0045017 0.00474306 0.00160027) 13989
(0.00576858 0.00443068 0.00167344) 14051
(0.00614875 0.00441031 0.0016782) 14052
(0.00655203 0.00440071 0.00167886) 14053
(0.00696937 0.00439383 0.00167753) 14053
(0.0121724 0.00440544 0.00171683) 14064
(0.00549391 0.00422546 0.00177529) 14110
(0.00583506 0.00419548 0.00180582) 14111
(0.00621588 0.00417516 0.00181396) 14112
(0.00662288 0.00416529 0.00181398) 14113
(0.00703622 0.00415677 0.00181294) 14114
(0.0111846 0.00416966 0.00183748) 14122
(0.0117328 0.00417565 0.00184294) 14123
(0.0122254 0.00417957 0.0018452) 14124
(0.0126675 0.00417991 0.0018437) 14125
(0.0130924 0.00417881 0.00184013) 14126
(0.00483165 0.00396096 0.0020143) 14169
(0.00522754 0.00397777 0.00200873) 14170
(0.00561962 0.00397685 0.0020176) 14171
(0.0109993 0.00362193 0.0028917) 14361
(0.0115482 0.00363068 0.002893) 14363
(0.0121189 0.00364205 0.0028941) 14364
(0.0126802 0.0036513 0.00289527) 14365
(0.0131917 0.0036546 0.00289478) 14366
(0.0136483 0.00365116 0.00289335) 14367
(0.0140566 0.00364254 0.00289196) 14368
(0.00532607 0.00356209 0.00314815) 14410
(0.0105009 0.00358304 0.00319043) 14421
(0.0110881 0.00359148 0.00319273) 14422
(0.0116734 0.00360329 0.00319567) 14423
(0.0122591 0.0036157 0.00319568) 14424
(0.0128019 0.00362291 0.00319581) 14425
(0.0133002 0.00362464 0.00319498) 14426
(0.0137711 0.00362287 0.00319517) 14427
(0.0142123 0.00361739 0.00319597) 14428
(0.0146583 0.0036114 0.00319836) 14429
(0.00534024 0.00361384 0.00331217) 14410
(0.00534024 0.00361384 0.00331217) 14410
(0.00534024 0.00361384 0.00331217) 14410
(0.00554576 0.00368463 0.00341302) 14471
(0.00573225 0.00370114 0.00349342) 14471
(0.00606824 0.0037074 0.00353003) 14472
(0.0065534 0.0036994 0.00353274) 14473
(0.0071169 0.00368119 0.00351081) 14474
(0.0051253 0.00380655 0.00372893) 14530
(0.0051253 0.00380655 0.00372893) 14530
(0.0051253 0.00380655 0.00372893) 14530
(0.0053838 0.00381745 0.00376291) 14530
(0.00574494 0.00380991 0.0037679) 14531
(0.00617229 0.00379556 0.00376198) 14532
(0.00453922 0.00389697 0.00394236) 14589
(0.00487632 0.00396381 0.00394461) 14589
(0.00533641 0.00401182 0.00395543) 14590
(0.00588384 0.00402134 0.00395264) 14591
(0.00530926 0.00501741 0.00442211) 14830
(0.0057248 0.00501612 0.00443209) 14831
(0.00610776 0.00500958 0.00444425) 14832
(0.00652476 0.00500761 0.00444985) 14833
(0.0046991 0.00528378 0.00437611) 14889
(0.00517219 0.005292 0.00438306) 14890
(0.00562922 0.0052912 0.00439186) 14891
(0.00604043 0.00528746 0.00440453) 14892
(0.00567924 0.00636437 0.00341549) 15191
(0.00493039 0.0064783 0.00296329) 13509
(0.00493039 0.0064783 0.00296329) 13509
(0.00493039 0.0064783 0.00296329) 13509
(0.00535102 0.00645258 0.00309868) 15250
(0.00579502 0.00644015 0.00313177) 15251
(0.00622877 0.0064391 0.00313647) 15252
(0.00667873 0.00644006 0.00313211) 15253
(0.00712058 0.00644334 0.00312959) 15254
(-4.39655e-05 0.00645537 0.00295277) 35709
(0.00148317 0.00644286 0.00286849) 13502
(0.00372026 0.00634028 0.00266874) 13567
(0.00411137 0.00635507 0.00263726) 13568
(0.00449931 0.0063569 0.00262828) 13568
(-0.000213293 0.00443773 0.00166235) 35799
(0.00396907 0.00432474 0.00166045) 5707
(0.00408022 0.00434621 0.00165027) 5708
(0.00484189 0.00440198 0.00155295) 5709
(0.00480825 0.00452888 0.00163806) 14049
(0.00419336 0.00421385 0.00172583) 5648
(0.0021176 0.00417677 0.00170788) 5644
(0.0047266 0.00423492 0.00169768) 5649
(0.00217179 0.00355916 0.003444) 5344
(0.0048452 0.00349061 0.00319398) 5409
(0.00271241 0.00362397 0.00359006) 14465
(0.00471293 0.00363815 0.00355578) 14469
(0.00132612 0.00499057 0.00443103) 14822
(0.00169315 0.0049325 0.00443607) 14823
(0.00234613 0.00493375 0.00443538) 14824
(0.0032956 0.00491985 0.00440754) 14826
(0.00409794 0.00523 0.00431934) 14888
(-0.000183818 0.00646221 0.00305239) 35999
(0.0043462 0.006243 0.00267346) 13568
(0.00455779 0.00637896 0.00271532) 13569
(0.0207387 0.00304382 0.00214133) 521
(0.0221646 0.00302873 0.00217998) 524
(0.0215387 0.00703627 0.00383485) 23863
(0.0225395 0.0071074 0.00375308) 23865
(0.0210786 0.00686447 0.00366385) 2022
(0.0227068 0.00695354 0.00358632) 2025
(0.0124507 0.00648856 0.00418405) 6684
(0.0124507 0.00648856 0.00418405) 6684
(0.0124507 0.00648856 0.00418405) 6684
(0.0135066 0.00644302 0.00414032) 6687
(0.0135066 0.00644302 0.00414032) 6687
(0.0135066 0.00644302 0.00414032) 6687
(0.0143201 0.00641516 0.00412195) 6688
(0.0149776 0.0063978 0.00411429) 6689
(0.0155374 0.00639 0.00410763) 6691
(0.0160353 0.00638858 0.00410339) 6692
(0.016508 0.00638848 0.0041015) 6693
(0.0169917 0.00638677 0.0040976) 6693
(0.0175026 0.00638197 0.00409275) 6695
(0.0180212 0.00637447 0.00408889) 6696
(0.0185177 0.00636722 0.00408704) 6697
(0.0189519 0.00636232 0.0040896) 6697
(0.0129156 0.00609233 0.00439083) 9325
(0.0137756 0.00608139 0.00436707) 9327
(0.0145047 0.00607263 0.00435308) 9329
(0.0227001 0.00327817 0.00331687) 5445
(0.0231974 0.00655218 0.0021909) 13426
(0.0243418 0.00662772 0.00225776) 6108
(0.0227995 0.00689541 0.00424142) 1905
(0.0210831 0.00660684 0.00421641) 6642
(0.0232845 0.00663985 0.00412699) 6706
(0.0245995 0.00667687 0.00411398) 1969
(0.0217019 0.00640849 0.001275) 6823
(0.0226356 0.00633568 0.00122977) 12465
(0.0206889 0.00357093 0.00456954) 7181
(0.022428 0.00358323 0.00456386) 7184
(0.0236604 0.00359987 0.0045941) 7187
(0.0207183 0.00343056 0.0015932) 9221
(0.0226326 0.0034244 0.00167152) 9285
(0.0239726 0.00341408 0.00169137) 467
(0.0213624 0.00628543 0.00446739) 12882
(0.0211228 0.00607583 0.00475271) 12222
(0.0228519 0.00609386 0.00471892) 12225
(0.0209472 0.00577723 0.00501236) 12581
(0.0209472 0.00577723 0.00501236) 12581
(0.0209472 0.00577723 0.00501236) 12581
(0.0227839 0.00576694 0.00498733) 12585
(0.0227839 0.00576694 0.00498733) 12585
(0.0227839 0.00576694 0.00498733) 12585
(0.0240067 0.00580235 0.00497719) 12588
(0.0240067 0.00580235 0.00497719) 12588
(0.0240067 0.00580235 0.00497719) 12588
(0.0243194 0.00592532 0.00491082) 12588
(0.0209788 0.00436701 0.00498291) 9521
(0.0209399 0.00394349 0.00480736) 9581
(0.0225671 0.00396414 0.00482845) 10545
(0.0210617 0.00381056 0.00140234) 12762
(0.0237378 0.00383868 0.00141997) 12767
(0.021275 0.00419183 0.00126061) 11502
(0.0238638 0.00414179 0.00125638) 11507
(0.0210873 0.00455617 0.00112765) 9822
(0.0229494 0.00444749 0.00114014) 11565
(0.0208872 0.00485562 0.000989122) 11621
(0.0226581 0.00480257 0.000993856) 11625
(0.0206688 0.00568603 0.00105094) 12161
(0.0222559 0.00564541 0.0010276) 12164
(0.0206017 0.0060073 0.00110857) 12461
(0.0221121 0.00603497 0.00112589) 12464
(0.0209297 0.00539271 0.000930001) 12101
(0.0227847 0.00531888 0.000947058) 10125
(0.021732 0.0050462 0.000742172) 11923
(0.0225986 0.00497446 0.00076132) 11625
(0.0207984 0.00519766 0.00516548) 11441
(0.0222951 0.00518902 0.00514935) 11444
(0.0234387 0.00520853 0.00514998) 11446
(0.021684 0.00393295 0.00110802) 13003
(0.0229633 0.00388537 0.00109991) 13005
(0.0215673 0.00667352 0.00452766) 6583
(0.0233743 0.00331877 0.00285149) 13306
(0.0216409 0.00307875 0.0031432) 763
(0.0245639 0.00309395 0.00314028) 769
(0.025204 0.00305354 0.00312281) 770
(0.0206353 0.00673897 0.00174249) 2501
(0.0226605 0.00670164 0.00182012) 2445
(0.0226605 0.00670164 0.00182012) 2445
(0.0226605 0.00670164 0.00182012) 2445
(0.0242738 0.00669163 0.0018469) 2448
(0.0246539 0.00664095 0.0017497) 2509
(0.0227435 0.00626326 0.00172808) 13485
(0.0237245 0.00632746 0.0017556) 13487
(0.0049113 0.0064426 0.00273417) 13509
(0.0049113 0.0064426 0.00273417) 13509
(0.0049113 0.0064426 0.00273417) 13509
(0.00522281 0.00645204 0.00282425) 13510
(0.00562935 0.0064513 0.00286241) 13511
(0.0061124 0.00644785 0.00287809) 13512
(0.00660516 0.0064454 0.00288192) 13513
(0.0046913 0.00630871 0.00248896) 13569
(0.00500932 0.00634134 0.00250736) 13570
(0.0109842 0.00622122 0.0023546) 13641
(0.011527 0.0062149 0.00236001) 13643
(0.0120738 0.00620761 0.00236472) 13644
(0.0126169 0.00620059 0.00236691) 13645
(0.0131155 0.00619935 0.00236638) 13646
(0.013566 0.00620593 0.00236527) 13647
(0.0139913 0.00621671 0.00236369) 13647
(0.0179616 0.00623522 0.0023608) 13655
(0.0185261 0.00622984 0.00236529) 13657
(0.0190631 0.00622401 0.00236911) 13658
(0.0195831 0.00621667 0.00236992) 13659
(0.0201208 0.0062065 0.00236703) 13660
(0.0206575 0.00619543 0.00235888) 13661
(0.0211615 0.00618761 0.00234838) 13662
(0.0216358 0.00618284 0.002337) 13663
(0.00523814 0.00582502 0.00186918) 13750
(0.00567155 0.00582577 0.00185989) 13751
(0.00610949 0.00582428 0.00185503) 13752
(0.00513023 0.00557806 0.00170951) 13810
(0.00554305 0.00558123 0.0017019) 13811
(0.00448321 0.00474381 0.00159948) 13988
(0.00489767 0.00471768 0.00160265) 13989
(0.00574851 0.00443187 0.00167265) 14051
(0.00612857 0.0044109 0.00167801) 14052
(0.0065311 0.00440102 0.00167886) 14053
(0.00694849 0.00439414 0.00167761) 14053
(0.0121516 0.00440536 0.00171667) 14064
(0.00547907 0.00422567 0.00177312) 14110
(0.00581629 0.0041964 0.00180488) 14111
(0.00619565 0.00417567 0.00181379) 14112
(0.00660167 0.00416565 0.00181397) 14113
(0.00701568 0.00415714 0.00181302) 14114
(0.011159 0.00416946 0.00183719) 14122
(0.0117097 0.00417541 0.00184276) 14123
(0.0122046 0.00417943 0.00184513) 14124
(0.0126481 0.00417984 0.00184374) 14125
(0.0130727 0.00417878 0.0018402) 14126
(0.00481312 0.00395974 0.00201482) 14169
(0.00520799 0.00397681 0.00200874) 14170
(0.0055993 0.00397681 0.00201729) 14171
(0.0109757 0.00362168 0.00289168) 14361
(0.0115247 0.00363032 0.00289297) 14363
(0.012094 0.00364153 0.00289401) 14364
(0.0126568 0.00365092 0.00289525) 14365
(0.0131703 0.00365449 0.00289483) 14366
(0.0136294 0.00365134 0.00289342) 14367
(0.0140393 0.0036429 0.00289203) 14368
(0.00530665 0.00356145 0.00314562) 14410
(0.0104729 0.00358261 0.0031905) 14420
(0.0110612 0.003591 0.00319267) 14422
(0.0116472 0.00360274 0.00319571) 14423
(0.0122339 0.00361519 0.00319571) 14424
(0.0127791 0.00362266 0.0031959) 14425
(0.0132784 0.00362454 0.00319507) 14426
(0.0137505 0.00362294 0.00319522) 14427
(0.0141926 0.0036176 0.00319597) 14428
(0.0146375 0.00361158 0.00319831) 14429
(0.00533458 0.00360798 0.00330995) 14410
(0.00533458 0.00360798 0.00330995) 14410
(0.00533458 0.00360798 0.00330995) 14410
(0.0055379 0.00368171 0.00340862) 14471
(0.005721 0.00369952 0.00349043) 14471
(0.00604925 0.00370677 0.00352856) 14472
(0.00652856 0.00369962 0.00353295) 14473
(0.00709059 0.00368203 0.00351189) 14474
(0.00511726 0.00380456 0.00372726) 14530
(0.00511726 0.00380456 0.00372726) 14530
(0.00511726 0.00380456 0.00372726) 14530
(0.00536993 0.00381664 0.00376182) 14530
(0.00572887 0.00380974 0.0037677) 14531
(0.0061512 0.00379577 0.00376217) 14532
(0.00452484 0.00389537 0.00394281) 14589
(0.00485723 0.00396041 0.00394437) 14589
(0.00531084 0.00400969 0.00395505) 14590
(0.00585885 0.00402069 0.00395204) 14591
(0.00528793 0.00501718 0.00442208) 14830
(0.00570327 0.00501621 0.00443191) 14831
(0.00608471 0.00500975 0.00444422) 14832
(0.00650047 0.00500757 0.00444998) 14833
(0.00467943 0.00528296 0.00437599) 14889
(0.00514989 0.00529199 0.00438297) 14890
(0.0056058 0.00529144 0.00439169) 14891
(0.00601668 0.00528773 0.00440444) 14892
(0.00565749 0.00636457 0.00341554) 15191
(0.0049145 0.00647848 0.0029535) 13509
(0.0049145 0.00647848 0.0029535) 13509
(0.0049145 0.00647848 0.0029535) 13509
(0.00532787 0.00645391 0.00309531) 15250
(0.00577224 0.00644064 0.00313097) 15251
(0.00620587 0.00643922 0.00313662) 15252
(0.00665613 0.00644008 0.00313236) 15253
(0.00709859 0.00644321 0.00312981) 15254
(-5.81356e-05 0.00645512 0.00295275) 35709
(0.00125953 0.00644924 0.0028773) 13502
(0.00370965 0.00633457 0.00267104) 13567
(0.00409494 0.00635392 0.00263831) 13568
(0.00448614 0.00635473 0.00262719) 13568
(-0.000306544 0.00443538 0.00165793) 35799
(0.00410059 0.00432314 0.00165699) 5708
(0.00420161 0.00434096 0.00164691) 5708
(0.00485038 0.00440168 0.00155365) 5709
(0.00481302 0.00452681 0.00163049) 14049
(0.00432991 0.00421622 0.00171904) 5648
(0.00204101 0.00413611 0.00173363) 5644
(0.00465905 0.00423858 0.00169758) 5649
(0.00225539 0.00356087 0.00344442) 5344
(0.00480266 0.00349077 0.0031998) 5409
(0.00251123 0.00361711 0.00359242) 5345
(0.00466716 0.00363748 0.00356379) 14469
(0.00508151 0.00374551 0.00348555) 14470
(0.00142809 0.00499787 0.00442582) 14822
(0.00168294 0.00493361 0.00443583) 14823
(0.00232508 0.00493389 0.00443543) 14824
(0.00324996 0.00492222 0.00441251) 14826
(0.00407501 0.00522766 0.00431736) 14888
(-0.000200561 0.00646113 0.00305267) 35999
(0.00433526 0.00623307 0.002673) 13568
(0.00454265 0.006371 0.00271129) 13569
(0.0206938 0.00304279 0.00213993) 521
(0.0221281 0.00303149 0.00217722) 524
(0.0215124 0.00703379 0.00383847) 23863
(0.0225239 0.00710156 0.00375929) 23865
(0.0210213 0.00686236 0.00366778) 2022
(0.0226554 0.00694946 0.00358867) 2025
(0.012415 0.00649022 0.00418625) 6684
(0.012415 0.00649022 0.00418625) 6684
(0.012415 0.00649022 0.00418625) 6684
(0.0134752 0.00644433 0.00414138) 6686
(0.0134752 0.00644433 0.00414138) 6686
(0.0134752 0.00644433 0.00414138) 6686
(0.014296 0.0064159 0.00412229) 6688
(0.0149579 0.00639826 0.00411425) 6689
(0.0155204 0.00639006 0.00410765) 6691
(0.0160198 0.00638848 0.00410333) 6692
(0.0164927 0.00638838 0.00410144) 6692
(0.0169754 0.00638674 0.00409761) 6693
(0.0174853 0.00638215 0.00409266) 6694
(0.0180043 0.00637467 0.00408869) 6696
(0.0185026 0.0063673 0.00408675) 6697
(0.0189399 0.00636229 0.00408911) 6697
(0.012885 0.00609265 0.00439186) 9325
(0.0137481 0.00608162 0.00436764) 9327
(0.0144819 0.00607283 0.00435324) 9328
(0.0226308 0.00327744 0.00331625) 5445
(0.0231357 0.00654513 0.00218261) 13426
(0.0242983 0.00662651 0.00225861) 6108
(0.0249982 0.00664812 0.00221515) 13429
(0.0227639 0.00689121 0.00424666) 1905
(0.0210072 0.006606 0.00422174) 6642
(0.0232068 0.00663859 0.00412815) 6706
(0.0245841 0.00667294 0.00411487) 1969
(0.021672 0.00641036 0.00127643) 6823
(0.0226255 0.00634125 0.0012352) 12465
(0.0206453 0.0035692 0.00456771) 7181
(0.0223753 0.00358312 0.00456289) 7184
(0.0236407 0.00359789 0.00459047) 7187
(0.0206718 0.00343354 0.00158806) 9221
(0.0225714 0.00342505 0.00167087) 9285
(0.0239507 0.00341699 0.00168965) 467
(0.0213048 0.00628253 0.00447202) 12882
(0.0210635 0.00607404 0.0047558) 12222
(0.022796 0.00609225 0.00471901) 12225
(0.0208922 0.00577735 0.00501288) 12581
(0.0208922 0.00577735 0.00501288) 12581
(0.0208922 0.00577735 0.00501288) 12581
(0.0227257 0.00576577 0.00498741) 12585
(0.0227257 0.00576577 0.00498741) 12585
(0.0227257 0.00576577 0.00498741) 12585
(0.0239853 0.00579884 0.00497745) 12587
(0.0239853 0.00579884 0.00497745) 12587
(0.0239853 0.00579884 0.00497745) 12587
(0.0243329 0.00591571 0.00491739) 12588
(0.0209338 0.00436455 0.00498076) 9521
(0.0208765 0.00394099 0.00480521) 9581
(0.0225168 0.00396364 0.00482662) 9585
(0.0209901 0.00381088 0.00140016) 12761
(0.0236502 0.00383733 0.00142135) 12767
(0.0211959 0.00419479 0.00125995) 9762
(0.0237723 0.0041433 0.00125805) 11507
(0.0210215 0.00455818 0.00112678) 9822
(0.0228845 0.00445088 0.00114123) 11565
(0.0208251 0.00485648 0.000989454) 11621
(0.0226008 0.00480507 0.000995014) 11625
(0.0239765 0.00475861 0.000975355) 11627
(0.0206302 0.00568928 0.00105399) 12161
(0.0222062 0.00564671 0.00102954) 12164
(0.0205667 0.00600652 0.00110985) 12461
(0.0220637 0.00603463 0.00112681) 12464
(0.0208752 0.00539748 0.000930957) 12101
(0.0227244 0.00532035 0.000947928) 10125
(0.0217094 0.00504859 0.000741655) 11923
(0.0225863 0.00498004 0.000762317) 11625
(0.0207598 0.00519612 0.00516538) 11441
(0.02225 0.00518883 0.00514898) 11444
(0.0234178 0.00520503 0.00514907) 11446
(0.0216444 0.00393513 0.00110818) 13003
(0.0229406 0.00389053 0.00109953) 13005
(0.0215399 0.00667332 0.00452875) 6583
(0.0233165 0.00331953 0.00284899) 13306
(0.0214303 0.00307323 0.00313901) 762
(0.0245032 0.00309423 0.00314154) 769
(0.0251892 0.00305646 0.00312186) 770
(0.0225892 0.00670232 0.00181882) 2445
(0.0225892 0.00670232 0.00181882) 2445
(0.0225892 0.00670232 0.00181882) 2445
(0.0242445 0.00669161 0.0018498) 2448
(0.024663 0.00664632 0.00175628) 2509
(0.0226471 0.00625875 0.0017225) 13485
(0.0236963 0.0063266 0.00175817) 13487
(0.00489621 0.00644224 0.00272802) 13509
(0.00489621 0.00644224 0.00272802) 13509
(0.00489621 0.00644224 0.00272802) 13509
(0.00520289 0.0064527 0.0028207) 13510
(0.00560583 0.00645179 0.00286092) 13511
(0.00608786 0.00644816 0.00287746) 13512
(0.00658179 0.00644549 0.00288198) 13513
(0.00467131 0.00630757 0.00248741) 13569
(0.00498953 0.00634065 0.00250622) 13569
(0.0109612 0.00622139 0.00235439) 13641
(0.0115042 0.00621519 0.00235988) 13643
(0.0120506 0.00620799 0.00236461) 13644
(0.0125944 0.00620091 0.0023669) 13645
(0.0130949 0.00619935 0.0023664) 13646
(0.0135467 0.00620567 0.0023653) 13647
(0.0139726 0.00621634 0.00236375) 13647
(0.0179358 0.00623552 0.00236068) 13655
(0.0185017 0.00623011 0.00236514) 13657
(0.0190402 0.00622435 0.00236914) 13658
(0.0195602 0.00621712 0.00237006) 13659
(0.0200969 0.00620711 0.00236736) 13660
(0.0206345 0.00619602 0.00235944) 13661
(0.0211398 0.00618805 0.00234899) 13662
(0.0216151 0.00618322 0.00233768) 13663
(0.00521693 0.00582479 0.00186938) 13750
(0.00565036 0.00582571 0.00185999) 13751
(0.00608749 0.00582421 0.00185502) 13752
(0.00510868 0.00557784 0.00170973) 13810
(0.0055222 0.00558094 0.00170199) 13811
(0.00446497 0.00474464 0.00159868) 13988
(0.0048758 0.00471895 0.00160222) 13989
(0.00572849 0.00443308 0.00167181) 14051
(0.00610849 0.00441151 0.00167781) 14052
(0.00651023 0.00440133 0.00167885) 14053
(0.00692764 0.00439445 0.0016777) 14053
(0.0121307 0.00440528 0.00171651) 14064
(0.00546445 0.00422574 0.00177092) 14110
(0.00579767 0.0041973 0.0018039) 14111
(0.00617553 0.0041762 0.00181361) 14112
(0.00658053 0.00416601 0.00181397) 14113
(0.00699513 0.00415751 0.00181309) 14113
(0.0111334 0.00416927 0.0018369) 14122
(0.0116865 0.00417517 0.00184258) 14123
(0.0121838 0.00417928 0.00184505) 14124
(0.0126287 0.00417978 0.00184378) 14125
(0.013053 0.00417874 0.00184027) 14126
(0.00479447 0.00395852 0.00201538) 14169
(0.00518848 0.0039758 0.00200879) 14170
(0.00557902 0.00397675 0.00201699) 14171
(0.0109522 0.00362145 0.00289166) 14361
(0.0115011 0.00362997 0.00289293) 14363
(0.0120692 0.00364101 0.00289393) 14364
(0.0126333 0.00365053 0.00289524) 14365
(0.0131489 0.00365438 0.00289487) 14366
(0.0136105 0.00365152 0.00289349) 14367
(0.0140219 0.00364326 0.00289209) 14368
(0.0144152 0.00363322 0.00289025) 14368
(0.00528727 0.00356079 0.00314302) 14410
(0.0104449 0.00358219 0.00319058) 14420
(0.0110342 0.00359052 0.00319263) 14422
(0.0116209 0.00360218 0.00319575) 14423
(0.0122085 0.00361468 0.00319574) 14424
(0.0127561 0.00362239 0.00319598) 14425
(0.0132565 0.00362443 0.00319517) 14426
(0.0137299 0.003623 0.00319526) 14427
(0.014173 0.0036178 0.00319599) 14428
(0.0146168 0.00361176 0.00319825) 14429
(0.0053292 0.00360225 0.00330785) 14410
(0.0053292 0.00360225 0.00330785) 14410
(0.0053292 0.00360225 0.00330785) 14410
(0.00553003 0.00367866 0.00340429) 14471
(0.00570982 0.00369791 0.00348739) 14471
(0.00603057 0.00370607 0.00352705) 14472
(0.00650417 0.00369981 0.00353316) 14473
(0.00706425 0.00368284 0.00351295) 14474
(0.00510924 0.00380251 0.00372562) 14530
(0.00510924 0.00380251 0.00372562) 14530
(0.00510924 0.00380251 0.00372562) 14530
(0.00535619 0.00381579 0.00376069) 14530
(0.00571284 0.00380956 0.00376747) 14531
(0.00613039 0.00379596 0.00376232) 14532
(0.00451078 0.00389397 0.00394317) 14589
(0.00483838 0.00395703 0.00394425) 14589
(0.00528545 0.00400752 0.00395466) 14590
(0.00583381 0.00401996 0.00395149) 14591
(0.00526652 0.00501693 0.00442206) 14830
(0.00568174 0.00501629 0.00443174) 14831
(0.00606172 0.00500992 0.00444417) 14832
(0.00647614 0.00500753 0.00445013) 14832
(0.00465975 0.00528211 0.00437586) 14889
(0.00512773 0.00529196 0.00438287) 14890
(0.00558242 0.00529169 0.00439152) 14891
(0.00599293 0.00528801 0.00440435) 14891
(0.00563554 0.0063648 0.00341557) 15191
(0.00489879 0.0064783 0.00294373) 13509
(0.00489879 0.0064783 0.00294373) 13509
(0.00489879 0.0064783 0.00294373) 13509
(0.00530474 0.00645527 0.00309173) 15250
(0.00574943 0.00644117 0.0031301) 15251
(0.00618299 0.00643936 0.00313675) 15252
(0.00663347 0.00644011 0.00313262) 15253
(0.0070766 0.00644308 0.00313004) 15254
(-0.000101172 0.00645559 0.00295085) 35709
(0.000987533 0.0064543 0.00288732) 13501
(0.00369452 0.00632815 0.0026756) 13567
(0.00408012 0.00635219 0.00263892) 13568
(0.00447269 0.00635344 0.0026257) 13568
(-0.000414425 0.00443291 0.00165336) 35798
(0.00422162 0.00432092 0.0016528) 5708
(0.00432457 0.0043355 0.00164223) 5708
(0.00485635 0.00440025 0.0015546) 5709
(0.0048254 0.00452304 0.00162195) 14049
(0.00442684 0.00422017 0.00171338) 5648
(0.00246918 0.00415979 0.00173286) 5644
(0.00460432 0.00424025 0.00169874) 5649
(0.00226396 0.00356136 0.00344502) 5344
(0.00473011 0.00351529 0.00322457) 5409
(0.00253273 0.00361786 0.00359199) 5345
(0.0046371 0.0036365 0.00356887) 14469
(0.00509263 0.00373306 0.0034866) 14470
(0.0015387 0.00500432 0.00441971) 14823
(0.00166835 0.00493515 0.0044358) 14823
(0.00230354 0.00493409 0.00443539) 14824
(0.00321231 0.00492347 0.00441553) 14826
(0.00405053 0.00522482 0.00431617) 14888
(-0.000193621 0.00646017 0.00305253) 35999
(0.00432043 0.00619795 0.00267841) 13568
(0.00452994 0.00636295 0.00270806) 13569
(0.0206488 0.00304158 0.00213871) 521
(0.0220907 0.00303411 0.00217453) 524
(0.0214859 0.00703138 0.00384212) 23862
(0.0225076 0.00709597 0.00376521) 23865
(0.0209636 0.0068607 0.00367124) 2021
(0.0226038 0.00694539 0.00359104) 2025
(0.012381 0.00649172 0.00418836) 6684
(0.012381 0.00649172 0.00418836) 6684
(0.012381 0.00649172 0.00418836) 6684
(0.0134434 0.00644568 0.00414249) 6686
(0.0134434 0.00644568 0.00414249) 6686
(0.0134434 0.00644568 0.00414249) 6686
(0.0142717 0.00641667 0.00412265) 6688
(0.0142717 0.00641667 0.00412265) 6688
(0.0142717 0.00641667 0.00412265) 6688
(0.0149381 0.00639874 0.00411421) 6689
(0.0155033 0.00639012 0.00410769) 6691
(0.0160043 0.00638838 0.0041033) 6692
(0.0164774 0.00638829 0.00410138) 6692
(0.0169591 0.00638673 0.00409761) 6693
(0.0174679 0.00638233 0.00409256) 6694
(0.0179874 0.00637488 0.00408849) 6695
(0.0184874 0.00636738 0.00408647) 6696
(0.0189278 0.00636226 0.00408866) 6697
(0.0128546 0.00609297 0.00439291) 9325
(0.0137206 0.00608185 0.00436823) 9327
(0.0144589 0.00607305 0.00435343) 9328
(0.0150714 0.00606626 0.0043456) 9330
(0.0225582 0.00327645 0.00331563) 5445
(0.0230697 0.00653759 0.00217335) 13426
(0.0242544 0.00662533 0.00225933) 6108
(0.024983 0.00664708 0.00221771) 13429
(0.0227269 0.00688724 0.00425178) 1905
(0.0209285 0.00660649 0.00422623) 6641
(0.023128 0.00663729 0.00412945) 6706
(0.0245669 0.00666909 0.00411567) 1969
(0.0216419 0.00641216 0.00127777) 6823
(0.022614 0.00634655 0.0012404) 12465
(0.0206056 0.00356824 0.0045658) 7181
(0.0223216 0.00358305 0.00456208) 7184
(0.0236194 0.00359609 0.00458701) 7187
(0.0206301 0.00343757 0.00158307) 9221
(0.0225092 0.00342564 0.00167015) 9285
(0.0239272 0.00341974 0.00168808) 467
(0.0212445 0.00627976 0.00447669) 12882
(0.0210004 0.00607234 0.00475909) 12222
(0.0227397 0.00609067 0.00471914) 12225
(0.0208372 0.00577748 0.00501321) 12581
(0.0208372 0.00577748 0.00501321) 12581
(0.0208372 0.00577748 0.00501321) 12581
(0.0226666 0.00576467 0.00498754) 12585
(0.0226666 0.00576467 0.00498754) 12585
(0.0226666 0.00576467 0.00498754) 12585
(0.0239627 0.00579547 0.00497767) 12587
(0.0239627 0.00579547 0.00497767) 12587
(0.0239627 0.00579547 0.00497767) 12587
(0.0243462 0.00590626 0.00492345) 12588
(0.020886 0.00436202 0.00497849) 9521
(0.0208099 0.00393786 0.00480273) 9581
(0.0224659 0.00396313 0.00482484) 9584
(0.0209234 0.00381131 0.00139808) 12761
(0.0235602 0.00383569 0.00142254) 12767
(0.021118 0.00419661 0.00125929) 9762
(0.0236778 0.00414449 0.00125952) 11507
(0.0209531 0.00455882 0.00112594) 9821
(0.0228195 0.0044544 0.00114226) 11565
(0.0207639 0.0048569 0.000989892) 11621
(0.0225431 0.00480751 0.000996105) 11625
(0.023949 0.00476174 0.000977207) 11627
(0.0205935 0.00569261 0.00105726) 12161
(0.0221559 0.00564801 0.00103142) 12164
(0.0220149 0.00603427 0.00112765) 12464
(0.0233 0.006031 0.00111353) 12466
(0.0208278 0.00540254 0.000932315) 12101
(0.0226632 0.00532191 0.000948717) 10125
(0.0239865 0.00529632 0.000937914) 10127
(0.0216864 0.00505084 0.000741069) 11923
(0.0225731 0.00498545 0.000763265) 11625
(0.0207224 0.00519444 0.00516515) 11441
(0.0222044 0.00518869 0.00514865) 11444
(0.0233955 0.00520178 0.00514817) 11446
(0.021605 0.00393729 0.00110834) 13003
(0.022917 0.00389547 0.00109921) 13005
(0.0215124 0.00667324 0.00452975) 6583
(0.0232538 0.00332013 0.00284635) 13306
(0.0212215 0.00306596 0.00313388) 762
(0.024433 0.0030944 0.00314263) 768
(0.0251745 0.00305938 0.00312093) 770
(0.0225169 0.00670307 0.00181734) 2445
(0.0225169 0.00670307 0.00181734) 2445
(0.0225169 0.00670307 0.00181734) 2445
(0.0242131 0.00669159 0.0018525) 2448
(0.0246702 0.00665123 0.00176256) 2509
(0.0225362 0.00625444 0.00171675) 13485
(0.0236691 0.00632569 0.00176064) 13487
(0.00488104 0.00644182 0.00272181) 13509
(0.00488104 0.00644182 0.00272181) 13509
(0.00488104 0.00644182 0.00272181) 13509
(0.00518311 0.00645337 0.00281706) 13510
(0.00558238 0.00645229 0.00285937) 13511
(0.00606326 0.00644849 0.00287679) 13512
(0.0065584 0.0064456 0.00288203) 13513
(0.00465109 0.00630638 0.00248581) 13569
(0.00496981 0.00633996 0.0025051) 13569
(0.0109382 0.00622156 0.00235419) 13641
(0.0114815 0.00621549 0.00235977) 13642
(0.0120275 0.00620837 0.00236449) 13644
(0.0125718 0.00620124 0.00236688) 13645
(0.0130743 0.00619937 0.00236641) 13646
(0.0135274 0.00620541 0.00236532) 13647
(0.013954 0.00621598 0.00236382) 13647
(0.0179101 0.00623582 0.00236056) 13655
(0.0184773 0.00623037 0.00236499) 13656
(0.0190172 0.0062247 0.00236916) 13658
(0.0195373 0.00621757 0.0023702) 13659
(0.020073 0.00620772 0.00236768) 13660
(0.0206114 0.0061966 0.00235998) 13661
(0.021118 0.0061885 0.00234959) 13662
(0.0215942 0.0061836 0.00233836) 13663
(0.00519567 0.00582455 0.00186958) 13750
(0.00562925 0.00582564 0.00186008) 13751
(0.0060656 0.00582415 0.00185502) 13752
(0.0050871 0.00557763 0.00170997) 13810
(0.00550139 0.00558066 0.00170209) 13811
(0.00444708 0.00474546 0.00159786) 13988
(0.00485416 0.00472019 0.00160177) 13989
(0.00570852 0.00443429 0.00167092) 14051
(0.00608849 0.00441214 0.0016776) 14052
(0.00648943 0.00440166 0.00167884) 14052
(0.00690681 0.00439475 0.00167778) 14053
(0.0121096 0.0044052 0.00171634) 14064
(0.00545015 0.00422566 0.00176869) 14110
(0.0057792 0.00419818 0.00180287) 14111
(0.00615552 0.00417675 0.0018134) 14112
(0.00655947 0.00416637 0.00181396) 14113
(0.00697459 0.00415787 0.00181318) 14113
(0.0111076 0.00416908 0.0018366) 14122
(0.0116632 0.00417493 0.0018424) 14123
(0.0121628 0.00417913 0.00184497) 14124
(0.0126093 0.00417971 0.00184382) 14125
(0.0130334 0.00417871 0.00184034) 14126
(0.0047756 0.00395732 0.002016) 14169
(0.005169 0.00397476 0.00200889) 14170
(0.00555878 0.00397665 0.00201669) 14171
(0.0109286 0.00362122 0.00289164) 14361
(0.0114777 0.00362964 0.0028929) 14362
(0.0120444 0.0036405 0.00289384) 14364
(0.0126098 0.00365013 0.00289521) 14365
(0.0131273 0.00365425 0.00289492) 14366
(0.0135914 0.00365168 0.00289355) 14367
(0.0140046 0.00364361 0.00289216) 14368
(0.0143976 0.00363361 0.00289037) 14368
(0.00526787 0.00356013 0.00314034) 14410
(0.0104169 0.00358177 0.00319065) 14420
(0.0110073 0.00359006 0.00319259) 14422
(0.0115945 0.00360163 0.00319577) 14423
(0.0121831 0.00361416 0.00319577) 14424
(0.012733 0.00362212 0.00319607) 14425
(0.0132346 0.00362432 0.00319527) 14426
(0.0137092 0.00362305 0.00319529) 14427
(0.0141533 0.00361799 0.003196) 14428
(0.0145961 0.00361196 0.00319825) 14429
(0.0150683 0.00360678 0.00319885) 14430
(0.0053243 0.00359672 0.00330584) 14410
(0.0053243 0.00359672 0.00330584) 14410
(0.0053243 0.00359672 0.00330584) 14410
(0.00552224 0.00367523 0.00340002) 14471
(0.00569905 0.00369625 0.0034843) 14471
(0.0060122 0.0037053 0.00352548) 14472
(0.00647974 0.00369996 0.00353319) 14472
(0.0070379 0.00368362 0.00351398) 14474
(0.00510153 0.00380038 0.003724) 14530
(0.00510153 0.00380038 0.003724) 14530
(0.00510153 0.00380038 0.003724) 14530
(0.0053427 0.00381491 0.00375954) 14530
(0.00569691 0.00380935 0.00376721) 14531
(0.00610988 0.00379611 0.00376245) 14532
(0.00449682 0.00389273 0.00394343) 14588
(0.00481978 0.0039537 0.00394425) 14589
(0.00526026 0.00400531 0.00395425) 14590
(0.00580871 0.00401916 0.00395097) 14591
(0.00524503 0.00501666 0.00442206) 14830
(0.00566019 0.00501636 0.00443157) 14831
(0.00603881 0.00501011 0.00444412) 14832
(0.00645177 0.0050075 0.00445027) 14832
(0.00464005 0.00528122 0.00437572) 14889
(0.0051057 0.0052919 0.00438278) 14890
(0.00555911 0.00529193 0.00439135) 14891
(0.00596917 0.00528831 0.00440425) 14891
(0.0056134 0.00636508 0.00341559) 15191
(0.00488337 0.00647796 0.00293379) 13509
(0.00488337 0.00647796 0.00293379) 13509
(0.00488337 0.00647796 0.00293379) 13509
(0.00528163 0.00645666 0.00308789) 15250
(0.00572659 0.00644173 0.00312914) 15251
(0.00616012 0.0064395 0.00313684) 15252
(0.00661077 0.00644015 0.00313288) 15253
(0.00705459 0.00644296 0.00313026) 15254
(-0.000135039 0.0064558 0.00294915) 35709
(0.000603645 0.00645701 0.00290243) 13501
(0.00368713 0.00632065 0.00267882) 13567
(0.00407233 0.00634999 0.0026371) 13568
(0.00446002 0.00635141 0.00262507) 13568
(-0.000512885 0.00443101 0.00164901) 35798
(0.00432789 0.0043183 0.00164838) 5708
(0.00442997 0.00433037 0.0016375) 5708
(0.00485957 0.00439818 0.00155576) 5709
(0.00484362 0.00451824 0.00161213) 14049
(0.00452685 0.00422303 0.00170898) 5649
(0.00291655 0.00418184 0.00173645) 5645
(0.00455154 0.0042416 0.00169989) 5649
(0.00226173 0.00356161 0.00344563) 5344
(0.00458134 0.0035647 0.003283) 14409
(0.00284855 0.0036363 0.00360251) 14465
(0.00265738 0.0036225 0.00359128) 14465
(0.00460128 0.00363529 0.00357422) 14469
(0.00510214 0.00372043 0.00348763) 14470
(0.0016469 0.00500943 0.00441302) 14823
(0.00164164 0.00493757 0.00443635) 14823
(0.00228247 0.0049343 0.00443532) 14824
(0.00317629 0.00492485 0.00441792) 14826
(0.00413034 0.00495033 0.00433801) 14828
(-0.000197966 0.00645939 0.0030529) 35999
(0.00215486 0.0064697 0.00309016) 15244
(0.00430869 0.00618643 0.00268111) 13568
(0.00451885 0.00635303 0.0027047) 13569
(0.0206047 0.00304035 0.00213779) 521
(0.0220523 0.00303661 0.00217191) 524
(0.0214593 0.00702899 0.00384585) 23862
(0.0224907 0.00709064 0.0037708) 23864
(0.0209057 0.00685952 0.00367415) 2021
(0.0225519 0.00694136 0.00359345) 2025
(0.0123481 0.00649313 0.00419042) 6684
(0.0123481 0.00649313 0.00419042) 6684
(0.0123481 0.00649313 0.00419042) 6684
(0.0134111 0.00644708 0.00414365) 6686
(0.0134111 0.00644708 0.00414365) 6686
(0.0134111 0.00644708 0.00414365) 6686
(0.0142471 0.00641745 0.00412304) 6688
(0.0142471 0.00641745 0.00412304) 6688
(0.0142471 0.00641745 0.00412304) 6688
(0.0149181 0.00639925 0.00411417) 6689
(0.0154862 0.0063902 0.00410775) 6690
(0.0159887 0.00638829 0.0041033) 6691
(0.0164622 0.0063882 0.00410132) 6692
(0.016943 0.00638672 0.00409759) 6693
(0.0174506 0.00638253 0.00409245) 6694
(0.0179704 0.0063751 0.00408831) 6695
(0.0184721 0.00636747 0.00408622) 6696
(0.0189155 0.00636224 0.00408822) 6697
(0.0128244 0.00609331 0.00439396) 9325
(0.0136927 0.0060821 0.00436885) 9327
(0.0144356 0.00607328 0.00435363) 9328
(0.0150532 0.0060664 0.00434548) 9330
(0.0224811 0.00327512 0.00331501) 5444
(0.0229989 0.00652972 0.0021632) 13425
(0.0242102 0.00662416 0.0022599) 6108
(0.0249671 0.00664597 0.00222027) 6109
(0.022689 0.00688346 0.00425678) 1905
(0.0208506 0.0066082 0.00422994) 6641
(0.0230482 0.00663594 0.00413092) 6706
(0.0245479 0.00666534 0.00411638) 1969
(0.0216116 0.00641389 0.001279) 6823
(0.0226012 0.00635163 0.00124539) 6825
(0.0205669 0.00356743 0.00456375) 7181
(0.022267 0.00358301 0.0045614) 7184
(0.0235964 0.00359445 0.0045837) 7187
(0.0205905 0.00344208 0.0015781) 9221
(0.0224456 0.00342619 0.00166932) 9284
(0.0239022 0.00342236 0.00168662) 467
(0.0209338 0.00607084 0.00476251) 12221
(0.0226829 0.00608912 0.00471932) 12225
(0.0207829 0.0057776 0.00501326) 12581
(0.0207829 0.0057776 0.00501326) 12581
(0.0207829 0.0057776 0.00501326) 12581
(0.0226066 0.00576366 0.00498773) 12585
(0.0226066 0.00576366 0.00498773) 12585
(0.0226066 0.00576366 0.00498773) 12585
(0.0239387 0.00579221 0.00497784) 12587
(0.0239387 0.00579221 0.00497784) 12587
(0.0239387 0.00579221 0.00497784) 12587
(0.0243578 0.0058972 0.00492904) 12588
(0.0208354 0.00435938 0.00497606) 9521
(0.0207423 0.00393402 0.00479986) 9581
(0.0224145 0.00396261 0.00482311) 9584
(0.0236823 0.00397244 0.00485286) 10547
(0.0208602 0.00381174 0.00139614) 12761
(0.0234687 0.0038339 0.00142358) 12766
(0.0210398 0.00419673 0.00125868) 11502
(0.0235815 0.00414552 0.00126081) 11507
(0.0208813 0.0045579 0.00112511) 9821
(0.0227547 0.0044581 0.00114324) 11565
(0.0207063 0.00485737 0.000990443) 11621
(0.0224847 0.00480992 0.000997132) 11624
(0.0239198 0.00476485 0.000979057) 11627
(0.0221049 0.00564933 0.00103326) 12164
(0.0219655 0.00603389 0.00112841) 12463
(0.0232754 0.00603279 0.00111653) 12466
(0.0207849 0.0054078 0.00093395) 12101
(0.022601 0.00532357 0.000949425) 10125
(0.023969 0.00529906 0.000940791) 10127
(0.0216629 0.0050528 0.000740376) 11923
(0.022559 0.00499088 0.000764205) 11625
(0.0221584 0.0051886 0.00514838) 11444
(0.0233719 0.00519875 0.00514728) 11446
(0.021566 0.00393945 0.00110848) 13003
(0.0228926 0.00390021 0.00109894) 13005
(0.0214846 0.00667327 0.00453066) 6582
(0.0231853 0.00332055 0.00284355) 13306
(0.0210621 0.00306085 0.00312847) 762
(0.0243524 0.0030946 0.00314347) 768
(0.0251596 0.00306233 0.00312005) 770
(0.0253859 0.00305324 0.003158) 770
(0.022443 0.00670395 0.00181566) 2444
(0.022443 0.00670395 0.00181566) 2444
(0.022443 0.00670395 0.00181566) 2444
(0.0241795 0.00669154 0.00185492) 2448
(0.0246756 0.00665567 0.00176872) 2509
(0.0224118 0.0062502 0.0017107) 13484
(0.0236425 0.00632472 0.001763) 13487
(0.00486577 0.00644134 0.00271559) 13569
(0.00486577 0.00644134 0.00271559) 13569
(0.00486577 0.00644134 0.00271559) 13569
(0.00516347 0.00645404 0.0028133) 13510
(0.00555899 0.00645282 0.00285775) 13511
(0.00603863 0.00644883 0.00287609) 13512
(0.00653496 0.00644572 0.00288205) 13513
(0.00463064 0.00630514 0.00248414) 13569
(0.00495013 0.00633926 0.00250399) 13569
(0.0109152 0.00622173 0.00235398) 13641
(0.0114587 0.0062158 0.00235966) 13642
(0.0120044 0.00620874 0.00236435) 13644
(0.0125491 0.00620159 0.00236686) 13645
(0.0130536 0.00619941 0.00236643) 13646
(0.0135081 0.00620516 0.00236535) 13647
(0.0139354 0.00621561 0.00236389) 13647
(0.0178842 0.00623612 0.00236045) 13655
(0.0184528 0.00623063 0.00236481) 13656
(0.0189942 0.00622505 0.00236919) 13657
(0.0195145 0.00621802 0.00237035) 13659
(0.020049 0.00620833 0.00236799) 13660
(0.0205883 0.00619719 0.00236051) 13661
(0.0210961 0.00618896 0.00235018) 13662
(0.0215734 0.00618398 0.00233904) 13663
(0.0125406 0.00601506 0.00209781) 13705
(0.00517437 0.00582429 0.00186978) 13750
(0.00560823 0.00582556 0.00186019) 13751
(0.00604382 0.00582411 0.00185505) 13752
(0.00506546 0.00557742 0.00171022) 13810
(0.00548062 0.00558038 0.00170221) 13810
(0.00442953 0.00474624 0.00159704) 13988
(0.00483273 0.00472139 0.0016013) 13989
(0.00568861 0.00443551 0.00166999) 14051
(0.00606856 0.0044128 0.00167738) 14052
(0.0064687 0.004402 0.00167883) 14052
(0.00688601 0.00439505 0.00167787) 14053
(0.0120885 0.00440512 0.00171616) 14064
(0.0125404 0.00440578 0.00171675) 14065
(0.00543605 0.00422544 0.00176643) 14110
(0.00576087 0.00419904 0.0018018) 14111
(0.00613561 0.00417731 0.00181317) 14112
(0.00653849 0.00416673 0.00181396) 14113
(0.00695404 0.00415823 0.00181326) 14113
(0.0110818 0.00416889 0.0018363) 14122
(0.0116399 0.00417469 0.00184221) 14123
(0.0121417 0.00417899 0.00184488) 14124
(0.0125899 0.00417965 0.00184386) 14125
(0.0130138 0.00417868 0.00184041) 14126
(0.00475659 0.00395611 0.00201665) 14169
(0.00514954 0.00397368 0.00200902) 14170
(0.00553858 0.00397652 0.0020164) 14171
(0.0109049 0.003621 0.00289163) 14361
(0.0114542 0.00362931 0.00289288) 14362
(0.0120196 0.00364 0.00289376) 14364
(0.0125861 0.00364973 0.00289519) 14365
(0.0131057 0.00365411 0.00289496) 14366
(0.0135722 0.00365184 0.00289362) 14367
(0.0139871 0.00364395 0.00289222) 14367
(0.01438 0.003634 0.0028905) 14368
(0.00524845 0.00355946 0.0031376) 14410
(0.0109802 0.00358961 0.00319257) 14421
(0.0115681 0.00360107 0.00319579) 14423
(0.0121575 0.00361364 0.00319581) 14424
(0.0127098 0.00362183 0.00319615) 14425
(0.0132127 0.0036242 0.00319537) 14426
(0.0136885 0.00362309 0.00319533) 14427
(0.0141336 0.00361819 0.00319602) 14428
(0.0145755 0.00361216 0.00319825) 14429
(0.0150472 0.00360701 0.00319892) 14430
(0.00531963 0.00359144 0.0033039) 14410
(0.00531963 0.00359144 0.0033039) 14410
(0.00531963 0.00359144 0.0033039) 14410
(0.0055145 0.00367152 0.00339586) 14471
(0.00568851 0.00369455 0.00348117) 14471
(0.005994 0.00370451 0.00352384) 14471
(0.00645549 0.00370007 0.00353313) 14472
(0.00701155 0.00368437 0.00351499) 14474
(0.00509404 0.00379818 0.0037224) 14530
(0.00509404 0.00379818 0.0037224) 14530
(0.00509404 0.00379818 0.0037224) 14530
(0.00532937 0.00381399 0.00375836) 14530
(0.00568105 0.00380913 0.00376692) 14531
(0.00608971 0.00379625 0.00376254) 14532
(0.00448299 0.00389166 0.00394362) 14588
(0.00480145 0.00395042 0.00394435) 14589
(0.00523526 0.00400306 0.00395384) 14590
(0.00578351 0.0040183 0.00395049) 14591
(0.0052234 0.00501638 0.00442208) 14830
(0.00563862 0.00501642 0.00443141) 14831
(0.00601597 0.00501029 0.00444406) 14832
(0.00642738 0.00500749 0.00445042) 14832
(0.00462037 0.00528021 0.0043756) 14889
(0.00508381 0.00529181 0.00438268) 14890
(0.00553587 0.00529216 0.00439119) 14891
(0.0059454 0.00528863 0.00440413) 14891
(0.00559108 0.00636539 0.00341558) 15191
(0.00486851 0.00647722 0.00292378) 13509
(0.00486851 0.00647722 0.00292378) 13509
(0.00486851 0.00647722 0.00292378) 13509
(0.00525854 0.00645807 0.00308385) 15250
(0.00570372 0.00644233 0.0031281) 15251
(0.00613726 0.00643967 0.00313688) 15252
(0.00658801 0.0064402 0.00313315) 15253
(0.00703255 0.00644285 0.00313049) 15254
(-0.000126614 0.00645489 0.00294947) 35709
(0.000352888 0.00645921 0.00291738) 13500
(0.00367478 0.00631159 0.00268263) 13567
(0.00405692 0.00634724 0.00263767) 13568
(0.00444713 0.00634995 0.00262432) 13568
(-0.000626096 0.00442774 0.00164446) 35798
(0.00124408 0.00437305 0.00174478) 14042
(0.0044454 0.00431474 0.00164281) 5708
(0.00452263 0.00432614 0.00163259) 5709
(0.00474948 0.00437232 0.00157478) 5709
(0.0048647 0.00451263 0.00160408) 14049
(0.00459237 0.00422727 0.00170652) 5649
(0.00327372 0.00419497 0.00174024) 5646
(0.0045084 0.00424278 0.00170076) 5649
(0.00226808 0.00356201 0.00344614) 5344
(0.00355007 0.00365597 0.00361413) 14527
(0.00268594 0.00362338 0.00359056) 14465
(0.00457276 0.00363494 0.00357891) 14469
(0.00518689 0.00366544 0.00347833) 14470
(0.00174755 0.00501386 0.00440581) 14823
(0.00161026 0.00494063 0.00443714) 14823
(0.00226136 0.00493448 0.00443524) 14824
(0.00314042 0.00492658 0.00441972) 14826
(0.00410047 0.00494499 0.00434111) 14828
(-0.000253439 0.00645883 0.00305471) 35999
(0.00193277 0.00648201 0.00309366) 15243
(0.00427167 0.00615652 0.00270518) 16448
(0.00450963 0.00634301 0.00270196) 13569
(0.0205625 0.00303934 0.00213727) 521
(0.0220131 0.00303897 0.00216936) 524
(0.0214327 0.00702663 0.00384961) 23862
(0.0224731 0.00708556 0.00377612) 23864
(0.020847 0.00685894 0.00367646) 2021
(0.0224999 0.00693735 0.0035959) 2024
(0.0123168 0.00649442 0.0041924) 6684
(0.0123168 0.00649442 0.0041924) 6684
(0.0123168 0.00649442 0.0041924) 6684
(0.0133784 0.00644853 0.00414486) 6686
(0.0133784 0.00644853 0.00414486) 6686
(0.0133784 0.00644853 0.00414486) 6686
(0.0142223 0.00641828 0.00412345) 6688
(0.0142223 0.00641828 0.00412345) 6688
(0.0142223 0.00641828 0.00412345) 6688
(0.0148981 0.00639978 0.00411413) 6689
(0.0154688 0.0063903 0.00410783) 6690
(0.015973 0.00638819 0.00410332) 6691
(0.0164469 0.00638812 0.00410126) 6692
(0.0169269 0.00638673 0.00409756) 6693
(0.0174333 0.00638273 0.00409234) 6694
(0.0179534 0.00637531 0.00408814) 6695
(0.0184565 0.00636758 0.00408599) 6696
(0.018903 0.00636223 0.00408781) 6697
(0.0127945 0.00609366 0.00439502) 9325
(0.0136646 0.00608237 0.0043695) 9327
(0.0144121 0.00607354 0.00435385) 9328
(0.0150349 0.00606655 0.00434536) 9330
(0.0223981 0.00327339 0.00331447) 5444
(0.0229217 0.00652186 0.00215232) 13425
(0.0241662 0.00662297 0.00226035) 6108
(0.0249504 0.0066448 0.00222282) 6109
(0.0226502 0.0068799 0.00426164) 1905
(0.02078 0.00661032 0.00423331) 6641
(0.022968 0.0066345 0.0041326) 6705
(0.024527 0.00666171 0.00411697) 1969
(0.0215812 0.0064155 0.00128012) 6823
(0.0225871 0.00635654 0.00125023) 6825
(0.0222116 0.00358295 0.00456083) 7184
(0.0235722 0.00359294 0.00458051) 7187
(0.0223809 0.0034267 0.00166834) 9284
(0.0238759 0.00342486 0.00168527) 467
(0.0208656 0.00606955 0.00476595) 12221
(0.0226258 0.00608767 0.00471953) 12225
(0.0207303 0.00577765 0.00501294) 12581
(0.0207303 0.00577765 0.00501294) 12581
(0.0207303 0.00577765 0.00501294) 12581
(0.0225457 0.00576273 0.00498799) 12585
(0.0225457 0.00576273 0.00498799) 12585
(0.0225457 0.00576273 0.00498799) 12585
(0.0239132 0.0057891 0.00497797) 12587
(0.0239132 0.0057891 0.00497797) 12587
(0.0239132 0.0057891 0.00497797) 12587
(0.0243683 0.00588845 0.00493418) 12588
(0.0207821 0.00435649 0.00497347) 9521
(0.0206782 0.00392969 0.00479657) 10541
(0.0223628 0.00396205 0.00482142) 9584
(0.0236597 0.00397118 0.00484976) 10547
(0.0208 0.00381219 0.00139437) 12761
(0.0233766 0.00383216 0.00142449) 12766
(0.020959 0.00419474 0.00125818) 11501
(0.0234845 0.00414654 0.00126198) 11506
(0.0208073 0.00455574 0.00112434) 9821
(0.0226904 0.00446203 0.00114414) 11565
(0.0206541 0.00485837 0.000991158) 11621
(0.0224255 0.00481229 0.000998096) 11624
(0.0238891 0.00476794 0.000980897) 11627
(0.0220531 0.00565072 0.00103507) 12164
(0.0219155 0.00603347 0.00112908) 12463
(0.0232498 0.00603452 0.00111948) 12466
(0.0207433 0.00541305 0.000935716) 12101
(0.0225378 0.00532539 0.000950065) 10125
(0.0239491 0.00530155 0.000943573) 10127
(0.0216392 0.00505455 0.000739612) 11923
(0.022544 0.00499617 0.00076509) 11625
(0.0221118 0.00518855 0.00514816) 11444
(0.023347 0.00519593 0.00514642) 11446
(0.0215275 0.00394161 0.00110861) 13003
(0.0228674 0.0039048 0.00109872) 13005
(0.0214567 0.00667343 0.00453147) 6582
(0.0231097 0.00332075 0.00284055) 13306
(0.0209688 0.00306228 0.00312328) 761
(0.0242601 0.00309494 0.00314411) 768
(0.0251441 0.00306531 0.00311923) 770
(0.0253871 0.00305283 0.00315468) 770
(0.0223663 0.00670498 0.0018137) 2444
(0.0223663 0.00670498 0.0018137) 2444
(0.0223663 0.00670498 0.0018137) 2444
(0.0241435 0.00669141 0.001857) 2448
(0.0246793 0.00665967 0.00177478) 2509
(0.0222716 0.00624672 0.00170492) 13484
(0.0236165 0.0063237 0.00176521) 13487
(0.00485055 0.00644078 0.00270939) 13569
(0.00485055 0.00644078 0.00270939) 13569
(0.00485055 0.00644078 0.00270939) 13569
(0.00514397 0.00645471 0.00280941) 13510
(0.00553566 0.00645338 0.00285605) 13511
(0.00601392 0.00644918 0.00287535) 13512
(0.00651149 0.00644585 0.00288204) 13513
(0.00460996 0.00630384 0.00248244) 13569
(0.00493049 0.00633856 0.00250288) 13569
(0.0108921 0.0062219 0.00235377) 13641
(0.011436 0.00621611 0.00235956) 13642
(0.0119813 0.00620911 0.00236422) 13643
(0.0125264 0.00620194 0.00236683) 13645
(0.0130329 0.00619946 0.00236645) 13646
(0.0134887 0.00620493 0.00236538) 13646
(0.0139167 0.00621526 0.00236395) 13647
(0.0178584 0.00623643 0.00236035) 13655
(0.0184282 0.00623089 0.00236465) 13656
(0.0189711 0.00622539 0.0023692) 13657
(0.0194917 0.00621845 0.00237047) 13658
(0.0200251 0.00620894 0.00236829) 13660
(0.0205652 0.00619779 0.00236104) 13661
(0.0210743 0.00618942 0.00235077) 13662
(0.0215525 0.00618437 0.00233971) 13663
(0.0125198 0.00601519 0.00209788) 13705
(0.0129835 0.00601455 0.00209423) 13705
(0.00515302 0.00582402 0.00186997) 13750
(0.00558728 0.00582547 0.0018603) 13751
(0.00602214 0.00582408 0.00185509) 13752
(0.00504376 0.00557722 0.00171047) 13810
(0.00545989 0.00558012 0.00170234) 13810
(0.00441229 0.00474698 0.00159629) 13988
(0.00481154 0.00472256 0.0016008) 13989
(0.00566875 0.00443674 0.00166901) 14051
(0.00604871 0.00441346 0.00167715) 14052
(0.00644804 0.00440235 0.00167881) 14052
(0.00686523 0.00439536 0.00167795) 14053
(0.0120672 0.00440504 0.00171598) 14064
(0.012521 0.00440575 0.00171672) 14065
(0.00542212 0.00422507 0.00176416) 14110
(0.00574271 0.00419987 0.00180069) 14111
(0.0061158 0.0041779 0.00181291) 14112
(0.0065176 0.00416708 0.00181397) 14113
(0.00693349 0.0041586 0.00181335) 14113
(0.0110559 0.00416871 0.00183599) 14122
(0.0116164 0.00417445 0.00184203) 14123
(0.0121206 0.00417884 0.00184479) 14124
(0.0125704 0.00417959 0.0018439) 14125
(0.0129942 0.00417864 0.00184048) 14125
(0.0047374 0.00395489 0.00201734) 14169
(0.00513007 0.00397257 0.0020092) 14170
(0.00551841 0.00397635 0.00201612) 14171
(0.0108813 0.00362078 0.00289161) 14361
(0.0114308 0.003629 0.00289286) 14362
(0.0119948 0.0036395 0.00289368) 14363
(0.0125623 0.00364932 0.00289515) 14365
(0.013084 0.00365396 0.002895) 14366
(0.0135528 0.00365198 0.00289368) 14367
(0.0139696 0.00364429 0.00289228) 14367
(0.0143625 0.00363439 0.00289062) 14368
(0.00522906 0.00355878 0.00313478) 14410
(0.0109532 0.00358916 0.00319255) 14421
(0.0115417 0.00360053 0.00319579) 14423
(0.0121319 0.00361311 0.00319585) 14424
(0.0126865 0.00362154 0.00319622) 14425
(0.0131907 0.00362408 0.00319547) 14426
(0.0136676 0.00362313 0.00319537) 14427
(0.0141139 0.00361838 0.00319604) 14428
(0.0145549 0.00361237 0.00319824) 14429
(0.0150261 0.00360724 0.003199) 14430
(0.00531564 0.00358635 0.003302) 14410
(0.00531564 0.00358635 0.003302) 14410
(0.00531564 0.00358635 0.003302) 14410
(0.00550701 0.00366753 0.00339177) 14471
(0.0056782 0.0036928 0.00347801) 14471
(0.00597631 0.00370361 0.00352216) 14471
(0.00643141 0.00370013 0.003533) 14472
(0.00698519 0.00368507 0.00351596) 14473
(0.00508679 0.00379589 0.00372084) 14530
(0.00508679 0.00379589 0.00372084) 14530
(0.00508679 0.00379589 0.00372084) 14530
(0.00531616 0.00381303 0.00375716) 14530
(0.00566527 0.00380889 0.00376661) 14531
(0.00606983 0.00379636 0.00376261) 14532
(0.00446922 0.00389074 0.00394375) 14588
(0.0047834 0.00394722 0.00394453) 14589
(0.00521051 0.00400077 0.00395343) 14590
(0.00575823 0.00401737 0.00395005) 14591
(0.00520167 0.00501608 0.00442212) 14830
(0.00561703 0.00501648 0.00443125) 14831
(0.0059932 0.00501048 0.00444398) 14831
(0.00640297 0.00500748 0.00445057) 14832
(0.00460066 0.00527917 0.00437546) 14889
(0.00506205 0.0052917 0.00438258) 14890
(0.00551271 0.00529238 0.00439102) 14891
(0.00592164 0.00528895 0.004404) 14891
(0.00556855 0.00636575 0.00341555) 15191
(0.00485375 0.00647637 0.00291354) 13509
(0.00485375 0.00647637 0.00291354) 13509
(0.00485375 0.00647637 0.00291354) 13509
(0.00523547 0.00645949 0.00307959) 15250
(0.0056808 0.00644296 0.00312697) 15251
(0.00611441 0.00643985 0.00313688) 15252
(0.00656519 0.00644026 0.00313342) 15253
(0.00701051 0.00644275 0.00313073) 15254
(-0.000125917 0.00645412 0.00294944) 35709
(0.00020792 0.00646218 0.00292888) 13500
(0.00366212 0.00630156 0.00268703) 13567
(0.00404833 0.00634363 0.00263646) 13568
(0.00443422 0.00634894 0.00262351) 13568
(0.00116369 0.00439583 0.00174718) 14042
(0.0045382 0.00431128 0.001638) 5709
(0.00457608 0.00432347 0.00162964) 5709
(0.0047583 0.00437006 0.00157514) 5709
(0.00488469 0.00450563 0.00159385) 5709
(0.0046734 0.00423098 0.00170564) 5649
(0.00360925 0.00420368 0.00174141) 14107
(0.00446172 0.00424407 0.00170153) 5648
(0.0050068 0.00416371 0.00174948) 5650
(0.00227084 0.00356233 0.00344666) 5344
(0.00503463 0.00357885 0.00320778) 14410
(0.00408673 0.00365536 0.00362296) 14528
(0.00280972 0.00362813 0.00359036) 14465
(0.00450218 0.00363395 0.0035859) 14469
(0.0051846 0.00365696 0.00347997) 14470
(0.00183402 0.00501798 0.00439793) 14823
(0.00158067 0.00494425 0.00443788) 14823
(0.00224155 0.00493468 0.00443509) 14824
(0.00310596 0.00492824 0.004421) 14826
(0.00407552 0.00494033 0.00434507) 14828
(-0.000284945 0.00645845 0.00305621) 35999
(0.00165093 0.00649109 0.00309798) 4563
(0.00421747 0.00613213 0.00273282) 16448
(0.00450188 0.00633206 0.00270008) 13569
(0.021973 0.00304121 0.00216687) 523
(0.0214062 0.00702438 0.00385332) 23862
(0.0224548 0.00708067 0.0037813) 23864
(0.0207863 0.00685907 0.00367816) 2021
(0.0224476 0.00693327 0.00359846) 2024
(0.0122863 0.00649565 0.00419434) 6684
(0.0122863 0.00649565 0.00419434) 6684
(0.0122863 0.00649565 0.00419434) 6684
(0.0133455 0.00645001 0.00414613) 6686
(0.0133455 0.00645001 0.00414613) 6686
(0.0133455 0.00645001 0.00414613) 6686
(0.0141974 0.00641912 0.00412388) 6688
(0.0141974 0.00641912 0.00412388) 6688
(0.0141974 0.00641912 0.00412388) 6688
(0.0148778 0.00640033 0.00411409) 6689
(0.0154514 0.00639043 0.00410792) 6690
(0.0159572 0.00638812 0.00410335) 6691
(0.0164316 0.00638805 0.00410119) 6692
(0.0169109 0.00638673 0.00409753) 6693
(0.0174161 0.00638293 0.00409224) 6694
(0.0179363 0.00637554 0.00408797) 6695
(0.0184409 0.0063677 0.00408576) 6696
(0.0188904 0.00636224 0.0040874) 6697
(0.0127646 0.00609404 0.00439611) 9325
(0.0136364 0.00608264 0.00437018) 9327
(0.0143884 0.0060738 0.00435408) 9328
(0.0150165 0.00606671 0.00434525) 9330
(0.0223072 0.00327114 0.00331396) 5444
(0.0228375 0.0065142 0.00214103) 13425
(0.0241221 0.00662177 0.00226063) 6108
(0.0249329 0.00664362 0.00222538) 6109
(0.0226107 0.00687654 0.00426635) 1905
(0.0207219 0.0066115 0.00423725) 6641
(0.0228874 0.00663297 0.00413452) 6705
(0.0245041 0.0066582 0.00411743) 1969
(0.0215509 0.00641702 0.00128113) 6823
(0.0225718 0.00636131 0.00125491) 6825
(0.0221552 0.00358287 0.00456035) 7184
(0.0235468 0.00359156 0.00457746) 7187
(0.0223151 0.00342718 0.00166718) 9284
(0.0238482 0.00342725 0.00168403) 9287
(0.0207999 0.00606841 0.0047693) 12221
(0.0225683 0.00608633 0.00471976) 12225
(0.0206806 0.00577754 0.00501216) 12581
(0.0206806 0.00577754 0.00501216) 12581
(0.0206806 0.00577754 0.00501216) 12581
(0.0224841 0.0057619 0.00498832) 12584
(0.0224841 0.0057619 0.00498832) 12584
(0.0224841 0.0057619 0.00498832) 12584
(0.023886 0.00578613 0.00497807) 12587
(0.023886 0.00578613 0.00497807) 12587
(0.023886 0.00578613 0.00497807) 12587
(0.0243769 0.00588009 0.00493888) 12588
(0.0207273 0.0043533 0.00497063) 9521
(0.0206216 0.0039253 0.00479305) 10541
(0.0223107 0.00396145 0.00481977) 9584
(0.0236355 0.00397008 0.00484679) 10547
(0.0207436 0.00381289 0.00139282) 12761
(0.0232841 0.00383058 0.0014253) 12766
(0.0208742 0.00419046 0.00125794) 11501
(0.0233878 0.00414773 0.00126304) 11506
(0.0246946 0.00409242 0.00123272) 11509
(0.0207343 0.00455311 0.00112359) 9821
(0.0226263 0.00446619 0.00114495) 9825
(0.0206081 0.00486017 0.000992055) 11621
(0.0223652 0.00481465 0.000999008) 11624
(0.0238568 0.00477122 0.000982743) 11627
(0.0220004 0.00565217 0.00103684) 12164
(0.0218649 0.00603301 0.00112965) 12463
(0.0232231 0.00603618 0.00112234) 12466
(0.020703 0.00541828 0.000937598) 12101
(0.0224735 0.00532744 0.000950653) 10124
(0.0239266 0.00530382 0.000946259) 10127
(0.021615 0.00505618 0.000738812) 11923
(0.0225283 0.00500144 0.000765969) 11625
(0.0220647 0.00518852 0.00514798) 11444
(0.023321 0.00519332 0.00514558) 11446
(0.0214895 0.00394378 0.00110872) 13002
(0.0228413 0.00390922 0.00109856) 13005
(0.0214287 0.00667373 0.00453216) 6582
(0.0230253 0.00332066 0.00283735) 13306
(0.0208836 0.00306469 0.00311756) 761
(0.0241571 0.00309549 0.00314461) 768
(0.0251281 0.00306833 0.00311849) 770
(0.0253869 0.00305254 0.00315162) 770
(0.0222857 0.0067062 0.00181136) 2444
(0.0222857 0.0067062 0.00181136) 2444
(0.0222857 0.0067062 0.00181136) 2444
(0.024105 0.00669123 0.00185873) 2448
(0.024682 0.0066633 0.0017808) 2509
(0.0221142 0.00624506 0.00170024) 13484
(0.0235914 0.00632264 0.00176727) 13487
(0.00483525 0.00644013 0.00270322) 13569
(0.00483525 0.00644013 0.00270322) 13569
(0.00483525 0.00644013 0.00270322) 13569
(0.00512461 0.00645537 0.00280541) 13510
(0.00551239 0.00645396 0.00285428) 13511
(0.00598917 0.00644955 0.00287459) 13511
(0.00648796 0.006446 0.00288199) 13512
(0.00458902 0.00630247 0.00248071) 13569
(0.00491089 0.00633786 0.00250178) 13569
(0.0114132 0.00621641 0.00235945) 13642
(0.0119583 0.00620948 0.00236409) 13643
(0.0125037 0.0062023 0.0023668) 13645
(0.013012 0.00619953 0.00236647) 13646
(0.0134693 0.00620471 0.00236541) 13646
(0.013898 0.00621491 0.002364) 13647
(0.0178326 0.00623675 0.00236025) 13655
(0.0184035 0.00623117 0.00236449) 13656
(0.0189479 0.00622574 0.00236921) 13657
(0.0194689 0.00621888 0.00237058) 13658
(0.0200012 0.00620955 0.00236858) 13660
(0.0205419 0.0061984 0.00236157) 13661
(0.0210523 0.00618989 0.00235136) 13662
(0.0215316 0.00618476 0.00234038) 13663
(0.0124989 0.00601533 0.00209794) 13704
(0.0129646 0.00601459 0.00209448) 13705
(0.00513161 0.00582373 0.00187017) 13750
(0.00556641 0.00582537 0.00186042) 13751
(0.00600058 0.00582406 0.00185515) 13752
(0.00502201 0.00557702 0.00171074) 13810
(0.00543919 0.00557986 0.00170248) 13810
(0.00439536 0.00474767 0.00159555) 13988
(0.0047906 0.00472365 0.00160029) 13989
(0.00564896 0.00443796 0.00166798) 14051
(0.00602895 0.00441413 0.00167691) 14052
(0.00642745 0.00440274 0.00167878) 14052
(0.00684448 0.00439568 0.00167804) 14053
(0.0120459 0.00440497 0.00171579) 14064
(0.0125015 0.00440573 0.00171668) 14065
(0.00540847 0.00422456 0.00176186) 14110
(0.00572472 0.00420067 0.00179953) 14111
(0.00609609 0.00417851 0.00181262) 14112
(0.00649679 0.00416742 0.00181399) 14112
(0.00691295 0.00415895 0.00181345) 14113
(0.0110299 0.00416854 0.00183569) 14122
(0.0115928 0.00417421 0.00184184) 14123
(0.0120993 0.00417869 0.00184469) 14124
(0.0125509 0.00417953 0.00184393) 14125
(0.0129747 0.00417861 0.00184054) 14125
(0.00471808 0.00395366 0.00201803) 14169
(0.00511058 0.00397143 0.00200942) 14170
(0.00549827 0.00397615 0.00201585) 14170
(0.0108576 0.00362058 0.00289159) 14361
(0.0114074 0.0036287 0.00289284) 14362
(0.0119701 0.00363901 0.0028936) 14363
(0.0125384 0.0036489 0.00289512) 14365
(0.0130621 0.0036538 0.00289504) 14366
(0.0135334 0.00365211 0.00289374) 14367
(0.013952 0.00364463 0.00289233) 14367
(0.014345 0.00363479 0.00289075) 14368
(0.00520976 0.00355809 0.00313189) 14410
(0.0109261 0.00358873 0.00319255) 14421
(0.0115152 0.00359999 0.00319579) 14423
(0.0121062 0.00361259 0.00319589) 14424
(0.0126632 0.00362124 0.0031963) 14425
(0.0131687 0.00362396 0.00319557) 14426
(0.0136467 0.00362315 0.0031954) 14427
(0.0140941 0.00361856 0.00319606) 14428
(0.0145344 0.00361257 0.00319822) 14429
(0.0150049 0.00360748 0.00319909) 14430
(0.00531131 0.00358142 0.00330019) 14410
(0.00531131 0.00358142 0.00330019) 14410
(0.00531131 0.00358142 0.00330019) 14410
(0.00549949 0.00366332 0.00338777) 14470
(0.00566824 0.00369103 0.00347482) 14471
(0.00595915 0.00370257 0.00352045) 14471
(0.00640751 0.00370016 0.00353278) 14472
(0.00695882 0.00368575 0.0035169) 14473
(0.00507986 0.00379351 0.0037193) 14530
(0.00507986 0.00379351 0.0037193) 14530
(0.00507986 0.00379351 0.0037193) 14530
(0.00530311 0.00381203 0.00375593) 14530
(0.00564951 0.00380862 0.00376627) 14531
(0.00605023 0.00379645 0.00376265) 14532
(0.00445559 0.00388997 0.00394381) 14588
(0.00476561 0.00394409 0.00394479) 14589
(0.00518602 0.00399846 0.00395302) 14590
(0.00573285 0.00401638 0.00394964) 14591
(0.00517986 0.00501575 0.00442219) 14830
(0.00559541 0.00501654 0.0044311) 14831
(0.00597052 0.0050107 0.0044439) 14831
(0.00637855 0.00500748 0.00445071) 14832
(0.00458087 0.00527812 0.0043753) 14889
(0.00504041 0.00529155 0.00438248) 14890
(0.00548964 0.00529259 0.00439086) 14890
(0.0058979 0.00528927 0.00440387) 14891
(0.00554578 0.00636616 0.0034155) 15191
(0.00483943 0.0064746 0.00290329) 13509
(0.00483943 0.0064746 0.00290329) 13509
(0.00483943 0.0064746 0.00290329) 13509
(0.00521244 0.00646092 0.00307511) 15250
(0.00565783 0.00644362 0.00312576) 15251
(0.00609156 0.00644005 0.00313683) 15252
(0.00654233 0.00644032 0.0031337) 15253
(0.00698844 0.00644266 0.00313096) 15253
(-0.000130639 0.00645352 0.00294912) 35709
(0.000111843 0.00646477 0.00293916) 13500
(0.00364595 0.00629087 0.00269303) 13567
(0.00403967 0.00633946 0.00263532) 13568
(0.00442159 0.00634815 0.00262294) 13568
(0.00106756 0.00441554 0.00174655) 14042
(0.00461923 0.00430787 0.00163363) 5709
(0.00461517 0.0043214 0.00162754) 5709
(0.00475897 0.00436704 0.00157675) 5709
(0.00488977 0.00449872 0.0015846) 5709
(0.00473965 0.00423477 0.00170689) 5649
(0.00390243 0.00420797 0.00173964) 14107
(0.00441149 0.00424516 0.00170254) 5648
(0.00499882 0.00416192 0.00174349) 5649
(0.00227864 0.00356271 0.00344711) 5344
(0.00502325 0.00357196 0.00320404) 14410
(0.0044509 0.00364997 0.0036156) 14528
(0.00284796 0.00362928 0.00358971) 14465
(0.00445732 0.00363371 0.00359062) 14468
(0.00518322 0.00361585 0.0034815) 14470
(0.00155287 0.00494835 0.00443857) 14823
(0.00222142 0.00493486 0.00443497) 14824
(0.00307235 0.00492976 0.00442206) 14826
(0.00404938 0.00493621 0.00434932) 14828
(-0.0002859 0.00645778 0.00305664) 35999
(0.00126918 0.00649505 0.00310368) 4562
(0.00419523 0.00612575 0.00274031) 16448
(0.00450309 0.0063009 0.00270374) 13569
(0.0219321 0.00304336 0.00216444) 523
(0.0213797 0.0070223 0.00385699) 23862
(0.0224358 0.00707602 0.00378638) 23864
(0.0223948 0.00692921 0.00360113) 2024
(0.013312 0.00645159 0.00414749) 6686
(0.013312 0.00645159 0.00414749) 6686
(0.013312 0.00645159 0.00414749) 6686
(0.0141721 0.00642004 0.00412434) 6688
(0.0141721 0.00642004 0.00412434) 6688
(0.0141721 0.00642004 0.00412434) 6688
(0.0148575 0.00640093 0.00411407) 6689
(0.0154338 0.0063906 0.00410802) 6690
(0.0159413 0.00638808 0.0041034) 6691
(0.0164164 0.00638801 0.00410113) 6692
(0.0168949 0.00638676 0.0040975) 6693
(0.0173988 0.00638315 0.00409215) 6694
(0.0179192 0.0063758 0.00408781) 6695
(0.0184251 0.00636787 0.00408554) 6696
(0.0188777 0.00636229 0.004087) 6697
(0.0127352 0.00609446 0.00439719) 9325
(0.0136077 0.00608298 0.00437089) 9327
(0.0143646 0.00607411 0.00435433) 9328
(0.0149978 0.00606691 0.00434516) 9329
(0.0222064 0.00326826 0.00331341) 5444
(0.0227442 0.00650745 0.0021299) 13425
(0.024078 0.00662056 0.00226071) 6108
(0.0249145 0.00664243 0.00222795) 6109
(0.0225711 0.00687341 0.00427091) 1905
(0.0206769 0.00661081 0.00424259) 6641
(0.0228067 0.00663142 0.00413667) 6705
(0.0244792 0.00665485 0.0041178) 1968
(0.0215208 0.00641849 0.00128202) 6823
(0.0225554 0.006366 0.00125946) 6825
(0.0220982 0.00358277 0.00455992) 7184
(0.0235201 0.00359032 0.00457453) 7187
(0.0222485 0.00342771 0.00166581) 9284
(0.0238193 0.00342957 0.00168294) 9287
(0.0207403 0.00606717 0.00477254) 12221
(0.0225103 0.00608512 0.00472004) 12225
(0.0206342 0.00577716 0.00501087) 12581
(0.0206342 0.00577716 0.00501087) 12581
(0.0206342 0.00577716 0.00501087) 12581
(0.0224217 0.0057612 0.00498871) 12584
(0.0224217 0.0057612 0.00498871) 12584
(0.0224217 0.0057612 0.00498871) 12584
(0.0238574 0.00578331 0.00497814) 12587
(0.0238574 0.00578331 0.00497814) 12587
(0.0238574 0.00578331 0.00497814) 12587
(0.0243834 0.00587219 0.00494311) 12588
(0.0206727 0.00434984 0.0049675) 9521
(0.0205741 0.00392139 0.00478941) 10541
(0.0222584 0.00396084 0.00481816) 9584
(0.0236098 0.00396914 0.00484394) 10547
(0.020692 0.00381424 0.00139148) 12761
(0.0231916 0.00382925 0.00142601) 12766
(0.0207869 0.0041845 0.00125813) 11501
(0.0232916 0.00414918 0.00126403) 11506
(0.0246799 0.00409578 0.00123325) 11509
(0.0225626 0.00447065 0.00114568) 9825
(0.022304 0.00481704 0.000999856) 11624
(0.0238227 0.00477447 0.000984579) 11627
(0.0219469 0.00565374 0.00103857) 12163
(0.0218137 0.00603255 0.00113015) 12463
(0.0231953 0.00603778 0.00112513) 12466
(0.0224083 0.00532978 0.000951195) 10124
(0.0239014 0.0053059 0.000948854) 10127
(0.0215904 0.00505773 0.000737973) 11923
(0.0225118 0.0050065 0.000766758) 11625
(0.0220169 0.00518856 0.00514785) 11444
(0.0232942 0.00519092 0.00514478) 11446
(0.0214523 0.00394605 0.0011088) 13002
(0.0228144 0.00391351 0.00109845) 13005
(0.0214006 0.0066741 0.00453282) 6582
(0.0229315 0.00332028 0.002834) 13305
(0.020801 0.0030675 0.00311141) 761
(0.0240435 0.00309609 0.00314501) 768
(0.0251115 0.00307138 0.00311774) 770
(0.0253856 0.00305228 0.00314889) 770
(0.0221994 0.00670764 0.00180851) 2444
(0.0221994 0.00670764 0.00180851) 2444
(0.0221994 0.00670764 0.00180851) 2444
(0.0240642 0.00669102 0.0018601) 2448
(0.0246833 0.00666659 0.00178678) 2449
(0.0219425 0.00624587 0.00169701) 13483
(0.023567 0.00632154 0.00176914) 13487
(0.00481988 0.0064394 0.00269711) 13569
(0.00481988 0.0064394 0.00269711) 13569
(0.00481988 0.0064394 0.00269711) 13569
(0.00510542 0.00645602 0.00280132) 13510
(0.00548916 0.00645457 0.00285243) 13510
(0.00596437 0.00644995 0.00287379) 13511
(0.00646439 0.00644616 0.0028819) 13512
(0.00456788 0.00630107 0.00247898) 13569
(0.00489134 0.00633716 0.0025007) 13569
(0.0113904 0.00621672 0.00235934) 13642
(0.0119352 0.00620987 0.00236396) 13643
(0.0124808 0.00620268 0.00236676) 13644
(0.0129911 0.00619962 0.00236649) 13645
(0.0134499 0.00620452 0.00236544) 13646
(0.0138792 0.00621457 0.00236405) 13647
(0.0143026 0.00622539 0.00236316) 13648
(0.0178067 0.00623708 0.00236016) 13655
(0.0183786 0.00623147 0.00236433) 13656
(0.0189247 0.00622609 0.00236921) 13657
(0.0194461 0.00621931 0.00237069) 13658
(0.0199773 0.00621016 0.00236885) 13659
(0.0205187 0.00619902 0.00236208) 13661
(0.0210303 0.00619037 0.00235193) 13662
(0.0215107 0.00618516 0.00234103) 13663
(0.0124779 0.00601549 0.002098) 13704
(0.0129457 0.00601463 0.00209473) 13705
(0.00511016 0.00582344 0.00187036) 13750
(0.00554562 0.00582526 0.00186055) 13751
(0.00597913 0.00582406 0.00185523) 13751
(0.00500021 0.00557684 0.00171103) 13810
(0.00541853 0.00557962 0.00170264) 13810
(0.00437867 0.00474837 0.00159484) 13988
(0.00476989 0.00472468 0.00159977) 13989
(0.0056293 0.00443915 0.00166692) 14051
(0.00600923 0.00441483 0.00167664) 14052
(0.00640693 0.00440313 0.00167876) 14052
(0.00682375 0.00439601 0.00167812) 14053
(0.0120244 0.0044049 0.00171559) 14064
(0.012482 0.00440571 0.00171664) 14064
(0.00539501 0.00422389 0.00175957) 14110
(0.00570689 0.00420145 0.00179831) 14111
(0.00607648 0.00417914 0.00181231) 14112
(0.00647606 0.00416779 0.001814) 14112
(0.0068924 0.00415932 0.00181356) 14113
(0.0110037 0.00416836 0.00183539) 14122
(0.0115691 0.00417399 0.00184164) 14123
(0.012078 0.00417854 0.00184459) 14124
(0.0125315 0.00417948 0.00184396) 14125
(0.0129552 0.0041786 0.00184061) 14125
(0.00469862 0.00395244 0.00201876) 14169
(0.00509105 0.00397027 0.00200968) 14170
(0.00547815 0.00397593 0.0020156) 14170
(0.0108338 0.00362039 0.00289158) 14361
(0.0113841 0.00362841 0.00289282) 14362
(0.0119455 0.00363854 0.00289352) 14363
(0.0125144 0.00364849 0.00289508) 14365
(0.0130402 0.00365363 0.00289507) 14366
(0.0135138 0.00365223 0.00289379) 14367
(0.0139343 0.00364496 0.00289239) 14367
(0.0143275 0.00363519 0.00289087) 14368
(0.00519045 0.0035574 0.00312889) 14410
(0.010899 0.00358832 0.00319255) 14421
(0.0114888 0.00359947 0.00319578) 14422
(0.0120804 0.00361206 0.00319592) 14424
(0.0126397 0.00362093 0.00319637) 14425
(0.0131466 0.00362384 0.00319567) 14426
(0.0136257 0.00362318 0.00319544) 14427
(0.0140743 0.00361875 0.00319609) 14428
(0.014514 0.00361278 0.0031982) 14429
(0.0149837 0.00360771 0.00319918) 14429
(0.00549189 0.00365897 0.00338386) 14470
(0.00565849 0.00368921 0.0034716) 14471
(0.00594202 0.00370153 0.00351867) 14471
(0.00638381 0.00370015 0.00353248) 14472
(0.00693247 0.00368639 0.00351781) 14473
(0.00507298 0.00379104 0.00371779) 14530
(0.00507298 0.00379104 0.00371779) 14530
(0.00507298 0.00379104 0.00371779) 14530
(0.00529023 0.00381101 0.00375469) 14530
(0.00563376 0.00380834 0.0037659) 14531
(0.00603088 0.00379653 0.00376266) 14532
(0.004442 0.00388935 0.00394379) 14588
(0.0047481 0.00394108 0.00394513) 14589
(0.00516178 0.00399613 0.00395261) 14590
(0.00570737 0.00401534 0.00394927) 14591
(0.00515797 0.0050154 0.00442227) 14830
(0.00557375 0.0050166 0.00443096) 14831
(0.00594793 0.00501096 0.0044438) 14831
(0.00635414 0.00500746 0.00445086) 14832
(0.00456101 0.00527705 0.00437513) 14889
(0.00501887 0.00529139 0.00438238) 14890
(0.00546665 0.00529279 0.00439069) 14890
(0.00587421 0.00528954 0.00440375) 14891
(0.00552279 0.00636662 0.00341542) 15191
(0.00482572 0.00647223 0.00289324) 13509
(0.00482572 0.00647223 0.00289324) 13509
(0.00482572 0.00647223 0.00289324) 13509
(0.00518946 0.00646233 0.0030704) 15250
(0.00563481 0.00644433 0.00312446) 15251
(0.00606872 0.00644027 0.00313672) 15252
(0.00651942 0.0064404 0.00313398) 15253
(0.00696636 0.00644258 0.0031312) 15253
(-0.000136883 0.00645296 0.00294878) 35709
(4.86251e-05 0.00646658 0.0029467) 13500
(0.00402558 0.00633483 0.00263653) 13568
(0.00440885 0.00634766 0.00262218) 13568
(0.000963836 0.00443021 0.00174286) 14041
(0.00470028 0.00430414 0.00162935) 5709
(0.00464942 0.00431962 0.0016256) 5709
(0.00475219 0.0043639 0.00157945) 5709
(0.00488178 0.0044915 0.00157729) 5709
(0.00477493 0.00423871 0.00170975) 5649
(0.00408416 0.00420997 0.00173612) 14108
(0.00436265 0.0042461 0.00170352) 5648
(0.00499071 0.00416275 0.00173722) 5649
(0.00229212 0.0035633 0.00344754) 5344
(0.00501582 0.00356324 0.00320093) 14410
(0.00467667 0.00365388 0.00360043) 14529
(0.00297018 0.00363381 0.00359039) 14465
(0.00437385 0.00363581 0.00359709) 14468
(0.00514507 0.0036189 0.00349) 14470
(0.00153284 0.00495276 0.00443891) 14823
(0.00220304 0.00493506 0.00443479) 14824
(0.0030404 0.00493115 0.0044229) 14826
(0.00402226 0.00493269 0.0043537) 14828
(-0.000280275 0.00645698 0.00305689) 35999
(0.000907684 0.00649316 0.00310787) 4561
(0.00414442 0.00610555 0.00276911) 16448
(0.00449515 0.00629167 0.00270393) 13568
(0.0218904 0.00304533 0.0021621) 523
(0.0213535 0.00702035 0.00386056) 23862
(0.0224161 0.00707156 0.00379134) 23864
(0.0223416 0.00692519 0.00360391) 2024
(0.0132782 0.00645321 0.0041489) 6686
(0.0132782 0.00645321 0.0041489) 6686
(0.0132782 0.00645321 0.0041489) 6686
(0.0141466 0.00642098 0.00412483) 6688
(0.0141466 0.00642098 0.00412483) 6688
(0.0141466 0.00642098 0.00412483) 6688
(0.0148369 0.00640155 0.00411407) 6689
(0.0154162 0.00639079 0.00410811) 6690
(0.0159254 0.00638806 0.00410345) 6691
(0.0164011 0.00638798 0.00410106) 6692
(0.0168789 0.0063868 0.00409748) 6693
(0.0173816 0.00638337 0.00409207) 6694
(0.017902 0.00637608 0.00408765) 6695
(0.0184092 0.00636805 0.00408533) 6696
(0.0188649 0.00636234 0.00408662) 6697
(0.0127059 0.00609491 0.00439829) 9325
(0.0135788 0.00608333 0.00437164) 9327
(0.0143406 0.00607443 0.0043546) 9328
(0.0149789 0.00606713 0.00434509) 9329
(0.0220944 0.0032646 0.00331277) 5444
(0.0226414 0.00650215 0.00211927) 13425
(0.024034 0.00661929 0.00226058) 6108
(0.0248952 0.00664124 0.00223052) 6109
(0.0225313 0.00687048 0.00427532) 1905
(0.0206385 0.00660905 0.00424861) 6641
(0.0227263 0.0066298 0.00413903) 6705
(0.0244519 0.00665163 0.00411809) 1968
(0.0214906 0.00641991 0.00128285) 6822
(0.0225382 0.00637052 0.00126383) 6825
(0.0220407 0.00358261 0.00455953) 7184
(0.0234919 0.00358919 0.00457172) 7186
(0.0221811 0.00342822 0.00166422) 9284
(0.0237889 0.00343178 0.00168198) 9287
(0.0206891 0.00606564 0.00477585) 12221
(0.0224514 0.00608398 0.0047204) 12224
(0.0205907 0.00577649 0.00500924) 12581
(0.0205907 0.00577649 0.00500924) 12581
(0.0205907 0.00577649 0.00500924) 12581
(0.0223583 0.00576063 0.00498917) 12584
(0.0223583 0.00576063 0.00498917) 12584
(0.0223583 0.00576063 0.00498917) 12584
(0.0238274 0.00578058 0.0049782) 12587
(0.0238274 0.00578058 0.0049782) 12587
(0.0238274 0.00578058 0.0049782) 12587
(0.024388 0.00586479 0.00494681) 12588
(0.0222056 0.00396015 0.00481656) 9584
(0.0235829 0.0039683 0.0048412) 10547
(0.020644 0.00381596 0.00139027) 12761
(0.0230989 0.00382806 0.00142662) 12766
(0.0207038 0.00417851 0.00125889) 11501
(0.0231974 0.00415083 0.0012647) 11506
(0.0246626 0.00409939 0.00123384) 11509
(0.022499 0.00447538 0.00114636) 9824
(0.0222419 0.00481943 0.00100064) 11624
(0.0237867 0.00477739 0.000986384) 11627
(0.0218927 0.0056554 0.00104026) 12163
(0.0217622 0.00603206 0.00113059) 12463
(0.0231663 0.00603926 0.0011278) 12466
(0.0223419 0.00533232 0.000951676) 10124
(0.0238734 0.00530778 0.000951346) 10127
(0.0215654 0.00505914 0.000737099) 11923
(0.0224947 0.00501118 0.000767404) 11624
(0.0219689 0.00518863 0.00514777) 11443
(0.0232663 0.00518871 0.00514401) 11446
(0.0214153 0.00394859 0.00110882) 13002
(0.0227883 0.00391824 0.00109794) 13005
(0.0213724 0.0066746 0.00453337) 6582
(0.0228255 0.00331937 0.00283047) 13305
(0.0207211 0.00307075 0.00310504) 761
(0.0239227 0.00309656 0.00314528) 767
(0.0250944 0.0030745 0.00311734) 770
(0.0253835 0.00305228 0.00314602) 770
(0.0221072 0.00670923 0.00180504) 2444
(0.0221072 0.00670923 0.00180504) 2444
(0.0221072 0.00670923 0.00180504) 2444
(0.024021 0.00669083 0.00186121) 2448
(0.0246835 0.00666953 0.00179262) 2449
(0.0217628 0.00624962 0.0016955) 13483
(0.023543 0.00632039 0.0017708) 13487
(0.0048046 0.00643858 0.00269106) 13569
(0.0048046 0.00643858 0.00269106) 13569
(0.0048046 0.00643858 0.00269106) 13569
(0.00508641 0.00645666 0.00279716) 13510
(0.00546599 0.00645521 0.00285047) 13510
(0.00593952 0.00645037 0.00287297) 13511
(0.00644077 0.00644634 0.00288177) 13512
(0.0045465 0.00629964 0.00247727) 13569
(0.0048718 0.00633647 0.00249963) 13569
(0.0113677 0.00621703 0.00235923) 13642
(0.0119122 0.00621025 0.00236384) 13643
(0.0124579 0.00620307 0.00236671) 13644
(0.0129701 0.00619973 0.00236652) 13645
(0.0134304 0.00620434 0.00236546) 13646
(0.0138605 0.00621425 0.00236408) 13647
(0.0142841 0.00622504 0.00236323) 13648
(0.0177809 0.00623742 0.00236008) 13655
(0.0183537 0.00623177 0.00236418) 13656
(0.0189015 0.00622644 0.00236919) 13657
(0.0194233 0.00621973 0.00237079) 13658
(0.0199534 0.00621076 0.00236911) 13659
(0.0204954 0.00619965 0.00236259) 13660
(0.0210083 0.00619086 0.00235251) 13662
(0.0214897 0.00618557 0.00234168) 13662
(0.0124569 0.00601567 0.00209806) 13704
(0.0129268 0.00601468 0.00209497) 13705
(0.00508865 0.00582313 0.00187055) 13750
(0.00552489 0.00582515 0.00186069) 13751
(0.00595779 0.00582408 0.00185532) 13751
(0.00497835 0.00557666 0.00171132) 13809
(0.00539793 0.00557938 0.00170282) 13810
(0.00436226 0.00474903 0.00159414) 13988
(0.00474944 0.00472564 0.00159926) 13989
(0.00560969 0.00444033 0.0016658) 14051
(0.00598954 0.00441555 0.00167635) 14051
(0.0063865 0.00440353 0.00167874) 14052
(0.00680304 0.00439634 0.0016782) 14053
(0.0120029 0.00440483 0.00171539) 14064
(0.0124625 0.0044057 0.00171659) 14064
(0.00538183 0.00422301 0.00175721) 14110
(0.0056892 0.00420219 0.00179705) 14111
(0.00605698 0.00417977 0.00181198) 14112
(0.00645543 0.00416817 0.001814) 14112
(0.00687185 0.00415968 0.00181366) 14113
(0.0109776 0.00416819 0.00183508) 14121
(0.0115453 0.00417376 0.00184145) 14123
(0.0120566 0.0041784 0.00184448) 14124
(0.0125119 0.00417943 0.00184399) 14125
(0.0129358 0.00417858 0.00184068) 14125
(0.00467898 0.00395118 0.00201952) 14169
(0.00507145 0.00396911 0.00200998) 14170
(0.00545809 0.00397566 0.00201535) 14170
(0.0108101 0.0036202 0.00289156) 14361
(0.0113608 0.00362814 0.00289281) 14362
(0.0119208 0.00363808 0.00289344) 14363
(0.0124904 0.00364807 0.00289503) 14364
(0.0130182 0.00365346 0.0028951) 14366
(0.0134942 0.00365236 0.00289385) 14366
(0.0139166 0.0036453 0.00289245) 14367
(0.01431 0.00363559 0.002891) 14368
(0.00517122 0.00355672 0.00312586) 14410
(0.0108719 0.00358792 0.00319256) 14421
(0.0114623 0.00359895 0.00319576) 14422
(0.0120546 0.00361153 0.00319596) 14424
(0.012616 0.00362062 0.00319644) 14425
(0.0131245 0.00362371 0.00319578) 14426
(0.0136047 0.0036232 0.00319547) 14427
(0.0140545 0.00361893 0.00319613) 14428
(0.0144936 0.00361299 0.00319816) 14428
(0.0149624 0.00360795 0.00319928) 14429
(0.00548443 0.00365445 0.00338005) 14470
(0.00564903 0.00368736 0.00346832) 14471
(0.00592521 0.00370041 0.00351687) 14471
(0.00636036 0.0037001 0.00353208) 14472
(0.00690615 0.003687 0.00351867) 14473
(0.00506659 0.00378845 0.0037163) 14530
(0.00506659 0.00378845 0.0037163) 14530
(0.00506659 0.00378845 0.0037163) 14530
(0.00527752 0.00380995 0.00375342) 14530
(0.00561815 0.00380804 0.0037655) 14531
(0.0060118 0.00379659 0.00376265) 14532
(0.00442838 0.00388883 0.00394372) 14588
(0.00473086 0.00393818 0.00394552) 14589
(0.00513785 0.00399378 0.00395222) 14590
(0.00568175 0.00401423 0.00394893) 14591
(0.005136 0.00501504 0.00442237) 14830
(0.00555206 0.00501664 0.00443084) 14831
(0.00592541 0.00501124 0.0044437) 14831
(0.00632975 0.00500746 0.00445101) 14832
(0.00454107 0.00527597 0.00437495) 14889
(0.00499744 0.00529119 0.00438228) 14889
(0.00544375 0.00529299 0.00439052) 14890
(0.00585056 0.00528982 0.00440362) 14891
(0.00549957 0.00636714 0.00341532) 15190
(0.00481206 0.00646962 0.00288336) 13509
(0.00481206 0.00646962 0.00288336) 13509
(0.00481206 0.00646962 0.00288336) 13509
(0.00516655 0.00646372 0.00306545) 15250
(0.00561174 0.00644506 0.00312308) 15251
(0.00604588 0.00644052 0.00313657) 15252
(0.00649647 0.00644048 0.00313427) 15252
(0.00694427 0.00644252 0.00313143) 15253
(-0.000142189 0.00645236 0.00294847) 35709
(1.14112e-05 0.00646751 0.00295166) 13500
(0.00180613 0.00644553 0.00285624) 13503
(0.00401844 0.00632957 0.00263601) 13568
(0.00439625 0.00634734 0.00262151) 13568
(0.00086014 0.00443949 0.00173699) 14041
(0.0047745 0.00430048 0.00162618) 5709
(0.00468195 0.00431802 0.00162372) 5709
(0.00474353 0.00436032 0.0015825) 5709
(0.00487202 0.00448402 0.0015715) 5709
(0.00481194 0.0042404 0.00171199) 5649
(0.00420043 0.00421112 0.00173256) 5648
(0.00431219 0.00424689 0.00170454) 5648
(0.00498071 0.00416327 0.00173235) 5649
(0.00233327 0.00356454 0.00344799) 5344
(0.00500804 0.00355422 0.00319809) 14410
(0.00477487 0.00366701 0.00358991) 14469
(0.00227693 0.00361243 0.00360228) 5344
(0.00309244 0.00363796 0.00359153) 14466
(0.0042103 0.00364203 0.0036044) 14528
(0.00511455 0.00362018 0.00349862) 14470
(0.00151375 0.00495741 0.00443919) 14823
(0.0021842 0.00493528 0.00443465) 14824
(0.00300933 0.00493241 0.00442362) 14826
(0.00399452 0.00492975 0.00435815) 14827
(-0.000274815 0.00645613 0.00305741) 35999
(0.000591481 0.00648973 0.00310855) 4561
(0.00409975 0.0060896 0.00279911) 16448
(0.00448831 0.00628105 0.00270511) 13568
(0.0218477 0.00304717 0.00215985) 523
(0.0213275 0.00701851 0.00386405) 23862
(0.0223956 0.00706728 0.00379619) 23864
(0.0222878 0.00692126 0.00360678) 2024
(0.0132441 0.00645488 0.00415037) 6686
(0.0132441 0.00645488 0.00415037) 6686
(0.0132441 0.00645488 0.00415037) 6686
(0.0141209 0.00642197 0.00412533) 6688
(0.0141209 0.00642197 0.00412533) 6688
(0.0141209 0.00642197 0.00412533) 6688
(0.0148162 0.00640219 0.00411409) 6689
(0.0153986 0.00639101 0.00410821) 6690
(0.0159094 0.00638805 0.00410351) 6691
(0.0163858 0.00638797 0.00410099) 6692
(0.016863 0.00638686 0.00409743) 6693
(0.0173644 0.00638361 0.00409198) 6694
(0.0178848 0.00637637 0.00408751) 6695
(0.0183932 0.00636824 0.00408514) 6696
(0.018852 0.00636241 0.00408626) 6697
(0.012677 0.00609538 0.00439937) 9325
(0.0135499 0.0060837 0.0043724) 9327
(0.0143165 0.00607477 0.00435489) 9328
(0.0149598 0.00606737 0.00434503) 9329
(0.0219699 0.00325998 0.00331203) 5443
(0.0225297 0.00649882 0.0021095) 13425
(0.0239904 0.00661795 0.00226022) 6107
(0.024875 0.00664005 0.00223308) 6109
(0.0224915 0.00686773 0.00427957) 1904
(0.0226452 0.0066282 0.0041416) 6705
(0.0244222 0.00664857 0.00411832) 1968
(0.0214605 0.00642132 0.00128363) 6822
(0.0225202 0.00637485 0.00126799) 6825
(0.0219829 0.00358241 0.00455918) 7183
(0.0234622 0.00358819 0.00456905) 7186
(0.0221133 0.0034286 0.00166248) 9284
(0.0237559 0.00343382 0.00168101) 9287
(0.020646 0.00606359 0.0047794) 12221
(0.0223915 0.00608289 0.00472085) 12224
(0.0222941 0.00576019 0.00498969) 12584
(0.0222941 0.00576019 0.00498969) 12584
(0.0222941 0.00576019 0.00498969) 12584
(0.023796 0.00577797 0.00497824) 12587
(0.023796 0.00577797 0.00497824) 12587
(0.023796 0.00577797 0.00497824) 12587
(0.0243913 0.00585772 0.00495005) 12588
(0.0219311 0.00439262 0.00499724) 9523
(0.0221524 0.00395938 0.00481497) 9584
(0.0235546 0.00396757 0.00483857) 10547
(0.0205982 0.00381768 0.00138923) 12761
(0.0230062 0.003827 0.00142716) 12766
(0.0206327 0.00417444 0.00126012) 11501
(0.0231036 0.0041527 0.00126528) 11506
(0.0246447 0.00410287 0.00123462) 11509
(0.0224352 0.00448039 0.00114689) 9824
(0.0221786 0.00482184 0.00100136) 11624
(0.023749 0.00478025 0.000988168) 11627
(0.0218381 0.00565715 0.00104191) 12163
(0.0217105 0.00603156 0.00113098) 12463
(0.0231361 0.00604064 0.00113038) 12466
(0.0222742 0.00533504 0.000952102) 10124
(0.0238428 0.00530952 0.00095373) 10127
(0.0215399 0.00506044 0.000736213) 11923
(0.0224773 0.0050157 0.000767983) 11924
(0.0219208 0.00518871 0.00514774) 11443
(0.0232374 0.00518669 0.00514327) 11446
(0.0213792 0.0039513 0.00110879) 13002
(0.0227606 0.0039226 0.00109759) 13005
(0.0213444 0.00667522 0.00453384) 6582
(0.0227076 0.00331774 0.00282673) 13305
(0.0206439 0.00307443 0.00309844) 761
(0.0237974 0.00309675 0.00314542) 767
(0.0250766 0.00307766 0.00311714) 770
(0.0253803 0.00305244 0.00314324) 770
(0.0220092 0.00671102 0.00180097) 2444
(0.0220092 0.00671102 0.00180097) 2444
(0.0220092 0.00671102 0.00180097) 2444
(0.0239751 0.00669071 0.00186207) 2447
(0.0246824 0.00667212 0.0017983) 2449
(0.0215772 0.00625766 0.00169685) 13483
(0.0235193 0.00631917 0.00177225) 13487
(0.00478938 0.00643765 0.00268509) 13569
(0.00478938 0.00643765 0.00268509) 13569
(0.00478938 0.00643765 0.00268509) 13569
(0.0050676 0.00645727 0.00279295) 13510
(0.00544285 0.00645587 0.00284837) 13510
(0.00591462 0.00645082 0.00287212) 13511
(0.00641708 0.00644654 0.00288161) 13512
(0.00452489 0.00629818 0.00247558) 13569
(0.00485225 0.00633577 0.00249858) 13569
(0.0113449 0.00621734 0.00235911) 13642
(0.0118892 0.00621063 0.00236371) 13643
(0.012435 0.00620346 0.00236666) 13644
(0.0129491 0.00619986 0.00236655) 13645
(0.0134109 0.00620417 0.00236547) 13646
(0.0138416 0.00621394 0.00236412) 13647
(0.0142657 0.0062247 0.0023633) 13648
(0.0177551 0.00623776 0.00236) 13655
(0.0183287 0.00623209 0.00236402) 13656
(0.0188782 0.00622677 0.00236914) 13657
(0.0194005 0.00622018 0.00237092) 13658
(0.0199296 0.00621137 0.00236939) 13659
(0.020472 0.00620026 0.00236306) 13660
(0.0209862 0.00619135 0.00235308) 13661
(0.0214687 0.00618597 0.00234231) 13662
(0.0124357 0.00601585 0.00209811) 13704
(0.0129078 0.00601473 0.0020952) 13705
(0.0133316 0.00601727 0.00208942) 13706
(0.00506709 0.0058228 0.00187074) 13750
(0.00550423 0.00582503 0.00186084) 13751
(0.00593656 0.0058241 0.00185544) 13751
(0.00495643 0.00557649 0.00171163) 13809
(0.00537735 0.00557916 0.001703) 13810
(0.00434616 0.00474961 0.00159347) 13988
(0.00472922 0.00472655 0.00159874) 13989
(0.00559016 0.00444151 0.00166462) 14051
(0.00596989 0.00441631 0.00167603) 14051
(0.00636615 0.00440392 0.00167872) 14052
(0.00678237 0.00439668 0.00167828) 14053
(0.0119812 0.00440477 0.00171518) 14063
(0.0124429 0.0044057 0.00171654) 14064
(0.00536902 0.00422188 0.00175475) 14110
(0.00567168 0.00420288 0.00179575) 14111
(0.00603757 0.0041804 0.00181163) 14112
(0.00643488 0.00416857 0.001814) 14112
(0.00685131 0.00416005 0.00181377) 14113
(0.0109513 0.00416803 0.00183477) 14121
(0.0115215 0.00417354 0.00184125) 14123
(0.012035 0.00417825 0.00184436) 14124
(0.0124923 0.00417939 0.00184401) 14124
(0.0129163 0.00417857 0.00184075) 14125
(0.00465916 0.00394989 0.00202031) 14169
(0.00505177 0.00396796 0.00201033) 14170
(0.00543808 0.00397534 0.0020151) 14170
(0.0107863 0.00362003 0.00289155) 14361
(0.0113374 0.00362788 0.00289278) 14362
(0.0118963 0.00363764 0.00289338) 14363
(0.0124662 0.00364765 0.00289497) 14364
(0.0129961 0.00365327 0.00289513) 14365
(0.0134745 0.00365247 0.0028939) 14366
(0.0138989 0.00364563 0.0028925) 14367
(0.0142926 0.003636 0.00289112) 14368
(0.00515211 0.00355603 0.00312281) 14410
(0.0108447 0.00358753 0.00319258) 14421
(0.0114358 0.00359844 0.00319573) 14422
(0.0120286 0.003611 0.003196) 14424
(0.0125923 0.00362029 0.00319651) 14425
(0.0131023 0.00362359 0.00319588) 14426
(0.0135835 0.00362321 0.0031955) 14427
(0.0140346 0.00361912 0.00319618) 14428
(0.0144732 0.00361319 0.00319809) 14428
(0.0149411 0.00360819 0.00319937) 14429
(0.00547709 0.00364982 0.00337632) 14470
(0.00563977 0.00368546 0.003465) 14471
(0.00590868 0.00369924 0.00351504) 14471
(0.00633733 0.0037 0.00353164) 14472
(0.00687982 0.00368756 0.00351948) 14473
(0.00506027 0.00378573 0.00371484) 14530
(0.00506027 0.00378573 0.00371484) 14530
(0.00506027 0.00378573 0.00371484) 14530
(0.005265 0.00380885 0.00375214) 14530
(0.00560263 0.00380772 0.00376507) 14531
(0.00599295 0.00379663 0.00376262) 14531
(0.00441485 0.00388842 0.00394357) 14588
(0.0047139 0.00393538 0.00394596) 14589
(0.0051142 0.00399142 0.00395185) 14590
(0.00565598 0.00401306 0.00394862) 14591
(0.00438549 0.0047156 0.00437196) 14768
(0.00511395 0.00501464 0.0044225) 14830
(0.00553032 0.00501666 0.00443072) 14831
(0.00590296 0.00501151 0.00444359) 14831
(0.00630542 0.00500749 0.00445115) 14832
(0.00452103 0.00527486 0.00437476) 14889
(0.00497611 0.00529097 0.00438217) 14889
(0.00542094 0.00529317 0.00439035) 14890
(0.00582694 0.00529011 0.00440348) 14891
(0.00547609 0.00636771 0.00341518) 15190
(0.00479885 0.00646643 0.00287371) 13509
(0.00479885 0.00646643 0.00287371) 13509
(0.00479885 0.00646643 0.00287371) 13509
(0.00514374 0.00646509 0.00306024) 15250
(0.00558861 0.00644583 0.00312163) 15251
(0.00602303 0.00644079 0.00313636) 15252
(0.00647348 0.00644058 0.00313455) 15252
(0.00692216 0.00644247 0.00313167) 15253
(-0.00014837 0.0064518 0.00294808) 35709
(-9.36904e-06 0.00646778 0.00295462) 35709
(0.00167415 0.00644931 0.00285734) 13503
(0.00401138 0.00632412 0.00263615) 13568
(0.00438901 0.00634735 0.00261984) 13568
(0.000763001 0.00444436 0.0017302) 14041
(0.0048263 0.00429831 0.00162623) 5709
(0.00471139 0.00431664 0.00162204) 5709
(0.00473313 0.00435662 0.00158569) 5709
(0.00486653 0.00447681 0.0015668) 5709
(0.00482588 0.00424111 0.00171174) 5649
(0.00426642 0.00421324 0.0017293) 5648
(0.00429788 0.00424643 0.00170515) 5648
(0.00496871 0.00416596 0.00172673) 5649
(0.00238859 0.00356633 0.00344832) 5344
(0.00500077 0.0035438 0.00319539) 14410
(0.00481503 0.00367894 0.00358303) 14469
(0.00239205 0.00361551 0.0035995) 5344
(0.00314232 0.00363927 0.00359153) 14466
(0.00406057 0.00364713 0.00360776) 14528
(0.00508126 0.00362273 0.00350687) 14470
(0.00149978 0.00496323 0.00443928) 14822
(0.0021661 0.00493555 0.00443449) 14824
(0.00297927 0.00493355 0.0044242) 14825
(0.00396641 0.00492732 0.00436258) 14827
(-0.000265596 0.00645531 0.00305791) 35999
(0.00405051 0.00607694 0.00282866) 16448
(0.00448227 0.00626909 0.00270746) 13568
(0.0218041 0.0030489 0.00215767) 523
(0.0213017 0.00701678 0.00386743) 23862
(0.0223745 0.00706319 0.00380092) 23864
(0.0222333 0.00691745 0.00360974) 2024
(0.0236953 0.00699642 0.00356773) 2027
(0.0132095 0.00645661 0.00415192) 6686
(0.0132095 0.00645661 0.00415192) 6686
(0.0132095 0.00645661 0.00415192) 6686
(0.014095 0.006423 0.00412585) 6688
(0.014095 0.006423 0.00412585) 6688
(0.014095 0.006423 0.00412585) 6688
(0.0147954 0.00640285 0.00411412) 6689
(0.0153808 0.00639124 0.00410831) 6690
(0.0158934 0.00638806 0.00410357) 6691
(0.0163704 0.00638797 0.00410092) 6692
(0.016847 0.00638693 0.00409738) 6693
(0.0173473 0.00638386 0.00409189) 6694
(0.0178675 0.00637667 0.00408738) 6695
(0.0183771 0.00636845 0.00408497) 6696
(0.0188388 0.0063625 0.00408591) 6697
(0.0126486 0.00609588 0.00440045) 9325
(0.0135206 0.0060841 0.0043732) 9327
(0.0142922 0.00607513 0.00435519) 9328
(0.0149405 0.00606763 0.00434498) 9329
(0.0218321 0.00325416 0.0033111) 823
(0.022407 0.00649846 0.00210172) 13424
(0.0239472 0.00661652 0.00225961) 6107
(0.0248538 0.00663887 0.00223564) 6109
(0.022452 0.00686518 0.00428367) 1904
(0.0225633 0.00662665 0.00414437) 6705
(0.0243898 0.00664567 0.00411848) 1968
(0.0214306 0.00642269 0.00128436) 6822
(0.0225015 0.00637901 0.00127196) 6825
(0.0219251 0.00358219 0.00455884) 7183
(0.0234311 0.00358731 0.0045665) 7186
(0.0220448 0.0034289 0.00166054) 9284
(0.0237209 0.00343588 0.00167989) 9287
(0.0206088 0.00606101 0.00478329) 12221
(0.0223306 0.00608186 0.00472142) 12224
(0.0222294 0.00575989 0.00499027) 12584
(0.0222294 0.00575989 0.00499027) 12584
(0.0222294 0.00575989 0.00499027) 12584
(0.0237632 0.00577549 0.00497825) 12587
(0.0237632 0.00577549 0.00497825) 12587
(0.0237632 0.00577549 0.00497825) 12587
(0.0243928 0.00585102 0.0049529) 12588
(0.0218957 0.00439085 0.00499546) 9523
(0.0220989 0.00395851 0.00481339) 9584
(0.0235251 0.00396696 0.00483605) 10547
(0.0205544 0.00381954 0.00138828) 12761
(0.0229144 0.00382603 0.00142754) 12765
(0.0205759 0.00417281 0.00126143) 11501
(0.0230104 0.00415482 0.00126583) 11506
(0.0246266 0.00410575 0.00123576) 11509
(0.0223711 0.00448567 0.00114728) 9824
(0.0221144 0.00482425 0.001002) 11624
(0.0237097 0.00478304 0.00098993) 11627
(0.0217834 0.00565904 0.00104354) 12163
(0.0216587 0.00603105 0.00113135) 12463
(0.0231048 0.00604191 0.00113285) 12466
(0.0222053 0.00533795 0.000952466) 10124
(0.0238094 0.00531114 0.000956009) 10127
(0.0215139 0.00506162 0.000735325) 11923
(0.0224595 0.00502007 0.000768504) 11924
(0.0218724 0.0051888 0.00514776) 11443
(0.0232075 0.00518488 0.00514256) 11446
(0.0213442 0.00395426 0.0011087) 13002
(0.0227312 0.00392669 0.00109743) 13005
(0.0213164 0.00667595 0.00453422) 6582
(0.0225752 0.00331523 0.00282271) 13305
(0.0205694 0.00307859 0.00309154) 761
(0.023671 0.00309665 0.00314543) 767
(0.0250583 0.00308084 0.0031171) 770
(0.0253763 0.00305279 0.00314054) 770
(0.02191 0.00671317 0.00179679) 2443
(0.02191 0.00671317 0.00179679) 2443
(0.02191 0.00671317 0.00179679) 2443
(0.023927 0.00669066 0.00186275) 2447
(0.0246798 0.00667438 0.00180382) 2449
(0.0213962 0.00626894 0.00170026) 13482
(0.0234961 0.00631787 0.00177348) 13486
(0.0047741 0.00643662 0.00267919) 13569
(0.0047741 0.00643662 0.00267919) 13569
(0.0047741 0.00643662 0.00267919) 13569
(0.005049 0.00645785 0.00278869) 13510
(0.00541976 0.00645656 0.00284618) 13510
(0.00588965 0.00645129 0.00287122) 13511
(0.00639332 0.00644675 0.00288142) 13512
(0.00450307 0.0062967 0.00247392) 13569
(0.00483271 0.00633506 0.00249753) 13569
(0.0113221 0.00621765 0.002359) 13642
(0.0118662 0.00621102 0.00236358) 13643
(0.012412 0.00620387 0.0023666) 13644
(0.0129281 0.00620001 0.00236659) 13645
(0.0133914 0.00620401 0.00236548) 13646
(0.0138227 0.00621364 0.00236414) 13647
(0.0142472 0.00622437 0.00236336) 13648
(0.0177293 0.00623811 0.00235993) 13655
(0.0183035 0.00623242 0.00236387) 13656
(0.0188549 0.0062271 0.00236906) 13657
(0.0193777 0.00622063 0.00237105) 13658
(0.0199058 0.00621199 0.00236967) 13659
(0.0204486 0.00620086 0.00236351) 13660
(0.0209641 0.00619185 0.00235363) 13661
(0.0214477 0.00618639 0.00234294) 13662
(0.0124145 0.00601605 0.00209815) 13704
(0.0128888 0.00601479 0.00209544) 13705
(0.0133134 0.00601714 0.00208958) 13706
(0.00504545 0.00582246 0.00187093) 13750
(0.00548361 0.00582488 0.00186098) 13750
(0.00591547 0.00582416 0.00185559) 13751
(0.00493444 0.00557633 0.00171195) 13809
(0.00535683 0.00557897 0.00170321) 13810
(0.00433034 0.00475014 0.00159284) 13988
(0.0047092 0.00472743 0.00159821) 13989
(0.00557071 0.00444268 0.00166338) 14051
(0.00595027 0.00441708 0.00167569) 14051
(0.00634588 0.00440434 0.00167869) 14052
(0.00676175 0.00439699 0.00167838) 14053
(0.0119595 0.0044047 0.00171497) 14063
(0.0124232 0.00440569 0.00171648) 14064
(0.00535653 0.00422052 0.00175222) 14110
(0.00565435 0.00420352 0.0017944) 14111
(0.00601826 0.00418103 0.00181126) 14112
(0.00641443 0.00416896 0.001814) 14112
(0.00683078 0.00416046 0.00181386) 14113
(0.010925 0.0041679 0.00183444) 14121
(0.0114975 0.00417333 0.00184104) 14122
(0.0120134 0.00417811 0.00184424) 14124
(0.0124727 0.00417934 0.00184403) 14124
(0.0128969 0.00417856 0.00184082) 14125
(0.00463914 0.00394858 0.00202115) 14169
(0.00503206 0.00396681 0.0020107) 14170
(0.0054181 0.00397499 0.00201486) 14170
(0.0107624 0.00361987 0.00289153) 14361
(0.0113141 0.00362763 0.00289275) 14362
(0.0118719 0.0036372 0.00289333) 14363
(0.012442 0.00364723 0.00289491) 14364
(0.0129739 0.00365308 0.00289515) 14365
(0.0134546 0.00365257 0.00289395) 14366
(0.013881 0.00364596 0.00289255) 14367
(0.0142752 0.00363641 0.00289124) 14368
(0.00513314 0.00355534 0.00311972) 14410
(0.0108175 0.00358715 0.00319261) 14421
(0.0114092 0.00359794 0.00319567) 14422
(0.0120026 0.00361048 0.00319609) 14424
(0.0125685 0.00361996 0.00319655) 14425
(0.0130801 0.00362346 0.00319598) 14426
(0.0135624 0.00362322 0.00319553) 14427
(0.0140147 0.0036193 0.00319623) 14428
(0.0144529 0.00361339 0.00319803) 14428
(0.0149197 0.00360843 0.00319947) 14429
(0.00546976 0.00364515 0.00337267) 14470
(0.00563081 0.00368348 0.00346166) 14471
(0.00589234 0.00369806 0.00351315) 14471
(0.00631434 0.00369988 0.00353109) 14472
(0.00685346 0.00368808 0.00352023) 14473
(0.00505412 0.00378287 0.00371342) 14530
(0.00505412 0.00378287 0.00371342) 14530
(0.00505412 0.00378287 0.00371342) 14530
(0.0052527 0.00380771 0.00375084) 14530
(0.00558712 0.00380736 0.00376461) 14531
(0.00597436 0.00379666 0.00376257) 14531
(0.0044013 0.00388808 0.00394334) 14588
(0.00469718 0.00393271 0.00394645) 14589
(0.00509087 0.00398903 0.0039515) 14590
(0.00563005 0.00401184 0.00394835) 14591
(0.00435949 0.0047151 0.00437219) 14768
(0.00509181 0.00501422 0.00442264) 14830
(0.00550854 0.00501667 0.00443061) 14831
(0.00588059 0.0050118 0.00444347) 14831
(0.00628115 0.00500755 0.00445128) 14832
(0.00450087 0.00527374 0.00437455) 14889
(0.00495487 0.00529071 0.00438206) 14889
(0.00539822 0.00529333 0.00439018) 14890
(0.00580336 0.00529043 0.00440332) 14891
(0.00545237 0.00636834 0.003415) 15190
(0.00478618 0.00646268 0.00286416) 13509
(0.00478618 0.00646268 0.00286416) 13509
(0.00478618 0.00646268 0.00286416) 13509
(0.00512102 0.00646641 0.00305478) 15250
(0.00556539 0.00644664 0.00312008) 15251
(0.00600016 0.00644107 0.0031361) 15252
(0.00645046 0.00644068 0.00313483) 15252
(0.00690003 0.00644244 0.0031319) 15253
(-0.000155003 0.00645126 0.00294771) 35709
(-2.44276e-05 0.00646765 0.00295606) 35709
(0.00154234 0.00645346 0.00285861) 13503
(0.00399976 0.00631856 0.00263883) 13567
(0.00437635 0.00634678 0.00261911) 13568
(0.000668824 0.00444647 0.00172281) 14041
(0.0048643 0.00429746 0.00162845) 5709
(0.00473337 0.00431598 0.00162078) 5709
(0.00471884 0.00435252 0.00158968) 5709
(0.00486392 0.00446999 0.00156302) 5709
(0.00484005 0.00424128 0.00171084) 5649
(0.00432026 0.00421573 0.00172613) 5648
(0.0042467 0.00424686 0.00170632) 5648
(0.00495604 0.00416798 0.00172308) 5649
(0.0010896 0.00358016 0.00350336) 5342
(0.00252574 0.00357187 0.00344952) 5345
(0.00499326 0.00353306 0.00319304) 14409
(0.00270631 0.00362632 0.00359571) 14465
(0.0032517 0.00364283 0.00359396) 14466
(0.00404771 0.00364952 0.00361097) 14528
(0.00504893 0.00362837 0.00351448) 14470
(0.00149761 0.00496928 0.00443882) 14822
(0.00214747 0.00493586 0.00443439) 14824
(0.00294984 0.00493459 0.00442472) 14825
(0.00393852 0.00492534 0.00436687) 14827
(-0.000249712 0.0064544 0.0030586) 35999
(0.00403563 0.00607555 0.00283472) 16448
(0.00447531 0.0062576 0.00270999) 13568
(0.0217598 0.00305051 0.00215557) 523
(0.0212762 0.00701515 0.00387072) 23862
(0.0223528 0.00705929 0.00380553) 23864
(0.0221781 0.00691377 0.00361277) 2024
(0.0236644 0.00699267 0.00356995) 2027
(0.0131745 0.0064584 0.00415354) 6686
(0.0131745 0.0064584 0.00415354) 6686
(0.0131745 0.0064584 0.00415354) 6686
(0.0140688 0.00642407 0.0041264) 6688
(0.0140688 0.00642407 0.0041264) 6688
(0.0140688 0.00642407 0.0041264) 6688
(0.0147745 0.00640352 0.00411417) 6689
(0.0153629 0.00639151 0.00410842) 6690
(0.0158773 0.00638809 0.00410364) 6691
(0.016355 0.00638798 0.00410087) 6692
(0.0168312 0.00638701 0.00409731) 6693
(0.0173302 0.0063841 0.0040918) 6694
(0.0178502 0.00637698 0.00408726) 6695
(0.0183608 0.00636868 0.00408481) 6696
(0.0188254 0.00636262 0.00408557) 6697
(0.0126205 0.0060964 0.00440152) 9325
(0.013491 0.00608454 0.00437402) 9326
(0.0142676 0.00607552 0.00435551) 9328
(0.0149209 0.00606791 0.00434495) 9329
(0.0216836 0.00324708 0.00330998) 823
(0.0222729 0.00650199 0.00209655) 13424
(0.0239041 0.00661502 0.00225873) 6107
(0.0248315 0.00663767 0.00223813) 6109
(0.0224129 0.00686282 0.00428761) 1904
(0.0235112 0.00693222 0.00418537) 1907
(0.0224804 0.00662516 0.00414736) 6704
(0.0243546 0.00664292 0.00411866) 1968
(0.0214008 0.00642409 0.00128506) 6822
(0.0224821 0.00638302 0.00127575) 6824
(0.0218678 0.003582 0.00455854) 7183
(0.0233983 0.00358655 0.00456409) 7186
(0.0241075 0.00363928 0.00462636) 7188
(0.0219757 0.00342909 0.00165843) 9283
(0.023684 0.00343789 0.00167869) 9287
(0.0222685 0.00608091 0.00472211) 12224
(0.0237967 0.00610085 0.00471212) 12227
(0.0221644 0.00575971 0.0049909) 12584
(0.0221644 0.00575971 0.0049909) 12584
(0.0221644 0.00575971 0.0049909) 12584
(0.023729 0.00577311 0.00497824) 12587
(0.023729 0.00577311 0.00497824) 12587
(0.023729 0.00577311 0.00497824) 12587
(0.0243929 0.00584465 0.0049554) 12588
(0.0218598 0.00438907 0.00499372) 9523
(0.0220449 0.00395756 0.00481187) 9584
(0.0234941 0.00396641 0.00483361) 10546
(0.0205125 0.00382161 0.00138752) 12761
(0.0228237 0.00382512 0.0014278) 12765
(0.0245696 0.00381437 0.00141114) 12769
(0.02053 0.00417311 0.00126255) 11501
(0.0229179 0.00415724 0.0012663) 11505
(0.024608 0.00410822 0.0012372) 11509
(0.0223065 0.00449119 0.00114752) 9824
(0.0220493 0.00482666 0.00100255) 11624
(0.0236687 0.00478577 0.000991665) 11627
(0.0217287 0.00566106 0.00104516) 12163
(0.0216072 0.00603057 0.00113172) 12463
(0.0230722 0.00604308 0.00113522) 12466
(0.0221351 0.00534102 0.000952758) 10124
(0.0237735 0.00531264 0.000958178) 10127
(0.0214875 0.00506267 0.000734444) 11922
(0.0224412 0.0050243 0.00076897) 11924
(0.021824 0.00518888 0.00514781) 11443
(0.0231765 0.00518327 0.00514189) 11446
(0.0213103 0.00395731 0.0011086) 13002
(0.0227003 0.0039306 0.0010974) 13005
(0.0224317 0.00331184 0.0028184) 13304
(0.0204978 0.00308329 0.00308428) 760
(0.0235464 0.00309643 0.00314538) 767
(0.0250392 0.00308404 0.00311715) 770
(0.0253712 0.00305339 0.00313801) 770
(0.0218172 0.00671566 0.00179314) 2443
(0.0218172 0.00671566 0.00179314) 2443
(0.0218172 0.00671566 0.00179314) 2443
(0.0238764 0.0066907 0.00186319) 2447
(0.0246761 0.00667638 0.00180924) 2449
(0.0212154 0.00628449 0.0017062) 13482
(0.0234728 0.00631654 0.00177451) 13486
(0.00475887 0.00643549 0.00267338) 13569
(0.00475887 0.00643549 0.00267338) 13569
(0.00475887 0.00643549 0.00267338) 13569
(0.0050306 0.00645839 0.00278436) 13510
(0.00539673 0.00645727 0.0028439) 13510
(0.00586461 0.00645179 0.00287028) 13511
(0.00636947 0.00644698 0.00288119) 13512
(0.004481 0.00629519 0.0024723) 13568
(0.00481316 0.00633435 0.00249649) 13569
(0.0112993 0.00621796 0.00235887) 13642
(0.0118433 0.00621141 0.00236346) 13643
(0.0123889 0.00620428 0.00236653) 13644
(0.0129069 0.00620017 0.00236663) 13645
(0.0133718 0.00620387 0.00236548) 13646
(0.0138039 0.00621334 0.00236417) 13647
(0.0142287 0.00622405 0.00236342) 13648
(0.0177035 0.00623846 0.00235985) 13655
(0.0182783 0.00623276 0.00236373) 13656
(0.0188316 0.00622742 0.00236896) 13657
(0.0193549 0.00622109 0.00237118) 13658
(0.019882 0.0062126 0.00236995) 13659
(0.0204252 0.00620148 0.00236394) 13660
(0.0209419 0.00619234 0.00235417) 13661
(0.0214266 0.0061868 0.00234357) 13662
(0.0123931 0.00601625 0.00209819) 13704
(0.0128698 0.00601486 0.00209566) 13705
(0.0132953 0.00601702 0.00208974) 13706
(0.00502376 0.00582211 0.00187113) 13750
(0.00546303 0.00582473 0.00186113) 13750
(0.00589448 0.00582422 0.00185575) 13751
(0.00491239 0.00557617 0.00171228) 13809
(0.00533632 0.00557879 0.00170344) 13810
(0.00431482 0.00475061 0.00159224) 13988
(0.00468935 0.00472829 0.00159768) 13989
(0.00555136 0.00444382 0.00166208) 14051
(0.00593066 0.00441788 0.00167531) 14051
(0.00632569 0.00440476 0.00167866) 14052
(0.00674116 0.00439733 0.00167847) 14053
(0.0119376 0.00440465 0.00171475) 14063
(0.0124035 0.00440569 0.00171641) 14064
(0.00534427 0.00421894 0.00174964) 14110
(0.0056372 0.00420409 0.001793) 14111
(0.00599903 0.00418166 0.00181086) 14111
(0.00639406 0.00416938 0.00181399) 14112
(0.00681026 0.00416085 0.00181396) 14113
(0.0108986 0.00416777 0.00183411) 14121
(0.0114735 0.00417312 0.00184084) 14122
(0.0119917 0.00417797 0.00184412) 14123
(0.012453 0.0041793 0.00184404) 14124
(0.0128776 0.00417856 0.00184089) 14125
(0.0133021 0.00417681 0.00183669) 14126
(0.0046189 0.00394726 0.00202202) 14169
(0.0050123 0.00396565 0.00201111) 14170
(0.00539814 0.0039746 0.00201463) 14170
(0.0107385 0.00361971 0.00289151) 14361
(0.0112907 0.00362739 0.00289271) 14362
(0.0118475 0.00363679 0.00289328) 14363
(0.0124176 0.00364681 0.00289484) 14364
(0.0129516 0.00365288 0.00289516) 14365
(0.0134347 0.00365266 0.002894) 14366
(0.0138631 0.00364628 0.0028926) 14367
(0.0142579 0.00363683 0.00289136) 14368
(0.00511428 0.00355465 0.0031166) 14410
(0.0107904 0.00358679 0.00319264) 14421
(0.0113827 0.00359744 0.00319559) 14422
(0.0119765 0.00360996 0.00319618) 14423
(0.0125445 0.00361961 0.0031966) 14425
(0.0130579 0.00362333 0.00319607) 14426
(0.0135412 0.00362322 0.00319556) 14427
(0.0139947 0.00361948 0.00319629) 14427
(0.0144326 0.0036136 0.00319795) 14428
(0.0148983 0.00360866 0.00319957) 14429
(0.00546247 0.00364046 0.00336916) 14470
(0.0056219 0.00368145 0.00345832) 14471
(0.00587645 0.00369678 0.00351121) 14471
(0.00629176 0.00369969 0.00353046) 14472
(0.00682735 0.00368858 0.00352097) 14473
(0.00504823 0.00377987 0.00371201) 14530
(0.00504823 0.00377987 0.00371201) 14530
(0.00504823 0.00377987 0.00371201) 14530
(0.00524058 0.00380652 0.00374954) 14530
(0.00557163 0.00380698 0.00376412) 14531
(0.00595599 0.00379669 0.00376251) 14531
(0.00438767 0.00388786 0.00394307) 14588
(0.00468074 0.00393012 0.00394696) 14589
(0.0050679 0.00398665 0.00395119) 14590
(0.00560399 0.00401056 0.0039481) 14591
(0.00433343 0.00471465 0.00437244) 14768
(0.00461191 0.00499041 0.00441929) 14829
(0.00506956 0.00501377 0.0044228) 14830
(0.00548671 0.00501667 0.00443051) 14830
(0.00585828 0.00501209 0.00444334) 14831
(0.00625694 0.00500761 0.0044514) 14832
(0.00448064 0.00527263 0.00437433) 14888
(0.00493371 0.0052904 0.00438194) 14889
(0.0053756 0.00529348 0.00439) 14890
(0.00577983 0.00529076 0.00440316) 14891
(0.00542839 0.00636903 0.00341478) 15190
(0.0047742 0.00645817 0.00285491) 13509
(0.0047742 0.00645817 0.00285491) 13509
(0.0047742 0.00645817 0.00285491) 13509
(0.00509843 0.00646767 0.00304909) 15250
(0.00554208 0.00644748 0.00311842) 15251
(0.00597726 0.00644138 0.00313579) 15251
(0.00642741 0.00644079 0.00313511) 15252
(0.00687788 0.00644241 0.00313213) 15253
(-0.000161731 0.00645072 0.00294738) 35709
(-3.93959e-05 0.0064674 0.00295669) 35709
(0.0013623 0.00645666 0.00286086) 13502
(0.00399334 0.00631294 0.00264016) 13567
(0.00436327 0.00634653 0.00261812) 13568
(0.000569781 0.0044461 0.00171461) 14041
(0.00490086 0.00429718 0.00162945) 5709
(0.00475106 0.00431562 0.00161964) 5709
(0.00470945 0.00434802 0.00159296) 5709
(0.00486392 0.00446359 0.00156006) 5709
(0.00486026 0.00424174 0.00171009) 5649
(0.00440699 0.00421794 0.00172266) 5648
(0.00418702 0.00424631 0.00170834) 14108
(0.00494352 0.00417055 0.00172002) 5649
(0.00260143 0.00357546 0.00345031) 5345
(0.00499255 0.00351888 0.00319212) 14409
(0.00293489 0.00363552 0.00359639) 14465
(0.00337609 0.0036455 0.0035959) 14466
(0.00399045 0.00365182 0.0036124) 14527
(0.00501544 0.00362865 0.00352336) 14470
(0.0015108 0.00497549 0.00443761) 14823
(0.00213037 0.00493625 0.00443424) 14824
(0.00292267 0.00493545 0.00442503) 14825
(0.00391 0.00492379 0.00437128) 14827
(-0.000224628 0.00645353 0.00305952) 35999
(0.0039982 0.00606295 0.00286332) 16447
(0.00446967 0.00624482 0.00271404) 13568
(0.0217149 0.00305201 0.0021536) 523
(0.021251 0.00701361 0.00387392) 23862
(0.0223304 0.00705557 0.00381003) 23864
(0.0231929 0.0071572 0.00369669) 23506
(0.0221221 0.00691026 0.00361592) 2024
(0.0236315 0.00698899 0.00357213) 2027
(0.0131392 0.00646024 0.00415522) 6686
(0.0131392 0.00646024 0.00415522) 6686
(0.0131392 0.00646024 0.00415522) 6686
(0.0140423 0.00642517 0.00412698) 6688
(0.0140423 0.00642517 0.00412698) 6688
(0.0140423 0.00642517 0.00412698) 6688
(0.0147535 0.00640421 0.00411424) 6689
(0.0153449 0.00639182 0.00410851) 6690
(0.0158611 0.00638815 0.00410371) 6691
(0.0163397 0.00638801 0.0041008) 6692
(0.0168153 0.0063871 0.00409724) 6693
(0.0173132 0.00638435 0.0040917) 6694
(0.0178328 0.0063773 0.00408715) 6695
(0.0183444 0.00636893 0.00408467) 6696
(0.0188119 0.00636275 0.00408524) 6697
(0.0125927 0.00609696 0.00440259) 9325
(0.0134614 0.00608498 0.00437486) 9326
(0.0142429 0.00607586 0.0043559) 9328
(0.0149012 0.00606817 0.00434498) 9329
(0.021527 0.0032386 0.0033085) 823
(0.0236406 0.00328065 0.00332027) 5447
(0.0221272 0.00651007 0.00209383) 13424
(0.0238611 0.00661346 0.0022576) 6107
(0.0223743 0.00686063 0.00429139) 1904
(0.0235079 0.00692486 0.00419233) 1907
(0.0223964 0.00662363 0.00415063) 6704
(0.0243163 0.00664032 0.0041189) 6708
(0.0213712 0.0064255 0.00128573) 6822
(0.0224619 0.00638689 0.00127937) 6824
(0.0218112 0.00358192 0.00455828) 7183
(0.0233639 0.00358591 0.00456181) 7186
(0.0241095 0.00363387 0.00462058) 7188
(0.0219061 0.00342919 0.00165614) 9283
(0.0236455 0.00343982 0.00167759) 9287
(0.0222052 0.00608003 0.00472295) 12224
(0.0237615 0.00609845 0.00471231) 12227
(0.0220991 0.00575968 0.00499158) 12584
(0.0220991 0.00575968 0.00499158) 12584
(0.0220991 0.00575968 0.00499158) 12584
(0.0236932 0.00577087 0.00497822) 12587
(0.0236932 0.00577087 0.00497822) 12587
(0.0236932 0.00577087 0.00497822) 12587
(0.0243917 0.00583862 0.00495757) 12588
(0.0218238 0.00438726 0.00499202) 9523
(0.0219907 0.00395652 0.0048104) 9583
(0.0234616 0.00396594 0.00483125) 10546
(0.0227336 0.00382437 0.00142798) 12765
(0.0245495 0.00381803 0.00141009) 12769
(0.0228264 0.0041599 0.00126668) 11505
(0.0245889 0.00411073 0.00123879) 11509
(0.0222416 0.00449695 0.00114761) 9824
(0.0219839 0.00482905 0.00100301) 11623
(0.0236262 0.00478845 0.000993374) 11627
(0.0216745 0.00566324 0.00104678) 12163
(0.0215563 0.00603011 0.00113208) 12463
(0.0230385 0.00604415 0.00113748) 12466
(0.0220644 0.00534432 0.000952991) 10124
(0.023735 0.00531404 0.000960241) 10127
(0.0214605 0.00506361 0.000733574) 11922
(0.0224226 0.00502839 0.000769382) 11924
(0.0217755 0.00518895 0.00514791) 11443
(0.0231444 0.00518186 0.00514124) 11446
(0.0212775 0.0039604 0.0011085) 13002
(0.0226679 0.00393432 0.00109746) 13005
(0.0222779 0.00330749 0.00281382) 13304
(0.0234261 0.00309626 0.00314526) 766
(0.0250196 0.00308724 0.00311728) 770
(0.0253654 0.00305421 0.00313562) 770
(0.0217407 0.00671806 0.00179075) 2443
(0.0217407 0.00671806 0.00179075) 2443
(0.0217407 0.00671806 0.00179075) 2443
(0.0238237 0.00669081 0.00186345) 2447
(0.0246711 0.00667812 0.00181451) 2449
(0.0210331 0.00630478 0.00171512) 13482
(0.023449 0.00631515 0.00177528) 13486
(0.0242834 0.00632601 0.0017328) 13488
(0.00474377 0.00643423 0.00266757) 13569
(0.00474377 0.00643423 0.00266757) 13569
(0.00474377 0.00643423 0.00266757) 13569
(0.00501239 0.00645888 0.00277998) 13510
(0.0053738 0.00645802 0.00284152) 13510
(0.00583952 0.00645232 0.00286933) 13511
(0.00634554 0.00644723 0.00288088) 13512
(0.00479357 0.00633362 0.00249545) 13569
(0.0112764 0.00621826 0.00235874) 13642
(0.0118203 0.0062118 0.00236333) 13643
(0.0123658 0.00620469 0.00236645) 13644
(0.0128858 0.00620035 0.00236667) 13645
(0.0133522 0.00620373 0.00236547) 13646
(0.013785 0.00621306 0.00236419) 13647
(0.0142103 0.00622373 0.00236347) 13648
(0.0176777 0.00623881 0.00235978) 13655
(0.018253 0.0062331 0.00236358) 13656
(0.0188081 0.00622775 0.00236887) 13657
(0.0193321 0.00622153 0.00237129) 13658
(0.0198582 0.0062132 0.00237018) 13659
(0.0204017 0.00620211 0.0023644) 13660
(0.0209197 0.00619284 0.0023547) 13661
(0.0214054 0.00618723 0.00234419) 13662
(0.0123717 0.00601647 0.00209822) 13704
(0.0128507 0.00601494 0.00209589) 13705
(0.0132772 0.00601691 0.00208991) 13706
(0.00500199 0.00582176 0.00187132) 13750
(0.00544249 0.00582458 0.00186128) 13750
(0.00587358 0.00582429 0.00185592) 13751
(0.00489027 0.00557601 0.00171262) 13809
(0.00531582 0.00557861 0.00170367) 13810
(0.00429947 0.00475109 0.00159166) 13988
(0.0046697 0.00472913 0.00159715) 13989
(0.00553213 0.00444492 0.00166072) 14051
(0.00591106 0.0044187 0.0016749) 14051
(0.00630557 0.00440519 0.00167863) 14052
(0.00672059 0.00439767 0.00167856) 14053
(0.0119157 0.00440459 0.00171452) 14063
(0.0123837 0.00440569 0.00171633) 14064
(0.00533176 0.00421742 0.0017473) 14110
(0.00562019 0.0042046 0.00179157) 14111
(0.00597988 0.00418229 0.00181044) 14111
(0.00637378 0.0041698 0.00181398) 14112
(0.00678975 0.00416125 0.00181405) 14113
(0.0108722 0.00416765 0.00183377) 14121
(0.0114494 0.00417292 0.00184062) 14122
(0.0119699 0.00417783 0.00184398) 14123
(0.0124332 0.00417926 0.00184405) 14124
(0.0128583 0.00417855 0.00184096) 14125
(0.0132824 0.00417685 0.00183677) 14126
(0.00459837 0.00394597 0.00202296) 14169
(0.0049925 0.00396449 0.00201153) 14169
(0.00537823 0.00397417 0.00201443) 14170
(0.0107146 0.00361956 0.00289149) 14361
(0.0112674 0.00362716 0.00289268) 14362
(0.0118232 0.00363639 0.00289321) 14363
(0.0123933 0.00364638 0.00289478) 14364
(0.0129292 0.00365268 0.00289516) 14365
(0.0134147 0.00365275 0.00289404) 14366
(0.0138451 0.0036466 0.00289265) 14367
(0.0142406 0.00363725 0.00289146) 14368
(0.0107632 0.00358644 0.00319267) 14421
(0.0113561 0.00359696 0.00319553) 14422
(0.0119504 0.00360944 0.00319622) 14423
(0.0125204 0.00361927 0.00319667) 14425
(0.0130357 0.0036232 0.00319616) 14426
(0.0135199 0.00362322 0.0031956) 14427
(0.0139747 0.00361965 0.00319634) 14427
(0.0144124 0.00361381 0.00319788) 14428
(0.0148769 0.0036089 0.00319966) 14429
(0.00545527 0.00363576 0.00336575) 14470
(0.00561331 0.00367932 0.00345497) 14471
(0.00586087 0.00369546 0.00350921) 14471
(0.00626931 0.00369949 0.00352974) 14472
(0.00680122 0.00368904 0.00352163) 14473
(0.00504253 0.00377683 0.00371063) 14530
(0.00504253 0.00377683 0.00371063) 14530
(0.00504253 0.00377683 0.00371063) 14530
(0.0052286 0.00380529 0.00374821) 14530
(0.00555624 0.00380658 0.00376361) 14531
(0.00593784 0.0037967 0.00376243) 14531
(0.0064231 0.00378222 0.00375611) 14532
(0.00437407 0.00388774 0.00394274) 14588
(0.00466459 0.00392764 0.00394748) 14589
(0.00504531 0.00398423 0.00395092) 14590
(0.0055778 0.00400922 0.00394789) 14591
(0.00430726 0.00471425 0.0043727) 14768
(0.00458981 0.00498856 0.00441983) 14829
(0.00504721 0.00501328 0.00442298) 14830
(0.00546482 0.00501664 0.00443042) 14830
(0.00583604 0.00501239 0.00444321) 14831
(0.00623281 0.0050077 0.00445152) 14832
(0.00446025 0.00527152 0.0043741) 14888
(0.00491264 0.00529006 0.00438183) 14889
(0.00535306 0.00529361 0.00438982) 14890
(0.00575639 0.0052911 0.00440298) 14891
(0.00540413 0.00636977 0.00341453) 15190
(0.00476282 0.00645291 0.00284603) 13509
(0.00476282 0.00645291 0.00284603) 13509
(0.00476282 0.00645291 0.00284603) 13509
(0.00507596 0.00646887 0.00304316) 15250
(0.00551867 0.00644837 0.00311666) 15251
(0.00595434 0.00644172 0.00313541) 15251
(0.00640432 0.0064409 0.00313541) 15252
(0.00685571 0.0064424 0.00313235) 15253
(-0.000166451 0.00645011 0.0029471) 35709
(-4.28294e-05 0.00646685 0.00295701) 35709
(0.00120568 0.00645881 0.00286153) 13502
(0.00398685 0.00630711 0.00264197) 13567
(0.00434973 0.0063466 0.00261679) 13568
(0.000442435 0.00444347 0.00170519) 14040
(0.00477073 0.00431507 0.00161859) 5709
(0.0047081 0.00434346 0.00159534) 5709
(0.00486363 0.00445767 0.00155678) 5709
(0.00446285 0.00422112 0.00171979) 5648
(0.00411106 0.00424526 0.00171077) 14108
(0.00493009 0.00417375 0.00171716) 5649
(0.00265222 0.00357826 0.00345135) 14465
(0.00498975 0.00350319 0.00319158) 5409
(0.00316119 0.00364419 0.00360031) 14466
(0.00342568 0.00364621 0.00359623) 14466
(0.0040017 0.00365312 0.00361431) 14528
(0.0049667 0.00362953 0.00353372) 14469
(0.00154346 0.00498175 0.00443546) 14823
(0.00211533 0.00493677 0.00443402) 14824
(0.00289713 0.00493617 0.0044252) 14825
(0.00388174 0.00492255 0.00437588) 14827
(-0.000184164 0.0064528 0.00306075) 35999
(0.0039613 0.00605144 0.00289086) 16447
(0.00446464 0.00620932 0.00272718) 13568
(0.0216695 0.00305347 0.00215175) 523
(0.0229106 0.00300922 0.00220458) 525
(0.021226 0.00701215 0.003877) 23862
(0.0223074 0.0070521 0.00381439) 23864
(0.0231884 0.00714981 0.00370558) 23506
(0.0220654 0.00690695 0.00361917) 2024
(0.0235968 0.0069854 0.00357424) 2027
(0.0131035 0.00646217 0.00415696) 6686
(0.0131035 0.00646217 0.00415696) 6686
(0.0131035 0.00646217 0.00415696) 6686
(0.0140155 0.00642634 0.00412757) 6688
(0.0140155 0.00642634 0.00412757) 6688
(0.0140155 0.00642634 0.00412757) 6688
(0.0147322 0.00640495 0.00411432) 6689
(0.0153268 0.00639218 0.00410859) 6690
(0.0158448 0.00638825 0.00410378) 6691
(0.0163242 0.00638809 0.00410073) 6692
(0.0167996 0.00638723 0.00409714) 6693
(0.0172962 0.00638464 0.0040916) 6694
(0.0178155 0.00637766 0.00408703) 6695
(0.0183279 0.00636923 0.00408452) 6696
(0.0187982 0.00636292 0.00408492) 6697
(0.0125657 0.00609756 0.00440362) 9325
(0.0134317 0.00608548 0.00437571) 9326
(0.014218 0.00607626 0.00435629) 9328
(0.0148813 0.00606847 0.00434501) 9329
(0.0154272 0.00606303 0.00433979) 9330
(0.0213718 0.00322926 0.00330679) 822
(0.0235798 0.00328127 0.00331898) 5447
(0.0219682 0.00652376 0.00209389) 13423
(0.0238179 0.00661184 0.0022562) 6107
(0.0223365 0.00685865 0.00429501) 1904
(0.0235019 0.00691799 0.00419889) 1907
(0.022312 0.00662216 0.00415413) 6704
(0.0242751 0.00663791 0.00411916) 6708
(0.0213417 0.00642695 0.00128635) 6822
(0.022441 0.00639065 0.00128281) 6824
(0.0217554 0.00358203 0.00455805) 7183
(0.023328 0.00358541 0.00455965) 7186
(0.0241101 0.00362897 0.004615) 7188
(0.0218361 0.00342927 0.00165366) 9283
(0.0236052 0.00344165 0.00167657) 9287
(0.0221406 0.0060793 0.00472394) 12224
(0.0237243 0.00609625 0.00471247) 12227
(0.0220336 0.00575981 0.0049923) 12584
(0.0220336 0.00575981 0.0049923) 12584
(0.0220336 0.00575981 0.0049923) 12584
(0.023656 0.00576878 0.00497816) 12587
(0.023656 0.00576878 0.00497816) 12587
(0.023656 0.00576878 0.00497816) 12587
(0.0243892 0.00583292 0.00495945) 12588
(0.0217877 0.00438548 0.00499034) 9523
(0.0219365 0.00395545 0.00480898) 9583
(0.0234275 0.00396557 0.00482896) 9586
(0.0226441 0.0038238 0.00142805) 12765
(0.0245285 0.0038217 0.00140932) 12769
(0.0227361 0.00416281 0.00126696) 11505
(0.0245692 0.0041133 0.00124051) 11509
(0.0221762 0.00450295 0.00114753) 9824
(0.0240172 0.00442635 0.00113518) 11568
(0.0219188 0.00483156 0.00100335) 11623
(0.0235823 0.00479111 0.000995045) 11627
(0.0216209 0.00566562 0.00104842) 12163
(0.0215062 0.00602973 0.00113245) 12463
(0.0230036 0.00604516 0.00113963) 12466
(0.0219921 0.00534777 0.000953102) 10123
(0.0236941 0.0053154 0.000962185) 10127
(0.0214329 0.00506449 0.000732706) 11922
(0.0224036 0.00503238 0.000769727) 11924
(0.0217273 0.00518906 0.00514804) 11443
(0.0231113 0.00518068 0.0051406) 11446
(0.0212457 0.00396361 0.00110839) 13002
(0.0226343 0.00393791 0.00109759) 13005
(0.0221168 0.00330197 0.00280896) 13304
(0.0239244 0.00330868 0.00286251) 13307
(0.0233109 0.00309626 0.00314503) 766
(0.0249993 0.00309046 0.00311748) 769
(0.0253587 0.00305527 0.00313336) 770
(0.0216749 0.00672029 0.00178909) 2443
(0.0216749 0.00672029 0.00178909) 2443
(0.0216749 0.00672029 0.00178909) 2443
(0.0237684 0.00669104 0.00186346) 2447
(0.0246648 0.00667968 0.00181963) 2449
(0.0234245 0.0063137 0.00177575) 13486
(0.0242528 0.00632635 0.0017356) 13488
(0.00472863 0.00643289 0.00266184) 13569
(0.00472863 0.00643289 0.00266184) 13569
(0.00472863 0.00643289 0.00266184) 13569
(0.00499438 0.00645933 0.00277555) 13509
(0.00535094 0.00645879 0.00283905) 13510
(0.00581438 0.00645289 0.00286832) 13511
(0.00632152 0.0064475 0.00288054) 13512
(0.00477392 0.00633288 0.00249439) 13569
(0.0112536 0.00621857 0.00235859) 13642
(0.0117974 0.0062122 0.0023632) 13643
(0.0123427 0.00620512 0.00236637) 13644
(0.0128645 0.00620056 0.00236671) 13645
(0.0133326 0.00620362 0.00236546) 13646
(0.013766 0.00621279 0.0023642) 13647
(0.0141917 0.00622343 0.00236352) 13648
(0.0176519 0.00623917 0.0023597) 13655
(0.0182275 0.00623347 0.00236343) 13656
(0.0187846 0.00622811 0.00236879) 13657
(0.0193094 0.00622196 0.00237136) 13658
(0.0198346 0.00621378 0.00237039) 13659
(0.0203782 0.00620275 0.00236485) 13660
(0.0208974 0.00619335 0.00235523) 13661
(0.0213843 0.00618767 0.0023448) 13662
(0.0218482 0.0061838 0.00233365) 13663
(0.0123503 0.0060167 0.00209825) 13704
(0.0128315 0.00601503 0.00209611) 13705
(0.0132593 0.0060168 0.00209007) 13706
(0.00498015 0.00582139 0.00187152) 13749
(0.00542203 0.00582443 0.00186145) 13750
(0.00585277 0.00582437 0.0018561) 13751
(0.00486809 0.00557586 0.00171297) 13809
(0.00529533 0.00557845 0.00170391) 13810
(0.00428442 0.00475149 0.0015911) 13988
(0.00465027 0.00472996 0.00159663) 13989
(0.00551299 0.00444601 0.00165929) 14051
(0.00589146 0.00441954 0.00167445) 14051
(0.00628551 0.00440563 0.00167859) 14052
(0.00670007 0.00439804 0.00167864) 14053
(0.0118936 0.00440455 0.00171429) 14063
(0.0123638 0.0044057 0.00171625) 14064
(0.00531959 0.00421567 0.0017449) 14110
(0.00560334 0.00420505 0.00179009) 14111
(0.0059608 0.00418292 0.00181) 14111
(0.00635359 0.00417024 0.00181396) 14112
(0.00676925 0.00416167 0.00181414) 14113
(0.0108457 0.00416755 0.00183342) 14121
(0.0114253 0.00417272 0.0018404) 14122
(0.0119481 0.0041777 0.00184384) 14123
(0.0124134 0.00417922 0.00184404) 14124
(0.012839 0.00417857 0.00184103) 14125
(0.0132626 0.00417691 0.00183684) 14126
(0.00457762 0.0039447 0.00202395) 14169
(0.00497265 0.00396334 0.00201197) 14169
(0.00535833 0.00397369 0.00201426) 14170
(0.0106906 0.00361943 0.00289147) 14361
(0.011244 0.00362695 0.00289264) 14362
(0.011799 0.00363601 0.00289314) 14363
(0.0123689 0.00364597 0.0028947) 14364
(0.0129068 0.00365247 0.00289516) 14365
(0.0133945 0.00365283 0.00289409) 14366
(0.013827 0.00364691 0.0028927) 14367
(0.0142232 0.00363767 0.00289156) 14368
(0.0107361 0.00358612 0.0031927) 14421
(0.0113295 0.0035965 0.00319547) 14422
(0.0119242 0.00360892 0.00319624) 14423
(0.0124962 0.00361893 0.00319673) 14424
(0.0130134 0.00362307 0.00319623) 14426
(0.0134986 0.00362323 0.00319563) 14426
(0.0139546 0.00361982 0.00319639) 14427
(0.0143922 0.00361403 0.0031978) 14428
(0.0148555 0.00360915 0.00319976) 14429
(0.00544805 0.00363103 0.00336244) 14470
(0.00560484 0.00367712 0.0034516) 14471
(0.0058454 0.00369417 0.00350714) 14471
(0.00624709 0.00369925 0.00352896) 14472
(0.00677514 0.00368947 0.00352224) 14473
(0.00503701 0.00377375 0.0037093) 14530
(0.00503701 0.00377375 0.0037093) 14530
(0.00503701 0.00377375 0.0037093) 14530
(0.00521689 0.00380401 0.00374688) 14530
(0.00554085 0.00380617 0.00376307) 14531
(0.00591989 0.00379671 0.00376233) 14531
(0.0063991 0.00378267 0.00375655) 14532
(0.00436042 0.00388773 0.00394236) 14588
(0.00464868 0.00392528 0.00394799) 14589
(0.00502315 0.0039818 0.00395067) 14590
(0.00555147 0.00400784 0.00394771) 14591
(0.00428086 0.00471394 0.00437296) 14768
(0.00456759 0.00498674 0.00442038) 14829
(0.00502474 0.00501275 0.00442317) 14830
(0.00544287 0.00501661 0.00443034) 14830
(0.00581387 0.0050127 0.00444307) 14831
(0.00620874 0.00500778 0.00445162) 14832
(0.00443973 0.00527037 0.00437387) 14888
(0.00489162 0.00528969 0.00438171) 14889
(0.0053306 0.00529375 0.00438964) 14890
(0.00573303 0.00529145 0.00440279) 14891
(0.00433906 0.00644024 0.00333676) 15188
(0.0053796 0.00637058 0.00341423) 15190
(0.00475218 0.00644638 0.00283778) 13509
(0.00475218 0.00644638 0.00283778) 13509
(0.00475218 0.00644638 0.00283778) 13509
(0.00505362 0.00646998 0.00303697) 15250
(0.00549516 0.00644929 0.00311478) 15250
(0.00593139 0.0064421 0.00313498) 15251
(0.00638122 0.00644103 0.00313568) 15252
(0.00683352 0.0064424 0.00313258) 15253
(-0.000174237 0.00644966 0.0029467) 35709
(-8.52916e-05 0.00646702 0.00295558) 35709
(0.0010378 0.00646067 0.00286376) 13502
(0.00397805 0.00630093 0.00264578) 13567
(0.00433574 0.0063464 0.00261572) 13568
(0.000237403 0.00443755 0.00169205) 14040
(0.00479133 0.00431449 0.00161756) 5709
(0.00472981 0.00433816 0.00159518) 5709
(0.00486605 0.00445228 0.00155491) 5709
(0.00451926 0.00422463 0.00171745) 5649
(0.00212252 0.00413162 0.00174168) 5644
(0.00407279 0.00424334 0.00171301) 14108
(0.00491039 0.00417901 0.00171312) 5649
(0.00268264 0.00358014 0.00345224) 14465
(0.00498058 0.00348737 0.00319173) 5409
(0.00340873 0.00365119 0.00360594) 14526
(0.00352311 0.00364748 0.00359816) 14467
(0.00402022 0.00365361 0.00361535) 14528
(0.00494207 0.00362792 0.00354133) 14469
(0.00159461 0.0049885 0.00443229) 14823
(0.00210289 0.00493745 0.0044337) 14824
(0.00287233 0.00493688 0.0044253) 14825
(0.0038536 0.00492161 0.00438069) 14827
(-0.0001108 0.00645265 0.00306242) 35999
(0.00394671 0.00605043 0.00289765) 16447
(0.00441673 0.0061812 0.00275707) 16448
(0.021624 0.0030549 0.00214999) 523
(0.0228869 0.0030132 0.00220124) 525
(0.0222838 0.00704884 0.00381862) 23864
(0.0231828 0.00714271 0.00371408) 23506
(0.0220085 0.00690373 0.00362256) 2024
(0.0235603 0.00698189 0.0035763) 2027
(0.0130677 0.00646415 0.00415873) 6686
(0.0130677 0.00646415 0.00415873) 6686
(0.0130677 0.00646415 0.00415873) 6686
(0.0139884 0.00642757 0.00412821) 6687
(0.0139884 0.00642757 0.00412821) 6687
(0.0139884 0.00642757 0.00412821) 6687
(0.0147108 0.00640571 0.00411443) 6689
(0.0153086 0.0063926 0.00410863) 6690
(0.0158285 0.00638841 0.00410381) 6691
(0.0163088 0.00638821 0.00410064) 6692
(0.0167837 0.00638739 0.00409704) 6693
(0.0172792 0.00638495 0.00409149) 6694
(0.0177981 0.00637806 0.00408688) 6695
(0.0183113 0.00636958 0.00408436) 6696
(0.0187845 0.00636312 0.00408459) 6697
(0.0125389 0.00609823 0.00440462) 9325
(0.0134016 0.00608605 0.00437656) 9326
(0.0141929 0.00607669 0.00435669) 9328
(0.0148611 0.0060688 0.00434504) 9329
(0.0154109 0.00606329 0.00433957) 9330
(0.0212259 0.0032193 0.00330492) 822
(0.0235201 0.00328187 0.00331781) 5447
(0.0217953 0.00654444 0.00209811) 13423
(0.0237744 0.00661017 0.00225452) 6107
(0.0222993 0.00685686 0.00429846) 1904
(0.0234933 0.00691156 0.00420511) 1906
(0.0222276 0.00662066 0.00415792) 6704
(0.0242305 0.00663572 0.00411947) 6708
(0.0213123 0.00642842 0.00128691) 6822
(0.0224193 0.00639431 0.00128607) 6824
(0.0217004 0.00358231 0.00455788) 7183
(0.0232905 0.00358505 0.00455762) 7186
(0.0241095 0.00362452 0.00460959) 7188
(0.0217661 0.00342951 0.00165084) 9283
(0.0235637 0.00344323 0.00167596) 9287
(0.0220749 0.0060787 0.00472507) 12224
(0.0236854 0.00609421 0.00471259) 12227
(0.021968 0.0057601 0.00499307) 12583
(0.021968 0.0057601 0.00499307) 12583
(0.021968 0.0057601 0.00499307) 12583
(0.0236173 0.00576682 0.00497808) 12587
(0.0236173 0.00576682 0.00497808) 12587
(0.0236173 0.00576682 0.00497808) 12587
(0.0243856 0.00582751 0.00496107) 12588
(0.0217517 0.00438371 0.00498868) 9523
(0.0218824 0.00395435 0.00480761) 9583
(0.0233919 0.00396529 0.00482673) 9586
(0.0225535 0.00382383 0.00142786) 12765
(0.0245078 0.00382478 0.00140944) 12769
(0.0226456 0.00416606 0.0012674) 11505
(0.02455 0.00411647 0.00124215) 11509
(0.0221103 0.00450869 0.00114728) 9824
(0.0239693 0.00442943 0.00113722) 11567
(0.021855 0.00483424 0.00100356) 11623
(0.0235368 0.00479376 0.000996666) 11627
(0.0215683 0.00566818 0.00105007) 12163
(0.0214575 0.00602943 0.00113283) 12462
(0.0229676 0.00604612 0.00114166) 12465
(0.0219198 0.00535145 0.000953157) 10123
(0.0236508 0.00531671 0.000964006) 10127
(0.0214048 0.00506528 0.000731835) 11922
(0.022384 0.00503627 0.000770004) 11924
(0.0216794 0.0051892 0.00514819) 11443
(0.0230772 0.00517971 0.00513998) 11446
(0.0238817 0.00524126 0.00513926) 11447
(0.0212149 0.00396688 0.00110826) 13002
(0.0225988 0.00394073 0.0010981) 13005
(0.0219512 0.0032952 0.00280398) 13303
(0.0238884 0.00331028 0.0028619) 13307
(0.0232012 0.00309652 0.00314466) 766
(0.0249782 0.00309367 0.00311775) 769
(0.0253513 0.00305656 0.00313122) 770
(0.0216136 0.00672249 0.00178768) 2443
(0.0237111 0.00669138 0.00186328) 2447
(0.0246574 0.00668106 0.00182461) 2449
(0.023398 0.00631221 0.00177584) 13486
(0.0242212 0.0063267 0.0017384) 13488
(0.0047133 0.0064314 0.00265622) 13569
(0.0047133 0.0064314 0.00265622) 13569
(0.0047133 0.0064314 0.00265622) 13569
(0.00497658 0.00645973 0.00277107) 13509
(0.00532817 0.00645959 0.00283649) 13510
(0.00578919 0.00645348 0.00286725) 13511
(0.00629741 0.0064478 0.00288018) 13512
(0.00475419 0.00633212 0.0024933) 13569
(0.0112307 0.00621889 0.00235845) 13642
(0.0117745 0.00621261 0.00236307) 13643
(0.0123196 0.00620556 0.00236627) 13644
(0.0128433 0.00620078 0.00236675) 13645
(0.0133129 0.00620352 0.00236545) 13646
(0.0137471 0.00621253 0.0023642) 13647
(0.0141732 0.00622315 0.00236355) 13648
(0.0176262 0.00623954 0.00235961) 13655
(0.018202 0.00623387 0.00236331) 13656
(0.018761 0.00622845 0.00236866) 13657
(0.0192867 0.00622241 0.00237143) 13658
(0.019811 0.00621437 0.00237058) 13659
(0.0203547 0.00620341 0.00236529) 13660
(0.0208752 0.00619387 0.00235574) 13661
(0.0213631 0.00618812 0.0023454) 13662
(0.0218279 0.00618414 0.00233422) 13663
(0.0123288 0.00601694 0.00209826) 13704
(0.0128123 0.00601513 0.00209633) 13705
(0.0132414 0.00601671 0.00209024) 13706
(0.00495825 0.00582101 0.0018717) 13749
(0.00540161 0.00582429 0.00186164) 13750
(0.00583204 0.00582443 0.00185628) 13751
(0.00484584 0.00557572 0.00171333) 13809
(0.00527483 0.00557829 0.00170415) 13810
(0.00426961 0.00475185 0.00159056) 13988
(0.00463107 0.00473075 0.0015961) 13989
(0.00549394 0.00444709 0.00165779) 14050
(0.00587184 0.00442041 0.00167396) 14051
(0.00626552 0.0044061 0.00167853) 14052
(0.00667958 0.00439841 0.00167872) 14053
(0.0118715 0.00440452 0.00171405) 14063
(0.0123438 0.00440572 0.00171615) 14064
(0.00530765 0.00421368 0.00174246) 14110
(0.00558666 0.00420543 0.00178857) 14111
(0.00594178 0.00418355 0.00180952) 14111
(0.00633347 0.00417068 0.00181392) 14112
(0.00674877 0.0041621 0.00181421) 14113
(0.0108191 0.00416746 0.00183307) 14121
(0.011401 0.00417254 0.00184018) 14122
(0.0119261 0.00417757 0.00184369) 14123
(0.0123935 0.0041792 0.00184403) 14124
(0.0128197 0.00417859 0.00184108) 14125
(0.0132428 0.00417698 0.0018369) 14126
(0.00455667 0.00394346 0.00202498) 14169
(0.00495275 0.00396218 0.00201243) 14169
(0.00533842 0.00397318 0.00201411) 14170
(0.0106665 0.00361932 0.00289144) 14361
(0.0112206 0.00362676 0.00289259) 14362
(0.0117749 0.00363566 0.00289306) 14363
(0.0123444 0.00364556 0.00289462) 14364
(0.0128842 0.00365226 0.00289514) 14365
(0.0133742 0.0036529 0.00289413) 14366
(0.0138087 0.00364723 0.00289274) 14367
(0.0142059 0.00363811 0.00289164) 14368
(0.010709 0.00358582 0.00319273) 14421
(0.0113029 0.00359605 0.00319539) 14422
(0.0118979 0.00360841 0.00319627) 14423
(0.0124719 0.00361858 0.00319679) 14424
(0.0129911 0.00362295 0.0031963) 14425
(0.0134772 0.00362323 0.00319567) 14426
(0.0139344 0.00361999 0.00319643) 14427
(0.014372 0.00361426 0.00319773) 14428
(0.0148341 0.0036094 0.00319984) 14429
(0.00544114 0.00362624 0.0033592) 14470
(0.00559648 0.00367484 0.00344825) 14471
(0.00583041 0.0036928 0.00350503) 14471
(0.00622511 0.00369897 0.0035281) 14472
(0.00674912 0.00368986 0.00352278) 14473
(0.00503152 0.00377066 0.00370802) 14530
(0.00503152 0.00377066 0.00370802) 14530
(0.00503152 0.00377066 0.00370802) 14530
(0.00520539 0.00380269 0.00374554) 14530
(0.00552552 0.00380573 0.00376251) 14531
(0.00590214 0.00379671 0.00376221) 14531
(0.00637536 0.00378308 0.00375693) 14532
(0.0043466 0.00388783 0.00394194) 14588
(0.00463295 0.00392303 0.0039485) 14589
(0.00500138 0.00397932 0.00395045) 14590
(0.00552497 0.00400645 0.00394754) 14591
(0.00607738 0.00400685 0.00394689) 14592
(0.00425426 0.00471369 0.00437319) 14768
(0.00454519 0.00498484 0.00442096) 14829
(0.00500215 0.00501221 0.00442338) 14830
(0.00542086 0.00501656 0.00443027) 14830
(0.00579176 0.00501302 0.00444292) 14831
(0.00618472 0.00500786 0.0044517) 14832
(0.00441901 0.00526927 0.00437362) 14888
(0.00487066 0.00528927 0.00438159) 14889
(0.00530823 0.00529388 0.00438944) 14890
(0.00570974 0.0052918 0.00440258) 14891
(0.00431439 0.0064432 0.00333193) 15188
(0.00535479 0.00637146 0.00341389) 15190
(0.00474235 0.00643864 0.00282998) 13509
(0.00474235 0.00643864 0.00282998) 13509
(0.00474235 0.00643864 0.00282998) 13509
(0.00503145 0.00647097 0.00303054) 15250
(0.00547154 0.00645026 0.0031128) 15250
(0.00590841 0.0064425 0.00313449) 15251
(0.00635812 0.00644118 0.00313593) 15252
(0.00681131 0.00644243 0.00313279) 15253
(-0.000191438 0.00644961 0.00294573) 35709
(-0.000129492 0.00646719 0.00295383) 35709
(0.000833017 0.00646287 0.00286809) 13501
(0.00397187 0.00629477 0.00264813) 13567
(0.00432168 0.00634566 0.00261495) 13568
(3.70714e-05 0.0044309 0.00167874) 14040
(0.00481105 0.00431389 0.00161675) 5709
(0.0047632 0.0043325 0.00159361) 5709
(0.00486918 0.00444715 0.00155375) 5709
(0.00458995 0.00422769 0.0017166) 5649
(0.00274789 0.00416898 0.00173977) 5645
(0.00398962 0.00424164 0.00171547) 14107
(0.00489302 0.00418241 0.00171169) 5649
(0.00274406 0.00358365 0.00345322) 14465
(0.00497009 0.00347182 0.0031932) 5409
(0.00374287 0.0036553 0.00361383) 14527
(0.00356379 0.00364788 0.00359851) 14467
(0.00404631 0.00365384 0.003616) 14528
(0.00491977 0.00362654 0.00354836) 14469
(0.00166093 0.00499584 0.00442817) 14823
(0.0020921 0.00493827 0.00443332) 14824
(0.00284789 0.00493756 0.00442538) 14825
(0.00382677 0.00492091 0.00438485) 14827
(0.000210209 0.00645392 0.00306546) 15240
(0.00391273 0.00604097 0.00292778) 16447
(0.00436777 0.00615834 0.00279478) 16448
(0.0215783 0.0030563 0.00214833) 523
(0.0228621 0.00301715 0.00219797) 525
(0.0222597 0.00704579 0.0038227) 23864
(0.0231759 0.00713586 0.0037222) 23506
(0.0219518 0.00690045 0.00362608) 2023
(0.023522 0.00697846 0.0035783) 2027
(0.0130322 0.00646614 0.00416049) 6686
(0.0130322 0.00646614 0.00416049) 6686
(0.0130322 0.00646614 0.00416049) 6686
(0.013961 0.00642883 0.00412891) 6687
(0.013961 0.00642883 0.00412891) 6687
(0.013961 0.00642883 0.00412891) 6687
(0.0146892 0.0064065 0.00411458) 6689
(0.0152903 0.0063931 0.00410859) 6690
(0.0158122 0.00638862 0.00410377) 6691
(0.0162933 0.00638834 0.00410054) 6692
(0.016768 0.00638757 0.00409691) 6693
(0.0172623 0.00638527 0.00409137) 6694
(0.0177807 0.00637849 0.00408672) 6695
(0.0182946 0.00636996 0.00408419) 6696
(0.0187705 0.00636337 0.00408426) 6697
(0.0125127 0.00609894 0.00440556) 9325
(0.0133717 0.00608666 0.0043774) 9326
(0.0141677 0.00607716 0.00435708) 9328
(0.0148408 0.00606917 0.00434507) 9329
(0.0153944 0.00606358 0.00433933) 9330
(0.0210891 0.00320832 0.00330239) 822
(0.0234619 0.00328248 0.00331678) 5446
(0.0216057 0.00657332 0.00210615) 13423
(0.0237302 0.00660842 0.00225253) 6107
(0.022263 0.00685526 0.00430173) 1904
(0.0234822 0.00690555 0.00421103) 1906
(0.0221445 0.00661914 0.00416196) 6704
(0.0241829 0.00663374 0.00411984) 6708
(0.021283 0.0064299 0.00128739) 6822
(0.0223968 0.00639786 0.00128913) 6824
(0.021646 0.00358278 0.00455774) 7183
(0.0232514 0.00358483 0.0045557) 7186
(0.0241076 0.00362049 0.00460435) 7188
(0.0216972 0.00343022 0.00164771) 9283
(0.0235206 0.00344464 0.00167556) 9287
(0.0222318 0.00630489 0.00442655) 9344
(0.0220085 0.00607824 0.00472631) 12224
(0.0236446 0.00609235 0.00471265) 12227
(0.0219023 0.00576053 0.00499385) 12583
(0.0219023 0.00576053 0.00499385) 12583
(0.0219023 0.00576053 0.00499385) 12583
(0.0235771 0.00576501 0.00497796) 12587
(0.0235771 0.00576501 0.00497796) 12587
(0.0235771 0.00576501 0.00497796) 12587
(0.0243807 0.00582238 0.00496245) 12588
(0.021716 0.00438195 0.00498701) 9523
(0.0218287 0.00395324 0.00480627) 9583
(0.0233547 0.0039651 0.00482457) 9586
(0.0224625 0.00382417 0.00142745) 12764
(0.0244861 0.00382798 0.00140976) 12768
(0.0225566 0.00416939 0.00126771) 11505
(0.0245293 0.00411998 0.00124384) 11509
(0.0220444 0.00451452 0.00114686) 9824
(0.0239184 0.00443252 0.00113914) 11567
(0.0217928 0.0048372 0.00100365) 11623
(0.0234897 0.00479639 0.000998224) 11626
(0.021517 0.00567094 0.00105176) 12163
(0.0214104 0.00602922 0.00113323) 12462
(0.0229304 0.00604701 0.00114357) 12465
(0.021848 0.00535536 0.000953181) 10123
(0.0236054 0.005318 0.000965699) 10127
(0.021376 0.00506594 0.000730886) 11922
(0.0223641 0.00504006 0.000770218) 11924
(0.0216319 0.00518935 0.00514835) 11443
(0.0230422 0.00517893 0.00513937) 11446
(0.0238782 0.00523507 0.0051386) 11447
(0.0211849 0.00397027 0.0011081) 13002
(0.0225627 0.00394346 0.0010986) 13005
(0.0217872 0.00328749 0.0027991) 13303
(0.0238525 0.00331183 0.00286109) 13307
(0.0230973 0.00309706 0.00314415) 766
(0.0249563 0.00309687 0.00311811) 769
(0.0253431 0.00305806 0.0031292) 770
(0.0215559 0.00672462 0.00178645) 2443
(0.0236517 0.00669183 0.0018629) 2447
(0.0246486 0.00668227 0.00182942) 2449
(0.023369 0.00631063 0.00177549) 13486
(0.0241887 0.00632706 0.00174116) 13488
(0.00469796 0.00642971 0.00265071) 13569
(0.00469796 0.00642971 0.00265071) 13569
(0.00469796 0.00642971 0.00265071) 13569
(0.00495898 0.00646007 0.00276655) 13509
(0.00530552 0.00646044 0.00283386) 13510
(0.00576394 0.00645409 0.00286609) 13511
(0.0062732 0.00644812 0.00287977) 13512
(0.00473437 0.00633134 0.0024922) 13569
(0.0112078 0.00621922 0.0023583) 13642
(0.0117516 0.00621302 0.00236292) 13643
(0.0122964 0.00620601 0.00236617) 13644
(0.0128219 0.00620102 0.00236677) 13645
(0.0132933 0.00620344 0.00236543) 13646
(0.0137282 0.00621229 0.00236419) 13647
(0.0141546 0.00622287 0.00236357) 13648
(0.0176006 0.00623993 0.00235953) 13655
(0.0181764 0.00623429 0.00236318) 13656
(0.0187374 0.00622881 0.00236852) 13657
(0.019264 0.00622285 0.00237148) 13658
(0.0197874 0.00621496 0.00237076) 13659
(0.0203311 0.00620407 0.00236572) 13660
(0.0208529 0.0061944 0.00235624) 13661
(0.0213419 0.00618857 0.00234599) 13662
(0.0218075 0.00618449 0.00233479) 13663
(0.0123072 0.00601719 0.00209826) 13704
(0.0127932 0.00601525 0.00209655) 13705
(0.0132235 0.00601662 0.0020904) 13706
(0.0136372 0.00602409 0.00208688) 13707
(0.00493625 0.00582062 0.00187188) 13749
(0.00538123 0.00582416 0.00186184) 13750
(0.00581139 0.00582451 0.00185646) 13751
(0.00482353 0.00557558 0.00171369) 13809
(0.00525433 0.00557813 0.00170439) 13810
(0.00425493 0.00475221 0.00159005) 13988
(0.0046121 0.00473152 0.00159556) 13989
(0.00494366 0.00446847 0.00156483) 5709
(0.00494366 0.00446847 0.00156483) 5709
(0.00494366 0.00446847 0.00156483) 5709
(0.00547501 0.00444814 0.0016562) 14050
(0.00585223 0.00442127 0.00167344) 14051
(0.00624558 0.00440659 0.00167846) 14052
(0.00665912 0.0043988 0.00167879) 14053
(0.0118492 0.0044045 0.00171379) 14063
(0.0123238 0.00440575 0.00171604) 14064
(0.00529589 0.00421149 0.00174003) 14110
(0.0055701 0.00420574 0.00178701) 14111
(0.00592283 0.00418419 0.001809) 14111
(0.00631345 0.00417113 0.00181388) 14112
(0.00672831 0.00416255 0.00181428) 14113
(0.0101719 0.00416157 0.00182425) 14120
(0.0107925 0.00416739 0.0018327) 14121
(0.0113767 0.00417237 0.00183994) 14122
(0.0119041 0.00417746 0.00184353) 14123
(0.0123736 0.00417918 0.00184401) 14124
(0.0128004 0.00417862 0.00184114) 14125
(0.0132231 0.00417705 0.00183695) 14126
(0.00453552 0.00394224 0.00202605) 14169
(0.00493281 0.00396104 0.0020129) 14169
(0.0053185 0.00397262 0.00201398) 14170
(0.0106424 0.00361921 0.00289141) 14361
(0.0111972 0.00362658 0.00289255) 14362
(0.0117509 0.00363533 0.00289298) 14363
(0.0123199 0.00364515 0.00289453) 14364
(0.0128616 0.00365206 0.00289511) 14365
(0.0133537 0.00365297 0.00289415) 14366
(0.0137904 0.00364754 0.00289277) 14367
(0.0141885 0.00363854 0.00289171) 14368
(0.0106819 0.00358554 0.00319276) 14421
(0.0112762 0.00359562 0.0031953) 14422
(0.0118716 0.00360791 0.00319628) 14423
(0.0124474 0.00361822 0.00319683) 14424
(0.0129687 0.00362283 0.00319638) 14425
(0.0134557 0.00362323 0.00319571) 14426
(0.0139142 0.00362016 0.00319646) 14427
(0.0143519 0.0036145 0.00319767) 14428
(0.0148126 0.00360966 0.00319991) 14429
(0.00543397 0.00362142 0.00335606) 14470
(0.00558826 0.00367251 0.00344488) 14471
(0.0058157 0.00369138 0.00350287) 14471
(0.00620345 0.00369863 0.00352718) 14472
(0.00672318 0.00369023 0.00352324) 14473
(0.00502631 0.00376753 0.00370677) 14530
(0.00502631 0.00376753 0.00370677) 14530
(0.00502631 0.00376753 0.00370677) 14530
(0.00519399 0.00380133 0.00374419) 14530
(0.00551025 0.00380526 0.00376193) 14531
(0.00588456 0.00379671 0.00376206) 14531
(0.00635185 0.00378346 0.00375725) 14532
(0.00433262 0.00388804 0.0039415) 14588
(0.00461745 0.00392088 0.003949) 14589
(0.00497997 0.00397684 0.00395024) 14589
(0.00549842 0.00400503 0.00394737) 14590
(0.00605266 0.0040068 0.00394623) 14592
(0.00422741 0.00471352 0.00437339) 14768
(0.00452257 0.00498288 0.00442154) 14829
(0.00497942 0.00501159 0.0044236) 14829
(0.00539883 0.00501657 0.00443019) 14830
(0.00576972 0.00501336 0.00444276) 14831
(0.0061608 0.00500796 0.00445176) 14832
(0.0043981 0.00526818 0.00437336) 14888
(0.0048497 0.00528888 0.00438143) 14889
(0.00528595 0.00529395 0.00438925) 14890
(0.00568655 0.00529214 0.00440236) 14891
(0.00428966 0.00644613 0.00332692) 15188
(0.00532969 0.0063724 0.0034135) 15190
(0.00473297 0.00642983 0.0028229) 13509
(0.00473297 0.00642983 0.0028229) 13509
(0.00473297 0.00642983 0.0028229) 13509
(0.00500947 0.00647183 0.00302385) 15250
(0.00544779 0.00645126 0.00311068) 15250
(0.0058854 0.00644292 0.00313394) 15251
(0.00633502 0.00644134 0.00313615) 15252
(0.00678907 0.00644247 0.003133) 15253
(-0.000211912 0.00644974 0.00294442) 35709
(-0.000192716 0.00646791 0.00295101) 35709
(0.000538391 0.00646325 0.00287403) 13501
(0.00396077 0.00628943 0.00265187) 13567
(0.00430797 0.00634419 0.00261485) 13568
(-0.000114525 0.00442642 0.00167019) 35799
(0.00483039 0.00431341 0.00161607) 5709
(0.00480273 0.00432682 0.0015914) 5709
(0.00487305 0.00444246 0.00155311) 5709
(0.00463129 0.00423208 0.00171789) 5649
(0.0032907 0.00419247 0.00174407) 5646
(0.00390223 0.00423955 0.00171765) 14107
(0.004876 0.00418595 0.00171057) 5649
(0.00279473 0.00358684 0.00345451) 14465
(0.00495664 0.00346143 0.00319852) 5409
(0.00407102 0.00365394 0.00361845) 14528
(0.00368009 0.0036487 0.00360057) 14527
(0.0041088 0.00365326 0.00361575) 14528
(0.00487911 0.00362608 0.0035572) 14469
(0.00173111 0.00500233 0.00442346) 14823
(0.00208038 0.0049393 0.00443299) 14824
(0.00282357 0.00493821 0.00442546) 14825
(0.00380082 0.00492041 0.0043887) 14827
(0.000740874 0.0064534 0.00307227) 15241
(0.00388119 0.00603568 0.00295656) 16447
(0.00432378 0.00614083 0.00283214) 16448
(0.0215327 0.00305767 0.00214673) 523
(0.0228364 0.00302105 0.00219475) 525
(0.0222351 0.00704294 0.00382663) 23864
(0.023168 0.00712925 0.00372996) 23506
(0.0218954 0.00689712 0.00362971) 2023
(0.023482 0.0069751 0.00358023) 2026
(0.0129965 0.0064682 0.00416228) 6685
(0.0129965 0.0064682 0.00416228) 6685
(0.0129965 0.0064682 0.00416228) 6685
(0.0139333 0.00643015 0.0041296) 6687
(0.0139333 0.00643015 0.0041296) 6687
(0.0139333 0.00643015 0.0041296) 6687
(0.0146675 0.00640734 0.00411471) 6689
(0.015272 0.00639364 0.00410851) 6690
(0.0157957 0.00638887 0.00410373) 6691
(0.0162778 0.0063885 0.00410043) 6692
(0.0167523 0.00638777 0.00409676) 6693
(0.0172455 0.00638563 0.00409122) 6694
(0.0177633 0.00637895 0.00408653) 6695
(0.0182779 0.00637036 0.004084) 6696
(0.0187565 0.00636366 0.0040839) 6697
(0.0124869 0.00609971 0.00440647) 9324
(0.0133416 0.00608733 0.00437823) 9326
(0.0141423 0.00607768 0.00435745) 9328
(0.0148203 0.00606957 0.00434509) 9329
(0.0153779 0.00606391 0.00433907) 9330
(0.0209689 0.00319733 0.00329956) 821
(0.0234049 0.00328305 0.00331583) 5446
(0.021399 0.00661105 0.00211843) 13422
(0.0236855 0.00660656 0.00225021) 6107
(0.0222274 0.00685382 0.00430483) 1904
(0.0234685 0.00689992 0.00421671) 1906
(0.0220614 0.00661779 0.00416616) 6704
(0.0241319 0.00663196 0.00412025) 6708
(0.0212537 0.00643133 0.00128782) 6822
(0.0223735 0.0064013 0.00129198) 6824
(0.0215925 0.00358342 0.00455763) 7183
(0.023211 0.00358473 0.00455388) 7186
(0.0241044 0.00361685 0.00459927) 7188
(0.0216297 0.00343132 0.00164431) 9283
(0.0234759 0.00344597 0.00167518) 9286
(0.0221637 0.00630322 0.0044292) 9344
(0.0219425 0.00607789 0.00472765) 12223
(0.0236021 0.00609064 0.00471266) 12227
(0.0218369 0.00576109 0.00499463) 12583
(0.0218369 0.00576109 0.00499463) 12583
(0.0218369 0.00576109 0.00499463) 12583
(0.0235353 0.00576334 0.0049778) 12587
(0.0235353 0.00576334 0.0049778) 12587
(0.0235353 0.00576334 0.0049778) 12587
(0.0243747 0.00581751 0.0049636) 12588
(0.0216806 0.0043802 0.00498533) 9523
(0.0217758 0.00395216 0.00480494) 9583
(0.0233159 0.00396497 0.00482245) 9586
(0.0223715 0.00382469 0.00142678) 12764
(0.0244627 0.00383126 0.00141031) 12768
(0.0224689 0.00417285 0.00126788) 11504
(0.0245067 0.00412349 0.0012457) 11509
(0.0219794 0.00452057 0.00114626) 9823
(0.0238646 0.00443558 0.00114091) 11567
(0.0217328 0.00484054 0.00100363) 11623
(0.0234411 0.00479902 0.000999712) 11626
(0.0214673 0.00567387 0.00105349) 12162
(0.0213654 0.00602913 0.00113366) 12462
(0.0228921 0.00604785 0.00114535) 12465
(0.0217777 0.00535955 0.000953209) 12103
(0.0235578 0.00531927 0.000967249) 10127
(0.0213467 0.00506646 0.000729887) 11922
(0.0223438 0.00504375 0.000770354) 11924
(0.0215846 0.00518954 0.0051485) 11443
(0.0230063 0.00517834 0.00513875) 11446
(0.023873 0.0052293 0.00513785) 11447
(0.0211555 0.00397379 0.0011079) 13002
(0.022526 0.00394615 0.00109906) 13005
(0.0216298 0.00327929 0.00279438) 13303
(0.0238166 0.00331334 0.00286009) 13307
(0.0229992 0.0030979 0.00314345) 765
(0.0249333 0.00310004 0.00311854) 769
(0.0253341 0.00305976 0.00312728) 770
(0.0215006 0.0067267 0.00178532) 2443
(0.0235903 0.0066924 0.00186232) 2447
(0.0246387 0.00668335 0.00183408) 2449
(0.0233371 0.00630899 0.00177471) 13486
(0.0241555 0.00632739 0.00174393) 13488
(0.00468259 0.00642783 0.00264534) 13569
(0.00468259 0.00642783 0.00264534) 13569
(0.00468259 0.00642783 0.00264534) 13569
(0.00494158 0.00646035 0.002762) 13509
(0.00528298 0.00646131 0.00283114) 13510
(0.00573867 0.00645472 0.00286487) 13511
(0.00624887 0.00644846 0.00287933) 13512
(0.00471444 0.00633053 0.00249107) 13569
(0.0111849 0.00621956 0.00235813) 13642
(0.0117287 0.00621343 0.00236277) 13643
(0.0122733 0.00620647 0.00236605) 13644
(0.0128005 0.00620128 0.00236679) 13645
(0.0132736 0.00620337 0.0023654) 13646
(0.0137092 0.00621205 0.00236416) 13647
(0.014136 0.00622261 0.00236358) 13648
(0.0175749 0.00624032 0.00235943) 13655
(0.0181508 0.00623472 0.00236303) 13656
(0.0187137 0.00622918 0.00236837) 13657
(0.0192413 0.00622331 0.00237153) 13658
(0.0197639 0.00621554 0.00237093) 13659
(0.0203075 0.00620474 0.00236613) 13660
(0.0208305 0.00619494 0.00235673) 13661
(0.0213207 0.00618903 0.00234656) 13662
(0.0217871 0.00618487 0.00233536) 13663
(0.0122856 0.00601744 0.00209825) 13704
(0.012774 0.00601539 0.00209676) 13705
(0.0132057 0.00601654 0.00209056) 13706
(0.0136176 0.00602389 0.00208683) 13707
(0.00491416 0.00582021 0.00187204) 13749
(0.00536085 0.00582405 0.00186206) 13750
(0.00579084 0.00582461 0.00185665) 13751
(0.0048012 0.00557546 0.00171407) 13809
(0.0052338 0.00557799 0.00170464) 13810
(0.00424044 0.00475255 0.00158956) 13988
(0.00459335 0.00473225 0.00159503) 13989
(0.00493785 0.00446574 0.0015632) 5709
(0.00493785 0.00446574 0.0015632) 5709
(0.00493785 0.00446574 0.0015632) 5709
(0.00545626 0.00444914 0.00165453) 14050
(0.00583259 0.00442218 0.00167285) 14051
(0.0062257 0.00440709 0.00167837) 14052
(0.0066387 0.0043992 0.00167884) 14053
(0.0112904 0.00440114 0.00170742) 14062
(0.0118269 0.00440448 0.00171353) 14063
(0.0123037 0.00440578 0.00171591) 14064
(0.00528426 0.00420915 0.00173763) 14110
(0.00555376 0.00420597 0.00178539) 14111
(0.00590396 0.0041848 0.00180846) 14111
(0.00629349 0.00417161 0.00181382) 14112
(0.00670788 0.00416301 0.00181433) 14113
(0.0101448 0.00416144 0.00182392) 14120
(0.0107658 0.00416732 0.00183233) 14121
(0.0113524 0.00417221 0.00183969) 14122
(0.011882 0.00417735 0.00184336) 14123
(0.0123536 0.00417916 0.00184397) 14124
(0.0127813 0.00417866 0.00184118) 14125
(0.0132033 0.00417713 0.001837) 14126
(0.00451408 0.003941 0.00202721) 14169
(0.00491287 0.00395992 0.00201335) 14169
(0.00529856 0.00397201 0.00201389) 14170
(0.0106183 0.00361912 0.00289136) 14361
(0.0111738 0.00362642 0.00289251) 14362
(0.0117268 0.00363501 0.00289287) 14363
(0.0122953 0.00364475 0.00289442) 14364
(0.0128389 0.00365184 0.00289506) 14365
(0.0133332 0.00365303 0.00289417) 14366
(0.0137721 0.00364785 0.00289279) 14367
(0.0141711 0.00363898 0.00289177) 14368
(0.0106549 0.00358528 0.0031928) 14421
(0.0112497 0.0035952 0.00319516) 14422
(0.0118453 0.00360742 0.00319628) 14423
(0.0124228 0.00361785 0.00319682) 14424
(0.0129463 0.00362271 0.00319648) 14425
(0.0134342 0.00362323 0.00319574) 14426
(0.013894 0.00362034 0.00319649) 14427
(0.0143318 0.00361474 0.0031976) 14428
(0.0147912 0.00360991 0.00319996) 14429
(0.00542736 0.00361647 0.003353) 14470
(0.00558007 0.00367009 0.00344151) 14471
(0.00580116 0.00368998 0.00350065) 14471
(0.00618207 0.00369824 0.0035262) 14472
(0.00669735 0.00369057 0.00352365) 14473
(0.00518292 0.00379991 0.00374283) 14530
(0.00549499 0.00380478 0.00376132) 14530
(0.00586713 0.0037967 0.00376189) 14531
(0.00632856 0.00378381 0.00375752) 14532
(0.00431854 0.00388837 0.00394102) 14588
(0.00460212 0.00391885 0.00394948) 14589
(0.00495889 0.00397439 0.00395004) 14589
(0.0054718 0.00400357 0.0039472) 14590
(0.00602786 0.00400668 0.00394555) 14592
(0.00420041 0.00471332 0.00437353) 14768
(0.00449965 0.00498092 0.00442212) 14828
(0.00495658 0.00501093 0.00442384) 14829
(0.00537673 0.00501657 0.00443012) 14830
(0.00574774 0.00501369 0.00444259) 14831
(0.00613698 0.0050081 0.0044518) 14832
(0.00437698 0.00526718 0.00437309) 14888
(0.00482878 0.00528844 0.00438128) 14889
(0.00526376 0.00529401 0.00438905) 14890
(0.00566345 0.00529249 0.00440212) 14891
(0.0042648 0.00644902 0.00332171) 15188
(0.00530431 0.00637341 0.00341304) 15190
(0.00472419 0.00641971 0.00281673) 13509
(0.00472419 0.00641971 0.00281673) 13509
(0.00472419 0.00641971 0.00281673) 13509
(0.00498767 0.0064725 0.00301697) 15249
(0.00542392 0.0064523 0.00310844) 15250
(0.00586236 0.00644338 0.00313334) 15251
(0.00631191 0.00644152 0.00313633) 15252
(0.00676682 0.00644252 0.00313318) 15253
(-0.000236855 0.00644998 0.00294262) 35709
(-0.000238546 0.00646837 0.00294865) 35709
(0.000273781 0.00646505 0.00288054) 13500
(0.00395336 0.00628288 0.00265443) 13567
(0.00429384 0.00634229 0.0026149) 13568
(-0.000255065 0.0044227 0.00166293) 35799
(0.00123074 0.00431137 0.00171179) 14042
(0.00484877 0.00431299 0.0016156) 5709
(0.00484217 0.00432145 0.00158916) 5709
(0.00487739 0.0044381 0.00155282) 5709
(0.00468643 0.0042358 0.00172068) 14109
(0.00374011 0.00420374 0.00174477) 14107
(0.0038094 0.00423702 0.00171973) 14107
(0.00485937 0.00418948 0.00170972) 5649
(0.000808206 0.00358665 0.00349097) 5341
(0.00282402 0.00358897 0.00345584) 14465
(0.00488153 0.00348237 0.00322478) 5409
(0.00436377 0.0036507 0.00361455) 14528
(0.00379103 0.00364896 0.00360255) 14527
(0.00422232 0.00365176 0.00361482) 14528
(0.00486492 0.00362534 0.00356238) 14469
(0.00180267 0.00500826 0.00441816) 14823
(0.00206682 0.00494059 0.00443277) 14824
(0.00279984 0.00493877 0.00442556) 14825
(0.00377473 0.00492019 0.00439293) 14827
(0.00121925 0.00644565 0.00307831) 15242
(-0.000166303 0.0064731 0.00306234) 35999
(0.00385102 0.00603434 0.00298374) 16927
(0.00428607 0.00612944 0.0028673) 16448
(0.0214873 0.00305903 0.00214518) 522
(0.0228096 0.0030249 0.00219158) 525
(0.0214199 0.00318266 0.00414812) 1002
(0.02221 0.00704027 0.00383039) 23864
(0.023159 0.00712286 0.00373737) 23506
(0.0218393 0.00689382 0.00363344) 2023
(0.0234403 0.00697179 0.00358208) 2026
(0.0129609 0.00647028 0.00416405) 6685
(0.0129609 0.00647028 0.00416405) 6685
(0.0129609 0.00647028 0.00416405) 6685
(0.0139054 0.00643152 0.00413027) 6687
(0.0139054 0.00643152 0.00413027) 6687
(0.0139054 0.00643152 0.00413027) 6687
(0.0146456 0.00640822 0.00411482) 6689
(0.0146456 0.00640822 0.00411482) 6689
(0.0146456 0.00640822 0.00411482) 6689
(0.0152536 0.00639422 0.00410839) 6690
(0.0157793 0.00638913 0.00410366) 6691
(0.0162624 0.00638866 0.0041003) 6692
(0.0167368 0.00638798 0.00409656) 6693
(0.0172287 0.00638599 0.00409103) 6694
(0.0177459 0.00637943 0.00408631) 6695
(0.0182612 0.00637078 0.0040838) 6696
(0.0187424 0.00636397 0.00408352) 6697
(0.0124621 0.00610048 0.00440728) 9324
(0.0133116 0.00608803 0.00437901) 9326
(0.0141167 0.00607824 0.0043578) 9328
(0.0147997 0.00607 0.00434508) 9329
(0.0153614 0.00606425 0.00433878) 9330
(0.0233487 0.00328356 0.00331495) 5446
(0.0211827 0.00665604 0.00213377) 13422
(0.02364 0.00660454 0.00224752) 6107
(0.0221924 0.00685255 0.00430775) 1904
(0.0234527 0.00689462 0.00422216) 1906
(0.0219793 0.0066166 0.00417046) 6703
(0.0240778 0.0066304 0.0041207) 6708
(0.0212244 0.00643272 0.00128822) 6822
(0.0223494 0.00640462 0.00129462) 6824
(0.0215397 0.00358419 0.00455753) 7183
(0.0231692 0.00358474 0.00455214) 7186
(0.0240999 0.00361357 0.00459435) 7188
(0.0215653 0.00343284 0.00164062) 9223
(0.0234293 0.0034472 0.00167482) 9286
(0.0243562 0.00341246 0.00170693) 468
(0.0220957 0.00630163 0.00443197) 9344
(0.021878 0.00607757 0.00472906) 12223
(0.0235577 0.00608908 0.00471261) 12227
(0.0217723 0.00576174 0.00499537) 12583
(0.0217723 0.00576174 0.00499537) 12583
(0.0217723 0.00576174 0.00499537) 12583
(0.023492 0.00576181 0.00497759) 12586
(0.023492 0.00576181 0.00497759) 12586
(0.023492 0.00576181 0.00497759) 12586
(0.0243675 0.00581288 0.00496455) 12588
(0.0216454 0.00437846 0.00498361) 9523
(0.0217237 0.00395115 0.00480361) 9583
(0.0232756 0.00396491 0.00482037) 9586
(0.0222801 0.00382534 0.0014258) 12764
(0.0244373 0.00383458 0.00141106) 12768
(0.022382 0.00417639 0.00126788) 11504
(0.0244821 0.00412701 0.00124769) 11508
(0.0219159 0.00452694 0.00114545) 9823
(0.0238083 0.00443865 0.00114254) 11567
(0.021675 0.0048443 0.00100355) 9883
(0.023391 0.00480165 0.00100112) 11626
(0.0214193 0.00567697 0.00105528) 12162
(0.0213227 0.00602914 0.00113414) 12462
(0.0228528 0.00604863 0.00114699) 12465
(0.0217181 0.00536446 0.000953599) 12103
(0.0235081 0.00532054 0.000968651) 10127
(0.0213168 0.00506688 0.000728902) 11922
(0.022323 0.0050473 0.000770389) 11924
(0.0231168 0.00495941 0.000779625) 11626
(0.0215377 0.00518975 0.00514863) 11443
(0.0229697 0.0051779 0.00513813) 11445
(0.0238665 0.00522391 0.00513702) 11447
(0.0211268 0.00397744 0.00110765) 13002
(0.0224887 0.00394881 0.00109948) 13004
(0.0222045 0.00665479 0.00452367) 6584
(0.0214862 0.00327119 0.00278991) 13302
(0.0237803 0.00331479 0.00285888) 13307
(0.0229065 0.0030991 0.00314253) 765
(0.024909 0.00310316 0.00311905) 769
(0.0253245 0.00306164 0.00312544) 770
(0.0214467 0.0067287 0.00178425) 2442
(0.0235273 0.00669307 0.00186158) 2447
(0.0246273 0.00668426 0.00183857) 2449
(0.0233013 0.00630724 0.00177343) 13486
(0.0241218 0.0063277 0.00174667) 13488
(0.00466719 0.00642578 0.00264016) 13569
(0.00466719 0.00642578 0.00264016) 13569
(0.00466719 0.00642578 0.00264016) 13569
(0.00492438 0.00646055 0.00275742) 13509
(0.00526057 0.00646219 0.00282833) 13510
(0.00571339 0.00645537 0.00286359) 13511
(0.00622445 0.00644882 0.00287884) 13512
(0.00469439 0.00632972 0.00248994) 13569
(0.0111619 0.0062199 0.00235796) 13642
(0.0117058 0.00621384 0.0023626) 13643
(0.0122501 0.00620693 0.00236592) 13644
(0.012779 0.00620155 0.0023668) 13645
(0.0132539 0.00620332 0.00236536) 13646
(0.0136902 0.00621182 0.00236412) 13647
(0.0141173 0.00622235 0.00236356) 13648
(0.0175493 0.00624072 0.00235933) 13655
(0.0181252 0.00623515 0.00236288) 13656
(0.0186899 0.00622956 0.00236821) 13657
(0.0192185 0.00622377 0.00237156) 13658
(0.0197405 0.00621612 0.00237107) 13659
(0.020284 0.00620539 0.00236649) 13660
(0.0208082 0.0061955 0.00235722) 13661
(0.0212994 0.00618948 0.00234711) 13662
(0.0217667 0.00618525 0.00233592) 13663
(0.012264 0.00601771 0.00209823) 13704
(0.0127547 0.00601553 0.00209695) 13705
(0.0131879 0.00601647 0.00209073) 13706
(0.0135982 0.0060237 0.00208678) 13707
(0.00489198 0.00581978 0.00187219) 13749
(0.0053405 0.00582398 0.0018623) 13750
(0.00577033 0.00582468 0.00185682) 13751
(0.00477884 0.00557535 0.00171445) 13809
(0.00521326 0.00557785 0.00170488) 13810
(0.00422607 0.0047529 0.00158909) 13988
(0.00457481 0.00473296 0.00159449) 13989
(0.00493316 0.00446296 0.00156165) 5709
(0.00493316 0.00446296 0.00156165) 5709
(0.00493316 0.00446296 0.00156165) 5709
(0.00581294 0.0044231 0.00167221) 14051
(0.00620587 0.00440761 0.00167826) 14052
(0.00661831 0.00439962 0.00167889) 14053
(0.0112656 0.00440111 0.00170707) 14062
(0.0118046 0.00440446 0.00171326) 14063
(0.0122835 0.00440582 0.00171577) 14064
(0.00527263 0.00420667 0.00173528) 5650
(0.00553758 0.00420611 0.00178373) 14111
(0.00588514 0.00418541 0.00180787) 14111
(0.00627362 0.00417208 0.00181374) 14112
(0.00668747 0.00416347 0.00181436) 14113
(0.0101179 0.00416132 0.00182358) 14120
(0.0107392 0.00416725 0.00183195) 14121
(0.0113279 0.00417206 0.00183943) 14122
(0.0118599 0.00417725 0.00184317) 14123
(0.0123336 0.00417915 0.00184392) 14124
(0.0127621 0.00417871 0.00184122) 14125
(0.0131836 0.00417722 0.00183702) 14126
(0.00449239 0.00393976 0.00202843) 14168
(0.00489291 0.00395883 0.0020138) 14169
(0.00527862 0.00397136 0.00201383) 14170
(0.010594 0.00361904 0.0028913) 14361
(0.0111504 0.00362627 0.00289245) 14362
(0.0117029 0.00363471 0.00289276) 14363
(0.0122706 0.00364436 0.00289428) 14364
(0.0128162 0.00365162 0.00289502) 14365
(0.0133125 0.00365308 0.00289417) 14366
(0.0137536 0.00364816 0.0028928) 14367
(0.0141537 0.00363943 0.00289181) 14368
(0.0106278 0.00358503 0.00319284) 14421
(0.0112231 0.0035948 0.00319502) 14422
(0.0118189 0.00360694 0.00319628) 14423
(0.012398 0.00361748 0.0031968) 14424
(0.0129238 0.00362259 0.00319657) 14425
(0.0134126 0.00362323 0.00319578) 14426
(0.0138737 0.0036205 0.00319651) 14427
(0.0143117 0.00361499 0.00319753) 14428
(0.0147698 0.00361017 0.00319998) 14429
(0.00542059 0.00361151 0.00335002) 14470
(0.00557211 0.0036676 0.00343813) 14471
(0.00578696 0.00368854 0.00349838) 14471
(0.00616093 0.00369778 0.00352516) 14472
(0.00667157 0.00369088 0.00352396) 14473
(0.00517202 0.00379844 0.00374146) 14530
(0.00547976 0.00380427 0.00376067) 14530
(0.00584985 0.00379667 0.00376169) 14531
(0.00630549 0.00378413 0.00375773) 14532
(0.00430431 0.00388879 0.0039405) 14588
(0.00458695 0.0039169 0.00394993) 14589
(0.00493812 0.00397196 0.00394986) 14589
(0.00544516 0.00400207 0.00394703) 14590
(0.00600297 0.0040065 0.00394486) 14592
(0.00417331 0.00471319 0.00437363) 14768
(0.00447643 0.00497896 0.00442268) 14828
(0.00493363 0.00501023 0.00442409) 14829
(0.00535455 0.00501654 0.00443005) 14830
(0.00572581 0.00501402 0.0044424) 14831
(0.00611326 0.00500826 0.00445182) 14832
(0.00435566 0.0052662 0.00437281) 14888
(0.00480785 0.00528796 0.00438111) 14889
(0.00524163 0.00529406 0.00438883) 14890
(0.0056405 0.00529282 0.00440186) 14891
(0.00423981 0.00645186 0.00331631) 15188
(0.0047582 0.00640287 0.00339034) 15189
(0.00527862 0.00637449 0.00341253) 15190
(0.00471469 0.00640957 0.00281087) 13509
(0.00471469 0.00640957 0.00281087) 13509
(0.00471469 0.00640957 0.00281087) 13509
(0.00496602 0.00647298 0.00300992) 15249
(0.00539991 0.00645337 0.00310607) 15250
(0.00583926 0.00644387 0.00313267) 15251
(0.0062888 0.00644171 0.00313648) 15252
(0.00674454 0.00644259 0.00313335) 15253
(-0.000273429 0.00645048 0.00294017) 35709
(-0.000260543 0.00646825 0.00294713) 35709
(7.41628e-05 0.0064695 0.00288805) 13500
(0.00394422 0.00627492 0.00265935) 13567
(0.00428553 0.0063389 0.00261389) 13568
(-0.000376114 0.00441921 0.00165708) 35798
(0.0011942 0.00433169 0.00171747) 14042
(0.00486842 0.00431261 0.00161527) 5709
(0.00488048 0.00431639 0.00158714) 5709
(0.0048819 0.00443406 0.00155289) 5709
(0.00473163 0.00423948 0.00172467) 14109
(0.00405012 0.00420787 0.00174158) 14108
(0.00371826 0.00423416 0.00172149) 14107
(0.00484283 0.00419281 0.00170925) 5649
(0.00101672 0.00358434 0.00349978) 5342
(0.000870713 0.00358661 0.00349312) 5341
(0.0028171 0.00358897 0.00345678) 14465
(0.00474104 0.00352853 0.00328101) 5409
(0.0045987 0.00365222 0.00360179) 14529
(0.0038748 0.00364894 0.00360422) 14527
(0.00424513 0.00365163 0.00361431) 14528
(0.0048511 0.00362477 0.00356726) 14469
(0.00188113 0.00501507 0.00441172) 14823
(0.00205213 0.00494221 0.00443266) 14824
(0.00277669 0.0049393 0.00442563) 14825
(0.00374942 0.00492021 0.00439692) 14827
(0.00136415 0.00643615 0.00308508) 15242
(-0.000217731 0.00647162 0.0030653) 35999
(0.00383692 0.00603622 0.00298784) 16927
(0.00426082 0.00612398 0.00287498) 16448
(0.0214423 0.00306036 0.0021437) 522
(0.0227817 0.00302866 0.00218849) 525
(0.0213847 0.00318454 0.00414803) 1002
(0.0221844 0.00703776 0.00383403) 23864
(0.023149 0.00711667 0.00374451) 23506
(0.0217834 0.00689054 0.00363729) 2023
(0.0233969 0.00696854 0.0035839) 2026
(0.0129255 0.00647237 0.00416584) 6685
(0.0129255 0.00647237 0.00416584) 6685
(0.0129255 0.00647237 0.00416584) 6685
(0.0138772 0.00643294 0.00413097) 6687
(0.0138772 0.00643294 0.00413097) 6687
(0.0138772 0.00643294 0.00413097) 6687
(0.0146235 0.00640912 0.00411493) 6689
(0.0146235 0.00640912 0.00411493) 6689
(0.0146235 0.00640912 0.00411493) 6689
(0.0152352 0.00639482 0.00410825) 6690
(0.015763 0.00638939 0.00410359) 6691
(0.0162469 0.00638884 0.00410015) 6692
(0.0167212 0.00638821 0.00409633) 6693
(0.017212 0.00638635 0.00409085) 6694
(0.0177285 0.0063799 0.00408611) 6695
(0.0182443 0.0063712 0.00408362) 6696
(0.0187281 0.00636429 0.00408315) 6697
(0.0191484 0.00636073 0.00408576) 6698
(0.0124376 0.00610125 0.00440809) 9324
(0.0132814 0.00608876 0.00437983) 9326
(0.0140909 0.00607881 0.00435817) 9328
(0.0147789 0.00607046 0.00434508) 9329
(0.0153448 0.00606461 0.0043385) 9330
(0.023293 0.00328397 0.00331415) 5446
(0.0235933 0.00660236 0.00224448) 6107
(0.0221581 0.00685141 0.00431053) 1904
(0.0234348 0.00688963 0.00422744) 1906
(0.0218998 0.00661553 0.00417487) 6643
(0.0240205 0.00662904 0.00412123) 6708
(0.0211952 0.00643403 0.00128864) 6822
(0.0223246 0.0064078 0.0012971) 6824
(0.0214874 0.00358497 0.00455745) 7182
(0.0231262 0.00358485 0.00455052) 7186
(0.0240939 0.00361062 0.00458961) 7188
(0.021504 0.0034347 0.00163671) 9223
(0.023381 0.00344838 0.00167444) 9286
(0.0243492 0.00341691 0.00170368) 468
(0.022029 0.00630006 0.0044349) 12884
(0.0218155 0.00607721 0.00473058) 12223
(0.0235115 0.00608765 0.00471252) 12227
(0.0217089 0.00576244 0.0049961) 12583
(0.0217089 0.00576244 0.0049961) 12583
(0.0217089 0.00576244 0.0049961) 12583
(0.0234471 0.0057604 0.00497738) 12586
(0.0234471 0.0057604 0.00497738) 12586
(0.0234471 0.0057604 0.00497738) 12586
(0.024359 0.00580847 0.00496531) 12588
(0.02161 0.00437671 0.00498189) 9523
(0.0216725 0.0039502 0.00480232) 9583
(0.023234 0.00396488 0.00481835) 9586
(0.0221884 0.00382605 0.00142456) 12764
(0.0244095 0.00383793 0.00141203) 12768
(0.022296 0.00418008 0.00126772) 9764
(0.024455 0.00413045 0.00124983) 11508
(0.021854 0.00453353 0.00114452) 9823
(0.02375 0.0044417 0.00114407) 11567
(0.0216194 0.00484844 0.00100348) 9883
(0.0233396 0.00480427 0.00100246) 11626
(0.021373 0.00568019 0.00105718) 12162
(0.0229584 0.0056529 0.00103982) 12165
(0.0212822 0.00602923 0.00113469) 12462
(0.0228124 0.00604934 0.00114855) 12465
(0.0216619 0.00536959 0.000954155) 12103
(0.0234568 0.0053218 0.000969942) 10126
(0.0223019 0.00505071 0.000770381) 11924
(0.0231106 0.00496701 0.000781126) 11626
(0.0214916 0.0051899 0.00514877) 11442
(0.0229324 0.00517759 0.00513752) 11445
(0.0238583 0.00521888 0.00513615) 11447
(0.0210988 0.00398118 0.0011074) 13002
(0.0224511 0.00395144 0.00109988) 13004
(0.0221768 0.00665429 0.00452525) 6584
(0.0213601 0.00326356 0.00278576) 13302
(0.0237435 0.00331616 0.00285747) 13307
(0.0228167 0.00310054 0.00314143) 765
(0.0248833 0.00310619 0.00311964) 769
(0.0253142 0.00306369 0.00312372) 770
(0.0213938 0.00673055 0.00178325) 2442
(0.0234628 0.00669385 0.0018607) 2446
(0.0246146 0.00668503 0.00184292) 2449
(0.0232617 0.00630534 0.00177166) 13486
(0.0240876 0.00632795 0.00174942) 13488
(0.0046515 0.00642351 0.00263514) 13569
(0.0046515 0.00642351 0.00263514) 13569
(0.0046515 0.00642351 0.00263514) 13569
(0.00490735 0.00646068 0.00275282) 13509
(0.00523831 0.00646307 0.00282543) 13510
(0.00568809 0.00645606 0.00286224) 13511
(0.00619991 0.00644921 0.00287832) 13512
(0.0046742 0.00632887 0.0024888) 13569
(0.0111389 0.00622024 0.00235779) 13642
(0.0116829 0.00621424 0.00236243) 13643
(0.0122269 0.00620739 0.00236578) 13644
(0.0127574 0.00620183 0.0023668) 13645
(0.0132342 0.00620328 0.00236533) 13646
(0.0136712 0.0062116 0.00236408) 13647
(0.0140987 0.00622209 0.00236355) 13648
(0.0175238 0.00624112 0.00235924) 13655
(0.0180995 0.00623559 0.00236274) 13656
(0.0186661 0.00622995 0.00236804) 13657
(0.0191958 0.00622423 0.00237158) 13658
(0.0197171 0.0062167 0.00237121) 13659
(0.0202604 0.00620603 0.00236681) 13660
(0.0207858 0.00619607 0.00235773) 13661
(0.0212782 0.00618994 0.00234766) 13662
(0.0217463 0.00618564 0.00233649) 13663
(0.0122424 0.00601798 0.0020982) 13704
(0.0127354 0.00601567 0.00209714) 13705
(0.0131702 0.00601643 0.00209091) 13706
(0.013579 0.00602349 0.00208673) 13707
(0.0048697 0.00581933 0.00187233) 13749
(0.00532013 0.00582391 0.00186257) 13750
(0.00574983 0.00582471 0.00185697) 13751
(0.00519269 0.00557772 0.00170513) 13810
(0.00421184 0.00475322 0.00158865) 13988
(0.0045565 0.00473363 0.00159395) 13989
(0.00492853 0.00446017 0.00156019) 5709
(0.00492853 0.00446017 0.00156019) 5709
(0.00492853 0.00446017 0.00156019) 5709
(0.00579327 0.00442403 0.00167153) 14051
(0.00618609 0.00440814 0.00167813) 14052
(0.00659797 0.00440004 0.00167893) 14053
(0.0112408 0.00440105 0.00170674) 14062
(0.0117821 0.00440444 0.00171298) 14063
(0.0122633 0.00440586 0.00171563) 14064
(0.00526112 0.00420406 0.00173298) 5650
(0.00552159 0.00420617 0.00178205) 14111
(0.00586639 0.004186 0.00180724) 14111
(0.00625381 0.00417256 0.00181364) 14112
(0.00666709 0.00416394 0.00181438) 14113
(0.010091 0.00416121 0.00182325) 14120
(0.0107124 0.00416714 0.0018316) 14121
(0.0113035 0.00417195 0.00183915) 14122
(0.0118377 0.00417714 0.00184298) 14123
(0.0123135 0.00417913 0.00184387) 14124
(0.0127431 0.00417876 0.00184126) 14125
(0.013164 0.00417731 0.00183705) 14126
(0.00447046 0.00393854 0.0020297) 14168
(0.0048729 0.00395774 0.00201424) 14169
(0.00525866 0.00397066 0.00201381) 14170
(0.0105697 0.00361896 0.00289124) 14361
(0.0111269 0.00362613 0.00289239) 14362
(0.011679 0.00363443 0.00289265) 14363
(0.0122459 0.00364396 0.00289414) 14364
(0.0127934 0.0036514 0.00289498) 14365
(0.0132918 0.00365312 0.00289417) 14366
(0.0137352 0.00364846 0.00289281) 14367
(0.0141364 0.00363987 0.00289185) 14368
(0.0106009 0.0035848 0.00319286) 14421
(0.0111965 0.00359441 0.00319487) 14422
(0.0117926 0.00360646 0.00319627) 14423
(0.0123732 0.00361709 0.00319677) 14424
(0.0129013 0.00362247 0.00319664) 14425
(0.013391 0.00362323 0.00319581) 14426
(0.0138533 0.00362066 0.00319652) 14427
(0.0142916 0.00361524 0.00319747) 14428
(0.0147484 0.00361042 0.00319999) 14429
(0.00541421 0.00360641 0.00334715) 14470
(0.00556419 0.00366505 0.00343477) 14471
(0.0057731 0.00368708 0.00349608) 14471
(0.00614003 0.00369729 0.00352408) 14472
(0.0066458 0.00369116 0.00352419) 14473
(0.00516135 0.0037969 0.0037401) 14530
(0.00546451 0.00380375 0.00375995) 14530
(0.00583284 0.00379662 0.00376156) 14531
(0.00628266 0.00378441 0.00375789) 14532
(0.00428988 0.00388929 0.00393996) 14588
(0.00457195 0.00391505 0.00395036) 14589
(0.00491769 0.00396956 0.00394971) 14589
(0.00541853 0.00400054 0.00394688) 14590
(0.00597802 0.00400626 0.00394416) 14591
(0.00414614 0.00471317 0.00437371) 14768
(0.00445291 0.004977 0.00442324) 14828
(0.00491052 0.00500947 0.00442435) 14829
(0.0053323 0.00501649 0.00442999) 14830
(0.00570393 0.00501434 0.0044422) 14831
(0.00608964 0.00500844 0.00445183) 14832
(0.00433414 0.00526524 0.00437253) 14888
(0.00478693 0.00528745 0.00438094) 14889
(0.00521959 0.0052941 0.00438861) 14890
(0.00561767 0.00529314 0.00440159) 14891
(0.00421456 0.00645464 0.00331079) 15188
(0.00472953 0.00640524 0.00338784) 15189
(0.00525265 0.00637564 0.00341195) 15190
(0.00470469 0.00639842 0.00280653) 13509
(0.00470469 0.00639842 0.00280653) 13509
(0.00470469 0.00639842 0.00280653) 13509
(0.00494452 0.0064732 0.00300275) 15249
(0.00537574 0.00645447 0.00310357) 15250
(0.00581611 0.00644437 0.00313195) 15251
(0.00626568 0.0064419 0.00313659) 15252
(0.00672223 0.00644266 0.00313352) 15253
(-0.000305219 0.00645081 0.0029383) 35709
(-0.000260329 0.00646757 0.00294681) 35709
(0.00393233 0.00626616 0.00266253) 13567
(0.00427101 0.00633572 0.00261497) 13568
(-0.000478406 0.0044164 0.0016519) 35798
(0.00114329 0.00435347 0.00172229) 14042
(0.00489539 0.00431223 0.00161503) 5709
(0.00490986 0.00431278 0.001586) 5709
(0.00488704 0.00443011 0.00155344) 5709
(0.00476534 0.00424386 0.00172829) 14109
(0.00427744 0.00420893 0.00173764) 14108
(0.00366691 0.00423077 0.0017239) 14107
(0.0048294 0.00419621 0.00170868) 5649
(0.00138952 0.00357871 0.00349894) 5342
(0.000964612 0.00358604 0.00349477) 5341
(0.00280766 0.00358882 0.00345771) 14465
(0.0023932 0.00355048 0.00341664) 5344
(0.00474145 0.00366811 0.00358685) 14469
(0.00393468 0.00364872 0.00360447) 14527
(0.00431703 0.00365033 0.00361108) 14528
(0.00483541 0.00362573 0.00357155) 14469
(0.00195309 0.00502093 0.00440471) 14823
(0.00203255 0.00494435 0.00443286) 14824
(0.00275341 0.00493982 0.00442571) 14825
(0.00372519 0.00492019 0.00440021) 14827
(0.00137187 0.00643256 0.00308837) 15242
(-0.000221718 0.00647085 0.0030657) 35999
(0.00380931 0.00604002 0.00301559) 16927
(0.00423288 0.0061221 0.00290635) 16448
(0.0213975 0.00306155 0.0021422) 522
(0.0227528 0.00303235 0.00218544) 525
(0.0213502 0.00318649 0.00414777) 1002
(0.0221585 0.00703541 0.0038375) 23864
(0.0231378 0.00711069 0.0037513) 23866
(0.021728 0.00688725 0.00364124) 2023
(0.023352 0.00696531 0.00358565) 2026
(0.0128904 0.00647444 0.0041676) 6685
(0.0128904 0.00647444 0.0041676) 6685
(0.0128904 0.00647444 0.0041676) 6685
(0.0138488 0.0064344 0.00413164) 6687
(0.0138488 0.0064344 0.00413164) 6687
(0.0138488 0.0064344 0.00413164) 6687
(0.0146014 0.00641006 0.00411501) 6689
(0.0146014 0.00641006 0.00411501) 6689
(0.0146014 0.00641006 0.00411501) 6689
(0.0152167 0.00639544 0.00410806) 6690
(0.0157466 0.00638965 0.00410348) 6691
(0.0162315 0.00638901 0.00409996) 6692
(0.0167058 0.00638844 0.00409605) 6693
(0.0171955 0.0063867 0.00409065) 6694
(0.0177111 0.00638038 0.00408588) 6695
(0.0182275 0.00637162 0.0040834) 6696
(0.0187137 0.00636462 0.00408274) 6697
(0.0191366 0.00636107 0.00408509) 6698
(0.0124139 0.00610203 0.00440881) 9324
(0.0132517 0.00608948 0.00438059) 9326
(0.014065 0.00607941 0.0043585) 9328
(0.0147579 0.00607094 0.00434504) 9329
(0.0153282 0.00606497 0.00433818) 9330
(0.0232381 0.00328429 0.00331339) 5446
(0.0235451 0.0066 0.002241) 6107
(0.0221246 0.0068504 0.0043131) 1904
(0.0234147 0.00688494 0.00423251) 1906
(0.0218234 0.00661441 0.00417944) 6643
(0.0239602 0.00662789 0.00412179) 6707
(0.021166 0.00643528 0.00128903) 6822
(0.022299 0.00641086 0.00129936) 6824
(0.0214348 0.00358567 0.00455729) 7182
(0.0230821 0.00358504 0.00454895) 7186
(0.0240866 0.00360798 0.00458502) 7188
(0.0214456 0.00343683 0.00163248) 9222
(0.023331 0.00344948 0.00167403) 9286
(0.0243407 0.00342121 0.00170069) 468
(0.0219645 0.00629847 0.00443793) 12883
(0.0217557 0.00607674 0.00473218) 12223
(0.0234636 0.00608635 0.00471238) 12226
(0.0216473 0.00576316 0.00499672) 12583
(0.0216473 0.00576316 0.00499672) 12583
(0.0216473 0.00576316 0.00499672) 12583
(0.0234005 0.00575911 0.00497713) 9466
(0.0234005 0.00575911 0.00497713) 9466
(0.0234005 0.00575911 0.00497713) 9466
(0.0243494 0.00580427 0.00496589) 12588
(0.0215745 0.00437497 0.0049801) 9523
(0.0216219 0.00394935 0.00480098) 9583
(0.0231911 0.00396488 0.00481635) 9586
(0.0220959 0.00382678 0.001423) 12764
(0.0243792 0.00384128 0.00141317) 12768
(0.0222105 0.00418385 0.00126739) 9764
(0.0244251 0.00413387 0.00125207) 11508
(0.0217935 0.00454034 0.00114347) 9823
(0.0236895 0.00444475 0.00114543) 11567
(0.0215654 0.00485282 0.00100335) 9883
(0.0232868 0.00480688 0.0010037) 11626
(0.0213281 0.00568349 0.00105912) 12162
(0.022915 0.00565468 0.00104174) 12165
(0.0212433 0.00602934 0.00113519) 12462
(0.0227711 0.00605 0.00114996) 12465
(0.0216071 0.00537484 0.00095478) 12103
(0.0234039 0.00532309 0.000971086) 10126
(0.0222803 0.00505403 0.000770284) 11924
(0.0231033 0.00497425 0.000782508) 11626
(0.0214471 0.00518995 0.00514885) 11442
(0.0228944 0.0051774 0.0051369) 11445
(0.0238488 0.00521419 0.0051352) 11447
(0.0210714 0.00398501 0.00110713) 13002
(0.022413 0.00395402 0.00110022) 13004
(0.0221492 0.00665395 0.00452663) 6584
(0.0212482 0.00325636 0.00278183) 13302
(0.0237057 0.00331744 0.00285587) 13307
(0.0227287 0.00310219 0.0031401) 765
(0.0248559 0.00310913 0.00312031) 769
(0.0253031 0.0030659 0.00312208) 770
(0.0213414 0.00673227 0.00178225) 2442
(0.0233976 0.00669472 0.00185974) 2446
(0.0246006 0.00668567 0.00184708) 2449
(0.0232165 0.0063033 0.00176934) 13486
(0.0240534 0.00632814 0.00175214) 13488
(0.00463568 0.00642104 0.00263031) 13569
(0.00463568 0.00642104 0.00263031) 13569
(0.00463568 0.00642104 0.00263031) 13569
(0.00489048 0.00646069 0.00274819) 13509
(0.00521621 0.00646395 0.00282244) 13510
(0.00566278 0.00645677 0.00286082) 13511
(0.00617525 0.00644961 0.00287775) 13512
(0.00465388 0.00632799 0.00248765) 13569
(0.0111159 0.00622058 0.00235761) 13642
(0.01166 0.00621465 0.00236225) 13643
(0.0122036 0.00620784 0.00236562) 13644
(0.0127357 0.00620212 0.00236679) 13645
(0.0132145 0.00620324 0.00236529) 13646
(0.0136522 0.00621138 0.00236402) 13647
(0.01408 0.00622184 0.00236351) 13648
(0.0180739 0.00623602 0.00236257) 13656
(0.0186422 0.00623034 0.00236786) 13657
(0.019173 0.00622469 0.00237158) 13658
(0.0196938 0.00621726 0.00237133) 13659
(0.0202368 0.00620667 0.00236712) 13660
(0.0207635 0.00619665 0.00235822) 13661
(0.0212569 0.00619039 0.00234819) 13662
(0.0217259 0.00618603 0.00233706) 13663
(0.0122207 0.00601826 0.00209817) 13704
(0.012716 0.00601582 0.0020973) 13705
(0.0131525 0.00601642 0.0020911) 13706
(0.0135599 0.00602329 0.00208668) 13707
(0.00484732 0.00581887 0.00187245) 13749
(0.00529976 0.00582385 0.00186285) 13750
(0.00572936 0.00582473 0.0018571) 13751
(0.00517211 0.00557761 0.00170538) 13810
(0.00419794 0.00475352 0.00158823) 13988
(0.00453842 0.00473429 0.00159341) 13989
(0.0049241 0.00445735 0.00155884) 5709
(0.0049241 0.00445735 0.00155884) 5709
(0.0049241 0.00445735 0.00155884) 5709
(0.00577359 0.00442496 0.00167079) 14051
(0.00616634 0.00440869 0.00167797) 14052
(0.00657766 0.00440046 0.00167895) 14053
(0.0112159 0.00440097 0.00170641) 14062
(0.0117596 0.00440442 0.00171269) 14063
(0.0122431 0.0044059 0.00171547) 14064
(0.0126785 0.00440581 0.00171452) 14065
(0.00524967 0.00420131 0.00173072) 5650
(0.00550575 0.00420612 0.00178032) 14111
(0.00584775 0.00418659 0.00180657) 14111
(0.0062341 0.00417303 0.00181353) 14112
(0.00664674 0.00416442 0.00181438) 14113
(0.0100643 0.00416111 0.0018229) 14120
(0.0106857 0.004167 0.00183126) 14121
(0.011279 0.00417186 0.00183883) 14122
(0.0118154 0.00417704 0.00184278) 14123
(0.0122933 0.00417912 0.00184379) 14124
(0.0127241 0.00417881 0.00184128) 14125
(0.0131443 0.0041774 0.00183706) 14126
(0.00485286 0.00395666 0.00201468) 14169
(0.00523869 0.00396993 0.00201381) 14170
(0.0105454 0.00361889 0.00289116) 14361
(0.0111034 0.00362599 0.00289232) 14362
(0.0116552 0.00363416 0.00289253) 14363
(0.0122211 0.00364356 0.00289398) 14364
(0.0127705 0.00365116 0.00289492) 14365
(0.0132709 0.00365314 0.00289416) 14366
(0.0137166 0.00364875 0.00289281) 14367
(0.0141191 0.00364031 0.00289187) 14368
(0.0145214 0.00363152 0.00288978) 14369
(0.0105739 0.00358458 0.00319287) 14421
(0.0111699 0.00359403 0.00319472) 14422
(0.0117662 0.00360599 0.00319624) 14423
(0.0123482 0.0036167 0.00319673) 14424
(0.0128788 0.00362235 0.00319671) 14425
(0.0133694 0.00362321 0.00319583) 14426
(0.0138329 0.00362082 0.00319652) 14427
(0.0142716 0.00361549 0.0031974) 14428
(0.014727 0.00361066 0.00319998) 14429
(0.00540801 0.00360124 0.00334436) 14470
(0.00555654 0.00366238 0.00343141) 14471
(0.00575948 0.00368558 0.00349372) 14471
(0.00611945 0.00369671 0.00352294) 14472
(0.00662018 0.0036914 0.00352434) 14473
(0.00515102 0.00379529 0.00373873) 14530
(0.00544935 0.0038032 0.00375919) 14530
(0.00581595 0.00379656 0.0037614) 14531
(0.00626004 0.00378464 0.003758) 14532
(0.00427537 0.00388985 0.00393937) 14588
(0.0045571 0.00391329 0.00395075) 14589
(0.00489756 0.00396718 0.00394957) 14589
(0.00539193 0.00399898 0.00394674) 14590
(0.00595299 0.00400595 0.00394344) 14591
(0.00411897 0.00471327 0.00437377) 14768
(0.00442909 0.00497505 0.00442378) 14828
(0.00488724 0.00500867 0.00442462) 14829
(0.00530996 0.0050164 0.00442994) 14830
(0.0056821 0.00501465 0.00444199) 14831
(0.00606615 0.00500867 0.00445181) 14832
(0.0043124 0.00526432 0.00437225) 14888
(0.00476597 0.00528689 0.00438075) 14889
(0.0051976 0.00529413 0.00438838) 14890
(0.00559496 0.00529344 0.0044013) 14891
(0.004189 0.00645733 0.00330504) 15188
(0.00470067 0.00640765 0.0033852) 15189
(0.00522639 0.00637687 0.00341128) 15190
(0.00469351 0.00638616 0.00280397) 13509
(0.00469351 0.00638616 0.00280397) 13509
(0.00469351 0.00638616 0.00280397) 13509
(0.00492319 0.00647315 0.00299545) 13509
(0.00535141 0.0064556 0.00310092) 15250
(0.0057929 0.00644491 0.00313116) 15251
(0.00624254 0.00644211 0.00313666) 15252
(0.00669988 0.00644274 0.00313366) 15253
(-0.00033143 0.00645103 0.00293657) 35708
(-0.000264275 0.00646699 0.00294619) 35709
(0.0039141 0.00625821 0.00266657) 13567
(0.00425714 0.00633224 0.00261675) 13568
(0.0010847 0.00437444 0.0017256) 14042
(0.00491458 0.00431207 0.00161526) 5709
(0.00493007 0.00431055 0.00158569) 5709
(0.0048923 0.00442475 0.00155309) 5709
(0.00479983 0.00424672 0.00173428) 14109
(0.00436319 0.00421141 0.00173498) 14108
(0.00358372 0.00422749 0.00172527) 14107
(0.00481955 0.00419958 0.00170776) 5649
(0.00181548 0.00357382 0.00349616) 5343
(0.00107169 0.00358484 0.0034959) 5342
(0.00278562 0.00358789 0.00345863) 14465
(0.00278228 0.0035699 0.00342382) 14465
(0.00481371 0.00369048 0.00357292) 14469
(0.00400938 0.00364827 0.00360568) 14528
(0.00434062 0.00364986 0.00360968) 14528
(0.00482096 0.00362664 0.00357545) 14469
(0.00493637 0.00378111 0.00353682) 14469
(0.00200634 0.00502495 0.00439725) 14824
(0.00200872 0.00494724 0.00443333) 14824
(0.00273044 0.00494034 0.00442576) 14825
(0.00370177 0.00492005 0.00440284) 14827
(0.0013665 0.00643004 0.0030908) 15242
(-0.000205268 0.00647041 0.00306538) 35999
(0.00420121 0.00612223 0.00293529) 16448
(0.0213528 0.00306255 0.00214063) 522
(0.0227228 0.00303594 0.00218243) 525
(0.0213164 0.00318848 0.00414732) 1002
(0.0221323 0.00703322 0.00384079) 23864
(0.0231256 0.00710492 0.00375776) 23866
(0.021673 0.00688395 0.00364529) 2023
(0.0233056 0.00696214 0.00358735) 2026
(0.0128561 0.00647644 0.00416929) 6685
(0.0128561 0.00647644 0.00416929) 6685
(0.0128561 0.00647644 0.00416929) 6685
(0.0138202 0.00643589 0.00413228) 6687
(0.0138202 0.00643589 0.00413228) 6687
(0.0138202 0.00643589 0.00413228) 6687
(0.0145791 0.00641102 0.00411505) 6689
(0.0145791 0.00641102 0.00411505) 6689
(0.0145791 0.00641102 0.00411505) 6689
(0.0151983 0.00639608 0.00410782) 6690
(0.0157303 0.00638992 0.00410333) 6691
(0.0162161 0.0063892 0.00409972) 6692
(0.0166905 0.00638868 0.00409572) 6693
(0.017179 0.00638704 0.00409041) 6694
(0.0176937 0.00638086 0.00408563) 6695
(0.0182107 0.00637205 0.00408316) 6696
(0.0186992 0.00636497 0.00408231) 6697
(0.0191247 0.00636141 0.00408438) 6698
(0.0123909 0.0061028 0.00440944) 9324
(0.0132218 0.00609023 0.00438133) 9326
(0.014039 0.00608001 0.00435881) 9328
(0.0147368 0.00607143 0.00434498) 9329
(0.0153116 0.00606534 0.00433783) 9330
(0.0231832 0.00328454 0.00331264) 5446
(0.0234953 0.0065974 0.00223705) 6106
(0.0245737 0.00662663 0.00225652) 6109
(0.0220917 0.00684954 0.00431548) 1904
(0.0233925 0.00688052 0.00423739) 1906
(0.0217505 0.00661297 0.0041843) 6643
(0.0238972 0.0066269 0.00412236) 6707
(0.0247793 0.00667616 0.00411475) 1969
(0.0211367 0.00643647 0.00128934) 6822
(0.0222727 0.0064138 0.0013014) 6824
(0.0213809 0.00358613 0.00455701) 7182
(0.0230371 0.00358531 0.00454742) 7186
(0.0240777 0.00360561 0.00458056) 7188
(0.0213903 0.00343921 0.00162791) 9222
(0.0232795 0.00345048 0.00167359) 9286
(0.0243308 0.00342538 0.00169792) 468
(0.0219028 0.0062968 0.00444109) 12883
(0.0216988 0.0060761 0.00473387) 12223
(0.0234139 0.00608517 0.00471217) 12226
(0.0215876 0.0057639 0.00499722) 12583
(0.0215876 0.0057639 0.00499722) 12583
(0.0215876 0.0057639 0.00499722) 12583
(0.0233524 0.00575794 0.00497684) 9466
(0.0233524 0.00575794 0.00497684) 9466
(0.0233524 0.00575794 0.00497684) 9466
(0.0243385 0.00580027 0.0049663) 12588
(0.0215384 0.00437325 0.00497822) 9523
(0.0215716 0.00394857 0.00479956) 9583
(0.023147 0.0039649 0.00481435) 9586
(0.0220028 0.00382759 0.00142113) 12764
(0.024346 0.0038446 0.00141445) 12768
(0.0221254 0.00418766 0.00126689) 9764
(0.024392 0.00413733 0.00125433) 11508
(0.0217344 0.00454735 0.00114233) 9823
(0.0236275 0.00444782 0.00114668) 11567
(0.0215124 0.00485726 0.00100325) 9883
(0.023233 0.00480951 0.00100486) 11626
(0.021284 0.00568688 0.0010611) 12162
(0.0228708 0.00565644 0.00104358) 12165
(0.0212056 0.00602942 0.00113567) 12462
(0.0227287 0.00605061 0.00115123) 12465
(0.0215535 0.00538021 0.000955432) 12103
(0.0233496 0.00532442 0.000972077) 10126
(0.0222584 0.00505723 0.000770001) 11924
(0.023095 0.00498114 0.000783769) 11626
(0.0214041 0.0051899 0.00514885) 11442
(0.0228558 0.00517733 0.00513625) 11445
(0.023838 0.0052098 0.00513418) 11447
(0.0210446 0.003989 0.00110683) 12762
(0.0223745 0.00395656 0.00110049) 13004
(0.0221218 0.00665376 0.0045278) 6584
(0.0211507 0.00324969 0.00277808) 13302
(0.0236665 0.00331865 0.00285407) 13307
(0.0226395 0.00310389 0.00313851) 765
(0.0248266 0.00311195 0.00312104) 769
(0.0252913 0.00306826 0.00312052) 770
(0.0212895 0.0067339 0.00178129) 2442
(0.0233319 0.00669569 0.00185868) 2446
(0.0245851 0.0066862 0.00185107) 2449
(0.0247481 0.00660876 0.00174048) 2509
(0.0231653 0.00630111 0.00176645) 13486
(0.0240193 0.00632828 0.00175484) 13488
(0.00461972 0.00641841 0.0026257) 13569
(0.00461972 0.00641841 0.0026257) 13569
(0.00461972 0.00641841 0.0026257) 13569
(0.00487374 0.00646058 0.00274352) 13509
(0.00519426 0.00646482 0.00281937) 13510
(0.00563748 0.0064575 0.00285932) 13511
(0.00615047 0.00645003 0.00287713) 13512
(0.0046334 0.00632708 0.00248649) 13569
(0.0110929 0.00622093 0.00235742) 13642
(0.0116372 0.00621504 0.00236205) 13643
(0.0121804 0.0062083 0.00236544) 13644
(0.012714 0.00620243 0.00236677) 13645
(0.0131948 0.00620322 0.00236524) 13646
(0.0136331 0.00621117 0.00236395) 13647
(0.0140612 0.00622159 0.00236346) 13648
(0.0180482 0.00623646 0.0023624) 13656
(0.0186181 0.00623073 0.00236766) 13657
(0.0191503 0.00622515 0.00237157) 13658
(0.0196706 0.00621782 0.00237142) 13659
(0.0202133 0.00620731 0.00236741) 13660
(0.0207411 0.00619723 0.00235871) 13661
(0.0212356 0.00619085 0.0023487) 13662
(0.0217054 0.00618644 0.00233761) 13663
(0.012199 0.00601854 0.00209812) 13704
(0.0126966 0.00601596 0.00209745) 13705
(0.0131349 0.00601642 0.0020913) 13706
(0.0135411 0.00602308 0.00208662) 13707
(0.00482485 0.00581838 0.00187255) 13749
(0.00527935 0.00582379 0.00186313) 13750
(0.00570893 0.00582474 0.00185722) 13751
(0.00515149 0.0055775 0.00170563) 13810
(0.00418423 0.0047538 0.00158782) 13988
(0.00452057 0.00473493 0.00159287) 13989
(0.00492036 0.0044545 0.00155751) 5709
(0.00492036 0.0044545 0.00155751) 5709
(0.00492036 0.0044545 0.00155751) 5709
(0.00575391 0.00442589 0.00167) 14051
(0.00614662 0.00440925 0.00167778) 14052
(0.00655739 0.00440087 0.00167896) 14053
(0.011191 0.00440089 0.00170607) 14062
(0.0117371 0.0044044 0.00171239) 14063
(0.0122228 0.00440594 0.00171529) 14064
(0.0126596 0.00440589 0.00171448) 14065
(0.00523823 0.00419842 0.00172849) 5650
(0.00549009 0.00420597 0.00177856) 14110
(0.00582917 0.00418716 0.00180584) 14111
(0.00621447 0.00417349 0.0018134) 14112
(0.00662641 0.00416489 0.00181436) 14113
(0.0100376 0.00416101 0.00182255) 14120
(0.010659 0.00416687 0.0018309) 14121
(0.0112544 0.00417177 0.0018385) 14122
(0.0117931 0.00417695 0.00184256) 14123
(0.0122731 0.0041791 0.00184371) 14124
(0.0127051 0.00417886 0.0018413) 14125
(0.0131248 0.00417749 0.00183705) 14126
(0.00483276 0.00395559 0.00201512) 14169
(0.0052187 0.00396915 0.00201383) 14170
(0.010521 0.00361882 0.00289106) 14361
(0.0110798 0.00362585 0.00289222) 14362
(0.0116314 0.0036339 0.0028924) 14363
(0.0121963 0.00364316 0.00289382) 14364
(0.0127475 0.00365092 0.00289485) 14365
(0.0132499 0.00365315 0.00289414) 14366
(0.0136979 0.00364903 0.00289281) 14367
(0.0141017 0.00364074 0.00289188) 14368
(0.0145029 0.00363195 0.00288982) 14369
(0.010547 0.00358437 0.00319281) 14421
(0.0111434 0.00359368 0.0031946) 14422
(0.0117398 0.00360553 0.00319621) 14423
(0.0123232 0.00361631 0.00319668) 14424
(0.0128562 0.00362222 0.00319675) 14425
(0.0133477 0.0036232 0.00319585) 14426
(0.0138124 0.00362096 0.0031965) 14427
(0.0142516 0.00361573 0.00319732) 14428
(0.0147056 0.00361091 0.00319993) 14429
(0.00540194 0.00359601 0.00334165) 14470
(0.00554886 0.00365966 0.00342806) 14471
(0.0057462 0.00368403 0.0034913) 14471
(0.00609915 0.00369607 0.00352174) 14472
(0.00659467 0.0036916 0.00352442) 14473
(0.00514088 0.00379361 0.00373737) 14530
(0.00543429 0.00380262 0.0037584) 14530
(0.00579923 0.00379648 0.0037612) 14531
(0.0062377 0.00378485 0.00375806) 14532
(0.00426075 0.00389045 0.00393873) 14588
(0.00454238 0.00391162 0.00395109) 14589
(0.00487774 0.00396484 0.00394944) 14589
(0.00536541 0.00399739 0.00394659) 14590
(0.00592792 0.00400556 0.00394273) 14591
(0.00409176 0.00471347 0.0043738) 14768
(0.00440499 0.00497311 0.00442431) 14828
(0.00486378 0.00500781 0.0044249) 14829
(0.00528753 0.00501628 0.00442989) 14830
(0.00566031 0.00501495 0.00444176) 14831
(0.00604276 0.00500889 0.00445176) 14832
(0.00429043 0.00526342 0.00437196) 14888
(0.00474496 0.0052863 0.00438056) 14889
(0.00517567 0.00529415 0.00438813) 14890
(0.00557234 0.00529374 0.00440098) 14891
(0.00416301 0.00645992 0.00329907) 15188
(0.00467163 0.00641008 0.00338241) 15189
(0.00519982 0.00637816 0.00341053) 15190
(0.00468092 0.00637308 0.00280328) 13509
(0.00468092 0.00637308 0.00280328) 13509
(0.00468092 0.00637308 0.00280328) 13509
(0.00490189 0.00647271 0.0029882) 13509
(0.00532689 0.00645674 0.00309814) 15250
(0.00576961 0.00644547 0.00313031) 15251
(0.00621939 0.00644233 0.00313669) 15252
(0.0066775 0.00644283 0.00313379) 15253
(-0.000358843 0.0064514 0.00293466) 35708
(-0.000258463 0.00646616 0.00294607) 35709
(0.00424361 0.00632866 0.00261896) 13568
(0.00330555 0.00554566 0.00182178) 13806
(0.00101566 0.00439349 0.00172688) 14042
(0.00493186 0.00431188 0.00161595) 5709
(0.00494598 0.00430903 0.00158602) 5709
(0.00489832 0.00441881 0.00155239) 5709
(0.00482323 0.0042498 0.00173929) 14109
(0.00444161 0.00421322 0.00173335) 14108
(0.00356994 0.004225 0.00172714) 14107
(0.00480821 0.00420281 0.00170724) 5649
(0.00489735 0.00410347 0.00175441) 5649
(0.00226709 0.00357764 0.00349439) 5344
(0.0012082 0.00358267 0.00349632) 5342
(0.00275141 0.00358644 0.00345933) 14465
(0.00306117 0.00358929 0.00343367) 14466
(0.00510489 0.00356533 0.00321654) 14410
(0.00483184 0.0037087 0.00356577) 14469
(0.00409937 0.00364742 0.00360618) 14528
(0.00442428 0.00364841 0.00360526) 14528
(0.00480561 0.00362778 0.0035798) 14469
(0.00494349 0.00377309 0.00353575) 14469
(0.00198497 0.00495062 0.00443383) 14823
(0.0027074 0.00494082 0.00442583) 14825
(0.00367838 0.00491983 0.00440497) 14827
(0.00133523 0.00642911 0.00309318) 15242
(-0.000222022 0.00646945 0.00306605) 35999
(0.00417695 0.00612775 0.00295683) 17948
(0.0213084 0.00306329 0.00213904) 522
(0.0226918 0.00303942 0.00217944) 525
(0.0218299 0.00322404 0.00450705) 1063
(0.0221057 0.00703117 0.00384391) 23864
(0.0231123 0.00709935 0.0037639) 23866
(0.0216184 0.00688066 0.00364942) 2023
(0.0232579 0.00695899 0.00358899) 2026
(0.0128222 0.00647841 0.00417096) 6685
(0.0128222 0.00647841 0.00417096) 6685
(0.0128222 0.00647841 0.00417096) 6685
(0.0137915 0.00643738 0.00413291) 6687
(0.0137915 0.00643738 0.00413291) 6687
(0.0137915 0.00643738 0.00413291) 6687
(0.0145567 0.00641197 0.00411507) 6689
(0.0145567 0.00641197 0.00411507) 6689
(0.0145567 0.00641197 0.00411507) 6689
(0.0151798 0.00639673 0.00410753) 6690
(0.0157139 0.0063902 0.00410313) 6691
(0.0162008 0.00638939 0.00409944) 6692
(0.0166752 0.00638891 0.00409535) 6693
(0.0171626 0.00638736 0.00409016) 6694
(0.0176765 0.00638133 0.00408534) 6695
(0.0181939 0.00637247 0.00408288) 6696
(0.0186847 0.00636531 0.00408185) 6697
(0.0191129 0.00636174 0.00408365) 6698
(0.0123684 0.00610357 0.00441001) 9324
(0.013192 0.00609098 0.00438203) 9326
(0.0140129 0.00608061 0.00435909) 9328
(0.0147155 0.00607194 0.00434489) 9329
(0.0152949 0.0060657 0.00433746) 9330
(0.023128 0.00328469 0.0033119) 5446
(0.0234434 0.00659454 0.00223257) 6106
(0.024538 0.00662558 0.00225801) 6109
(0.0220596 0.00684879 0.00431767) 1904
(0.0233683 0.00687636 0.00424209) 1906
(0.0216809 0.00661108 0.00418952) 6643
(0.0238317 0.00662607 0.00412294) 6707
(0.0247719 0.00667242 0.00411621) 1969
(0.0211076 0.00643753 0.00128963) 6822
(0.0222457 0.0064166 0.00130323) 6824
(0.0213248 0.00358613 0.00455652) 7182
(0.0229912 0.00358564 0.00454593) 7185
(0.0240674 0.0036035 0.00457623) 7188
(0.0213377 0.00344172 0.00162305) 9222
(0.0232263 0.0034514 0.0016731) 9286
(0.0243194 0.0034294 0.00169536) 468
(0.0218447 0.00629493 0.00444445) 12883
(0.0216442 0.00607524 0.00473566) 12223
(0.0233627 0.0060841 0.00471191) 12226
(0.0215301 0.00576465 0.00499755) 12583
(0.0215301 0.00576465 0.00499755) 12583
(0.0215301 0.00576465 0.00499755) 12583
(0.0233029 0.00575686 0.00497652) 9466
(0.0233029 0.00575686 0.00497652) 9466
(0.0233029 0.00575686 0.00497652) 9466
(0.0243264 0.00579646 0.00496654) 12588
(0.0215016 0.00437152 0.00497625) 9523
(0.0215213 0.00394782 0.00479801) 9583
(0.0231021 0.00396493 0.00481236) 9586
(0.0219096 0.00382839 0.00141899) 12763
(0.0243095 0.00384785 0.00141585) 12768
(0.0220407 0.00419158 0.00126622) 9764
(0.0243551 0.00414079 0.00125662) 11508
(0.0216762 0.00455435 0.00114117) 9823
(0.0235638 0.00445091 0.00114779) 11567
(0.0214598 0.00486148 0.0010032) 9882
(0.0231786 0.00481211 0.00100593) 11626
(0.0212408 0.00569033 0.00106312) 12162
(0.0228259 0.00565818 0.00104533) 12165
(0.0211688 0.00602944 0.00113613) 12462
(0.0226855 0.00605115 0.00115237) 12465
(0.0215003 0.00538563 0.000956072) 12103
(0.0232941 0.0053258 0.000972928) 10126
(0.0222362 0.00506035 0.000769605) 11924
(0.0230857 0.00498768 0.000784911) 11626
(0.0213627 0.0051897 0.00514873) 11442
(0.0228166 0.00517735 0.00513558) 11445
(0.0238258 0.0052057 0.00513311) 11447
(0.0223357 0.00395907 0.00110069) 13004
(0.0220947 0.00665373 0.00452877) 6584
(0.0236256 0.00331976 0.0028521) 13307
(0.022546 0.00310551 0.0031366) 765
(0.024795 0.0031146 0.00312184) 769
(0.0252789 0.00307075 0.00311906) 770
(0.0212383 0.00673553 0.00178034) 2442
(0.0232656 0.00669672 0.00185752) 2446
(0.0245682 0.00668661 0.00185487) 2449
(0.0247674 0.00661646 0.00174818) 2509
(0.0231069 0.00629873 0.00176298) 13486
(0.0239857 0.00632835 0.00175752) 13487
(0.00460363 0.00641561 0.0026213) 13569
(0.00460363 0.00641561 0.0026213) 13569
(0.00460363 0.00641561 0.0026213) 13569
(0.00485713 0.00646034 0.00273882) 13509
(0.00517247 0.00646567 0.00281624) 13510
(0.00561218 0.00645825 0.00285775) 13511
(0.00612555 0.00645047 0.00287647) 13512
(0.00461275 0.00632614 0.00248532) 13569
(0.0110699 0.00622124 0.00235719) 13642
(0.0116144 0.00621543 0.00236185) 13643
(0.0121572 0.00620874 0.00236525) 13644
(0.0126921 0.00620274 0.00236673) 13645
(0.0131749 0.00620321 0.00236519) 13646
(0.013614 0.00621096 0.00236386) 13647
(0.0140424 0.00622135 0.00236339) 13648
(0.0144732 0.00623103 0.00236335) 13648
(0.0180225 0.00623689 0.0023622) 13656
(0.0185941 0.00623112 0.00236744) 13657
(0.0191275 0.0062256 0.00237154) 13658
(0.0196474 0.00621837 0.0023715) 13659
(0.0201897 0.00620795 0.00236768) 13660
(0.0207186 0.00619782 0.00235918) 13661
(0.0212142 0.0061913 0.0023492) 13662
(0.021685 0.00618685 0.00233817) 13663
(0.0121773 0.00601882 0.00209806) 13704
(0.0126771 0.00601611 0.00209758) 13705
(0.0131173 0.00601643 0.00209151) 13706
(0.0135224 0.00602287 0.00208655) 13707
(0.00480229 0.00581787 0.00187264) 13749
(0.00525892 0.00582373 0.00186342) 13750
(0.00568855 0.00582475 0.00185735) 13751
(0.00513085 0.0055774 0.00170587) 13810
(0.00417062 0.00475406 0.00158743) 13988
(0.0045029 0.00473555 0.00159232) 13989
(0.00491686 0.0044516 0.00155626) 5709
(0.00491686 0.0044516 0.00155626) 5709
(0.00491686 0.0044516 0.00155626) 5709
(0.0057342 0.00442682 0.00166914) 14051
(0.00612694 0.00440983 0.00167756) 14052
(0.00653715 0.00440129 0.00167894) 14053
(0.011166 0.00440081 0.00170571) 14062
(0.0117145 0.00440439 0.00171207) 14063
(0.0122025 0.00440597 0.0017151) 14064
(0.0126407 0.00440598 0.00171442) 14065
(0.00522691 0.0041954 0.00172627) 5650
(0.0054746 0.0042057 0.00177677) 14110
(0.00581068 0.0041877 0.00180506) 14111
(0.00619491 0.00417395 0.00181324) 14112
(0.00660612 0.00416536 0.00181433) 14113
(0.0100111 0.00416092 0.00182219) 14120
(0.0106323 0.00416675 0.00183052) 14121
(0.0112298 0.0041717 0.00183815) 14122
(0.0117707 0.00417684 0.00184233) 14123
(0.0122528 0.00417907 0.00184361) 14124
(0.0126862 0.00417892 0.00184131) 14125
(0.0131053 0.00417757 0.00183704) 14126
(0.00481263 0.00395453 0.00201554) 14169
(0.00519871 0.00396834 0.00201388) 14170
(0.0104965 0.00361875 0.00289094) 14360
(0.0110562 0.00362572 0.00289209) 14362
(0.0116077 0.00363364 0.00289226) 14363
(0.0121715 0.00364276 0.00289364) 14364
(0.0127244 0.00365067 0.00289476) 14365
(0.0132288 0.00365315 0.00289411) 14366
(0.0136791 0.0036493 0.00289279) 14367
(0.0140843 0.00364116 0.00289185) 14368
(0.0144845 0.00363237 0.00288986) 14368
(0.0105201 0.00358417 0.00319278) 14421
(0.0111169 0.00359333 0.00319442) 14422
(0.0117135 0.00360507 0.00319615) 14423
(0.012298 0.00361591 0.00319663) 14424
(0.0128335 0.00362208 0.00319678) 14425
(0.0133259 0.00362318 0.00319585) 14426
(0.0137918 0.00362109 0.00319645) 14427
(0.0142315 0.00361598 0.00319725) 14428
(0.0146843 0.00361114 0.00319987) 14429
(0.00539598 0.00359074 0.00333899) 14470
(0.0055415 0.00365683 0.00342469) 14471
(0.00573315 0.00368244 0.00348884) 14471
(0.00607912 0.00369537 0.00352048) 14472
(0.00656933 0.00369176 0.00352441) 14473
(0.0051311 0.00379184 0.00373601) 14530
(0.00541931 0.003802 0.00375758) 14530
(0.00578265 0.00379638 0.00376097) 14531
(0.00621562 0.00378503 0.00375806) 14532
(0.00424593 0.00389112 0.00393807) 14588
(0.00452774 0.00391004 0.0039514) 14589
(0.00485822 0.00396253 0.00394932) 14589
(0.00533902 0.00399577 0.00394644) 14590
(0.00590279 0.0040051 0.00394204) 14591
(0.00406458 0.00471377 0.00437381) 14768
(0.00438058 0.00497119 0.00442482) 14828
(0.00484014 0.00500688 0.0044252) 14829
(0.00526502 0.00501612 0.00442985) 14830
(0.00563855 0.00501523 0.00444152) 14831
(0.00601949 0.00500913 0.00445168) 14832
(0.00426823 0.00526254 0.00437168) 14888
(0.00472388 0.00528567 0.00438035) 14889
(0.0051538 0.00529414 0.00438788) 14890
(0.00554984 0.00529402 0.00440064) 14891
(0.0041365 0.0064624 0.00329282) 15248
(0.00464241 0.00641252 0.00337945) 15189
(0.00517294 0.00637952 0.00340971) 15190
(0.00466712 0.00635985 0.00280398) 13509
(0.00466712 0.00635985 0.00280398) 13509
(0.00466712 0.00635985 0.00280398) 13509
(0.00488092 0.00647203 0.00298077) 13509
(0.00530219 0.0064579 0.0030952) 15250
(0.00574624 0.00644605 0.00312939) 15251
(0.00619623 0.00644257 0.00313667) 15252
(0.00665508 0.00644293 0.0031339) 15253
(-0.000392825 0.00645212 0.00293214) 35708
(-0.000235892 0.0064648 0.00294661) 35709
(0.00422997 0.00632529 0.00262102) 13568
(0.00327355 0.00554731 0.00181883) 13806
(0.00094686 0.00440898 0.00172635) 14041
(0.00494903 0.00431195 0.00161701) 5709
(0.00495957 0.00430781 0.00158637) 5709
(0.00490503 0.00441232 0.00155153) 5709
(-0.000472439 0.0041995 0.00178558) 35808
(0.00483732 0.00425238 0.00174368) 14109
(0.00447998 0.00421586 0.00173235) 14108
(0.00352546 0.00422249 0.00172815) 14107
(0.00479856 0.00420596 0.00170663) 5649
(0.0048911 0.004102 0.00175428) 5649
(0.00268462 0.00359527 0.00349793) 14465
(0.00134802 0.00358037 0.0034963) 5342
(0.00270179 0.00358413 0.00346021) 14465
(0.00327064 0.00360647 0.00344255) 14466
(0.00510254 0.0035592 0.00321436) 14410
(0.00483166 0.00372099 0.00356256) 14469
(0.00414754 0.00364712 0.00360575) 14528
(0.00446924 0.00364785 0.00360111) 14528
(0.00479328 0.00362876 0.00358393) 14469
(0.00495054 0.003765 0.00353475) 14469
(0.00196359 0.00495433 0.0044342) 14823
(0.00268468 0.00494128 0.0044259) 14825
(0.00365481 0.00491956 0.00440672) 14827
(0.00129619 0.00642658 0.00310241) 15242
(-0.000285086 0.00646806 0.00306845) 35999
(0.00417965 0.00613782 0.00296371) 17948
)
// ************************************************************************* //
| [
"gijsbert"
] | gijsbert | |
c8a5743d5cfeec5a099436b4eaaeab0174e4a0f4 | 872f24199d847f05ddb4d8f7ac69eaed9336a0d5 | /code/imageanalysis/ImageAnalysis/Image2DConvolver.h | a4640bd4ece3da2546ccc9f3d006dd022f0e903d | [] | no_license | schiebel/casa | 8004f7d63ca037b4579af8a8bbfb4fa08e87ced4 | e2ced7349036d8fc13d0a65aad9a77b76bfe55d1 | refs/heads/master | 2016-09-05T16:20:59.022063 | 2015-08-26T18:46:26 | 2015-08-26T18:46:26 | 41,441,084 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 6,592 | h | //# Image2DConvolver.h: 2D convolution of an image
//# Copyright (C) 1996,1997,1998,1999,2000,2001,2002,2003
//# Associated Universities, Inc. Washington DC, USA.
//#
//# This library is free software; you can redistribute it and/or modify it
//# under the terms of the GNU Library General Public License as published by
//# the Free Software Foundation; either version 2 of the License, or (at your
//# option) any later version.
//#
//# This library 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 Library General Public
//# License for more details.
//#
//# You should have received a copy of the GNU Library General Public License
//# along with this library; if not, write to the Free Software Foundation,
//# Inc., 675 Massachusetts Ave, Cambridge, MA 02139, USA.
//#
//# Correspondence concerning AIPS++ should be addressed as follows:
//# Internet email: aips2-request@nrao.edu.
//# Postal address: AIPS++ Project Office
//# National Radio Astronomy Observatory
//# 520 Edgemont Road
//# Charlottesville, VA 22903-2475 USA
//#
//# $Id: Image2DConvolver.h 20229 2008-01-29 15:19:06Z gervandiepen $
#ifndef IMAGES_IMAGE2DCONVOLVER_H
#define IMAGES_IMAGE2DCONVOLVER_H
#include <imageanalysis/ImageAnalysis/ImageTask.h>
#include <casa/aips.h>
#include <casa/Logging/LogIO.h>
#include <casa/Arrays/Array.h>
#include <scimath/Mathematics/VectorKernel.h>
#include <casa/Quanta/Quantum.h>
namespace casa { //# NAMESPACE CASA - BEGIN
//# Forward Declarations
template <class T> class ImageInterface;
template <class T> class Matrix;
template <class T> class Vector;
class String;
class IPosition;
class CoordinateSystem;
class ImageInfo;
class Unit;
class GaussianBeam;
// <summary>
// This class does 2D convolution of an image by a functional form
// </summary>
// <use visibility=export>
// <reviewed reviewer="" date="yyyy/mm/dd" tests="" demos="">
// </reviewed>
// <prerequisite>
// <li> <linkto class="ImageInterface">ImageInterface</linkto>
// <li> <linkto class="Convolver">Convolver</linkto>
// </prerequisite>
// <etymology>
// This class handles 2D convolution of images
// </etymology>
// <synopsis>
// This class convolves an image by a specified 2D function.
// </synopsis>
// <example>
// <srcBlock>
// </srcBlock>
// </example>
// <motivation>
// Convolution is a standard image processing requirement. The
// class object has no state.
// The convolution is done via FFT. Thus input pixels which
// are masked are set to 0 before the convolution. The mask
// is transferred to the output image. No additional scaling
// of the output image values is done.
//
// </motivation>
// <todo asof="2001/08/28">
// <li>
// </todo>
template <class T> class Image2DConvolver : public ImageTask<T> {
public:
const static String CLASS_NAME;
Image2DConvolver() = delete;
Image2DConvolver(
const SPCIIT image, const Record *const ®ionPtr,
const String& mask, const String& outname, const Bool overwrite
);
Image2DConvolver(const Image2DConvolver<T> &other) = delete;
~Image2DConvolver() {}
Image2DConvolver &operator=(const Image2DConvolver<T> &other) = delete;
// DEPRECATED. Use the object method instead. Convolve. If the output
// image needs a mask and doesn't have one,
// it will be given one if possible. The miscInfo, imageInfo,
// units and logger will be copied from the input to the output
// unless you indicate not to (copyMiscellaneous).
static void convolve(
LogIO& os, SPIIT imageOut, const ImageInterface<T>& imageIn,
VectorKernel::KernelTypes kernelType, const IPosition& pixelAxes,
const Vector<Quantity>& parameters, Bool autoScale, Double scale,
Bool copyMiscellaneous=True, Bool targetres=False, Bool suppressWarnings=False
);
SPIIT convolve();
void setKernel(
const String& type, const Quantity& major, const Quantity& minor,
const Quantity& pa
);
void setScale(Double d) { _scale = d; }
void setAxes(const std::pair<uInt, uInt>& axes);
void setTargetRes(Bool b) { _targetres = b; }
String getClass() const { return CLASS_NAME; }
// if True, do not log certain warning messages which would normally
// be logged during convolution
void setSuppressWarnings(Bool b) { _suppressWarnings = b; }
protected:
CasacRegionManager::StokesControl _getStokesControl() const {
return CasacRegionManager::USE_ALL_STOKES;
}
vector<Coordinate::Type> _getNecessaryCoordinates() const {
return vector<Coordinate::Type>();
}
inline Bool _supportsMultipleRegions() const {return True;}
private:
VectorKernel::KernelTypes _type;
Double _scale;
Quantity _major, _minor, _pa;
IPosition _axes;
Bool _targetres, _suppressWarnings;
static void _checkKernelParameters(
VectorKernel::KernelTypes kernelType,
const Vector<Quantity>& parameters
);
// returns the value by which pixel values will be scaled
static T _dealWithRestoringBeam (
LogIO& os, String& brightnessUnitOut, GaussianBeam& beamOut,
const Array<T>& kernelArray, const T kernelVolume,
const VectorKernel::KernelTypes kernelType,
const Vector<Quantity>& parameters,
const IPosition& axes, const CoordinateSystem& cSys,
const GaussianBeam& beamIn, const Unit& brightnessUnit,
Bool autoscale, Double scale, Bool emitMessage,
Bool suppressWarnings
);
static T _fillKernel (
Matrix<T>& kernelMatrix,
VectorKernel::KernelTypes kernelType,
const IPosition& kernelShape,
const IPosition& axes,
const Vector<Double>& parameters
);
static void _fillGaussian(
T& maxVal, T& volume, Matrix<T>& pixels,
T height, T xCentre, T yCentre,
T majorAxis, T ratio, T positionAngle
);
static T _makeKernel(
Array<T>& kernel,
VectorKernel::KernelTypes kernelType,
const Vector<Quantity>& parameters,
const IPosition& axes,
const ImageInterface<T>& inImage
);
static IPosition _shapeOfKernel(
const VectorKernel::KernelTypes kernelType,
const Vector<Double>& parameters,
const uInt ndim, const IPosition& axes
);
static uInt _sizeOfGaussian(const Double width, const Double nSigma);
static Vector<Quantity> _getConvolvingBeamForTargetResolution(
const Vector<Quantity>& targetBeamParms,
const GaussianBeam& inputBeam
);
};
} //# NAMESPACE CASA - END
#ifndef CASACORE_NO_AUTO_TEMPLATES
#include <imageanalysis/ImageAnalysis/Image2DConvolver.tcc>
#endif //# CASACORE_NO_AUTO_TEMPLATES
#endif
| [
"darrell@schiebel.us"
] | darrell@schiebel.us |
716a451b13c9ea661a198a82a791bcc9ac438481 | 6c624736f46805a93bb493c1be4a028d43639e12 | /Scotch_V_1.0/callback.ino | 316130aff55ef26769d8827a82fbccbe6f5a3288 | [] | no_license | 3v3lab5/Scotch | d4aafd163396f5272d33713d6c488694159a2b9a | cba392790c7f9ed15818757c69577597d9394ee2 | refs/heads/master | 2021-05-04T18:34:29.712182 | 2018-03-16T07:27:39 | 2018-03-16T07:27:39 | 120,163,718 | 0 | 0 | null | 2018-03-16T07:27:40 | 2018-02-04T07:16:41 | C | UTF-8 | C++ | false | false | 3,652 | ino | /* CallBack fuction MQTT*/
void callback(char* topic, byte* payload, unsigned int length) {
payload[length] = '\0';
//compare topic of recive msgs
//if topic is drop factor channel create Menu of dropfactor
if (strcmp((char*)topic, r_channel_df) == 0)
{
char *d_f = (char*)payload;
dpf = MENU ("Dpf", d_f, u8g2); //create drop factor list
infuseMenu = 0; // move to df menu when list is created
}
//if topic is bed channel create Menu of bed
else if (strcmp(topic, r_channel_pat) == 0)
{
char *b_d = (char*)payload;
bed = MENU("Bed", b_d, u8g2); //create bed list
state = 5; // move to bed menu when list is created
}
//if topic is Med channel create Menu of Medicne
else if (strcmp(topic, r_channel_med) == 0)
{
char *m_d = (char*)payload;
med = MENU("Med", m_d, u8g2); //create med list
infuseMenu = 2; // move to med menu when list is created
}
//if topic is Rate channel create infusion details
else if (strcmp(topic, r_channel_rate) == 0)
{
char *token;
token = strtok((char*)payload, "&"); // timetable
_dripo.setTimetable(String((char*)token)); //save timetable
token = strtok(NULL, "&"); // name
_dripo.setNam(String((char*)token)); //save patient name
token = strtok(NULL, "&"); // Med NAme
_dripo.setMedName(String((char*)token)); //save med name
token = strtok(NULL, "&"); // Tvol //total volume
_dripo.setTvol(String((char*)token)); //save total vol
token = strtok(NULL, "&"); // Rate2set
_dripo.setR2set(String((char*)token)); //save rate to set
token = strtok(NULL, "&"); // Alertml
_dripo.setAlrt(String((char*)token)); //save alert ml
infuseMenu = 3;
}
//Station Acknowledge is recievd when err an error in infusion is acknowleged by station
else if (strcmp(topic, r_channel_staAck) == 0)
{
char *ack = (char*)payload;
if (strcmp(ack, "STA_ACK") == 0)
{
staAck = true; //ack recieved
}
}
// Recieve Err from Server
else if (strcmp(topic, r_channel_error) == 0)
{
char *_err = (char*)payload;
err_or = LOADER(_err, u8g2); //create err msg
if (state != 4 && ui_state != 17 && state != 2 && ui_state != 2)
{
prev_state = state;
prev_ui_state = ui_state;
ui_state = 17;
state = 4;
}
}
// //Update request from server
// else if (strcmp(topic, r_channel_update) == 0)
// {
//
// char *update_dripo = (char*)payload;
// if (strcmp(update_dripo, "update") == 0)
// {
// t_httpUpdate_return ret = ESPhttpUpdate.update(mqtt_server,3000, "/update_dripo", VERSION);
// // switch (ret) {
// // case HTTP_UPDATE_FAILED: .println("[update] Update failed.");
// //
// //
// // break;
// // case HTTP_UPDATE_NO_UPDATES:Serial.println("[update] Update no Update.");
// //
// // break;
// // case HTTP_UPDATE_OK:Serial.println("[update] Update ok."); // maynot called we reboot the ESP
// // ui_state = 5;
// // state = 8;
// // break;
// // }
// }
//
// }
}
/*This fucntion is is called every 30s, intilased in setup fn*/
void ticker_handler() {
ticker_reached = true; //ticker is true send data.. do nothing otherwise
//boolean sleep = false;
}
| [
"evelabs.co@gmail.com"
] | evelabs.co@gmail.com |
4dba37f31a35098afc7357630c474cf9a26962f4 | 2d7b655a43669f291dbab4975e243ceb6947ee9b | /A4/Material.cpp | 37f9e0478c21425c8bd9705570bca371cfc78d5d | [] | no_license | chinux23/CS488-Ray-Tracer | 555c879584126df2cd2851910559bd614c2d3a52 | 895a95d2c0389ce47fc41271551d77865f5de244 | refs/heads/master | 2021-01-17T17:11:53.086140 | 2019-08-24T05:56:03 | 2019-08-24T05:56:03 | 49,350,195 | 3 | 7 | null | null | null | null | UTF-8 | C++ | false | false | 75 | cpp | #include "Material.hpp"
Material::Material()
{}
Material::~Material()
{}
| [
"chen_huang@apple.com"
] | chen_huang@apple.com |
b83575d684707333f4c8f31b1eb462b22ed53245 | cdb7dbd070ce2e1eaebf6dea0b6c583e7fccf42d | /lab5.cpp | 2160898dd13b7f24e1a6a251e8d2667de02daaed | [] | no_license | Hyperboloider/lab5 | d0fcc560327c2eb9ec001680fc7e3e733db29361 | f970a706e1077446226b83948a0c218299e32fd7 | refs/heads/master | 2023-01-13T19:19:09.911743 | 2020-11-25T13:15:14 | 2020-11-25T13:15:14 | 315,944,304 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 710 | cpp | #include <iostream>
using namespace std;
int main() {
int i,j,number,divider, digit;
bool switcher;
for(i=1000;i<10000;i++) {
switcher = true;
number = i;
divider = 1;
for (j=0;j<3;j++) {
divider *= 10;
number = i/divider;
digit = (i/(divider/10))%10;
while (number>0 && switcher) {
if (number%10 == digit) {
switcher = false;
}
else {
number = number/10;
}
}
}
if(switcher) {
cout << i << endl;
}
}
return 0;
system("pause");
} | [
"kknyaz033@gmail.com"
] | kknyaz033@gmail.com |
6456c8b2b0f5c8dc17909d0ff6be6814aec2aa90 | d4ca079bee5a82d26ad16fd1232cc06a6d960a78 | /hw6/hw6/ex2/ex6!/main.cpp | 16afe8c01e73145f11b801ebaca9256b8a0e85ba | [] | no_license | AnnaBratucu/data-structures | 5320f6f62753c7fd38bdb282005f6505c58363a0 | b21c8acba48a1367abe310db146197cb7cc28213 | refs/heads/master | 2023-03-25T11:18:49.848516 | 2021-03-24T18:03:33 | 2021-03-24T18:03:33 | 351,177,000 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,209 | cpp | #include <stdio.h>
#include <stdlib.h>
#include <iostream>
using namespace std;
template<typename T> struct list_elem {
T info;
struct list_elem<T> *next, *prev;
};
template <typename T> class LinkedList {
public:
struct list_elem<T> *pfirst, *plast;
void addFirst(T x) {
struct list_elem<T> *paux;
paux = new struct list_elem<T>;
paux->info = x;
paux->prev = NULL;
paux->next = pfirst;
if (pfirst != NULL) pfirst->prev = paux;
pfirst = paux;
if (plast==NULL) plast=pfirst;
}
void addLast(T x) {
struct list_elem<T> *paux;
paux = new struct list_elem<T>;
paux->info = x;
paux->prev = plast;
paux->next = NULL;
if (plast != NULL) plast->next = paux;
plast = paux;
if (pfirst == NULL) pfirst = plast;
}
void removeFirst() {
struct list_elem<T>* paux;
if (pfirst != NULL) {
paux = pfirst->next;
if (pfirst == plast) plast = NULL;
delete pfirst;
pfirst = paux;
if (pfirst != NULL) pfirst->prev = NULL;
}
else cout<<"The list is empty"<<endl;
}
void removeLast() {
struct list_elem<T> *paux;
if (plast != NULL) {
paux = plast->prev;
if (pfirst == plast) pfirst = NULL;
delete plast;
plast = paux;
if (plast != NULL) plast->next = NULL;
}
else cout<<"The list is empty"<<endl;
}
struct list_elem<T>* findFirstOccurrence(T x) {
struct list_elem<T> *paux;
paux = pfirst;
while (paux != NULL) {
if (paux->info == x)
return paux;
paux = paux->next;
}
return NULL;
}
struct list_elem<T>* findEven(){
struct list_elem<T> *paux;
paux = pfirst;
while (paux != NULL) {
if(paux->info%2==0)
return paux;
paux = paux->next;
}
}
struct list_elem<T>* findLastOccurrence(T x) {
struct list_elem<T> *paux;
paux = plast;
while (paux != NULL) {
if (paux->info == x)
return paux;
paux = paux->prev;
}
return NULL;
}
void removeFirstOccurrence(T x) {
struct list_elem<T> *px;
px = findFirstOccurrence(x);
if (px != NULL) {
if (px->prev != NULL)
px->prev->next = px->next;
if (px->next != NULL)
px->next->prev = px->prev;
if (px->prev == NULL) // px == pfirst
pfirst = px->next;
if (px->next == NULL) // px == plast
plast = px->prev;
delete px;
}
}
void removeLastOccurrence(T x) {
struct list_elem<T> *px;
px = findLastOccurrence(x);
if (px != NULL) {
if (px->prev != NULL)
px->prev->next = px->next;
if (px->next != NULL)
px->next->prev = px->prev;
if (px->prev == NULL) // px == pfirst
pfirst = px->next;
if (px->next == NULL) // px == plast
plast = px->prev;
delete px;
}
}
int isEmpty() {
return (pfirst == NULL);
}
LinkedList() {
pfirst = plast = NULL;
}
void printList()
{
struct list_elem<T> *p;
p = pfirst;
while (p != NULL)
{
printf("%d\n", p->info);
p = p->next;
}
}
};
int main()
{
LinkedList<int> l;
LinkedList<int> ll;
int n,i,x;
cin>>n;
for(i=0;i<n;i++)
{cin>>x;
if(x%2==0)
l.addFirst(x);
else ll.addFirst(x);
}
l.printList();
ll.printList();
return 0;
}
| [
"ana.bratucu@leancloud.ro"
] | ana.bratucu@leancloud.ro |
2b34c3c427267bc926817d56d77791e6da291fee | 9e06a2d807204f11c1b5f6eb67436bd90857706d | /jni/TouchPanel.cpp | 5c443d2471f896b1733ffd47e60b9da16bc1be0c | [] | no_license | SeevenYoung/touch_vcr | 48e82a1bfaa8b7097ff30f8abd11cadfbc060f6f | 6ee001b48749ca2dc4713cce2db823d9b9431cc1 | refs/heads/master | 2021-05-29T07:45:46.215902 | 2015-06-12T12:13:01 | 2015-06-12T12:13:01 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,761 | cpp | #include "TouchPanel.h"
#include <fcntl.h>
#include <linux/fb.h>
TouchPanel::TouchPanel(const char* device, int slotCount, InputMessenger* messenger, int width, int height) :
mDeviceName(device), mSlotCount(slotCount), mMessenger(messenger), screenWidth(width), screenHeight(height) {
delete[] mSlots;
mSlots = new Slot[slotCount];
mUsingSlotsProtocol = true;
}
void TouchPanel::reset() {
// Unfortunately there is no way to read the initial contents of the slots.
// So when we reset the accumulator, we must assume they are all zeroes.
int32_t initialSlot = -1;
if(mUsingSlotsProtocol) {
// Query the driver for the current slot index and use it as the initial slot
// before we start reading events from the device. It is possible that the
// current slot index will not be the same as it was when the first event was
// written into the evdev buffer, which means the input mapper could start
// out of sync with the initial state of the events in the evdev buffer.
// In the extremely unlikely case that this happens, the data from
// two slots will be confused until the next ABS_MT_SLOT event is received.
// This can cause the touch point to "jump", but at least there will be
// no stuck touches.
bool status = getAbsoluteAxisValue(ABS_MT_SLOT, &initialSlot);
if (!status) {
fprintf(stderr, "Could not retrieve current multitouch slot index. status=%d", status);
}
}
clearSlots(initialSlot);
fprintf(stderr, "Got initial slot %d\n", initialSlot);
}
bool TouchPanel::getAbsoluteAxisValue(int32_t axis, int32_t* outValue) {
*outValue = 0;
bool status;
struct input_absinfo info;
status = getAbsoluteAxisInfo(axis, &info);
if(status) {
*outValue = info.value;
}
return status;
}
bool TouchPanel::getAbsoluteAxisInfo(int32_t axis, input_absinfo* outInfo) {
if (axis >= 0 && axis <= ABS_MAX) {
if(ioctl(mDeviceFD, EVIOCGABS(axis), outInfo)) {
fprintf(stderr, "Error reading absolute controller %d for device %s fd %d, errno=%d",
axis, mDeviceName, mDeviceFD, errno);
return false;
}
return true;
}
fprintf(stderr, "Bad axis %d for device %s fd %d, errno=%d",
axis, mDeviceName, mDeviceFD, errno);
return false;
}
int TouchPanel::openDevice()
{
// TODO: determine if this device uses the multislot protocol
// TODO: read config/calibration values
int version;
char name[80];
struct input_id id;
mDeviceFD = open(mDeviceName, O_RDWR);
if(mDeviceFD < 0) {
fprintf(stderr, "could not open %s, %s\n", mDeviceName, strerror(errno));
return -1;
}
if(ioctl(mDeviceFD, EVIOCGVERSION, &version)) {
fprintf(stderr, "could not get driver version for %s, %s\n", mDeviceName, strerror(errno));
return -1;
}
if(ioctl(mDeviceFD, EVIOCGID, &id)) {
fprintf(stderr, "could not get driver id for %s, %s\n", mDeviceName, strerror(errno));
return -1;
}
name[sizeof(name) - 1] = '\0';
if(ioctl(mDeviceFD, EVIOCGNAME(sizeof(name) - 1), &name) < 1) {
fprintf(stderr, "could not get device name for %s, %s\n", mDeviceName, strerror(errno));
name[0] = '\0';
}
if(readConfig() < 1) {
fprintf(stderr, "could not read axis configuration for %s, %s\n", mDeviceName, strerror(errno));
}
return mDeviceFD;
}
/* How to get device resolution
void set_device_details(const char *device) {
int fb = open(device, O_RDONLY);
if (fb >= 0) {
struct fb_var_screeninfo vinfo;
if (ioctl(fb, FBIOGET_VSCREENINFO, &vinfo) == 0) {
uint32_t bytespp;
if (vinfoToPixelFormat(vinfo, &bytespp, &f) == NO_ERROR) {
size_t offset = (vinfo.xoffset +
vinfo.yoffset*vinfo.xres) * bytespp;
w = vinfo.xres;
h = vinfo.yres;
size = w*h*bytespp;
mapsize = offset + size;
mapbase = mmap(0, mapsize, PROT_READ, MAP_PRIVATE, fb,
0);
if (mapbase != MAP_FAILED) {
base = (void const *)((char const *)mapbase +
offset);
}
}
}
close(fb);
}
}
*/
// Read the width, height, and whether the panel is using a slots protocol
void TouchPanel::readSlotsConfig() {
uint8_t bits[ABS_MAX/8];
int res;
res = ioctl(mDeviceFD, EVIOCGBIT(EV_ABS, ABS_MAX), bits);
int index = (int) floor(ABS_MT_SLOT / 8.0);
int offset = ABS_MT_SLOT % 8;
if( bits[index] >> offset & 1 ) {
fprintf(stderr, "Using slots\n");
mUsingSlotsProtocol = true;
} else {
fprintf(stderr, "Not using slots\n");
mUsingSlotsProtocol = false;
}
}
bool TouchPanel::readConfig() {
input_absinfo info;
// Grab the resolution from the device
readSlotsConfig();
if(getAbsoluteAxisInfo(ABS_MT_POSITION_X, &info) < 1) {
return false;
}
mXScale = float(screenWidth) / (info.maximum - info.minimum + 1);
if(getAbsoluteAxisInfo(ABS_MT_POSITION_Y, &info) < 1) {
return false;
}
mYScale = float(screenHeight) / (info.maximum - info.minimum + 1);
fprintf(stderr, "xScale: %f, yScale: %f\n", mXScale, mYScale);
return true;
}
void TouchPanel::clearSlots(int32_t initialSlot) {
if (mSlots) {
for (size_t i = 0; i < mSlotCount; i++) {
mSlots[i].clear();
}
}
mCurrentSlot = initialSlot;
}
void TouchPanel::process(const input_event* rawEvent) {
if (rawEvent->type == EV_ABS) {
bool newSlot = false;
if (mUsingSlotsProtocol) {
if (rawEvent->code == ABS_MT_SLOT) {
mCurrentSlot = rawEvent->value;
newSlot = true;
}
} else {
if (rawEvent->code == ABS_MT_TRACKING_ID) {
mCurrentSlot = rawEvent->value;
}
}
if (mCurrentSlot < 0 || size_t(mCurrentSlot) >= mSlotCount) {
if (newSlot) {
fprintf(stderr,"MultiTouch device emitted invalid slot index %d but it "
"should be between 0 and %d; ignoring this slot.",
mCurrentSlot, mSlotCount - 1);
}
} else {
Slot* slot = &mSlots[mCurrentSlot];
switch (rawEvent->code) {
case ABS_MT_POSITION_X:
slot->mState = IN_USE;
slot->mAbsMTPositionX = rawEvent->value;
break;
case ABS_MT_POSITION_Y:
slot->mState = IN_USE;
slot->mAbsMTPositionY = rawEvent->value;
break;
case ABS_MT_TOUCH_MAJOR:
slot->mState = IN_USE;
slot->mAbsMTTouchMajor = rawEvent->value;
break;
case ABS_MT_TOUCH_MINOR:
slot->mState = IN_USE;
slot->mAbsMTTouchMinor = rawEvent->value;
slot->mHaveAbsMTTouchMinor = true;
break;
case ABS_MT_WIDTH_MAJOR:
slot->mState = IN_USE;
slot->mAbsMTWidthMajor = rawEvent->value;
break;
case ABS_MT_WIDTH_MINOR:
slot->mState = IN_USE;
slot->mAbsMTWidthMinor = rawEvent->value;
slot->mHaveAbsMTWidthMinor = true;
break;
case ABS_MT_ORIENTATION:
slot->mState = IN_USE;
slot->mAbsMTOrientation = rawEvent->value;
break;
case ABS_MT_TRACKING_ID:
if (mUsingSlotsProtocol && rawEvent->value < 0) {
// TODO - need to capture this
// The slot is no longer in use but it retains its previous contents,
// which may be reused for subsequent touches.
slot->mState = DONE;
} else {
slot->mState = IN_USE;
slot->mAbsMTTrackingId = rawEvent->value;
}
case ABS_MT_PRESSURE:
break;
slot->mState = IN_USE;
slot->mAbsMTPressure = rawEvent->value;
break;
case ABS_MT_DISTANCE:
slot->mState = IN_USE;
slot->mAbsMTDistance = rawEvent->value;
break;
case ABS_MT_TOOL_TYPE:
slot->mState = IN_USE;
slot->mAbsMTToolType = rawEvent->value;
slot->mHaveAbsMTToolType = true;
break;
}
}
} else if (rawEvent->type == EV_SYN && rawEvent->code == SYN_MT_REPORT) {
// MultiTouch Sync: The driver has returned all data for *one* of the pointers.
if(mUsingSlotsProtocol) {
mCurrentSlot += 1;
}
} else if( rawEvent->type == EV_SYN && rawEvent->code == SYN_REPORT) {
int32_t timestamp = mInputClock.getTimestamp(rawEvent->time);
// Iterate over the slots. If a slot is done, report that
for(int i = 0; i < mSlotCount; i++ ) {
Slot* slot = &mSlots[i];
if(slot->mState == DONE) {
slot->mState = NOT_IN_USE;
Message msg;
msg = Message::Stop(timestamp, slot->getTrackingId());
mMessenger->send(msg);
}
if(slot->mState == IN_USE) {
int32_t x = slot->getX() * mXScale;
int32_t y = slot->getY() * mYScale;
Message msg;
msg = Message::Sync(timestamp, slot->getTrackingId(), x, y);
mMessenger->send(msg);
if(!mUsingSlotsProtocol) {
slot->mState = DONE;
}
}
}
}
}
/*
#ifdef DEBUG
printf("Replaying sync %d %d %d %d\n", msg.getTimestamp(), msg.getTrackingID(), msg.getX(), msg.getY() );
#endif
send_event(EV_ABS, ABS_MT_SLOT, 0);
send_event(EV_ABS, ABS_MT_TRACKING_ID, msg.getTrackingID());
send_event(EV_ABS, ABS_MT_POSITION_X, msg.getX()/mXScale);
send_event(EV_ABS, ABS_MT_POSITION_Y, msg.getY()/mYScale);
send_event(EV_SYN, SYN_REPORT, 0);
}
if( msg.isStop() ) {
#ifdef DEBUG
printf("Replaying stop %d\n", msg.getTimestamp() );
#endif
send_event(EV_ABS, ABS_MT_SLOT, 0);
send_event(EV_ABS, ABS_MT_TRACKING_ID, -1);
send_event(EV_SYN, SYN_REPORT, 0);
}
*/
void TouchPanel::replay( Message msg, int now ) {
if( msg.isSync() ) {
#ifdef DEBUG
printf("Replaying sync %d %d %d %d\n", msg.getTimestamp(), msg.getTrackingID(), msg.getX(), msg.getY() );
#endif
if(mUsingSlotsProtocol) {
send_event(EV_ABS, ABS_MT_TRACKING_ID, msg.getTrackingID());
} else {
send_event(EV_ABS, ABS_MT_TRACKING_ID, 0);
}
send_event(EV_ABS, ABS_MT_POSITION_X, msg.getX()/mXScale);
send_event(EV_ABS, ABS_MT_POSITION_Y, msg.getY()/mYScale);
send_event(EV_ABS, ABS_MT_PRESSURE, 30);
if(!mUsingSlotsProtocol) {
send_event(EV_SYN, SYN_MT_REPORT, 0);
}
send_event(EV_SYN, SYN_REPORT, 0);
}
if( msg.isStop() ) {
#ifdef DEBUG
printf("Replaying stop %d\n", msg.getTimestamp() );
#endif
if(mUsingSlotsProtocol) {
send_event(EV_ABS, ABS_MT_TRACKING_ID, -1);
} else {
send_event(EV_SYN, SYN_MT_REPORT, 0);
}
send_event(EV_SYN, SYN_REPORT, 0);
}
}
void TouchPanel::send_event(int type, int code, int value) {
/* Emergency backup method
* slow, but reliable
char cmd[100];
sprintf(cmd, "sendevent /dev/input/event3 %d %d %d",type, code, value);
system(cmd); */
struct input_event event;
int res;
memset(&event, 0, sizeof(event));
event.type = type;
event.code = code;
event.value = value;
res = write(mDeviceFD, &event, sizeof(event));
}
void TouchPanel::finishSync() {
if (!mUsingSlotsProtocol) {
clearSlots(-1);
}
}
// --- TouchPanel::Slot ---
TouchPanel::Slot::Slot() {
clear();
}
void TouchPanel::Slot::clear() {
mState = NOT_IN_USE;
mHaveAbsMTTouchMinor = false;
mHaveAbsMTWidthMinor = false;
mHaveAbsMTToolType = false;
mAbsMTPositionX = 0;
mAbsMTPositionY = 0;
mAbsMTTouchMajor = 0;
mAbsMTTouchMinor = 0;
mAbsMTWidthMajor = 0;
mAbsMTWidthMinor = 0;
mAbsMTOrientation = 0;
mAbsMTTrackingId = -1;
mAbsMTPressure = 0;
mAbsMTDistance = 0;
mAbsMTToolType = 0;
}
| [
"heathkit@gmail.com"
] | heathkit@gmail.com |
4c699dc7156e225678d927196a12724cd3183594 | 6ab9a3229719f457e4883f8b9c5f1d4c7b349362 | /cf/026A.cpp | 29a9f71146fb7568a33628c0b10191da2ddb68c8 | [] | no_license | ajmarin/coding | 77c91ee760b3af34db7c45c64f90b23f6f5def16 | 8af901372ade9d3d913f69b1532df36fc9461603 | refs/heads/master | 2022-01-26T09:54:38.068385 | 2022-01-09T11:26:30 | 2022-01-09T11:26:30 | 2,166,262 | 33 | 15 | null | null | null | null | UTF-8 | C++ | false | false | 346 | cpp | #include <cstdio>
bool ap(int x){
int div = !(x & 1);
while(!(x&1)) x >>= 1;
for(int i = 3; x != 1; i += 2){
div += !(x % i);
while(!(x%i)) x /= i;
if(i * i > x) break;
}
div += x != 1;
return div == 2;
}
int main(void){
int ans = 0, n; scanf("%d", &n);
for(int i = 6; i <= n; ++i) ans += ap(i);
printf("%d\n", ans);
return 0;
}
| [
"mistermarin@gmail.com"
] | mistermarin@gmail.com |
2d6ff4127892e13180cda9fb544fb90881ddf6cc | 0dd9aaaf64ee65f2f8bec4484b1ca8f4517f54c4 | /trunk/Model/Command/BuildTask.h | da1155d67467713f49dabd1d49545030d6b77ebf | [] | no_license | dumppool/mazerts | 53c186bcf8f85c5f618f25464a0067f0b23abeb4 | 7ff775fad18111de8c85552e7bd4c0435b0faba8 | refs/heads/master | 2020-09-14T16:57:56.936388 | 2012-07-08T16:36:08 | 2012-07-08T16:36:08 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,326 | h | /**
*
* Usage:
* 1. create using static method that does the initial validation
* 2. initialize & validate settings
* 3. start process
* 4. delete task, or use it as status indicator
* (delete task when the process is completed since it's useless)
*
* $Revision$
* $Date$
* $Id$
*/
#ifndef __BUILDTASK_H__
#define __BUILDTASK_H__
#include "../Defs/Defs.h"
#include "../Asset/IAsset.h"
#include "../Player/Player.h"
class BuildTask
{
public:
static bool canBuild(Player* pPlayer, int assetDefTag);
static bool canBuild(Player* pPlayer, AssetDef* assetDef);
static BuildTask* createTask(Player* pPlayer, int assetDefTag);
static BuildTask* createTask(Player* pPlayer, AssetDef* assetDef);
~BuildTask();
int getAssetTag() const {
return m_pAssetDef->tag;
}
// before execute methods
bool requiresPosition() const;
bool canAfford() const;
void setPosition(const unsigned short x, const unsigned short y)
{
//if(requiresPosition())
// ..well, allow setting custom position with units etc assets build
// inside others too (why not). do the check in controller instead
m_PosX = x; m_PosY = y;
}
bool hasPosition() const
{
return (m_PosX > 0 && m_PosY > 0) ? true : false;
}
// is the set position free to build, or occupied?
bool isFreeToBuild() const;
/**
* Returns -1 for unset values
*/
unsigned short getPositionX() const { return m_PosX; }
unsigned short getPositionY() const { return m_PosY; }
/**
* Start building, do the thing, return true if success
*/
bool execute();
// after execute methods
bool isStarted()
{
return m_Started;
}
bool isFinished();
int getStatusPercentage();
private:
BuildTask(Player* pPlayer, AssetDef* assetDef);
Player* m_pPlayer;
AssetDef* m_pAssetDef;
unsigned short m_PosX;
unsigned short m_PosY;
// has the process been started
bool m_Started;
// has the process finished
bool m_Finished;
// asset that we are building
IAsset* m_pAsset;
};
#endif // __BUILDTASK_H__
| [
"zemm@iki.fi"
] | zemm@iki.fi |
e241d2c4d17de902d216e460be8a59a51a985934 | 02f97d74cd645a8284987c6f466eb70dec9f5ee8 | /examples/nl_before_block_comment/add_02.cpp | edcc8acf50e2204213f790ae48ed2c3b01b2b650 | [
"Unlicense"
] | permissive | beardog-ukr/uncrustify-config-examples | ae28c55daeeaba74191ca16c60e812f8b4cc5e12 | 23308192b377107cf287bdb073ae7eccbbf06383 | refs/heads/master | 2021-07-25T16:43:49.604267 | 2020-08-18T18:58:31 | 2020-08-18T18:58:31 | 210,879,949 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 370 | cpp | #include <iostream>
/* Some comment
* (this is multiline comment)
*/
int gg = 10;
int gl = 3; /*multiline
* starts on same line
*/
int main()
{
int x = 10;
int y = 20;
/* Another variables
* (this is multiline comment)
*/
int a = 20;
int b = 10;
int c = b;
if (x<y) {
c = a;
}
std::cout << "Finally c is " << c << '\n';
}
| [
"you@example.com"
] | you@example.com |
d5c414647fc37593a9f5e786605c41acb507f42a | 5611d4f13fe01966b961604448360344330574ef | /Assign3/Assign3/World.cpp | 0fd40b149111fb96223481e4bc93a30058742154 | [] | no_license | hollenbt/CS162 | 6a0ad823f0c6ac0451184049a76c50927e6894ce | cde3de2e8df62d4395785e4f8097c704612d5023 | refs/heads/master | 2020-12-03T04:13:50.185773 | 2017-06-30T01:52:52 | 2017-06-30T01:52:52 | 95,835,062 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 21,173 | cpp | #include "World.h"
// Default Constructor
World::World() : num_humans(0), humans(0), num_high_elves(0), high_elves(0),
num_dryads(0), dryads(0), num_balrogs(0), balrogs(0),
num_cdemons(0), cdemons(0), bank(0), g_earned(0), g_spent(0)
{
}
// Non-default Constructor
World::World(int h, int e, int d, int b, int c, double m, double g_e = 0, double g_s = 0) :
num_humans(h), humans(new Human[h]),
num_high_elves(e), high_elves(new High_elf[e]),
num_dryads(d), dryads(new Dryad[d]),
num_balrogs(b), balrogs(new Balrog[b]),
num_cdemons(c), cdemons(new Cyberdemon[c]),
bank(m), g_earned(g_e), g_spent(g_s)
{
}
// Destructor
World::~World() {
delete[] humans;
delete[] high_elves;
delete[] dryads;
delete[] balrogs;
delete[] cdemons;
}
// Copy Constructor
World::World(const World &w) :
num_humans(w.num_humans), humans(new Human[num_humans]),
num_high_elves(w.num_high_elves), high_elves(new High_elf[num_high_elves]),
num_dryads(w.num_dryads), dryads(new Dryad[num_dryads]),
num_balrogs(w.num_balrogs), balrogs(new Balrog[num_balrogs]),
num_cdemons(w.num_cdemons), cdemons(new Cyberdemon[num_cdemons]),
bank(w.bank), g_earned(w.g_earned), g_spent(w.g_spent)
{
for (int i = 0; i < num_humans; ++i)
humans[i] = w.humans[i];
for (int i = 0; i < num_high_elves; ++i)
high_elves[i] = w.high_elves[i];
for (int i = 0; i < num_dryads; ++i)
dryads[i] = w.dryads[i];
for (int i = 0; i < num_balrogs; ++i)
balrogs[i] = w.balrogs[i];
for (int i = 0; i < num_cdemons; ++i)
cdemons[i] = w.cdemons[i];
}
// Assignment Operator Overload
void World::operator=(World that) {
swap(*this, that);
}
void swap(World &w1, World &w2) {
std::swap(w1.humans, w2.humans);
std::swap(w1.num_humans, w2.num_humans);
std::swap(w1.high_elves, w2.high_elves);
std::swap(w1.num_high_elves, w2.num_high_elves);
std::swap(w1.dryads, w2.dryads);
std::swap(w1.num_dryads, w2.num_dryads);
std::swap(w1.balrogs, w2.balrogs);
std::swap(w1.num_balrogs, w2.num_balrogs);
std::swap(w1.cdemons, w2.cdemons);
std::swap(w1.num_cdemons, w2.num_cdemons);
std::swap(w1.bank, w2.bank);
std::swap(w1.g_earned, w2.g_earned);
std::swap(w1.g_spent, w2.g_spent);
}
// Basic Accessor Functions
Human* World::get_humans() {
return humans;
}
int World::get_num_humans() const {
return num_humans;
}
High_elf* World::get_high_elves() {
return high_elves;
}
int World::get_num_high_elves() const {
return num_high_elves;
}
Dryad* World::get_dryads() {
return dryads;
}
int World::get_num_dryads() const {
return num_dryads;
}
Balrog* World::get_balrogs() {
return balrogs;
}
int World::get_num_balrogs() const {
return num_balrogs;
}
Cyberdemon* World::get_cdemons() {
return cdemons;
}
int World::get_num_cdemons() const {
return num_cdemons;
}
double World::get_bank() const {
return bank;
}
double World::get_gold_earned() const {
return g_earned;
}
double World::get_gold_spent() const {
return g_spent;
}
/*********************************************************************
** Function: World::get_creature
** Description: Takes a cumulative index of all creature type arrays
** (ordered humans, high_elves, dryads, balrogs, cdemons) and returns
** a pointer to the corresponding Creature.
** Parameters: int index - the index of the selected creature.
** Pre-Conditions: index is less than the sum of all array size (num_humans,
** num_high_elves, etc.) member variables.
** Post-Conditions: N/A
** Return: A pointer to the selected Creature object.
*********************************************************************/
Creature* World::get_creature(int index) {
if (index < num_humans)
return &humans[index];
index -= num_humans;
if (index < num_high_elves)
return &high_elves[index];
index -= num_high_elves;
if (index < num_dryads)
return &dryads[index];
index -= num_dryads;
if (index < num_balrogs)
return &balrogs[index];
index -= num_balrogs;
return &cdemons[index];
}
/*********************************************************************
** Function: World::get_num_creatures
** Description: Returns the sum of all array size member variables
** (i.e. num_humans, num_high_elves, etc.).
** Parameters: N/A
** Pre-Conditions: N/A
** Post-Conditions: N/A
** Return: The total number of creatures in the World object.
*********************************************************************/
int World::get_num_creatures() const {
return num_humans + num_high_elves + num_dryads + num_balrogs + num_cdemons;
}
/*********************************************************************
** Function: World::add_humans
** Description: Checks that the user can afford to recruit n humans,
** and adds them to the humans array and updates num_humans if so.
** Parameters: int n - the number of Human objects to add.
** Pre-Conditions: N/A
** Post-Conditions: If the user has enough gold, the humans array has
** been resized to hold n additional Human objects and num_humans has
** been increased by n. Otherwise, the user has been informed that
** they did not have enough money and no changes have been made.
** Return: N/A
*********************************************************************/
void World::add_humans(int n) {
if (bank < H_COST * n) {
cout << "Not enough money." << endl;
return;
}
spend_money(H_COST * n);
Human *temp = humans;
humans = new Human[num_humans + n];
copy(temp, humans, num_humans);
num_humans += n;
delete[] temp;
}
/*********************************************************************
** Function: World::add_high_elves
** Description: Checks that the user can afford to recruit n high elves,
** and adds them to the high_elves array and updates num_high_elves if so.
** Parameters: int n - the number of High_elf objects to add.
** Pre-Conditions: N/A
** Post-Conditions: If the user has enough gold, the high_elves array has
** been resized to hold n additional High_elf objects and num_high_elves has
** been increased by n. Otherwise, the user has been informed that
** they did not have enough money and no changes have been made.
** Return: N/A
*********************************************************************/
void World::add_high_elves(int n) {
if (bank < E_COST * n) {
cout << "Not enough money." << endl;
return;
}
spend_money(E_COST * n);
High_elf *temp = high_elves;
high_elves = new High_elf[num_high_elves + n];
copy(temp, high_elves, num_high_elves);
num_high_elves += n;
delete[] temp;
}
/*********************************************************************
** Function: World::add_dryads
** Description: Checks that the user can afford to recruit n dryads,
** and adds them to the dryads array and updates num_dryads if so.
** Parameters: int n - the number of Dryad objects to add.
** Pre-Conditions: N/A
** Post-Conditions: If the user has enough gold, the dryads array has
** been resized to hold n additional Dryad objects and num_dryads has
** been increased by n. Otherwise, the user has been informed that
** they did not have enough money and no changes have been made.
** Return: N/A
*********************************************************************/
void World::add_dryads(int n) {
if (bank < D_COST * n) {
cout << "Not enough money." << endl;
return;
}
spend_money(D_COST * n);
Dryad *temp = dryads;
dryads = new Dryad[num_dryads + n];
copy(temp, dryads, num_dryads);
num_dryads += n;
delete[] temp;
}
/*********************************************************************
** Function: World::add_balrogs
** Description: Checks that the user can afford to recruit n balrogs,
** and adds them to the balrogs array and updates num_balrogs if so.
** Parameters: int n - the number of Balrog objects to add.
** Pre-Conditions: N/A
** Post-Conditions: If the user has enough gold, the balrogs array has
** been resized to hold n additional Balrog objects and num_balrogs has
** been increased by n. Otherwise, the user has been informed that
** they did not have enough money and no changes have been made.
** Return: N/A
*********************************************************************/
void World::add_balrogs(int n) {
if (bank < B_COST * n) {
cout << "Not enough money." << endl;
return;
}
spend_money(B_COST * n);
Balrog *temp = balrogs;
balrogs = new Balrog[num_balrogs + n];
copy(temp, balrogs, num_balrogs);
num_balrogs += n;
delete[] temp;
}
/*********************************************************************
** Function: World::add_cdemons
** Description: Checks that the user can afford to recruit n cdemons,
** and adds them to the cdemons array and updates num_cdemons if so.
** Parameters: int n - the number of Cyberdemon objects to add.
** Pre-Conditions: N/A
** Post-Conditions: If the user has enough gold, the cdemons array has
** been resized to hold n additional Cyberdemon objects and num_cdemons has
** been increased by n. Otherwise, the user has been informed that
** they did not have enough money and no changes have been made.
** Return: N/A
*********************************************************************/
void World::add_cdemons(int n) {
if (bank < C_COST * n) {
cout << "Not enough money." << endl;
return;
}
spend_money(C_COST * n);
Cyberdemon *temp = cdemons;
cdemons = new Cyberdemon[num_cdemons + n];
copy(temp, cdemons, num_cdemons);
num_cdemons += n;
delete[] temp;
}
/*********************************************************************
** Function: World::find_in_array
** Description: Checks that the user can afford to recruit n humans,
** and adds them to the humans array and updates num_humans if so.
** Parameters: Creature *arr - the Creature array to search.
** int size - the size of the Creature array.
** Creature *elem - a pointer to the Creature object to
** search for.
** Pre-Conditions: arr contains at least size elements.
** Post-Conditions: N/A
** Return: The index of the Creature element, if found. Otherwise -1.
*********************************************************************/
int World::find_in_array(Creature *arr, int size, Creature *elem) {
for (int i = 0; i < size; ++i) {
if (arr + i == elem)
return i;
}
return -1;
}
/*********************************************************************
** Function: World::remove_dead
** Description: Removes a dead Creature from the World.
** Parameters: Creature *dead - a pointer to the Creature to be removed.
** Pre-Conditions: N/A
** Post-Conditions: If dead was found in any of the member arrays, it
** have been removed from the World. Otherwise, the user has been
** notified that the Creature was not found.
** Return: N/A
*********************************************************************/
void World::remove_dead(Creature *dead) {
int index;
if ((index = find_in_array(humans, num_humans, dead)) != -1) {
remove_human(index);
return;
}
if ((index = find_in_array(high_elves, num_high_elves, dead)) != -1) {
remove_high_elf(index);
return;
}
if ((index = find_in_array(dryads, num_dryads, dead)) != -1) {
remove_dryad(index);
return;
}
if ((index = find_in_array(balrogs, num_balrogs, dead)) != -1) {
remove_balrog(index);
return;
}
if ((index = find_in_array(cdemons, num_cdemons, dead)) != -1) {
remove_cdemon(index);
return;
}
cout << "Creature not found." << endl;
}
/*********************************************************************
** Function: World::remove_human
** Description: Removes the Human object at index from the humans array.
** Resizes the humans array and decrements num_humans.
** Parameters: int index - the index of the Human to be removed.
** Pre-Conditions: index < num_humans
** Post-Conditions: The Human at index has been removed, the humans
** array has been resized, and num_humans has been decremented.
** Return: N/A
*********************************************************************/
void World::remove_human(int index) {
Human *temp = humans;
humans = new Human[num_humans - 1];
copy(temp, humans, index);
copy(temp + index + 1, humans + index, num_humans - (index + 1));
--num_humans;
delete[] temp;
}
/*********************************************************************
** Function: World::remove_high_elf
** Description: Removes the High_elf object at index from the high_elves array.
** Resizes the high_elves array and decrements num_high_elves.
** Parameters: int index - the index of the High_elf to be removed.
** Pre-Conditions: index < num_high_elves
** Post-Conditions: The High_elf at index has been removed, the high_elves
** array has been resized, and num_high_elves has been decremented.
** Return: N/A
*********************************************************************/
void World::remove_high_elf(int index) {
High_elf *temp = high_elves;
high_elves = new High_elf[num_high_elves - 1];
copy(temp, high_elves, index);
copy(temp + index + 1, high_elves + index, num_high_elves - (index + 1));
--num_high_elves;
delete[] temp;
}
/*********************************************************************
** Function: World::remove_dryad
** Description: Removes the Dryad object at index from the dryads array.
** Resizes the dryads array and decrements num_dryads.
** Parameters: int index - the index of the Dryad to be removed.
** Pre-Conditions: index < num_dryads
** Post-Conditions: The Dryad at index has been removed, the dryads
** array has been resized, and num_dryads has been decremented.
** Return: N/A
*********************************************************************/
void World::remove_dryad(int index) {
Dryad *temp = dryads;
dryads = new Dryad[num_dryads - 1];
copy(temp, dryads, index);
copy(temp + index + 1, dryads + index, num_dryads - (index + 1));
--num_dryads;
delete[] temp;
}
/*********************************************************************
** Function: World::remove_balrog
** Description: Removes the Balrog object at index from the balrogs array.
** Resizes the balrogs array and decrements num_balrogs.
** Parameters: int index - the index of the Balrog to be removed.
** Pre-Conditions: index < num_balrogs
** Post-Conditions: The Balrog at index has been removed, the balrogs
** array has been resized, and num_balrogs has been decremented.
** Return: N/A
*********************************************************************/
void World::remove_balrog(int index) {
Balrog *temp = balrogs;
balrogs = new Balrog[num_balrogs - 1];
copy(temp, balrogs, index);
copy(temp + index + 1, balrogs + index, num_balrogs - (index + 1));
--num_balrogs;
delete[] temp;
}
/*********************************************************************
** Function: World::remove_cdemon
** Description: Removes the Cyberdemon object at index from the cdemons array.
** Resizes the cdemons array and decrements num_cdemons.
** Parameters: int index - the index of the Cyberdemon to be removed.
** Pre-Conditions: index < num_cdemons
** Post-Conditions: The Cyberdemon at index has been removed, the cdemons
** array has been resized, and num_cdemons has been decremented.
** Return: N/A
*********************************************************************/
void World::remove_cdemon(int index) {
Cyberdemon *temp = cdemons;
cdemons = new Cyberdemon[num_cdemons - 1];
copy(temp, cdemons, index);
copy(temp + index + 1, cdemons + index, num_cdemons - (index + 1));
--num_cdemons;
delete[] temp;
}
/*********************************************************************
** Function: copy
** Description: Copies elements from one array to another.
** Parameters: T *src - the source array.
** T *dest - the destination array.
** int num - the number of elements to copy.
** Pre-Conditions: Both src and dest contain at least num elements.
** Post-Conditions: The first num elements of src have been copied to
** the first num elements of dest.
** Return: N/A
*********************************************************************/
template<typename T>
void copy(T *src, T *dest, int num) {
for (int i = 0; i < num; ++i)
dest[i] = src[i];
}
/*********************************************************************
** Function: World::add_money
** Description: Adds gold to the bank member and the g_earned member.
** Parameters: double money - the amount of gold to add.
** Pre-Conditions: Both src and dest contain at least num elements.
** Post-Conditions: The values of the bank and g_earned members have
** been increased by money, and a confirmation message has been printed.
** Return: N/A
*********************************************************************/
void World::add_money(double money) {
cout << money << " coins added to the bank." << endl;
bank += money;
g_earned += money;
}
/*********************************************************************
** Function: World::spend_money
** Description: Removes gold from the bank member and add the same amount
** to the g_spent member.
** Parameters: double money - the amount of gold to remove.
** Pre-Conditions: N/A
** Post-Conditions: The values of the bank and g_earned members have
** been increased and decreased by money, respectively.
** Return: N/A
*********************************************************************/
void World::spend_money(double money) {
bank -= money;
g_spent += money;
}
/*********************************************************************
** Function: World::display_creatures
** Description: Prints the creature type and hitpoints of all Creatures
** in the five dynamic arrays of the World class, numbered, in the
** same order that they will be accessed in World::get_creature().
** Parameters: N/A
** Pre-Conditions: N/A
** Post-Conditions: The Creatures and their hitpoints have been printed
** to the console, numbered and in order.
** Return: N/A
*********************************************************************/
void World::display_creatures() const {
int c = 0;
cout << "\nGladiators:\n";
if (!get_num_creatures()) {
cout << "\tNone\n";
return;
}
for (int i = 0; i < num_humans; ++i)
cout << ++c << ". Human (Hitpoints: " << humans[i].get_hitpoints() << ")\n";
for (int i = 0; i < num_high_elves; ++i)
cout << ++c << ". High elf (Hitpoints: " << high_elves[i].get_hitpoints() << ")\n";
for (int i = 0; i < num_dryads; ++i)
cout << ++c << ". Dryad (Hitpoints: " << dryads[i].get_hitpoints() << ")\n";
for (int i = 0; i < num_balrogs; ++i)
cout << ++c << ". Balrog (Hitpoints: " << balrogs[i].get_hitpoints() << ")\n";
for (int i = 0; i < num_cdemons; ++i)
cout << ++c << ". Cyberdemon (Hitpoints: " << cdemons[i].get_hitpoints() << ")\n";
}
/*********************************************************************
** Function: World::battle
** Description: Conducts a turn by turn battle between two Creatures
** until one dies, with text narration. Removes the dead Creature
** from the World and adds the gold earned to the bank.
** Parameters: Creature *c1 - the first combatant.
** Creature *c2 - the second combatant.
** Pre-Conditions: c1 and c2 are not null pointers.
** Post-Conditions: The battle has been narrated, one Creature has died
** and been removed from the World, and the payoff (including the
** victorious-creature-dependent multiplier) has been added to the
** bank.
** Return: N/A
*********************************************************************/
void World::battle(Creature *c1, Creature *c2) {
bool kill = false;
if (c1->get_speed() > c2->get_speed()) {
cout << endl;
kill = c2->take_damage(c1->get_damage());
cout << c1->get_species() << " hitpoints: " << c1->get_hitpoints() << endl << c2->get_species() << " hitpoints: " << c2->get_hitpoints() << endl;
}
while (!kill) {
cout << endl;
kill = c1->take_damage(c2->get_damage());
cout << c1->get_species() << " hitpoints: " << c1->get_hitpoints() << endl << c2->get_species() << " hitpoints: " << c2->get_hitpoints() << endl;
if (kill) {
c1->die();
add_money(c2->get_winnings(c1->get_payoff()));
remove_dead(c1);
return;
}
cout << endl;
kill = c2->take_damage(c1->get_damage());
cout << c1->get_species() << " hitpoints: " << c1->get_hitpoints() << endl << c2->get_species() << " hitpoints: " << c2->get_hitpoints() << endl;
}
c2->die();
add_money(c1->get_winnings(c2->get_payoff()));
remove_dead(c2);
}
| [
"hollenbt@oregonstate.edu"
] | hollenbt@oregonstate.edu |
b0b7de4b1629d02aec755c5b9adff5d3b2af524d | 32b268790ae6a752a1a6b795ddaf2d6f39706c75 | /3773-adv-obj-oriented-app-dev-w-c++/assignments/a5/7.11-point.h | 91e5f059c6de5724cbbf1d3e916cb9985a2354e2 | [] | no_license | dideler/school-projects | eeb353e902be4577c8818aac06be6f95be2b7f06 | 1887d3adaa710e9db5f0be290f912a530541a2cb | refs/heads/master | 2020-04-13T17:04:57.209111 | 2015-10-11T21:59:31 | 2015-10-11T21:59:31 | 8,245,107 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 609 | h | /**
* COMP 3773 - Assignment 5 - Exercise 7.11
* From the book "C++ Programming with Design Patterns Revealed"
*
* Interface (declarations) of the basic Point class.
* A simple 3-dimensional point.
*
* @author Dennis Ideler <ideler.dennis@gmail.com>
* @student# 100122809
* @date July 2013
* @version 1.0
*/
#ifndef POINT_H_
#define POINT_H_
#include <ostream>
using std::ostream;
class Point
{
public:
Point(int x = 0, int y = 0, int z = 0);
private:
int x_, y_, z_;
// Overload the << operator to print a point.
friend ostream &operator<<(ostream &out, const Point &p);
};
#endif
| [
"ideler.dennis@gmail.com"
] | ideler.dennis@gmail.com |
6ab452abdfc2d76496af3bd8bc7d337cb72e50f6 | bc9f32b311957fdf1a6c583d46904641821d0caa | /entry/entry.cpp | 3004a1edf55984fe436a0a6281d35d53859caeb9 | [] | no_license | silasxue/RGM-AOGTracker | 118d7b449dc750b86ed121368fcbf328cef518ac | ea0739a1f28c365bf65e40426d28f18b556fc426 | refs/heads/master | 2021-01-18T04:01:18.965317 | 2016-05-06T20:13:50 | 2016-05-06T20:13:50 | 58,340,852 | 0 | 1 | null | 2016-05-09T01:46:09 | 2016-05-09T01:46:08 | null | UTF-8 | C++ | false | false | 1,664 | cpp | #include "command_line.hpp"
#include "util/UtilLog.hpp"
using namespace RGM;
int main(int argc, char** argv) {
#ifdef RGM_USE_MPI
// Initialize the MPI environment
int provided;
MPI_Init_thread(&argc, &argv, MPI_THREAD_MULTIPLE, &provided);
if(provided < MPI_THREAD_MULTIPLE) {
std::cout << "ERROR: The MPI library does not have full thread support"
<< std::endl ; fflush(stdout);
MPI_Abort(MPI_COMM_WORLD, 1);
}
// Get the number of processes
int ntasks = 0;
MPI_Comm_size(MPI_COMM_WORLD, &ntasks);
// Get the rank of the process
int myrank = 0;
MPI_Comm_rank(MPI_COMM_WORLD, &myrank);
// Get the name
int namelen;
char processor_name[MPI_MAX_PROCESSOR_NAME];
MPI_Get_processor_name(processor_name, &namelen);
std::cout << "MPI Task " << myrank << " of " << ntasks << " is on "
<< processor_name << std::endl ; fflush(stdout);
#endif
log_init();
DEFINE_RGM_LOGGER;
RGM_LOG(normal, "Welcome to AOGTracker (v1.0)");
CommandLineInterpreter cli(argc, argv);
cli.AddCommand(new AOGTrackerCommand());
int outcode = cli.Process();
#ifdef RGM_USE_MPI
// if ( myrank != 0 ) {
// int finished = 1;
// MPI_Send(&finished, 1, MPI_INT, 0, 0, MPI_COMM_WORLD);
// } else {
// for ( int i = 1; i < ntasks; ++i ) {
// int finished = 0;
// MPI_Recv(&finished, 1, MPI_INT, i, MPI_ANY_TAG, MPI_COMM_WORLD, MPI_STATUS_IGNORE);
// }
// }
MPI_Finalize();
std::cout << "[" << myrank << "] finished all jobs and quit." << std::endl;
fflush(stdout);
#endif
return outcode;
}
| [
"tfwu@stat.ucla.edu"
] | tfwu@stat.ucla.edu |
7e68a207bab44587f5d92a890a62e8c8a21035c3 | ec4d298a5ab704cf58f383e86ab48ef451f75310 | /DirectoryOperations.cpp | 11fb55d0eaebff9f32169bc73aae9584363f2127 | [
"BSD-3-Clause"
] | permissive | MikanLibrary/MikanInstaller | e6af3dada35779409517e2dc752572b71171fba2 | 07624dd2145516ac1e3e115f4afa95764dbcf73e | refs/heads/master | 2020-04-14T16:47:40.764108 | 2017-03-07T00:37:36 | 2017-03-07T00:37:36 | 39,636,284 | 0 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 5,426 | cpp | #include "DirectoryOperations.h"
#include "common.h"
DirectoryOperations::DirectoryOperations( void )
{
mode = 0;
items = 0;
dirs = NULL;
Cd();
}
DirectoryOperations::DirectoryOperations( char *path )
{
mode = 0;
items = 0;
dirs = NULL;
Cd( path );
}
DirectoryOperations::~DirectoryOperations( void )
{
Free();
}
int DirectoryOperations::Free( void )
{
while ( --items >= 0 )
{
free( dirs[ items ] );
}
if ( dirs ) { free( dirs ); }
return 0;
}
int DirectoryOperations::Join( char *result, char *p1, char *p2 )
{
int count = 0, read = 0;
while ( p1[ read ] != '\0' )
{
result[ count++ ] = p1[ read++ ];
}
read = 0;
while ( p2[ read ] != '\0' )
{
result[ count++ ] = p2[ read++ ];
}
result[ count ] = '\0';
return 0;
}
char * DirectoryOperations::Current( void )
{
return current;
}
int DirectoryOperations::Items( void )
{
return items;
}
int DirectoryOperations::GetDrive( void )
{
int num = 0, n;
unsigned long d;
d = GetLogicalDrives();
for ( n = 0; n < 32; ++n )
{
if ( ( 1 << n ) & d )
{
drive[ num++ ] = 'A' + n;
}
}
drive[ num ] = '\0';
return num;
}
int DirectoryOperations::Makelist( HANDLE hdir, WIN32_FIND_DATA *status, int count )
{
char filepath[ MAX_PATH ] = "";
int ret, flag = 0;
//ディレクトリかつ.(現在ディレクトリ)でなければ文字列をコピーしておく。
if ( ( status->dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY ) != 0 &&
strcmp( status->cFileName, "." ) != 0 )
{
//join( filepath, current, status.cFileName );
strcpy_s( filepath, MAX_PATH, status->cFileName );//strcpy( filepath, status->cFileName );
flag = 1;
//printf("%s\n",status->cFileName);
}
//次に移動。
if ( FindNextFile( hdir, status ) )
{
//何かあるらしいので再帰する。
ret = Makelist( hdir, status, count + flag );//(filepath[ 0 ] != '\0') );
if ( flag )//filepath[ 0 ] != '\0' )
{
//ディレクトリだったので領域にコピーする。
dirs[ --ret ] = (char *)calloc( strlen( filepath ) + 1, sizeof( char ) );
strcpy_s( dirs[ ret ], strlen( filepath ) + 1, filepath );// strcpy( dirs[ ret-- ], filepath );
return ret;
}
} else
{
//最後
//ディレクトリ一覧の解放。
Free();
//新しく領域を作る。
// dirs = (char **)calloc( (items = count + (filepath[ 0 ] != '\0') + 2 ), sizeof( char * ) );
count += flag;
dirs = (char **)calloc( ( items = count + 1 ), sizeof( char * ) );
if ( strcmp( current + 1, ":\\" ) == 0 )
{
dirs[ 0 ] = (char *)calloc( 3, sizeof( char ) );
strcpy_s( dirs[ 0 ], 3, ".." );
++count;
} else
{
--items;
}
if ( flag )//filepath[ 0 ] != '\0' && strcmp( filepath, "" ) )
{
//ディレクトリだったので領域にコピーする。
--count;
dirs[ count ] = (char *)calloc( strlen( filepath ) + 1, sizeof( char ) );
strcpy_s( dirs[ count ], strlen( filepath ) + 1, filepath );// strcpy( dirs[ count ], filepath );
}
//次のディレクトリ番号を返す。
return count;
}
return ret;
}
char * DirectoryOperations::GetDirectoryName( int num )
{
if ( num < items )
{
return dirs[ num ];
}
return NULL;
}
int DirectoryOperations::Cd( char *path )
{
int n;
HANDLE hdir;
WIN32_FIND_DATA status;
if ( path == NULL || path[ 0 ] == '\0' )
{
//コンピュータ
Free();
items = GetDrive();
dirs = (char **)calloc( items, sizeof( char * ) );
for ( n = 0; n < items; ++n )
{
dirs[ n ] = (char *)calloc( 4, sizeof( char ) );
dirs[ n ][ 0 ] = drive[ n ];
dirs[ n ][ 1 ] = ':';
dirs[ n ][ 2 ] = '\\';
}
strcpy_s( current, MAX_PATH, "COMPUTER" );// strcpy( current, "COMPUTER" );
return 0;
} else if ( strcmp( path, ".." ) == 0 )
{
//1つ上に移動。
if ( strcmp( current + 1, ":\\" ) == 0 )
{
return Cd( NULL );
} else
{
n = strlen( current ) - 1;
for ( --n; n >= 0; --n )
{
if ( current[ n ] == '\\' )
{
current[ n + 1 ] = '*';
current[ n + 2 ] = '\0';
break;
}
}
}
} else if ( strcmp( path, "." ) == 0 )
{
//同じ場所なので移動しない。
} else
{
if ( path[ 1 ] == ':' && path[ 2 ] == '\\' )
{
//絶対パス。
strcpy_s( current, MAX_PATH, path );//// strcpy( current, path );
} else
{
//相対パスなので単純コピー。
strcat_s( current, MAX_PATH, path );// strcat( current, path );
}
n = strlen( current );
if ( current[ n - 1 ] != '\\' )
{
current[ n++ ] = '\\';
}
current[ n ] = '*';
current[ n + 1 ] = '\0';
}
if ( ( hdir = FindFirstFile( current, &status ) ) != INVALID_HANDLE_VALUE )
{
current[ strlen( current ) - 1 ] = '\0';
Makelist( hdir, &status, 0 );
FindClose( hdir );
} else
{
current[ strlen( current ) - 1 ] = '\0';
//ディレクトリ一覧の解放。
Free();
//新しく領域を作る。
// dirs = (char **)calloc( (items = count + (filepath[ 0 ] != '\0') + 2 ), sizeof( char * ) );
dirs = (char **)calloc( ( items = 1 ), sizeof( char * ) );
//1つ上に行くためのパスは用意しておく。
dirs[ 0 ] = (char *)calloc( 3, sizeof( char ) );
strcpy_s( dirs[ 0 ], 3, ".." );
}
return 0;
}
int DirectoryOperations::Ls( int x, int y, int num, int page )
{
int n, ct = 0;
for ( n = page * num; ( n < items ) && ( ct < num ); ++n )
{
MikanDraw->Printf( 0, x, y + 20 * ( ct++ ), "%s", dirs[ n ] );
}
return items;
} | [
"hiroki.miyaoka@gmail.com"
] | hiroki.miyaoka@gmail.com |
aa79bd24f44296a89f76282f7984cae536270acd | 49a32789f6172cb309f2b5263a8d276c468a840e | /TP8_EDA_COMPRESSOR_AND_DECOMPRESSOR/TP8-EDA-master/compresor/compresor/compresor/compresor.cpp | 71031d52dd3a0131b27ce243bcea65cb3bc2d7f4 | [] | no_license | jmestanza/algorithms-and-data-structures-tasks | 0794e43aea3e63bebae6a5bfc9922af5cfa46608 | 40f0748091961098c3372c76016b434f934ef3ac | refs/heads/master | 2022-04-09T01:39:24.362247 | 2020-03-18T03:23:25 | 2020-03-18T03:23:25 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,865 | cpp | #include "compresor.h"
void color_data::reset(){
min_red = 255; max_red = 0; avg_red = 0;
min_blue = 255; max_blue = 0; avg_blue = 0;
min_green = 255; max_green = 0; avg_green = 0;
}
void color_data::update(int i, int j, vector <unsigned char> &image, int width, int height){
min_red = min(min_red, int(image[(i*width + j) * 4 + 0]));
max_red = max(max_red, int(image[(i*width + j) * 4 + 0]));
min_green = min(min_green, int(image[(i*width + j) * 4 + 1]));
max_green = max(max_green, int(image[(i*width + j) * 4 + 1]));
min_blue = min(min_blue, int(image[(i*width + j) * 4 + 2]));
max_blue = max(max_blue, int(image[(i*width + j) * 4 + 2]));
avg_red += int(image[(i*width + j) * 4 + 0]);
avg_green += int(image[(i*width + j) * 4 + 1]);
avg_blue += int(image[(i*width + j) * 4 + 2]);
}
void color_data::avg_update(int size) {
if (size == 0) {
cout << "fatal error in image compression algorithm ; \n";
return;
}
avg_red /= size;
avg_green /= size;
avg_blue /= size;
}
void compute_average(vector <unsigned char> &image, int width, int height, int x0, int xf, int y0, int yf, color_data &ans) {
ans.reset();
for (int i = y0; i <= yf; i++) {
for (int j = x0; j <= xf; j++) {
ans.update(i, j, image, width, height);
}
}
ans.avg_update((xf - x0 + 1)*(yf - y0 + 1));
}
void fill_image(vector <unsigned char> &image, int width, int height, int x0, int xf, int y0, int yf, int red, int green, int blue) {
for (int i = y0; i <= yf; i++) {
for (int j = x0; j <= xf; j++) {
image[(i*width + j) * 4 + 0] = red;
image[(i*width + j) * 4 + 1] = green;
image[(i*width + j) * 4 + 2] = blue;
}
}
}
void make_color_parse(string &v, int red, int green, int blue) {
v += ('{' + to_string(red) + ',' + to_string(green) + ',' + to_string(blue) + '}');
}
void recu(vector <unsigned char> &image, int width, int height, int th, string &data, int x0, int xf, int y0, int yf) {
//if (x0 == xf && y0 == yf) {
// end of recursion
//cout << x0 << ' ' << xf << '\n';
// return;
//}
color_data ans;
compute_average(image, width, height, x0, xf, y0, yf, ans);
int t = ans.max_red - ans.min_red + ans.max_green - ans.min_green + ans.max_blue - ans.min_blue;
//cout << t << ' ' << th << '\n';
//cout << ans.max_green << ' ' << ans.min_green << '\n';
if (t >= th && !(x0 == xf && y0 == yf)) { // demasiado no uniforme
data += 'h'; // indicamos que entramos un nivel para adentro
recu(image, width, height, th, data, x0, (x0 + xf) / 2, y0, (y0 + yf) / 2);
recu(image, width, height, th, data, x0, (x0 + xf) / 2, (y0 + yf) / 2 + 1, yf);
recu(image, width, height, th, data, (x0 + xf) / 2 + 1, xf, y0, (y0 + yf) / 2);
recu(image, width, height, th, data, (x0 + xf) / 2 + 1, xf, (y0 + yf) / 2 + 1, yf);
} else {
// super uniforme!
make_color_parse(data, ans.avg_red, ans.avg_green, ans.avg_blue); // agregamos el color al string
//fill_image(image, width, height, x0, xf, y0, yf, ans.avg_red, ans.avg_green, ans.avg_blue);
}
}
void generate_2_pow(set<int> &pow2, int num) {
int j = 1;
for (int i = 0; i < num; i++) {
pow2.insert(j);
j *= 2;
}
}
/// get image, generate file
bool compress_algorithm(string image_file,string output_file, int th) {
vector<unsigned char> image;
unsigned width, height;
if (lodepng::decode(image, width, height, image_file.c_str())) {
cout << "error loading image '" << image_file << "' \n";
return 0;
}
set<int> pow2;
generate_2_pow(pow2, 20); // generamos todas las potencias de 2 que podemos llegar a necesitar
if (width != height || (pow2.find(width) == pow2.end())) {
cout << "imagen no potencia de 2 insertada\n";
return 0;
}
string data;
int v = width;
while (v /= 2) data += 'l'; // starting header
recu(image, width, height, th, data, 0, width - 1, 0, height - 1);
ofstream file(output_file);
if (!file.is_open()) {
cout << "error opening '" << output_file << "'\n";
file.close();
return 0;
}
file << data;
file.close();
//lodepng::encode("test.png", image, width, height);
return 1;
}
bool read_color(string &data, int &itr, int &red, int &green, int &blue) {
string c1, c2, c3;
while (data[itr] != ',' && c1.size() < 3 && itr < data.size()) c1 += data[itr++];
itr++;
while (data[itr] != ',' && c2.size() < 3 && itr < data.size()) c2 += data[itr++];
itr++;
while (data[itr] != '}' && c3.size() < 3 && itr < data.size()) c3 += data[itr++];
if (c1.size() >= 4 || c2.size() >= 4 || c3.size() >= 4) {
cout << "corrupt file (id 1) \n";
return 0;
}
//cout << c1 << ' ' << c2 << ' ' << c3 << '\n';
try {
red = stoi(c1);
green = stoi(c2);
blue = stoi(c3);
} catch (const std::invalid_argument& ia) {
cout << "corrupt file (id 2) \n";
return 0;
}
if (red < 0 || red >= 256 || green < 0 || green >= 256 || blue < 0 || blue >= 256) {
cout << "corrupt file (id 2) \n";
return 0;
}
return 1;
}
bool recu_uncompress(vector <unsigned char> &image, string &data, int &itr, int width, int height, int x0, int xf, int y0, int yf) {
// hay varios casos
if (itr == data.size()) {
cout << "corrupt file (id 3)\n";
return 0;
} else if (data[itr] == '{') { // termino el nivel, hay un color
itr++;
int red_read, green_read, blue_read;
if (!read_color(data, itr, red_read, green_read, blue_read)) { cout << "corrupt file (id 4)\n"; return 0; }
fill_image(image, width, height, x0, xf, y0, yf, red_read, green_read, blue_read);
if (itr == data.size() || data[itr] != '}') {
cout << "corrupt file (id 5)\n";
return 0;
}
itr++;
} else if (data[itr] == 'h') { // hay un hijo, debemos iterarlo
itr++;
if (!recu_uncompress(image, data, itr, width, height, x0, (x0 + xf) / 2, y0, (y0 + yf) / 2)) return 0;
if (!recu_uncompress(image, data, itr, width, height, x0, (x0 + xf) / 2, (y0 + yf) / 2 + 1, yf)) return 0;
if (!recu_uncompress(image, data, itr, width, height, (x0 + xf) / 2 + 1, xf, y0, (y0 + yf) / 2)) return 0;
if (!recu_uncompress(image, data, itr, width, height, (x0 + xf) / 2 + 1, xf, (y0 + yf) / 2 + 1, yf)) return 0;
}
return 1;
}
bool uncompress_algorithm(string data_directory, string file_to_write) { // reconstruct image
vector <unsigned char> image;
ifstream file(data_directory);
if (!file.is_open()) {
cout << "error opening '" << data_directory << "'\n";
file.close();
return 0;
}
string data = "";
while (file.good()) data += file.get();
file.close();
int itr = 0;
int sz = 1; // we know size is at least 1!
while (data[itr] == 'l') {
sz *= 2; // get total width/height
itr++;
}
for (int i = 0; i < sz*sz * 4; i++) {
image.push_back(255); // set initial values
}
if (!recu_uncompress(image, data, itr, sz, sz, 0, sz - 1, 0, sz - 1)) {
cout << "uncompress algorithm failed \n";
return 0;
}
if (lodepng::encode(file_to_write, image, sz, sz)) {
cout << "error writing image \n";
return 0;
}
return 1;
} | [
"jmestanza@itba.edu.ar"
] | jmestanza@itba.edu.ar |
281f89a2828215b830a0848e576e268626fde7f7 | 902aab58f902a488a4f0f0e8e0d6b0bab8334240 | /InProgress/te_gurney/case/0.76/p | 190526b3f8fe64e53b60d9414a28aa1df4f74df6 | [] | no_license | Foadsf/OpenFOAM_Tutorials_ | d32d5ef6583f276018f2314a78fe66c730c47109 | 4b914e5112863f2660e15b899dfddfc0ec04f90c | refs/heads/master | 2021-09-12T08:19:21.666536 | 2018-01-24T17:31:13 | 2018-01-24T17:31:13 | 118,747,914 | 1 | 0 | null | 2018-01-24T10:10:08 | 2018-01-24T10:10:08 | null | UTF-8 | C++ | false | false | 130,052 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.3.1 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "0.76";
object p;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 2 -2 0 0 0 0];
internalField nonuniform List<scalar>
15166
(
-17.3087
-22.3361
-25.1023
-27.3113
-29.1887
-30.786
-32.2179
-33.4749
-34.5618
-35.3684
-36.1104
-36.6834
-22.022
-24.5326
-25.8932
-27.5589
-29.132
-30.5571
-31.8612
-33.0399
-34.0715
-34.9009
-35.6421
-36.2353
-27.2053
-28.0921
-28.3684
-29.3024
-30.2998
-31.3151
-32.3141
-33.2461
-34.0953
-34.821
-35.4661
-36.0034
-30.1804
-30.5915
-30.5869
-31.1464
-31.7374
-32.406
-33.1105
-33.7982
-34.4488
-35.0276
-35.5469
-35.9754
-32.049
-32.3027
-32.2769
-32.676
-33.0524
-33.5068
-34.001
-34.4985
-34.9813
-35.423
-35.826
-36.1748
-33.6966
-33.8156
-33.7576
-34.0314
-34.2669
-34.5758
-34.9173
-35.2675
-35.6134
-35.9358
-36.2322
-36.4945
-35.2866
-35.2863
-35.1787
-35.3314
-35.4482
-35.6358
-35.8505
-36.0773
-36.3056
-36.5206
-36.7159
-36.8783
-36.7591
-36.6715
-36.5263
-36.5782
-36.5979
-36.6815
-36.788
-36.9089
-37.0351
-37.1555
-37.2636
-37.3502
-38.0966
-37.943
-37.7744
-37.7493
-37.6944
-37.694
-37.7113
-37.7433
-37.7825
-37.8212
-37.8537
-37.8711
-39.3191
-39.1124
-38.9282
-38.8428
-38.7306
-38.6626
-38.6075
-38.5659
-38.5321
-38.5004
-38.4651
-38.4178
-40.4488
-40.1986
-40.0023
-39.8675
-39.7094
-39.5861
-39.4715
-39.3684
-39.2728
-39.1815
-39.0896
-38.9787
-41.5025
-41.2152
-41.0086
-40.8319
-40.6358
-40.4662
-40.3016
-40.1468
-39.9987
-39.8563
-39.7189
-39.5755
-42.4876
-42.1692
-41.9541
-41.7416
-41.5136
-41.3043
-41.0976
-40.8985
-40.7052
-40.5173
-40.3356
-40.161
-43.4115
-43.0662
-42.8439
-42.6009
-42.3458
-42.1027
-41.8597
-41.6219
-41.388
-41.1565
-40.9188
-40.662
-44.2808
-43.9122
-43.6834
-43.4138
-43.1355
-42.8634
-42.5894
-42.3188
-42.0515
-41.7899
-41.5369
-41.2738
-45.1005
-44.7115
-44.4769
-44.1842
-43.886
-43.5889
-43.2885
-42.99
-42.6938
-42.4018
-42.1191
-41.8426
-45.875
-45.4683
-45.2286
-44.9155
-44.5998
-44.2808
-43.9573
-43.6342
-43.3123
-42.9929
-42.6791
-42.3772
-46.609
-46.186
-45.9411
-45.6098
-45.2788
-44.9405
-44.5967
-44.2521
-43.9082
-43.5663
-43.2277
-42.8989
-47.3045
-46.8672
-46.6177
-46.2703
-45.9257
-45.5703
-45.2087
-44.8451
-44.4816
-44.1206
-43.7638
-43.4146
-47.9649
-47.5146
-47.2606
-46.8987
-46.5418
-46.1711
-45.7935
-45.4128
-45.0318
-44.6531
-44.2799
-43.9202
-48.5923
-48.1302
-47.872
-47.497
-47.129
-46.7445
-46.3524
-45.9562
-45.5587
-45.1624
-44.77
-44.3928
-49.188
-48.7157
-48.4537
-48.0667
-47.6885
-47.2916
-46.8865
-46.4761
-46.0634
-45.6505
-45.2372
-44.8318
-49.7576
-49.2739
-49.0075
-48.6096
-48.2223
-47.8141
-47.3972
-46.9742
-46.5488
-46.1237
-45.7001
-45.2843
-50.2982
-49.8044
-49.5347
-49.1268
-48.7311
-48.3128
-47.8854
-47.4514
-47.0146
-46.5778
-46.1414
-45.7067
-50.8066
-50.3079
-50.0359
-49.6191
-49.216
-48.7885
-48.3518
-47.9079
-47.4606
-47.0132
-46.5668
-46.1207
-51.2966
-50.7888
-50.5131
-50.088
-49.6781
-49.2424
-48.7972
-48.3442
-47.8875
-47.4303
-46.9737
-46.5153
-51.7619
-51.2461
-50.9676
-50.5346
-50.1184
-49.6751
-49.2221
-48.7609
-48.2958
-47.8306
-47.3683
-46.9037
-52.2046
-51.6805
-51.3995
-50.9594
-50.5374
-50.0871
-49.627
-49.1581
-48.685
-48.2107
-47.7382
-47.2691
-52.6205
-52.0925
-51.8099
-51.3631
-50.9357
-50.479
-50.0123
-49.5364
-49.0559
-48.5734
-48.0901
-47.6023
-53.017
-52.4832
-52.1995
-51.7464
-51.3143
-50.8517
-50.379
-49.8967
-49.4097
-48.9211
-48.4333
-47.9396
-53.3932
-52.8565
-52.5695
-52.1104
-51.6738
-51.2058
-50.7276
-50.2395
-49.7465
-49.2518
-48.758
-48.2577
-53.7531
-53.2113
-52.921
-52.4556
-52.0147
-51.5416
-51.0582
-50.5649
-50.0665
-49.5661
-49.0678
-48.5662
-54.0835
-53.5436
-53.252
-52.7816
-52.3369
-51.8592
-51.3713
-50.8732
-50.3696
-49.8633
-49.3575
-48.8478
-54.403
-53.8587
-53.5638
-53.089
-52.641
-52.1593
-51.6672
-51.1648
-50.6569
-50.1465
-49.6374
-49.1276
-54.7034
-54.1546
-53.8581
-53.3785
-52.9274
-52.4419
-51.9463
-51.44
-50.9285
-50.4146
-49.9014
-49.3863
-54.9808
-54.4315
-54.1342
-53.6505
-53.1966
-52.7075
-52.2082
-51.6984
-51.1835
-50.6668
-50.153
-49.6392
-55.2425
-54.6908
-54.3931
-53.9048
-53.4482
-52.9558
-52.4533
-51.94
-51.4211
-50.8994
-50.3789
-49.8643
-55.492
-54.9342
-54.6353
-54.1422
-53.6831
-53.1874
-52.6815
-52.1646
-51.6416
-51.1148
-50.5846
-50.0482
-55.7149
-55.158
-54.8603
-54.3625
-53.9013
-53.4027
-52.8939
-52.3737
-51.8475
-51.3176
-50.7833
-50.224
-55.9295
-55.3663
-55.069
-54.5658
-54.1029
-53.6018
-53.0907
-52.5684
-52.0404
-51.5114
-50.9901
-50.4645
-56.1212
-55.5567
-55.2606
-54.7523
-54.2884
-53.7851
-53.272
-52.7474
-52.2168
-51.682
-51.1464
-50.6107
-56.2977
-55.7334
-55.4343
-54.9217
-54.4577
-53.9524
-53.4372
-52.9106
-52.3778
-51.8413
-51.3049
-50.7625
-56.4628
-55.8949
-55.5922
-55.0755
-54.6114
-54.104
-53.5872
-53.0587
-52.5241
-51.9861
-51.4482
-50.9008
-56.6026
-56.0384
-55.7358
-55.2126
-54.75
-54.2406
-53.7222
-53.1921
-52.6557
-52.1161
-51.5782
-51.0372
-56.7343
-56.1669
-55.862
-55.3356
-54.8743
-54.3622
-53.8423
-53.3105
-52.7724
-52.2306
-51.6889
-51.1427
-56.8436
-56.2774
-55.9708
-55.4438
-54.9848
-54.4685
-53.9471
-53.414
-52.8747
-52.3321
-51.7921
-51.2582
-56.9392
-56.3736
-56.0634
-55.5394
-55.0789
-54.5579
-54.0368
-53.5026
-52.9619
-52.4171
-51.871
-51.3263
-57.0177
-56.4563
-56.1382
-55.6213
-55.1519
-54.6345
-54.1123
-53.5766
-53.0349
-52.4895
-51.9448
-51.4087
-57.0838
-56.5231
-56.1999
-55.6868
-55.2131
-54.6961
-54.1728
-53.6362
-53.0935
-52.547
-51.999
-51.4534
-57.1337
-56.5752
-56.2469
-55.7355
-55.2602
-54.7432
-54.2187
-53.6814
-53.1379
-52.5908
-52.0438
-51.5061
-57.1641
-56.6092
-56.2797
-55.769
-55.2924
-54.7753
-54.2501
-53.7121
-53.1677
-52.6189
-52.0664
-51.5132
-57.1837
-56.6292
-56.2982
-55.7882
-55.3104
-54.7932
-54.2677
-53.7294
-53.1845
-52.6353
-52.0824
-51.5208
-57.1868
-56.6338
-56.3018
-55.792
-55.3137
-54.7969
-54.2714
-53.7335
-53.1894
-52.6424
-52.0971
-51.5501
-57.171
-56.6233
-56.2904
-55.7813
-55.3026
-54.7862
-54.2609
-53.7234
-53.1797
-52.6324
-52.0853
-51.5333
-57.144
-56.5988
-56.2644
-55.756
-55.2771
-54.7611
-54.236
-53.6987
-53.155
-52.6071
-52.0598
-51.5149
-57.1013
-56.5593
-56.2237
-55.7161
-55.2372
-54.7217
-54.1969
-53.66
-53.1164
-52.5683
-52.0185
-51.4666
-57.0484
-56.5045
-56.1684
-55.6617
-55.1829
-54.6682
-54.1439
-53.6079
-53.0652
-52.5183
-51.9712
-51.4294
-56.9711
-56.435
-56.0985
-55.5928
-55.1144
-54.6005
-54.0772
-53.5422
-53.0007
-52.4548
-51.906
-51.3483
-56.8883
-56.3504
-56.0137
-55.5094
-55.0316
-54.5187
-53.9964
-53.4628
-52.9231
-52.3809
-51.8439
-51.3224
-56.7845
-56.2506
-55.9142
-55.4111
-54.934
-54.4224
-53.9012
-53.3687
-52.8299
-52.2868
-51.742
-51.2048
-56.6667
-56.1365
-55.8005
-55.2989
-54.8224
-54.3117
-53.7914
-53.2596
-52.7211
-52.1779
-51.6314
-51.0868
-56.5388
-56.0105
-55.6734
-55.1728
-54.697
-54.1873
-53.6679
-53.137
-52.5993
-52.0571
-51.5115
-50.9589
-56.3955
-55.8681
-55.5314
-55.0322
-54.5574
-54.049
-53.5311
-53.0018
-52.4658
-51.926
-51.3866
-50.8517
-56.2331
-55.7102
-55.3747
-54.8774
-54.4038
-53.897
-53.3807
-52.8532
-52.319
-51.7804
-51.2389
-50.6931
-56.0589
-55.5382
-55.2034
-54.7082
-54.236
-53.7312
-53.2167
-52.6913
-52.1593
-51.6235
-51.0879
-50.5552
-55.8681
-55.352
-55.0183
-54.5249
-54.0544
-53.5514
-53.0389
-52.5156
-51.9857
-51.4519
-50.9165
-50.3779
-55.6646
-55.1528
-54.8193
-54.3278
-53.8588
-53.3577
-52.8473
-52.3262
-51.7985
-51.2675
-50.7375
-50.2158
-55.4529
-54.9394
-54.6059
-54.1165
-53.6491
-53.1501
-52.6416
-52.1227
-51.5972
-51.0672
-50.5351
-50.0041
-55.2138
-54.7083
-54.3773
-53.8907
-53.4252
-52.9285
-52.4223
-51.9058
-51.3827
-50.8557
-50.3292
-49.8179
-54.9659
-54.4643
-54.1348
-53.6506
-53.1873
-52.6928
-52.1892
-51.6749
-51.1545
-50.6298
-50.1025
-49.5828
-54.706
-54.208
-53.8787
-53.3971
-52.9355
-52.4434
-51.9423
-51.4305
-50.9127
-50.3908
-49.8682
-49.3657
-54.4319
-53.9359
-53.6084
-53.1295
-52.6702
-52.1802
-51.6814
-51.1724
-50.6568
-50.1368
-49.6122
-49.0926
-54.144
-53.6513
-53.3239
-52.8475
-52.3905
-51.9034
-51.4073
-50.9008
-50.3879
-49.8708
-49.3498
-48.8351
-53.8342
-53.3488
-53.0249
-52.5521
-52.0976
-51.6134
-51.1202
-50.6169
-50.1074
-49.5945
-49.0804
-48.5782
-53.5127
-53.0327
-52.7112
-52.2418
-51.7903
-51.3093
-50.8194
-50.3194
-49.8133
-49.3033
-48.7897
-48.2799
-53.1855
-52.7075
-52.3857
-51.9188
-51.4696
-50.9918
-50.505
-50.0085
-49.5059
-49.0001
-48.4939
-48.0031
-52.8386
-52.3652
-52.0454
-51.582
-51.1356
-50.6606
-50.1773
-49.6842
-49.1848
-48.6814
-48.1739
-47.6691
-52.4775
-52.0073
-51.6901
-51.2305
-50.7874
-50.3158
-49.8357
-49.3463
-48.8508
-48.352
-47.8522
-47.3683
-52.1011
-51.6365
-51.3211
-50.865
-50.4251
-49.957
-49.4807
-48.995
-48.5034
-48.0086
-47.5102
-47.0139
-51.7064
-51.2494
-50.9372
-50.4854
-50.0488
-49.5845
-49.112
-48.6301
-48.143
-47.6528
-47.1636
-46.6923
-51.3028
-50.85
-50.5399
-50.0921
-49.6589
-49.1985
-48.7297
-48.2514
-47.7679
-47.2803
-46.7888
-46.3098
-50.8863
-50.4375
-50.1295
-49.6856
-49.2558
-48.799
-48.3338
-47.8595
-47.3793
-46.8948
-46.404
-45.9145
-50.4543
-50.0102
-49.7044
-49.2649
-48.8388
-48.3863
-47.9251
-47.4554
-46.9802
-46.5018
-46.0213
-45.5446
-50.0067
-49.5682
-49.2652
-48.8303
-48.4082
-47.9601
-47.5038
-47.0391
-46.5695
-46.0976
-45.6273
-45.1734
-49.5441
-49.1117
-48.8119
-48.3818
-47.9639
-47.5202
-47.0685
-46.6088
-46.1435
-45.6747
-45.2026
-44.736
-49.066
-48.6416
-48.3451
-47.9197
-47.5059
-47.0666
-46.6195
-46.1645
-45.704
-45.2404
-44.7761
-44.3321
-48.5824
-48.1598
-47.8649
-47.4444
-47.0345
-46.5997
-46.1574
-45.707
-45.2514
-44.7922
-44.3281
-43.8622
-48.0787
-47.6623
-47.3704
-46.955
-46.5494
-46.1196
-45.6821
-45.2371
-44.7871
-44.3349
-43.8839
-43.4501
-47.5592
-47.1494
-46.8611
-46.4511
-46.0506
-45.6259
-45.1939
-44.7543
-44.3097
-43.8632
-43.4171
-42.9954
-47.0258
-46.6229
-46.3386
-45.9341
-45.5383
-45.1189
-44.692
-44.2577
-43.8181
-43.3755
-42.9309
-42.5115
-46.4796
-46.0826
-45.8017
-45.4028
-45.012
-44.5981
-44.1768
-43.7476
-43.3133
-42.8749
-42.4283
-41.9833
-45.9199
-45.529
-45.2519
-44.8588
-44.4731
-44.0647
-43.6493
-43.2266
-42.8
-42.3725
-41.9477
-41.5596
-45.3475
-44.9634
-44.689
-44.3016
-43.9209
-43.5183
-43.109
-42.6927
-42.2726
-41.8506
-41.4238
-41.0083
-44.7626
-44.3823
-44.1119
-43.7306
-43.3554
-42.9586
-42.555
-42.1448
-41.7308
-41.3142
-40.8948
-40.4983
-44.1568
-43.7866
-43.5208
-43.1458
-42.776
-42.3854
-41.9879
-41.5842
-41.1765
-40.7666
-40.3524
-39.943
-43.5459
-43.1791
-42.9161
-42.547
-42.1834
-41.7989
-41.4079
-41.0112
-40.6108
-40.2093
-39.8091
-39.4337
-42.9195
-42.5581
-42.2984
-41.9354
-41.5774
-41.1994
-40.8151
-40.4251
-40.0313
-39.6354
-39.2349
-38.8364
-42.2687
-41.9183
-41.6652
-41.3095
-40.958
-40.5869
-40.2092
-39.8263
-39.4399
-39.0521
-38.6646
-38.3006
-41.6155
-41.2699
-41.0194
-40.6704
-40.3252
-39.9611
-39.5907
-39.2149
-38.8363
-38.4561
-38.073
-37.6936
-40.9447
-40.6067
-40.3607
-40.0185
-39.6802
-39.3229
-38.9597
-38.5916
-38.2208
-37.8492
-37.4804
-37.1368
-40.2632
-39.9304
-39.6885
-39.3531
-39.0215
-38.6717
-38.3159
-37.9555
-37.5921
-37.2264
-36.8565
-36.4987
-39.5627
-39.2388
-39.0024
-38.6749
-38.3502
-38.0078
-37.6597
-37.3072
-36.9519
-36.5953
-36.2351
-35.8837
-38.8506
-38.5346
-38.3034
-37.9837
-37.6661
-37.3318
-36.9922
-36.6482
-36.3024
-35.9572
-35.6144
-35.287
-38.131
-37.8196
-37.5923
-37.2801
-36.9699
-36.6434
-36.3123
-35.9771
-35.6402
-35.3034
-34.9678
-34.6535
-37.3941
-37.0913
-36.8688
-36.5639
-36.2613
-35.9428
-35.6198
-35.2931
-34.9646
-34.635
-34.3024
-33.9783
-36.6458
-36.3493
-36.1319
-35.8353
-35.5403
-35.2302
-34.9153
-34.5978
-34.279
-33.9605
-33.6442
-33.3555
-35.8822
-35.5947
-35.3823
-35.0938
-34.8067
-34.5055
-34.1997
-33.8913
-33.5817
-33.2718
-32.9586
-32.6501
-35.1096
-34.828
-34.62
-34.34
-34.0613
-33.769
-33.4729
-33.1744
-32.8745
-32.575
-32.2751
-31.9893
-34.3235
-34.048
-33.846
-33.5746
-33.3044
-33.0214
-32.7351
-32.4471
-32.1583
-31.8712
-31.5867
-31.3225
-33.5215
-33.2557
-33.0594
-32.7968
-32.5354
-32.2627
-31.9865
-31.7088
-31.4308
-31.1539
-30.8753
-30.6023
-32.7106
-32.4518
-32.2614
-32.0079
-31.7558
-31.493
-31.2275
-30.9607
-30.6942
-30.4293
-30.1674
-29.9267
-31.8861
-31.6359
-31.4518
-31.2076
-30.9647
-30.7123
-30.458
-30.2028
-29.9485
-29.6955
-29.4412
-29.2011
-31.0557
-30.8116
-30.6322
-30.3971
-30.1636
-29.9216
-29.6785
-29.4354
-29.1943
-28.9568
-28.7227
-28.5229
-30.2124
-29.9754
-29.8011
-29.5755
-29.3518
-29.1209
-28.8887
-28.6572
-28.4282
-28.2031
-27.9806
-27.7673
-29.3554
-29.1277
-28.9606
-28.7444
-28.5304
-28.3101
-28.0892
-27.8688
-27.6498
-27.4322
-27.2122
-26.992
-28.495
-28.2713
-28.1091
-27.9026
-27.6988
-27.4899
-27.2811
-27.0731
-26.867
-26.6639
-26.4657
-26.2945
-27.6174
-27.4033
-27.2484
-27.0524
-26.8591
-26.6621
-26.4661
-26.2718
-26.0799
-25.891
-25.7019
-25.5172
-26.7343
-26.5277
-26.3786
-26.193
-26.0111
-25.8272
-25.6448
-25.4652
-25.2884
-25.1158
-24.9477
-24.8013
-25.8419
-25.6449
-25.5023
-25.3268
-25.1563
-24.9849
-24.8165
-24.6522
-24.4922
-24.3361
-24.1827
-24.0466
-24.9474
-24.7547
-24.6178
-24.453
-24.2946
-24.1369
-23.9831
-23.8339
-23.6904
-23.5524
-23.4199
-23.3221
-24.0425
-23.8569
-23.727
-23.5728
-23.4263
-23.2824
-23.1439
-23.0103
-22.8821
-22.7597
-22.6395
-22.5217
-23.1277
-22.9516
-22.8292
-22.6868
-22.5529
-22.4234
-22.3002
-22.1828
-22.0704
-21.9625
-21.8553
-21.7493
-22.2123
-22.0433
-21.927
-21.796
-21.6759
-21.5616
-21.4552
-21.3561
-21.2635
-21.1781
-21.1032
-21.0654
-21.2944
-21.1306
-21.0213
-20.9022
-20.7959
-20.6982
-20.6096
-20.5297
-20.4572
-20.3905
-20.3258
-20.2693
-20.3687
-20.2134
-20.112
-20.0059
-19.9144
-19.834
-19.7648
-19.7051
-19.6535
-19.6083
-19.5682
-19.5576
-19.443
-19.2951
-19.2009
-19.1076
-19.0324
-18.971
-18.9223
-18.885
-18.8563
-18.8337
-18.8117
-18.7966
-18.5178
-18.3754
-18.2896
-18.2107
-18.1528
-18.1123
-18.0866
-18.0736
-18.0705
-18.0747
-18.083
-18.1054
-17.5892
-17.4547
-17.3779
-17.3149
-17.2767
-17.2591
-17.2591
-17.2734
-17.2987
-17.3322
-17.372
-17.4263
-16.6642
-16.5356
-16.4687
-16.4236
-16.4074
-16.4159
-16.4444
-16.4881
-16.5429
-16.6055
-16.6744
-16.7622
-15.7381
-15.6178
-15.5627
-15.5384
-15.5489
-15.5873
-15.6477
-15.7238
-15.8094
-15.8993
-15.9873
-16.0786
-14.8163
-14.7023
-14.6624
-14.6642
-14.7071
-14.7818
-14.8791
-14.9915
-15.1118
-15.2345
-15.3563
-15.4931
-13.8939
-13.7892
-13.7708
-13.8089
-13.8944
-14.0131
-14.153
-14.3047
-14.4611
-14.6165
-14.7648
-14.9124
-12.9676
-12.8767
-12.8952
-12.9874
-13.1294
-13.3007
-13.4881
-13.6815
-13.8739
-14.0604
-14.2353
-14.4046
-12.0299
-11.9717
-12.0591
-12.2344
-12.4499
-12.681
-12.9152
-13.1449
-13.3699
-13.5842
-13.7763
-13.9343
-11.0586
-11.1447
-11.3819
-11.6853
-11.982
-12.2605
-12.5302
-12.7868
-13.0301
-13.2729
-13.4733
-13.6563
-1.51336
9.70865
-10.309
-19.2171
-19.8574
-7.19893
-4.75653
32.7501
-44.791
-39.9602
-35.0475
-14.8551
16.5881
-41.2455
1.38572
-6.75753
-41.2708
-30.5994
-30.0395
-6.489
27.9832
26.325
17.7849
-16.1204
-0.859544
-10.853
24.365
0.645866
-42.5141
-37.8097
-42.477
30.9145
9.58115
-34.656
16.7937
18.0437
33.6642
-30.8184
33.2344
-14.7596
2.32267
-1.99102
24.6823
-0.420222
33.4338
26.1244
19.0531
19.9917
33.3651
27.9718
18.7597
32.5677
30.9381
1.4909
-36.9586
9.41817
12.904
-2.36889
-31.5742
0.921243
24.1695
30.329
1.53636
-3.96681
17.5256
9.71174
-13.6895
30.4925
16.335
-39.415
-37.0554
13.9387
33.1334
-13.2585
-15.4932
2.61649
-44.3285
-1.67798
10.0151
28.8021
2.66437
-1.93255
33.914
32.5581
1.96514
-44.3984
-13.7152
0.919584
-39.5741
33.5433
27.987
-41.3222
-0.226479
7.82798
34.3248
-4.18783
0.516057
-1.90772
-0.64216
-13.3457
-15.8574
14.5777
5.57193
8.91214
-1.70938
33.9714
1.83097
33.2504
-13.6628
0.350414
17.9788
-2.0698
30.5199
-7.73175
1.68688
15.6671
-19.9037
-6.20131
-45.7004
-33.3361
-10.6063
-21.5298
-42.0204
15.4073
-18.1226
-40.3267
-1.92287
11.6045
19.3704
1.03077
31.5961
1.40014
21.4165
8.84729
23.5184
10.78
34.0286
-39.3997
31.5452
10.3896
-19.15
28.7193
27.1233
0.53812
30.8966
-37.13
31.6716
-10.6841
-47.9229
3.35632
0.321537
16.6475
-1.66777
4.76343
22.179
3.22717
31.8297
-1.35032
-41.7128
-14.5819
-22.0911
-6.32623
-30.1842
-15.0635
24.1414
26.3774
31.5947
34.3123
10.9012
1.48669
-38.1098
-18.0684
-36.9179
-19.2511
-1.10233
-41.2493
1.95424
32.3912
25.214
-36.9816
31.0681
-32.2834
-7.56624
33.4018
6.30567
31.4887
3.49395
-1.7059
31.7778
1.62157
-40.3787
-1.74521
31.9151
-5.90113
32.0477
8.06102
26.9525
30.4002
2.38175
-61.4226
-47.5675
32.4143
34.355
31.1708
32.8673
14.1222
-7.97494
-36.2495
-13.829
-15.9308
4.30422
-46.9819
33.4128
34.2282
1.93903
31.1855
-11.1912
-13.1314
-63.5319
30.5451
32.4366
-47.829
33.5688
-3.23913
-3.26717
-39.9201
-44.8069
-2.07345
-56.4272
20.0276
33.7385
-17.1122
-2.30159
-13.0119
-13.3757
27.4044
31.2411
-47.3666
-1.80774
32.8943
-33.3321
19.455
-40.7463
-45.9344
33.0709
2.44831
19.8837
6.01815
-42.4813
31.3425
-40.1267
-13.3945
-40.3666
-71.5383
28.2601
-31.6905
0.0947122
32.6677
-42.1991
33.4001
-15.2353
27.094
17.3273
-8.60991
-14.3261
27.5838
-46.5802
32.7187
-3.68292
6.48042
0.177058
18.6137
-45.2877
33.0933
32.8856
-44.4152
21.8576
34.4528
34.254
32.6635
32.6386
23.365
33.6995
33.1972
-25.4652
27.4653
-33.0662
33.2282
-50.0976
29.5071
32.6457
-42.3229
34.9561
34.9491
30.4561
32.0087
28.0431
30.7009
23.9776
34.247
29.0811
-0.741364
-10.8262
-37.5656
22.3456
-46.505
34.4993
1.55034
14.3869
16.6655
-27.9374
34.7071
3.44686
-50.924
32.5039
24.3755
34.9042
-31.4265
2.0123
27.8127
22.0459
-41.8217
-15.3311
69.7058
34.239
-30.7885
-26.2043
-2.31638
2.57488
34.7397
-4.08432
0.640459
-41.8269
-2.27036
2.63701
4.24878
-1.70758
14.9905
2.15792
6.52418
-0.324198
33.0154
0.121622
29.3957
12.9122
31.6245
33.6237
-42.1355
-60.7287
-12.67
-0.170179
-4.06279
13.8573
26.0113
34.797
-1.1788
-25.3462
33.539
-46.1394
-40.0124
30.1015
33.7029
-49.002
-61.3686
21.262
-21.6342
-3.18228
0.32468
-1.55302
0.707323
-29.7904
30.2471
33.9941
-33.1987
-41.7285
28.7307
33.1788
-48.2767
3.57197
-35.8024
-11.047
-11.0821
-1.3928
33.1491
-67.0613
28.0378
-0.86491
21.7731
28.6234
19.7465
3.50468
-37.2369
-35.6888
30.7653
30.2912
-3.02436
-55.7596
-2.80589
-33.8539
-26.8314
13.1527
-14.3695
-12.9863
14.1072
-43.4325
30.9287
-48.796
-41.2345
31.3152
33.3119
-2.21857
-0.821438
1.55662
-49.2656
12.7161
28.7866
-62.5148
30.4042
30.6389
3.41154
0.202324
30.6397
1.69699
-3.00141
32.5319
0.583767
-21.6437
-47.312
33.9103
0.580223
-14.0847
-11.2366
-31.4656
29.4256
-32.5514
1.96321
-41.4939
-37.3311
28.6094
-6.8419
34.5698
33.2531
12.985
32.071
8.54978
-14.4571
-6.82804
31.8917
27.0097
2.12659
-37.5275
29.7147
33.4661
10.7458
-41.8303
28.3663
9.66296
34.798
34.2329
-32.4331
28.6085
-10.4219
22.8583
-4.52619
-50.1396
-28.1423
2.28256
29.3303
22.8507
33.354
-25.8526
33.6562
19.1353
0.823437
-38.016
-46.7777
30.8415
1.99114
31.8791
-13.1591
0.115653
33.5103
33.2829
-23.2128
-20.6293
30.2084
34.1742
-6.2259
-19.4049
-42.8956
-22.353
0.944802
32.4124
-57.7259
-17.2724
30.5449
-23.7881
-1.02677
33.1338
33.9282
-40.5084
31.0784
33.6243
2.45372
26.293
34.3916
22.9636
-48.3237
31.0997
-37.6738
31.7015
-49.5369
-13.7756
-36.835
2.00602
-15.7099
31.44
-37.6474
-13.9795
21.4095
15.8632
-12.5262
1.31235
31.5563
-0.694176
3.77129
-14.8054
33.6811
30.2589
-38.9826
34.9538
-15.2394
-17.461
-37.2818
-2.15903
25.9696
-47.4009
-36.3898
30.3886
-42.5658
-7.71221
-17.814
-21.4711
-48.2454
-43.3065
-1.82933
-26.3765
1.95672
19.6123
9.06655
13.8133
-17.3897
28.4739
33.6715
-30.3884
26.2232
29.0596
-13.8719
0.00802814
-0.10618
16.6568
-13.4319
30.6456
-39.1192
-31.5299
-25.9525
31.7891
0.499613
16.9994
27.6799
10.8619
-49.6761
24.3573
30.0034
30.3208
12.4572
0.449929
-9.38813
-2.67434
-36.0465
-36.1246
33.071
-43.747
4.2654
-45.83
25.0433
33.0045
27.5531
-43.9617
0.130053
-32.4616
1.30777
28.5277
-13.3958
32.2829
-36.7079
-0.0879488
-46.0912
-40.8498
33.4608
1.83858
-0.661004
-26.6589
-17.3415
11.7117
11.9936
8.3043
-12.7976
-6.26525
7.62091
29.7406
-29.2461
-33.8717
-1.86132
0.820937
-44.4464
34.1616
32.6957
33.5987
10.7178
29.3629
-6.83709
-30.6977
25.6762
-1.78605
11.3484
30.2423
1.56008
14.4132
33.8741
-50.3625
-50.7112
3.39479
-13.0618
29.1769
-49.7369
19.3727
25.1678
32.2124
-2.12212
31.9853
29.4068
23.5545
-22.1536
-9.39077
-0.321641
-48.2332
-50.96
32.2003
-60.8026
4.45204
2.7626
-45.9053
-31.0178
10.4446
1.96407
-41.9241
-1.12056
-36.304
31.7158
-31.2638
2.02341
-45.9068
-0.0557716
32.8858
-37.7952
33.5814
17.0764
25.4818
-48.4528
-1.14369
19.0923
-48.1164
31.7544
-36.8399
-3.98189
-40.3367
-17.9678
1.3446
2.35864
24.1741
-15.0313
32.2644
4.06463
-25.4104
34.2336
34.3041
-38.7186
23.5396
-38.4754
33.8133
27.4066
33.0819
-2.1795
13.5332
-1.13223
1.50343
30.1593
2.13792
34.8894
-10.6981
-35.4063
1.45852
28.6793
34.1123
-37.1411
-5.31379
-26.7279
18.8936
-52.8004
-17.3551
-28.604
-40.611
-1.86536
0.845029
33.2053
20.6278
34.3399
29.6527
3.82764
34.8362
34.9155
32.8927
-37.0522
-16.6349
32.888
-0.533032
4.46253
-56.5815
33.4981
1.26158
15.142
-38.4375
6.44555
-2.37124
-41.5413
2.0541
-26.6077
-57.9184
6.35
32.1525
-1.61948
23.0341
32.7934
1.41698
-8.69833
-1.28428
7.34546
-9.47264
-52.4256
-32.0875
27.6011
29.3697
1.92136
-13.8798
-0.634792
-0.647793
-21.2377
14.8982
30.6167
16.5075
-43.6549
-2.86922
-109.937
-0.506785
-10.2917
33.0055
30.1057
-1.66019
31.694
-17.4879
29.2847
-10.4857
-42.7106
-43.9301
31.3883
-24.7437
-15.0103
17.3421
8.05716
27.3584
-58.015
-13.3489
29.0359
0.119178
32.5602
-8.11901
-39.5388
-44.9468
-16.1674
-13.9755
-43.1429
-23.8662
6.08234
34.3737
29.1908
-12.4082
7.34987
-3.33217
33.8417
-37.405
-5.30678
-42.257
-28.3814
25.9429
24.2429
-48.3395
-11.1446
27.6852
-12.2073
-38.923
-38.7164
0.209619
-43.2189
-15.7621
34.1372
32.4846
30.5677
0.113421
-10.738
-2.82328
1.74864
2.38269
31.0469
23.1994
20.4825
-37.8736
0.665579
-43.7975
15.5698
23.5982
1.95695
-38.5737
-4.1923
26.4399
-42.6963
23.7774
30.6365
28.52
-2.12417
26.3505
-38.1644
10.2427
14.1346
31.9727
-39.9682
28.0087
16.0803
-15.3867
-13.9892
26.9793
-26.9054
-28.8913
30.8754
0.417501
-50.6025
15.3053
12.6141
-9.05614
-58.3931
26.8694
-0.424983
1.19818
-45.3469
29.9382
-48.6151
1.38818
-36.3586
-38.1921
33.7616
6.52048
33.5865
-29.9325
6.56175
29.3283
-2.0495
-50.3317
34.0858
34.0222
34.6386
3.19277
1.99479
15.4296
-41.3326
-40.5931
-32.0396
0.323063
-14.3859
3.8893
12.7773
-39.7159
25.044
27.7164
28.008
16.8941
33.3537
32.6238
-37.5232
0.00672852
34.2918
-32.3077
31.694
1.15136
-41.6912
-4.33778
1.98089
4.47962
29.8323
-20.8228
-10.8196
26.3729
-54.7529
-4.70339
3.80034
16.3247
23.1412
-11.7453
27.9146
2.6142
-3.12756
-13.7406
13.9226
-12.9849
-40.9048
33.2475
-16.5743
22.2405
-35.6765
28.3166
30.4536
32.3705
-40.4897
31.8766
1.66866
32.8127
-10.5737
-2.26274
-41.3782
30.0156
21.1451
25.7235
-8.22036
-44.0122
-35.8613
-0.414853
34.1247
2.73914
33.1901
-31.5355
33.2043
-2.03562
-45.365
34.2537
-35.553
33.1188
32.9915
-15.1094
-29.5383
23.7312
0.626422
15.0991
34.9204
-1.37928
-48.2952
32.2826
-2.32822
-15.4488
10.6852
33.2677
33.673
-31.4994
31.4346
32.6517
-10.2932
31.5617
27.0205
30.5858
31.2982
1.56161
-1.61603
-40.2618
-6.00719
-38.883
32.9995
-0.808537
-36.877
33.2249
-2.2777
30.0644
25.2496
31.1485
31.0626
18.4338
-41.1716
-38.1737
30.8024
-33.1005
-21.2882
26.1204
33.8681
-45.5451
-30.7042
-38.594
-21.5089
-15.8938
28.5319
-9.88299
-18.2695
-31.1197
-0.441742
-40.5816
33.0399
12.6593
1.70923
-3.20605
-3.20709
31.5028
-2.11202
32.6854
-0.164303
31.7906
-7.40132
3.34933
-46.3819
33.7315
1.88257
31.4899
33.7562
-25.0797
27.0597
-17.8682
32.2717
-1.61955
30.3543
21.4526
2.92908
10.3906
34.4824
30.9577
-0.140381
2.31259
33.7329
2.32826
28.6956
-31.3627
-31.538
31.335
-19.2654
18.8106
-100.825
-44.9356
33.5163
-53.7436
-41.4551
2.31048
31.1344
-43.0735
-44.4747
2.46806
26.4053
-1.20396
-7.25343
30.6224
-10.4836
-17.3585
6.32737
-13.8776
-62.0363
13.9522
-1.15868
25.034
0.47261
10.4801
24.7294
-64.6437
24.6572
5.48172
-3.15697
-47.6635
26.8697
4.72161
7.88308
27.8752
24.5467
33.6665
34.7277
-15.0234
-1.39814
-13.6573
2.63316
39.3294
26.7193
-87.8065
29.5239
-29.8724
1.1046
-50.7341
-0.33024
2.74617
11.6267
30.7687
31.6868
-48.135
2.64197
-16.9669
-1.91361
27.2524
-48.2246
0.949414
32.9991
1.38684
1.10933
5.79042
16.4225
-13.2174
-40.6068
-22.1804
2.97828
-2.63354
31.3929
32.4265
32.1379
-44.8418
27.6006
31.3206
2.88148
11.4045
-35.248
32.482
-14.2201
14.1039
1.2903
34.1249
-2.0499
31.9501
32.1904
-7.6494
-12.1771
33.2153
-16.4534
21.8005
1.67016
-35.9985
-40.7804
33.1618
-2.86267
-17.8753
-35.3421
-20.3016
23.3233
-38.7322
1.95656
1.53398
0.316425
-19.6485
33.9728
-47.0194
0.244587
34.861
-43.5486
29.767
25.6965
-19.0921
14.1024
1.71582
20.5042
30.4627
31.2488
-1.03899
-40.5276
-2.3541
-16.8488
-17.0908
-44.2261
21.6103
-39.8733
-41.5207
8.90312
14.5456
2.25735
-1.66522
6.32608
-12.6573
-7.35201
0.96386
-44.0349
33.3935
-0.583517
31.4929
-34.9013
3.53385
1.89532
-62.3562
31.4391
-35.7658
-20.8097
23.5532
30.292
-27.0117
20.2103
-40.0722
33.0508
32.6473
34.7959
25.8432
33.7725
31.8041
-18.4933
33.7086
3.71734
33.3286
15.446
28.4473
-22.9033
29.3647
-32.9964
11.3406
34.4981
23.034
34.2954
33.3734
34.6
-28.1205
-3.82856
8.57853
2.09859
-20.3502
-39.3707
1.93387
-45.0926
2.59572
15.4197
32.8994
30.9637
-43.4653
-22.715
22.8401
-46.3382
-7.21187
34.5395
-2.81403
32.3633
-49.2544
0.775833
-15.9546
-4.19063
21.4194
32.2061
30.8649
25.3507
31.5586
-1.80301
21.1878
30.5596
-46.7154
5.8996
14.3472
29.3264
31.485
-19.0312
32.0484
-16.8403
-7.39605
-12.5822
1.21845
-8.95123
32.4808
-41.5761
33.3065
29.7231
-26.7539
-30.0124
25.8107
1.44955
32.8996
1.23996
1.62705
-0.748869
16.0369
32.1447
28.6416
-38.4426
33.0747
32.6657
6.31783
3.49965
26.5306
26.6304
19.8716
33.1018
-22.4576
33.5616
-0.838954
33.7141
7.68967
7.3418
1.9317
-37.5704
-19.151
28.7869
-26.2805
-42.0511
-46.0021
2.0151
-40.1618
34.5441
33.8332
-0.335618
-9.59866
28.0763
32.7312
-35.1129
31.8978
-1.74665
-37.1833
3.08944
32.3482
-16.3211
31.1438
13.6594
-12.3291
-0.662318
43.5759
-0.893741
-45.0975
18.2031
3.31343
16.3238
30.7053
-1.39556
-0.60209
-1.90036
16.0583
32.9164
-25.9225
-3.4985
31.6106
25.0827
34.0988
1.85153
34.4753
25.9102
27.8125
-21.8937
33.673
-16.0129
34.8269
-11.0364
30.8282
32.2957
33.9254
-0.742658
26.0028
32.585
31.9032
7.62446
0.810843
31.3791
23.9707
1.73463
-4.78662
-50.7257
0.913499
-37.1468
-45.3318
32.9798
33.5741
-27.2284
24.6973
-31.7017
-52.1807
-25.8376
-13.3697
-35.9587
34.7805
28.4327
-1.4865
33.8316
-5.61142
-0.816348
2.9248
-0.217704
1.89895
4.17669
-25.6973
-100.281
-31.4018
8.13098
-37.8242
29.1182
-3.71387
30.9834
28.4089
-21.3938
27.1205
-43.4178
34.6849
24.7252
20.2513
-2.0025
2.23399
16.4975
21.3968
33.6456
32.8216
-44.0833
27.9066
30.9256
-9.00753
32.8816
33.369
-1.13715
32.8032
-42.4145
4.05533
-18.5839
14.8395
-18.3199
33.0215
-32.1609
-15.947
7.04726
-33.0326
5.31198
-10.4809
1.19719
-18.6877
-40.356
-25.6269
-0.64205
-1.4447
25.6429
32.4812
-38.2124
31.2373
-24.4733
33.305
32.1832
2.02407
33.6205
-1.2677
-33.1774
27.9865
-31.7773
24.2365
-49.5414
-16.0649
33.5936
33.8506
-50.5663
32.4906
-14.2889
34.6228
-38.795
22.8509
-31.6128
33.922
12.0563
5.43044
-41.0622
-32.2187
1.70956
-0.122516
-6.9632
-5.50439
34.4047
-0.920227
33.0507
30.2898
31.8843
-43.2019
2.92385
-33.8319
30.4095
34.1807
32.1973
32.9079
-42.3675
-5.05139
1.62493
3.43618
-28.8581
2.90965
33.5274
31.3422
5.20219
-17.6201
-35.9838
34.0543
33.0435
1.87951
31.2076
-27.0658
8.71771
11.5489
34.254
33.5294
-9.85385
26.5605
-1.45946
2.72845
34.64
7.32467
-19.6831
2.46174
32.5994
-9.88177
23.749
-50.1421
16.2259
-28.0632
-40.5657
6.43371
3.43933
-9.85619
0.808691
30.784
33.4185
32.4244
-1.11724
22.8854
-27.9181
8.40264
-13.1691
-16.8218
-0.314899
2.12631
14.6182
-11.7771
0.710305
28.8857
4.03738
-46.0714
-5.9527
-7.4944
-22.5226
23.2174
13.9085
21.3905
-48.2613
12.3564
-1.91955
32.4549
30.9392
-40.3043
0.021696
34.7909
31.3384
-4.36355
32.1845
-28.2125
-26.5699
5.69191
26.4903
-9.29257
30.9013
-48.0458
-40.1181
11.0576
-30.3663
-1.51736
33.5409
-1.83136
-23.4758
14.6268
31.2216
-27.8326
-38.2388
16.6818
-13.8932
-0.801793
-32.9515
-10.6325
3.23245
-3.68629
34.1154
33.6554
25.1477
14.0078
29.398
-6.39476
1.55666
2.42102
-40.4555
-15.2278
-36.2062
26.4183
33.6577
32.8131
-21.2157
17.2452
2.79967
-1.24182
29.4113
-26.6845
-38.898
-14.5228
4.11045
-16.1147
20.4286
34.354
33.1891
-25.6323
34.4217
-40.5939
-0.705286
4.19879
-17.5079
33.811
-41.0063
32.8581
34.6816
8.05259
-48.8499
-2.71056
31.6804
19.798
20.005
-1.62029
21.5042
17.7118
-37.66
-32.9108
-1.00719
32.3836
-3.22198
33.5526
-42.9772
-1.68169
21.1551
-0.385504
29.3475
-26.3675
26.8764
-1.64434
29.5022
33.7636
31.6138
-38.4751
19.8948
-36.9301
3.58786
-14.4784
34.324
-49.8684
-12.4303
-8.48713
-4.31658
33.6315
6.55463
-13.5658
1.34115
-24.4647
1.91259
7.58909
-0.029823
-3.16353
-16.5784
-13.2699
1.19633
-43.6829
-17.3049
-26.1684
-38.023
-8.68114
-2.5401
34.3582
-6.496
0.908876
-29.5453
-11.0291
-43.9481
21.8635
-12.2793
10.523
-0.948526
-7.58374
-22.7076
20.4097
-36.0642
-12.5915
-11.2229
-26.8775
33.6662
-41.0271
3.47619
-0.307282
-43.1524
-11.8247
12.1331
18.4377
1.48535
-40.5265
5.66849
-30.6961
-40.4946
33.0124
-2.41894
34.4472
1.24166
-14.1451
31.3034
1.81768
34.4982
-30.0484
1.68795
32.8313
1.5783
13.6628
15.0689
3.99176
-23.8258
29.1114
-43.8117
-27.6029
-48.2651
11.8315
32.9906
29.804
-42.3065
-17.061
2.04827
-58.2799
23.7718
-43.6512
13.017
-18.5116
0.253146
-2.66258
31.289
-14.6361
31.1364
-28.5372
31.318
-2.60111
1.95683
4.33083
22.5609
12.0503
-23.1016
-1.87967
-30.4958
32.0929
18.31
-16.1677
-38.487
0.220723
27.8973
0.856326
1.87357
30.927
-41.2349
-25.5344
16.3904
-2.14365
-34.9914
-7.76344
32.4702
4.951
21.1996
17.591
-47.2135
33.1456
27.7118
2.9884
-40.2772
-4.09925
-16.5088
9.79347
-6.76101
6.52249
-48.0165
4.00819
-33.1849
-0.885232
-1.87343
6.51555
-42.6141
30.8478
34.7606
32.9527
-38.2729
-45.2553
-12.7991
-1.42687
17.0619
2.42096
28.142
3.22763
-20.0879
-36.3976
-25.1962
-49.0899
27.8593
-6.77143
15.5341
-5.09544
29.9496
-30.2118
32.1724
-13.8375
1.68289
-37.0051
-1.30707
-22.2087
-42.3503
2.90028
13.4311
-11.5884
29.3379
-1.57741
33.8299
-45.5618
25.1031
28.2297
32.984
-11.5574
27.1247
-49.873
4.59981
32.1762
-1.86789
-12.6432
-20.8959
-46.637
-46.003
3.70658
17.6974
1.36774
-35.2096
27.3266
-12.626
-6.47195
3.45715
-0.819501
-4.7934
-9.93601
34.604
1.72351
-3.10755
-0.164184
32.594
20.8785
-41.7265
-38.7804
-18.5464
-36.1339
27.0445
33.1581
1.34891
-47.7564
32.8879
2.96645
28.9271
-40.4828
-6.16389
34.8934
-25.6381
-17.8242
34.8303
33.6668
30.8742
-46.8705
34.8321
-12.0291
16.5915
33.1523
-0.191938
-1.53568
12.7765
2.95844
25.4972
0.404221
28.2772
-47.7906
-2.59405
16.8107
27.0408
-1.30069
30.2689
-45.9479
-13.8659
30.7552
-15.0158
21.3541
32.3964
14.2789
-43.5331
29.5656
-15.8539
-12.6703
-44.2156
4.14331
32.2896
2.0054
27.2365
30.0397
-19.917
3.71369
-4.92966
5.31544
31.3742
32.7976
31.1362
4.9496
-13.4388
27.6832
2.00485
-17.5607
-24.1779
34.6387
-34.0848
1.74036
8.04403
-39.5942
-2.52621
-7.43487
-9.46113
19.188
1.60042
11.8837
-28.047
23.9653
-15.3737
-45.6686
-2.95847
8.65686
-17.8173
15.3647
4.9951
-26.3709
-55.1159
34.1086
0.174569
-36.227
29.5663
-3.48139
1.03961
-14.2462
-10.9937
-39.8102
-172.931
-13.6271
21.3973
-35.8472
29.1926
-39.8838
2.63923
33.7665
32.0134
32.1535
29.7891
-5.27908
1.83532
28.9527
33.9762
-1.11846
-7.8493
31.6612
-43.6867
-3.42913
32.3699
-21.6792
-12.212
14.9816
-8.92247
24.1343
-1.40342
-15.5253
34.1556
-35.046
-14.3956
21.7778
31.351
34.3574
8.42235
1.52056
33.7354
29.4971
-29.8592
29.9928
30.9806
1.15331
34.0959
-25.8516
23.3622
4.31851
-30.8352
-7.45471
-19.4229
19.8426
-90.949
25.4698
-29.2296
34.0609
-3.83982
-30.3868
-34.9654
25.1236
22.2887
-11.6839
-0.884974
-5.86132
29.7958
-1.38272
0.784746
-0.295708
6.06726
27.7083
24.8484
-5.36375
20.9656
-5.84455
13.5172
-41.435
34.5907
22.4366
28.7204
-38.5417
31.7915
30.7018
0.944194
20.2737
12.1253
34.6369
-13.0917
31.9355
2.04517
1.19214
-41.1368
32.7994
-7.44408
-4.61521
29.5067
34.0461
29.4648
-71.2597
4.29988
-1.40321
3.14142
0.179803
1.29493
0.348668
-13.8181
34.3997
1.98193
-9.27411
31.7621
-5.38587
30.9622
-28.6841
20.2115
-9.48728
-7.41735
-15.8343
-1.10831
-0.121351
-39.4117
2.28499
-42.3761
31.8613
22.681
21.6644
-37.1243
32.7668
1.80177
3.59285
30.8376
-36.9805
3.22925
-34.9094
-40.9371
27.4829
-29.3939
33.0553
-35.8176
33.2569
31.2782
27.6868
9.16203
29.083
1.4889
-27.5563
23.2378
-16.0133
7.86686
0.124048
-0.875441
-10.856
31.6409
-48.1142
2.1725
-3.21819
2.17
-5.40786
-8.10481
-38.3429
1.27673
-29.5187
-37.4774
-14.5608
1.09546
-44.8596
3.58527
2.28875
-9.58171
19.1288
-47.0053
1.74
2.63864
1.30764
-35.053
28.6483
33.692
16.0945
29.6387
-41.6615
20.5255
8.76993
26.8163
30.1218
4.67835
2.02553
0.545152
-37.2246
31.0254
-10.866
29.7391
34.4697
-1.03917
-14.0132
33.9246
0.8726
9.85983
5.42655
19.7385
30.637
-36.8439
-13.887
32.7308
33.9057
-38.562
-38.0987
-4.78688
28.0988
-13.2272
9.26897
4.13
23.2311
-8.33482
2.66125
-29.3009
7.05908
-45.0754
-10.0384
32.9199
-18.3395
-24.8581
-26.5281
34.5137
-0.187208
5.07239
-35.1534
-10.3007
-35.5488
0.763482
2.96926
28.6772
-17.9939
13.1014
-54.2933
-42.8719
-36.1402
-13.3919
29.7611
0.366102
-22.7595
0.382002
-0.66559
-7.45288
-3.54591
-14.4977
-33.6921
21.0474
2.18433
-40.4844
10.8356
-35.2168
34.784
-13.378
-45.1513
1.6123
-35.2276
-47.2359
16.8307
26.524
32.6719
30.919
32.4347
-0.757378
1.45071
-10.5729
-43.7526
0.831484
-70.9972
-1.90826
-2.68103
-7.55008
-43.5343
32.2283
1.26393
1.47464
-82.5409
9.88787
30.3979
32.5481
1.31929
5.28191
32.1979
-42.0602
22.3209
-11.4238
34.3873
32.0565
34.0509
-31.7765
-47.1415
-35.3923
32.319
-30.1848
29.8579
-11.6597
-29.5185
-40.013
-34.652
-42.6233
-1.12024
1.43264
22.5338
-49.623
33.8392
31.1011
2.00789
30.4766
32.3986
32.9587
-3.4249
22.6046
11.2627
5.60429
2.07132
-10.7467
12.5442
33.7769
30.3076
-1.15148
32.222
20.4546
-2.90217
9.35114
-2.07886
-34.7679
7.43073
-1.16114
33.0331
25.4973
-1.3753
-37.0651
-29.4773
-34.432
34.3278
30.6603
33.3854
32.8177
-37.9127
25.1261
30.9194
-32.3248
-33.5215
-1.08342
-0.342183
11.5173
34.8683
34.6154
-15.511
-8.68713
-8.58285
-5.30674
15.3168
30.0587
28.5724
-1.14058
-41.9193
13.4993
11.4421
-45.9155
-45.0323
26.697
29.7624
-5.60013
-37.9208
7.00425
-12.3923
-6.34221
-45.3198
34.8597
11.8166
33.6797
31.1374
-1.64794
24.1453
30.7452
30.7512
-1.52052
20.8351
8.16495
10.0082
-16.2837
-0.968764
-1.76271
-38.0146
32.8652
19.6033
-2.88386
1.05215
-26.3926
-48.0745
-3.34235
-1.44197
32.0507
-5.23462
-37.3633
33.2042
-26.4459
34.6602
29.0901
5.15001
6.12712
-13.9459
14.8288
28.4641
-22.6434
-33.1363
32.8494
34.6068
11.2926
-2.55431
-11.468
-24.8002
34.0013
24.3785
27.6754
33.764
31.7734
20.7823
30.3803
15.1669
33.149
-24.006
33.3577
17.6051
0.637171
-37.7064
0.856833
32.7144
-5.69041
2.02332
-36.4238
-3.21201
32.3989
-14.9346
2.15632
34.2363
-1.98934
-18.5185
7.62646
-11.2646
-3.03541
-9.51052
23.2332
-11.3283
-6.89136
-24.3072
-1.0097
11.7758
-0.686845
29.6207
-42.7218
0.954804
11.1717
2.25348
-18.5731
2.28427
-46.1851
33.156
34.7045
0.134508
-0.687345
-42.4399
32.3896
29.8435
1.53754
33.577
30.2827
-0.84314
2.39285
-32.269
-10.8685
-16.3597
2.87366
-34.9826
-47.015
1.79038
32.5042
-27.3539
-49.2254
21.9573
-30.2755
14.5321
-37.3215
30.3961
-6.37019
-37.8861
29.4472
-36.1665
27.8833
28.0605
-50.5619
0.455823
28.6743
-0.651048
34.4675
-32.3597
-1.48181
-14.2219
25.5081
-1.00645
-50.3658
32.2889
-43.2641
-33.6415
-22.5183
-7.99378
-15.8423
10.9348
0.921715
30.5093
-0.0254287
-12.914
-31.5544
0.263194
11.3171
1.91286
-47.2826
7.57973
19.5848
-2.74081
-11.4932
5.36137
-13.7608
-7.69739
30.322
-9.50059
-49.5807
-35.1197
8.62702
-3.44066
23.1358
-6.06136
2.03799
34.3877
33.4742
19.7256
-14.6826
23.6989
34.0419
32.6435
32.4321
-38.6495
0.131846
8.95605
20.163
-37.0057
31.3587
33.186
-47.4889
0.943708
27.7717
24.3066
-50.0279
-13.4981
2.03808
-17.2151
1.71523
34.6097
-6.56903
-12.3722
30.2287
-0.708944
-41.228
-44.6439
-33.1798
-33.1814
-1.58275
28.9862
-4.90443
-6.77847
-48.9921
31.1816
-43.1886
-13.467
5.42711
-46.2145
-27.3691
21.0893
29.6653
33.3587
-36.6891
-33.589
30.061
26.7929
-18.0848
31.3624
-9.71677
-24.2792
10.7832
-13.5275
-48.6779
32.5241
20.8128
-2.47863
6.63952
29.7064
-42.8131
2.11846
1.96151
-44.112
-3.55075
23.4968
2.92955
32.6531
-27.4946
-2.16191
-13.0892
-49.2887
27.0264
2.11142
32.7526
-17.4649
42.9074
5.84199
-35.4716
2.29817
0.228725
-30.718
3.84418
5.16116
33.4775
-47.6297
-69.5651
-10.8882
33.7062
21.1236
-27.8464
-2.74674
-16.4371
-1.58462
-12.1747
-15.0043
31.2358
-17.1724
32.7428
1.97561
-29.7679
-19.0012
20.5973
27.291
24.2932
0.00658844
-14.0109
-15.7395
30.3372
-25.9811
-48.4691
34.0932
-12.2692
-34.1876
-1.77238
-0.110583
-24.5664
-49.3217
33.5921
-42.6147
-8.13772
1.47993
-12.5791
22.3672
4.26068
-1.6445
-30.9452
-49.2091
3.34447
27.2954
28.9672
5.45575
-4.34804
23.9598
-44.1939
-2.08851
-29.0211
34.3048
-13.7516
11.5851
0.322727
-23.8152
34.165
34.5753
-24.7276
26.7527
-21.2712
-7.70935
28.0036
11.1322
-10.6259
33.9985
32.6455
2.86867
-6.90333
34.5846
29.287
-39.6509
-1.46088
-4.27047
22.897
-25.2173
1.96554
-8.96896
-31.7732
-11.5502
31.8233
3.36254
32.3757
-0.736735
2.37303
14.7448
28.8865
31.9546
-46.16
1.34489
-29.6346
34.2946
-44.1891
2.25694
19.9913
-19.8249
4.43525
1.56654
28.924
-14.1061
29.029
34.5892
-14.2005
3.8574
33.583
34.6878
34.1571
26.0981
26.4973
28.9063
-13.6758
-4.27751
-37.1444
2.31345
-14.7127
-11.9185
33.7511
-10.4547
-1.8715
11.0199
-75.9401
-7.62824
32.371
34.6603
31.2155
-77.1259
-6.03239
20.0032
26.3677
-1.22609
-3.05285
16.9225
-20.3705
-0.211516
33.4557
-18.6465
-1.11649
-40.0724
2.07796
1.59257
2.21607
-0.616194
33.0196
34.7508
8.92157
34.8257
-1.00937
1.72083
3.0898
29.7828
0.222765
2.2888
20.2986
5.37308
1.16565
31.1663
11.222
-0.195157
-23.7151
32.7211
33.3522
6.42236
2.12986
32.3819
-17.205
-12.548
-0.00895852
2.40813
-6.58305
33.283
1.85879
-5.519
33.7679
-12.7205
33.5021
-7.49454
32.0491
-14.9633
12.1884
-42.0097
-32.0958
-54.8889
2.15907
-41.4253
-8.42987
-29.3927
-11.6073
29.5895
34.6105
29.0506
-16.1822
-45.9448
-6.46167
32.4707
-25.9387
11.903
30.2234
-5.36134
15.5079
14.207
-0.688356
-16.5612
34.7831
-12.3953
-1.518
30.1895
19.6929
13.9743
16.5707
15.1358
17.7207
-13.7079
21.313
-2.00572
1.73632
28.416
32.1647
-15.0293
-1.67547
26.8162
1.50438
34.1788
31.6684
30.8144
20.1174
-38.1327
29.2302
-14.7852
15.799
32.5027
4.00251
-41.6215
0.487883
-1.15388
32.7189
-37.4909
-27.3406
17.7216
18.4706
-11.0106
-16.0641
33.1709
33.3619
-0.370336
-0.699334
-29.9911
-41.5685
-46.0716
-37.6539
0.918305
26.9535
-1.44572
33.8301
16.2701
-38.287
-0.374413
-46.4299
31.7745
31.3029
-25.3328
22.6578
-39.4095
13.8245
16.2232
-4.11621
-17.1832
1.55755
-11.6697
27.1201
-6.48438
27.8127
-1.45827
-10.557
4.52162
-0.150962
-31.702
-34.7156
20.8004
2.12228
33.4805
10.7766
6.87222
34.6136
1.95878
1.75595
-0.757482
-16.5257
-36.6925
0.247898
-15.3871
32.1637
-12.6543
33.2654
-37.3502
-2.15607
-48.6189
56.2375
1.49358
-10.7452
27.0251
-14.7414
20.4364
34.2993
27.45
-45.6415
1.31714
-37.133
-2.61228
-41.4087
31.5733
-2.90524
32.3174
-45.1211
33.7352
0.681272
13.7469
-21.8008
-34.1912
10.8589
-0.148133
-1.67413
-38.4231
-2.48201
34.0815
2.46744
32.2453
-11.5969
2.74991
3.41507
-37.571
1.40755
-13.2399
18.7873
21.8047
31.5104
-1.69191
27.926
-0.189499
-26.1665
0.368848
5.91204
-5.79227
-38.9324
-46.7109
12.874
-3.10928
1.39824
-23.6064
-5.74455
-2.92799
29.0602
-5.04339
3.08752
30.9815
20.3894
13.3012
-4.81389
21.9136
29.8669
-1.96826
-7.27782
-18.9767
-33.593
-2.42658
3.62166
34.4055
-39.5453
-40.3358
27.1807
-19.3163
-6.02483
16.7119
29.9976
-18.4129
-3.09215
-45.9713
2.18637
4.03228
-6.97449
32.296
8.65309
-4.40098
25.5979
34.3844
-26.3085
-7.84284
34.2639
-25.7652
-31.9319
22.7742
-26.7479
33.9176
20.3542
34.2229
9.50748
34.0017
26.5316
32.6279
-1.2447
-55.6605
-14.5061
21.0505
-1.48331
34.2451
-44.9894
27.8904
34.2936
-45.7035
26.6156
0.566664
29.258
30.4847
7.55439
9.08357
0.734428
-13.9882
-12.6103
16.3801
-13.3223
0.366872
-16.7144
2.09205
-38.5343
-4.73733
17.3137
21.4795
-13.9869
-2.30041
-11.7775
-2.38479
-32.45
26.6224
-13.9963
6.75854
20.77
-0.260634
30.8219
-4.08222
16.9785
-28.2436
33.8093
-2.39414
21.3531
-37.5451
31.4126
31.7547
28.1888
-7.37114
-40.9589
-37.9067
32.4302
5.44765
7.26718
-80.3289
31.1717
34.6311
31.4628
34.26
2.05792
1.42441
16.7856
-12.838
-16.8247
29.7944
-0.472052
-36.4422
-28.5744
-38.2755
-0.779433
-28.4262
-1.6059
-21.6404
28.4488
13.1431
-44.3125
-13.2192
-1.55713
16.7665
0.627912
-32.342
-1.22022
-18.0284
3.35726
29.4493
26.9455
23.0712
-2.46254
32.0336
31.7354
1.65271
-48.247
-38.4542
2.22752
33.3264
-27.3766
32.905
1.58382
-28.8856
33.0916
-49.3587
-11.6842
-13.0828
-11.2558
10.158
22.8356
-25.7615
-11.1919
-12.6524
-45.2263
-7.06216
-11.7734
-14.6628
18.2339
24.7154
28.6138
-47.1965
-7.90082
-42.5561
29.1159
-44.5659
-42.9391
0.428873
-38.8016
33.0596
2.72757
30.4806
-4.6814
-44.4383
-80.9081
-14.3026
10.8798
-16.7162
-12.4723
33.0551
-4.70949
-23.2982
-42.8986
-48.4932
31.4599
4.23677
32.474
-0.572371
-1.71983
-0.591445
14.8798
-44.2856
27.6502
-35.7262
32.6515
33.9013
-38.7968
-72.3222
32.0117
-2.41428
-26.1913
33.9603
8.64562
-48.7937
-43.5206
11.9962
20.8961
32.1331
-0.29257
-49.6332
-25.069
-32.4012
9.24553
34.1035
-3.03668
-47.1704
-0.856152
-9.13279
-5.81838
-51.3562
-45.07
-48.3911
-3.58429
34.0458
1.87924
-40.2671
-32.2309
34.588
33.9292
-18.1182
24.1741
-13.3265
5.59166
-17.2398
31.4182
30.1634
27.1332
-28.3635
-22.6636
-34.6445
-48.8922
-40.2483
-32.9752
-1.95222
-1.86199
31.9557
6.21071
-34.5717
9.23649
6.7161
-14.1401
2.49577
24.4227
-13.8975
15.2154
-7.28709
9.55971
17.1103
-19.8724
-1.47866
34.5971
-0.209038
-5.6777
-11.1099
-7.13646
-36.1417
25.9245
1.48254
-5.93902
33.81
-32.1285
-11.4674
-40.0853
-19.3781
32.3213
-23.8984
-27.3739
31.7675
30.714
-34.8485
-38.5146
29.7023
-3.68005
15.1054
-5.61921
-37.4741
-0.0847999
-19.8198
-45.278
-2.24816
0.804219
-1.28951
17.5805
22.4321
24.5107
33.1602
-1.90202
-0.701969
-15.5365
31.3449
32.8246
25.3694
21.0865
18.3597
5.86045
-44.16
-45.2348
-1.19142
-15.0938
32.0487
2.26132
34.358
30.244
-21.2936
-0.275389
-93.3151
34.3775
29.692
-57.6254
18.648
32.1845
34.6712
2.41036
33.0485
25.8996
-1.85075
-21.193
-43.3012
29.6295
29.7052
-45.821
-3.02604
3.25263
-26.1799
26.0559
31.0892
18.3972
22.0117
-41.3796
-1.58635
-38.5245
28.6121
-1.40519
-8.46172
-11.2151
-47.6267
1.3833
31.6839
30.9614
31.3497
23.3283
20.4937
28.818
-12.3144
-22.2591
-69.6875
21.1695
-3.19114
-65.7025
-13.0154
12.6995
-13.7927
24.1565
-29.1326
31.2303
-1.73579
32.7916
-140.643
-1.33095
-15.185
-24.5696
-2.13709
-17.7221
31.5849
33.9755
-43.244
-49.299
-38.7853
9.70364
0.0981238
-4.35907
-2.19396
-13.1455
-11.6504
-21.1167
-13.6039
-49.4722
15.4353
27.0308
-11.6158
25.5909
25.3628
-6.70279
-1.73849
-35.86
-37.838
32.9568
0.493784
24.5261
33.263
-26.5427
-187.274
-44.3564
-31.5638
29.8389
10.5607
-13.6064
-36.0548
27.5132
-36.7127
-40.5865
32.1097
1.5579
-42.294
31.3874
-16.8716
34.7875
34.7972
21.7283
-45.5655
-14.8666
-13.4236
31.2302
28.6
15.863
2.23397
15.3316
23.373
-11.6687
16.7893
31.1496
32.4631
31.1766
-3.57919
-6.74233
4.5182
28.0017
-22.3798
4.67502
-0.703585
26.9753
34.3554
5.01132
-11.7659
-25.1612
17.7319
21.9818
-0.291278
-11.3765
29.2069
32.1047
1.1615
-12.8352
15.7277
2.16027
-11.8046
-50.0007
-1.5579
33.8068
11.7827
16.3597
30.7244
-2.77095
30.9409
31.6458
-28.148
-1.98359
-36.4237
34.2429
-44.9403
-36.9684
-3.86588
-0.0266825
-57.4355
33.6949
-0.0084838
-32.3135
-8.04933
-14.042
-41.3165
9.22362
-32.8009
-37.7413
33.2777
4.26392
6.03208
-13.3369
22.2535
15.0236
33.167
-88.3601
28.0731
9.3867
32.7964
31.1244
29.4555
-18.2077
-25.2541
-5.83899
-9.04391
-36.5229
32.7491
-50.1427
9.67927
-10.3453
29.685
32.59
-22.2246
-0.597497
34.5935
34.1653
34.5833
16.5591
9.74963
4.49392
1.86583
-34.108
-56.1419
32.4859
32.4937
24.3176
32.6282
-6.10826
-38.6416
31.4977
34.1546
31.46
-31.961
37.5182
34.799
-14.0721
1.9982
-22.9529
-24.6223
5.51434
33.34
8.86082
-23.7273
26.3054
-11.8645
33.7162
33.6721
31.8784
-1.36828
1.76672
32.5976
-37.3287
-4.93191
-37.7722
1.06265
14.0644
30.0806
-10.7217
31.419
-3.89854
-3.249
33.2635
-37.1902
-46.8703
33.1768
-1.62698
3.2139
4.35485
23.7716
-7.11115
-42.4805
2.30533
-18.4655
31.4445
-1.1818
-49.8026
-28.8374
33.0041
15.5692
-44.8602
-59.4919
22.4418
-48.9926
12.3858
32.9665
32.1646
30.1313
-13.2941
34.1818
5.55998
32.2951
34.295
-14.8148
7.39566
-2.2641
23.0828
27.2384
22.7443
6.33293
-40.2508
-15.9802
-41.7491
-39.1944
2.10459
2.73639
-1.50314
34.1076
-49.2361
-22.4853
18.9487
11.4567
-18.6461
-16.0701
1.7145
-7.58895
-22.0375
-39.3649
4.5494
1.9139
-14.0745
-36.6765
-16.5434
-4.82058
28.4824
27.1305
-3.21976
15.6383
3.1438
29.5778
33.521
-7.82052
-13.2725
22.4206
-33.5691
-1.28893
-10.6796
9.95513
30.0002
33.3425
31.0669
31.2525
25.8061
32.6935
0.478516
-4.87293
2.35284
1.79784
-0.153789
-5.5754
-1.17251
-14.0359
-11.763
-44.2302
-43.8601
26.092
-44.8247
0.902557
29.3715
30.1123
34.6821
-3.07946
22.5289
0.859984
-5.41974
19.4937
31.9463
11.4053
33.9895
-35.2256
1.45536
-30.8482
-13.5346
-3.1874
-33.5806
28.3485
1.83086
29.4217
34.7472
-6.7352
0.80093
-45.5652
-0.989332
15.4324
-1.22921
-12.386
1.576
-44.1135
-42.5515
-2.72724
-24.1714
29.0014
1.36337
-16.3838
-0.616792
33.1098
32.2476
-35.6836
-20.6701
0.421283
21.8815
31.6309
-20.3991
1.21725
26.5677
-37.0593
-28.5753
-48.9068
31.6644
-7.87696
0.161413
31.6014
21.4973
-18.1387
0.605113
26.581
28.7273
-48.0548
33.4406
29.835
17.5984
-13.5204
3.61358
-18.6233
33.7973
26.5783
30.6565
-37.7104
34.717
31.268
31.6984
24.4545
1.03048
-28.2042
-48.6682
34.5205
2.17096
30.0705
-14.1571
-42.9388
34.3918
3.87175
31.0312
-17.411
-44.792
-16.0417
-5.44212
-34.6748
5.5752
-4.05875
26.9864
2.93459
33.3594
33.1963
2.92818
-36.5987
0.286282
-22.5952
-6.68405
-1.32697
-13.3049
-45.1572
33.6498
-19.4921
33.9513
1.96871
34.4337
1.78699
-63.8403
-84.0438
-38.4943
-12.9072
-25.8501
30.6031
0.919483
31.1678
23.2934
-0.3498
0.573713
-34.8583
-61.2562
-50.4125
14.1635
1.50506
15.1744
21.1607
-4.26193
18.7842
-46.4732
-6.16479
20.7321
1.8635
30.8171
31.6005
26.268
25.8627
-43.3935
-7.45283
32.3482
34.152
-1.18232
34.0098
-2.88176
31.4846
32.2365
30.9468
23.7378
34.6455
-39.0098
1.64801
16.7922
-13.1913
31.891
0.3466
31.2601
-10.9867
20.1404
-38.9549
30.0236
1.57099
30.4578
22.0633
0.408045
19.1109
0.613253
-47.522
-41.0239
-28.6608
-39.1357
34.5014
34.5573
1.67278
-36.0843
17.3864
30.4935
34.5369
34.4267
-0.986922
32.5203
-37.311
33.0122
33.2133
-24.3796
-1.31492
5.52057
34.495
32.1605
22.1904
31.4097
-40.9362
-9.23822
-37.193
33.1936
2.94292
-3.62427
-12.7254
5.20529
9.91777
12.8796
16.8122
29.5696
-0.428252
16.2515
-50.2333
21.6324
25.0577
1.99811
-8.69808
34.7643
-18.8811
-95.8037
2.15696
-19.3871
30.5031
-38.275
-4.88914
0.304885
32.216
-2.29554
29.5932
17.0421
4.94662
14.8164
-41.43
-2.03717
3.46637
-10.923
-12.84
-38.3569
-12.7063
13.2147
-47.8107
19.3659
-13.414
28.3812
34.0993
-38.2861
-17.9321
1.70284
1.72796
-2.96016
6.52221
19.5102
-33.3449
-7.58366
-30.6011
-0.232107
10.95
11.5685
1.14217
32.7076
9.58026
-47.997
-0.697906
28.607
33.5309
-0.13257
-12.8527
3.56386
-43.4808
-11.1447
0.608559
-27.5459
-38.6162
32.0407
5.5656
-30.375
15.4277
-21.1618
3.08078
-28.014
-4.54129
-36.6837
1.80263
32.9013
-36.1198
24.2246
-43.1471
17.7
-45.3131
-47.4035
-29.6949
33.4049
-160.605
-37.0086
28.8365
33.1084
-37.086
30.5607
6.44057
34.3698
-0.597703
30.8141
-39.8412
0.299907
-0.193668
-40.6347
-34.6835
31.9399
1.20766
1.86923
30.2786
31.7455
34.791
29.9683
-5.81188
-33.9583
29.3249
0.617496
-46.848
1.6075
-20.4309
30.0261
32.6659
10.4596
31.5
31.5285
33.3151
30.5636
2.1941
29.5767
-48.5633
-42.2151
-33.7375
1.67773
30.0848
-36.8623
-8.50482
33.5425
-47.6215
-44.8666
30.7264
31.0155
13.1336
24.7123
-2.63067
15.822
0.864077
-42.962
0.872615
10.6497
-39.6218
-19.525
0.414579
5.00716
-13.2084
-44.9395
-2.88019
2.45814
-0.159971
10.2484
-22.2787
-25.5762
28.6343
30.0475
33.892
-0.272025
-22.4646
9.70414
31.243
27.003
25.4266
-2.74109
-50.1865
-40.3575
34.0977
33.1461
-34.6254
22.7431
16.0143
-0.187412
-6.40213
-34.7496
30.9293
-5.4837
-13.4379
-2.13168
-23.0968
8.73563
-15.0129
-1.93616
1.37181
10.1797
28.658
1.27286
0.754856
31.8334
21.5138
16.6168
-7.45843
-13.8328
2.04048
27.2312
34.678
16.1906
15.5131
29.8075
-38.6359
-29.0191
29.0069
-22.2464
-4.4136
5.3991
-45.7926
31.4066
-23.8178
-5.60023
26.8718
31.7262
34.5702
9.60662
1.33532
-0.696103
-48.8175
-50.3932
2.81466
1.00647
9.54485
-38.0052
-24.4242
-46.7828
-15.4846
8.29781
-1.61379
32.4606
32.8224
-26.7862
-33.2619
-30.8513
32.3039
20.0646
10.6438
-34.117
6.88289
29.998
33.0165
-44.3923
-61.8046
-10.5027
-13.0675
-45.9994
25.5395
32.734
-10.1755
33.0895
9.73796
-48.6019
-28.3659
-41.4969
32.8616
-36.3537
33.8101
34.2972
0.955622
28.2645
-47.1349
32.5718
-26.4366
30.19
-46.6274
-43.5091
-34.6203
-63.3025
18.0857
28.8342
-30.1069
-12.8812
-0.283469
-14.9036
33.1267
33.7801
-2.996
29.8149
20.7596
32.5675
-4.53109
-35.4648
11.6954
25.1944
1.32741
29.7058
19.3549
13.2997
32.7007
-19.3325
-22.2467
-1.83592
-29.1932
-28.6364
32.4346
32.3583
33.7725
22.7317
-14.057
-34.0143
-4.57591
7.76213
30.6171
25.5308
21.5481
-0.271538
33.2022
3.07658
-50.8761
-21.114
-9.91735
-42.6814
24.2136
9.2398
-7.73198
-15.8397
-15.5398
23.3613
5.25289
-11.4573
1.36147
-15.8171
0.0369148
14.7042
25.7139
8.89098
30.556
29.2338
31.7739
-33.1572
30.556
-51.4153
19.5985
-13.005
8.91825
-14.967
2.07882
-93.6675
-3.19328
-6.20409
-25.8103
1.95538
-24.9723
28.4265
-0.579413
33.8163
-0.248941
-5.61752
27.8312
16.7819
34.6909
28.2783
-48.1492
-68.0391
16.7256
23.3424
-6.54571
18.234
-0.0154545
-22.6953
-0.327928
-2.00585
23.2382
33.6279
-30.764
-1.17941
-24.0318
19.1503
34.4363
32.8993
-25.9374
7.07005
1.57996
-5.52424
-32.8107
-38.2342
-9.34944
-19.752
-13.9294
-22.215
-18.63
2.9292
31.2191
-45.5752
32.7602
1.40178
-28.6079
30.0238
11.8485
-47.9825
-1.81119
-21.2299
-29.2405
3.9108
19.904
-7.31974
-34.8407
20.0603
34.8014
33.3762
8.79181
-5.30233
24.519
1.05641
-6.33049
-1.57344
34.6888
33.7747
22.8237
-38.6551
32.722
-13.799
26.0956
-45.5229
33.5104
2.00515
-39.8906
1.54241
22.5662
49.2817
-7.0515
30.7159
22.168
-28.2269
33.4345
26.5464
-1.62935
-2.86069
-45.8221
-0.812313
33.6403
30.9702
33.3503
-44.8039
-0.989542
27.6638
33.3366
-52.7629
2.03653
-2.97066
0.671185
-42.4949
-15.1739
23.8054
-1.25409
-36.1536
-37.6384
30.371
-23.5963
29.3246
-38.9227
33.4373
29.5997
3.9676
34.6435
30.0623
33.4029
-46.5879
11.4083
-27.212
2.88273
-5.04936
-30.8138
34.4766
-10.2813
-0.442542
1.6253
-43.2072
0.465372
-33.942
-49.6857
-14.6284
-3.96695
-14.8863
32.0831
31.5738
-30.4259
-43.4632
32.5945
21.3302
-0.298462
-24.3941
4.93541
12.6689
11.5278
5.46544
33.0532
12.4241
21.7556
1.91413
-19.3051
-0.130643
33.2003
-18.0178
-40.239
-49.6341
30.2182
32.0381
22.9715
0.460607
-24.8697
33.7658
2.64165
32.3276
1.38534
34.1162
-45.0121
27.241
28.3132
-30.4258
-48.2068
19.1103
32.4628
-0.287943
-6.71907
-2.02992
-20.1613
-12.5644
-89.833
9.90114
2.13436
-15.7747
31.7761
5.29662
12.0198
15.265
21.1807
1.86927
-43.832
5.14694
-37.471
32.7971
-1.3025
25.3429
33.2929
-0.049166
11.2876
-113.927
33.5985
-55.1006
34.1108
-0.169942
-0.0964609
24.0614
-29.4368
33.5125
30.134
-43.8402
12.8667
22.5556
-37.4063
-28.7975
-11.2319
1.52786
34.8385
31.4203
2.56303
-45.6071
0.620042
23.6243
-3.01725
2.19208
34.5658
31.9338
-13.9672
3.87827
33.5875
-2.29181
34.7405
28.9113
22.6309
-0.29426
26.6693
-0.374163
-46.5696
-0.730506
-1.71286
33.2535
-14.0624
33.3503
1.73398
1.94378
-49.1207
31.6422
34.3096
-25.0655
13.3681
1.12
-26.4069
21.0972
-36.5082
-3.14413
-1.56163
-41.2818
-1.95052
33.2785
0.589165
5.73591
25.6913
-5.67315
-42.4862
32.5203
-73.9294
32.6862
-26.0202
20.7153
22.3991
32.64
-3.78923
27.6538
34.0444
33.636
30.9636
-12.6998
-53.4238
5.15147
-1.62692
-1.32267
-45.0493
30.7204
28.7422
-11.0086
-1.64987
-66.5895
0.0183605
-41.9719
33.6221
-36.7078
-33.5107
-21.0939
-11.4243
-37.2389
34.4716
30.973
34.764
26.5837
-10.62
4.07368
-1.08357
-14.537
-47.1961
29.3289
29.2896
33.117
-15.5074
34.7804
30.69
-32.5114
23.9066
33.0206
-0.225464
30.697
7.66817
30.2145
2.02335
-0.105908
16.6458
-13.3931
-15.8465
28.53
-28.2691
24.1817
22.1511
33.7193
-11.3341
-1.24663
1.02196
30.3459
33.4472
-4.95362
34.4304
-13.0978
-0.734725
34.3361
-31.6092
-23.5269
-45.4655
32.7565
31.4581
31.3216
30.4317
-24.8768
-3.22631
-13.8896
1.56767
-6.14714
-0.713616
-40.5878
-2.18235
-49.8379
4.02596
34.4602
7.60429
17.519
22.0635
0.173116
-52.7697
3.55245
-49.9986
-1.06543
-39.4718
0.257461
-16.091
-3.69684
-0.735822
1.51964
33.6819
-2.72477
-1.99918
27.8517
-30.1687
26.092
-32.2948
6.56261
4.09881
-37.414
14.4496
-13.16
-40.0389
-0.524448
24.125
-9.69173
29.7307
32.6997
-0.374008
-47.8101
34.4384
27.9015
30.5397
-50.5016
34.4454
34.0912
-39.6001
-36.5084
16.2749
-0.300227
1.71706
-1.63918
-14.3515
31.2404
-2.06576
20.6044
19.3866
2.96251
-0.759566
29.7124
24.0654
30.3118
-1.94445
32.7501
0.552515
-16.751
-18.3691
-46.2753
-4.07858
-4.30186
-3.72583
34.3164
-13.2683
10.9067
17.1211
8.74083
32.8327
-9.64592
-17.1017
-0.972861
-10.4345
31.754
-16.965
-9.33086
-23.6391
-50.4894
34.1329
0.0984888
-30.7549
34.1452
-41.762
16.1074
-45.3918
28.1842
34.373
-15.8997
30.9422
26.033
22.4916
33.5927
1.88896
31.4847
4.09367
1.51876
-49.6043
-40.3925
3.65839
26.2785
-2.47708
-14.6466
-8.90256
26.7965
30.5591
31.3043
33.5827
-14.8988
-17.1765
25.2231
-10.4215
-23.5148
33.4657
31.8868
14.2921
-61.0972
31.5518
27.2947
33.1301
-23.5075
-21.5775
34.2507
-6.43223
-43.642
33.2732
1.54518
-110.244
31.1878
28.2637
-50.5383
-14.3197
-26.3459
-0.713321
0.0782671
32.8058
2.12623
-42.2327
1.10893
2.76075
1.85158
-47.1023
-37.793
1.63912
2.3987
-1.01456
-35.4909
-0.960479
-4.45842
-4.53778
-46.4293
-2.60522
29.4884
30.979
17.9979
19.8545
-14.0913
-14.8313
34.0276
13.2489
1.12152
3.43196
1.99376
36.0925
33.7187
-3.33625
19.8163
-11.6896
-38.5771
-39.4672
30.4477
32.7654
3.9414
29.9289
21.5398
-15.0164
33.5141
-4.17935
-0.662196
22.2392
32.7081
11.8816
-9.00873
19.1273
-41.1357
-2.04975
2.2836
-9.98315
-14.4534
-13.6265
-13.5689
32.8134
10.4619
10.6603
2.89835
7.3818
-36.9351
-24.0752
8.59123
-32.658
34.7435
-17.4617
29.8653
1.46327
-6.08159
-0.983634
-46.0284
28.4158
0.746654
1.10534
-20.2092
-3.86792
-10.1755
31.7307
0.581332
32.8777
12.39
13.6364
-13.3372
-16.6079
25.8054
29.1918
-3.43701
-17.5413
32.8848
10.6023
34.518
-39.1986
26.6279
-32.1678
9.16866
-15.3675
31.6543
29.5435
-0.0422995
-11.6008
-34.7892
0.433455
-4.07121
1.86479
-4.42312
-29.9736
-41.7912
-41.2972
24.7824
-34.1517
30.1266
-1.15666
-40.7556
-29.2376
-35.4738
33.352
-0.000157603
-14.1709
23.9962
0.170174
-18.2417
33.0829
-1.94721
-19.103
8.81442
15.8805
5.27655
28.7135
-1.4541
1.8496
-41.4484
-46.7051
-16.1345
32.6557
-47.8682
-14.7154
-38.0404
-0.393523
16.8932
-15.0681
-123.602
5.27434
-27.5785
20.8449
-1.07589
-41.5778
-27.316
33.0402
33.4048
-83.8262
-4.6548
-48.7053
-21.158
-0.741753
1.97791
-6.47604
31.929
-29.5149
-1.3478
2.05144
30.8922
-7.69098
-40.2694
28.1228
-33.1296
-1.09468
-11.0348
-4.50275
4.78901
11.3163
19.9377
-30.7471
33.1373
-23.1052
19.1894
-11.8839
-9.05606
0.776495
-4.04141
33.6811
29.2736
28.8966
12.8356
1.20939
-34.5426
32.2307
-1.25082
32.6735
24.1103
25.8169
-1.85803
-1.65413
-15.3432
-1.19744
-19.3443
2.5528
-22.1464
-36.5589
-2.74588
-46.5137
20.6323
-8.03652
28.7618
6.01048
-0.427958
-36.3697
-16.0666
-13.7691
1.80653
24.0119
28.4681
2.01442
30.9268
-2.6575
33.8478
-21.3583
18.5381
33.6558
-0.96213
-38.7472
6.08008
-13.9999
-28.4235
33.2341
-1.18561
-6.92079
-11.859
-46.6598
-27.7324
33.1111
-23.3112
18.5199
-16.6295
-3.3623
-1.68495
-1.81
1.6383
-16.4479
17.503
33.9491
-22.2231
-37.9363
34.3652
2.71451
21.7947
1.37618
-0.0111219
-22.5826
-0.806601
23.422
26.7514
23.9194
-29.6039
34.3742
-31.4942
25.0357
21.228
5.53526
-29.8236
-25.2191
-0.530742
7.02019
-26.0467
-13.5385
32.9855
-45.7112
0.869482
30.8273
-41.2439
0.972691
-21.8949
15.9846
-12.5746
2.55279
34.1713
29.896
24.6485
34.4747
2.24494
-17.4304
32.7854
29.4001
-2.71363
-0.0902453
34.7725
-16.0891
-25.6035
-45.6955
-47.6309
4.20008
25.7251
28.4551
-18.6313
5.10149
-46.3371
-37.7927
-12.9886
33.4103
-15.8372
-48.8379
33.9757
18.2009
-39.6652
-12.7596
-36.8074
22.8331
-30.7161
28.3049
-35.4256
-45.5294
30.918
1.61775
-11.9893
24.3758
-6.8984
-115.582
-37.1915
29.4215
-22.88
-50.8966
22.453
10.8087
34.1045
7.1998
-0.33578
-41.5475
-1.81474
-40.2671
-14.8358
-1.95143
-35.1623
2.8058
-35.5544
29.86
10.1889
26.7033
32.7795
-5.20163
-25.2108
-8.28126
-36.9637
30.351
28.6721
29.3051
-1.0772
-25.8911
33.9531
-19.3489
-14.8942
33.2725
29.0783
22.6823
22.3649
-37.6929
-2.08748
12.5607
33.4908
-42.4879
-0.259261
19.3879
-36.0316
-12.7642
-2.92657
34.5073
-20.9297
21.8147
24.5555
34.8764
3.71602
29.0394
1.68643
28.2004
24.0826
34.6617
-37.5571
34.7827
-188.746
34.1998
-1.05038
-2.94764
34.2789
-82.6898
-4.73955
-15.5881
32.7331
13.299
1.79608
-20.8281
33.5386
4.97676
27.4232
34.4012
-15.7932
-17.2114
1.95135
33.2242
3.27994
-1.81052
-12.2108
33.3839
33.5221
33.6163
33.5473
-28.9719
-30.8365
16.9659
-12.5204
29.8064
-1.56852
-20.016
25.6701
-30.2499
-65.9895
6.71743
17.5709
-1.98492
28.198
0.691369
7.57001
9.25919
-40.3574
33.4374
-5.42585
2.90132
-16.0642
-50.0104
6.60273
34.183
-2.51568
-0.550056
19.7147
3.70413
-18.032
-38.1338
30.5145
-98.1079
33.1921
29.0906
-1.64279
26.1667
-1.42993
-5.35898
-17.6159
15.048
20.5134
1.19613
-20.8604
33.285
-38.1803
-14.6723
10.3596
-40.4052
2.06554
13.2593
-23.9572
-21.8394
-38.192
-13.7302
-42.457
27.9658
-40.7906
7.16767
32.7182
-26.438
31.0043
-1.33388
33.4765
0.339773
34.7416
28.2599
33.2935
1.68646
-39.8907
31.7062
-4.83258
30.1752
24.2914
2.08043
10.8723
-12.7374
29.3093
0.0854633
-7.497
-40.8257
26.9344
-41.5632
30.5491
-25.2526
19.7268
34.8878
25.073
0.0139
-37.7389
34.7758
24.5473
9.31615
-1.17597
30.507
-2.552
1.11347
18.6453
-19.2943
-5.40069
32.8118
20.3343
22.7657
1.7692
-1.91146
31.1018
-24.1354
-29.1437
33.862
43.052
34.158
-6.63355
-5.68498
-35.774
34.7502
32.306
-19.6819
7.83726
0.800634
18.122
14.0244
-2.23823
2.13865
31.5846
21.9645
9.81375
31.4352
32.9382
34.4075
34.3459
33.5369
-20.8407
26.7646
-22.1408
1.00462
-89.0598
-23.6715
3.32217
31.5966
-2.74299
-42.3847
30.9864
-13.4494
27.1194
10.8411
28.4931
34.8167
-14.4085
-16.613
33.2727
-1.85248
1.16022
-42.8377
31.8357
29.4678
43.339
32.9164
33.0763
-39.6359
-5.43695
-18.9273
-2.55183
32.6617
33.1851
-13.614
-15.5232
-47.1083
-41.5646
1.37279
2.83617
-37.8753
29.4858
-44.8187
5.50728
-46.442
30.3981
-19.1355
-47.7247
-7.5224
1.89757
-44.394
23.1947
34.5603
-41.1709
32.094
-8.42746
28.3787
-44.1752
-0.920338
-3.27183
-6.14301
-26.5781
29.1827
-48.1935
-0.730705
-0.850572
-1.56328
33.7472
34.6897
4.17932
-1.23209
-36.9128
-1.38338
1.29017
-36.6756
2.0586
2.23195
29.4125
-5.0141
34.0803
20.1817
34.2358
-18.4344
-24.8055
15.7281
-0.873775
-24.8353
5.16139
12.0874
27.1842
34.7132
-19.4315
-31.0528
27.7337
-15.8325
-1.35342
34.7304
-3.27602
30.7508
-37.4163
-4.44918
31.205
-43.0068
17.2527
8.0448
20.4926
-7.2293
-47.2447
-43.8501
18.8684
20.2383
-67.1761
-20.4003
-24.405
32.5776
-24.0562
-5.96379
-2.13438
30.8192
-22.3464
33.0585
-11.6422
-1.76008
-6.2011
17.7357
-26.9113
28.4885
13.007
32.2685
-3.83437
-12.6259
-4.17341
3.79336
21.3567
-16.3334
-48.3871
-43.5256
-90.5101
23.0811
28.4098
-50.2222
2.96458
-31.1313
33.3514
-0.898526
-1.87388
0.172176
34.0847
1.25655
32.5499
33.9104
-38.5905
31.4006
4.28587
30.2441
-41.5158
-9.0588
1.19487
24.7563
32.6182
-0.954418
33.5391
27.7661
-7.63294
-1.43851
-30.2886
33.1699
15.5994
-44.3888
33.5282
0.992675
2.29205
1.19541
21.8903
26.5101
24.5194
9.87398
-47.8027
1.20037
-11.0884
33.5092
33.0654
1.06263
-18.1624
-15.84
0.0507683
19.6555
-30.9157
30.2735
-24.2989
-27.5891
-9.24173
9.68178
23.3024
-10.4893
8.32352
18.9558
24.3427
33.4907
-47.4988
-12.9362
-45.7112
-25.6591
-30.992
-47.3633
-1.03357
32.6311
34.2943
-34.3588
-12.486
-3.68816
35.7139
4.14778
20.8135
22.6882
21.2622
34.4809
-30.0683
33.7479
34.7158
31.0701
33.0773
-47.7412
-11.6284
31.0862
-33.6595
-6.26333
-3.27381
-14.5974
34.3907
1.67095
-16.1034
34.4042
-24.7546
0.106329
31.5454
0.457087
32.6845
-22.0869
18.8484
20.9611
33.7453
-27.2598
-4.89376
1.6124
23.263
31.6849
1.3988
3.3309
-43.2254
34.9116
-22.9585
28.5266
-10.5644
-29.0837
-0.653202
-42.5368
33.6408
1.67841
13.5855
33.6325
32.3833
-29.0103
7.84553
34.5898
34.6328
2.78284
34.5615
0.687294
-0.303635
0.595134
-5.30144
1.66289
-14.1887
29.2063
-130.005
30.8811
27.6343
-23.4138
6.03466
-36.9825
0.587107
7.04071
0.285735
-28.751
-13.1376
30.5942
-2.75324
2.16564
15.8258
-31.332
0.222374
30.5936
34.2771
27.9393
-50.0424
-17.7208
33.1076
-13.7043
20.564
31.3631
32.6906
32.782
-40.91
31.4379
4.76323
1.7669
16.186
-44.8002
-44.6404
30.7261
-33.643
1.12983
-24.4965
-12.0796
-42.0364
-38.1175
-19.6588
-45.2028
15.8839
29.7218
-31.0434
-2.5679
-5.2137
-17.7284
19.2813
-15.0523
34.2828
-16.1388
-42.9008
34.0829
32.6976
0.377278
-36.9852
30.3521
-12.1932
-5.94878
8.50164
27.2277
16.2976
-37.4516
24.1472
32.8248
22.2714
19.1676
-36.1606
-22.1002
29.9991
-0.571741
27.7755
23.7377
19.1483
-5.28183
33.643
-46.549
-3.56365
-10.0499
-25.2414
31.813
33.7324
20.0116
-43.1806
32.5394
-18.2076
-21.2215
-6.40425
-45.1251
-15.4046
-1.07456
13.8641
-13.3578
33.9707
2.72561
1.88304
30.5918
-35.0133
-1.11784
33.7398
2.11158
31.0995
32.7923
-13.2649
10.288
-0.596193
0.0275097
-8.95425
-21.4548
0.247686
19.177
32.74
20.5185
6.76326
-2.38767
21.0277
-15.1012
10.4413
-33.1625
24.6414
-0.287115
-10.5525
11.63
1.83553
28.9001
-0.822749
34.6792
9.34498
-1.09807
-15.9418
13.0704
-13.5563
-13.2952
-32.7375
-28.8344
-14.2155
-34.3863
0.97902
34.6629
23.8737
5.084
-45.3672
31.295
-2.84669
1.30564
32.2226
34.4146
0.472479
-0.200425
-15.6961
33.6774
-2.20738
-19.0939
24.9774
-39.5327
2.86175
12.7723
18.3585
5.72892
-23.5852
-18.9152
32.7376
32.2259
30.1364
-35.777
-37.3748
-2.7391
-6.23393
-30.3444
29.4095
0.135979
-15.0918
-49.8368
-37.709
-11.5665
31.9473
32.9002
33.9103
6.39084
25.9205
-11.7336
-9.45856
1.78114
-1.60961
-0.72681
-91.1776
-49.8063
26.21
34.6168
-38.4465
-21.8664
68.6667
-42.3122
-1.92895
2.77571
32.7722
-140.42
-6.04022
-12.9411
27.5731
-42.6056
4.01066
13.2468
30.8106
-50.3561
-35.7
30.5905
-2.16253
30.9891
-2.47407
-29.2263
30.1389
1.88359
8.03975
34.0682
4.75078
-1.82299
19.5852
33.4489
-19.7115
1.02873
17.516
4.6575
2.80902
-117.42
-1.52851
-28.8096
11.0723
27.1127
32.6442
-48.5239
-31.2019
33.2222
1.09923
-107.56
-16.3767
-22.2486
-1.27814
-43.8326
22.8197
-44.9664
-20.2797
-22.8629
-10.833
-0.956274
-15.8376
2.00445
30.5044
24.4839
-24.3112
6.15036
14.4495
5.71452
-9.08455
-17.8823
25.1405
7.28079
4.76085
-33.1012
27.8533
-16.5434
0.64876
-20.2042
-0.777315
-17.2745
3.32823
26.8913
31.5696
27.8257
22.8478
34.0219
15.4947
-104.454
1.49557
-43.3081
-16.9397
-9.80844
-34.0597
12.0586
-5.84474
-25.6427
-41.0233
-24.6145
14.0265
3.27083
23.9208
-11.6859
29.6409
16.5003
4.00011
2.24099
-32.4109
1.09429
-2.34476
-18.8085
-11.2801
-46.3902
32.8254
-2.80116
34.7182
-0.233889
31.2011
0.229354
34.1454
31.2913
-41.9049
-20.469
16.4807
1.10556
-29.4971
33.4052
-6.84339
-45.8861
-46.6705
34.0216
28.7396
32.4863
-36.9982
24.5575
30.5621
23.675
-6.29916
-3.39077
1.10095
33.5285
33.7264
29.1145
13.6236
2.21085
10.6535
30.1483
-14.3697
-19.7981
27.4394
34.1384
34.1852
-44.7637
-11.9685
0.933552
-35.9926
30.6199
6.43949
31.9871
-0.2599
-37.1068
32.9748
3.22362
-43.4579
-47.9001
17.926
29.9067
2.07489
-44.5154
23.811
-26.3442
-44.7369
22.8696
21.2479
31.9563
-20.3017
32.804
-3.03473
-68.768
-35.2191
-8.97166
-6.64058
8.82286
30.7391
-5.98876
8.56585
33.3882
32.7791
-32.9439
30.162
-45.2746
-0.774872
29.9669
2.08296
23.4861
30.6342
34.8315
-36.2906
34.5238
34.7537
-37.9858
-19.7133
-42.1382
2.69026
2.14041
33.8007
34.0146
-17.3905
0.162068
33.3773
-43.9218
-23.1012
-3.00105
-20.3332
-0.79496
-21.0348
12.0435
31.9704
-37.8278
-21.2943
-37.9996
-39.6808
37.162
5.48894
27.6136
-45.3809
34.3588
16.723
-33.1547
8.24867
-46.2247
26.4844
16.1876
-3.14226
-2.57185
-22.1672
22.4917
-64.8477
26.1251
12.7207
33.0979
-10.4761
34.5205
-44.4011
20.6534
31.4542
0.838153
33.2214
-39.5455
-2.63593
-21.3047
-20.902
28.9873
25.2039
-37.2919
-25.4833
27.9262
3.19183
-15.0857
31.3219
-0.908928
-22.1901
33.1647
0.490896
-42.6575
-1.79498
-68.4368
3.74611
31.4978
21.9166
33.2456
-2.62599
1.96441
-29.4139
31.3608
4.13138
22.641
-12.9913
23.0562
2.28341
-33.9245
7.23069
34.1205
25.4734
-36.1995
-36.8723
-6.02666
6.97947
7.22216
31.7995
9.51462
-8.79712
13.9142
-30.2619
-80.0552
-14.4616
33.9962
-13.7563
16.5672
72.4199
-5.66371
32.7258
7.75846
-29.3953
-109.995
-22.1189
-9.43364
32.1665
-2.77631
34.277
-6.2205
12.7109
-29.1889
-1.02003
-1.13732
33.5701
-3.03023
-24.2121
-37.0488
14.3926
-40.4202
30.3116
-3.13697
-13.7169
-7.79811
31.8214
-7.73308
-2.55952
2.68078
-48.2199
16.6225
25.2377
-1.3571
-20.6558
-44.0684
-10.9367
32.3331
-1.84014
-35.4041
-37.0557
33.0521
31.0887
-43.0228
-40.6089
27.7538
-1.88799
33.9026
28.2352
31.9691
-38.0072
-13.9065
9.53967
-2.79541
-48.2713
-21.6986
15.8608
30.2815
28.1777
23.3068
-1.04616
4.55288
-1.81912
-47.4107
0.939866
-36.0841
-0.735427
-12.7637
33.4005
0.856222
19.6448
19.5009
-2.15017
-2.61592
3.38672
24.3157
15.9124
0.616013
-13.432
0.647645
1.89076
6.80879
-0.432808
-39.4564
-39.0167
-1.05613
-1.95548
-35.6399
-35.8874
-21.9162
34.8372
-5.50491
24.7928
3.00703
28.9945
30.438
6.02594
0.87894
2.28851
-5.04672
29.9998
30.8072
32.8997
30.3451
33.5215
-41.5583
-16.6699
-15.0846
-30.4952
16.805
-22.0195
-0.208393
0.1324
19.9498
-20.6847
-65.1847
-24.6936
29.2371
-30.8517
32.8191
5.35352
-10.9525
-12.7106
6.48138
-20.4611
33.3954
3.15997
-3.79748
-9.0604
-37.2324
22.6223
5.75018
-23.1785
-12.5734
28.1992
-12.1793
-11.2976
-49.4449
-9.99766
-38.7083
-3.29758
33.8656
-30.1324
4.55434
34.7439
-27.8666
-49.84
25.8404
0.0291703
-47.9435
28.427
-10.6947
-12.546
-35.4202
8.16186
33.5539
26.2966
10.8842
10.6684
1.76521
33.4382
32.8215
17.2675
34.5509
-46.8728
18.3268
8.53442
26.6082
-0.631204
-13.8261
18.4479
15.5393
24.1927
-16.4363
2.54276
-42.6137
20.8566
34.7587
-14.6898
66.0651
-16.7849
6.72486
-39.1113
34.471
33.9975
15.0148
18.7891
-3.92751
18.2837
-38.3888
0.636275
-36.4913
-40.0279
20.8311
-26.8571
31.0378
-38.9602
-0.990509
29.0132
-37.5502
0.646356
-49.1327
17.2518
-20.8533
-13.6272
1.2268
-43.918
9.22429
-28.8638
-15.5945
19.6051
-44.0612
-22.0502
-27.5722
-26.4985
14.9268
-20.5814
-2.02521
33.6738
1.18974
-30.7864
-10.152
2.93665
-26.7908
-46.414
-25.7358
3.50247
-42.7682
8.44554
-19.8127
32.0409
31.8235
-44.3177
19.5629
-20.1699
26.9797
34.1543
-34.0402
-31.315
-13.4589
1.28742
-29.4082
24.065
-24.2848
30.3824
-46.3432
32.4052
-39.2036
-0.583703
-3.35783
1.95941
34.0169
29.6011
24.2542
-40.0245
1.30869
9.50549
4.88845
-12.3232
33.4005
1.92313
1.71747
33.8709
-27.4758
-13.8334
-11.8505
-1.59852
34.4919
-42.3129
-11.0409
34.3587
-30.5212
34.5874
34.4622
27.0216
25.7723
-13.5788
15.7961
33.4513
2.69821
-7.26982
-18.5966
-48.6726
-31.515
-45.3286
-19.8097
33.4904
-10.5748
-23.1974
25.7793
32.7835
32.2227
30.5956
33.9058
-4.58723
-23.7238
-72.1838
-139.698
-169.826
-12.3559
32.6765
-29.6855
30.2566
-12.4298
34.493
-4.11917
-41.0732
-1.24553
-42.8012
-9.39824
34.203
-38.4437
1.73796
-39.4809
-46.0297
25.6991
1.19489
-1.32698
-17.0562
-0.79192
-1.03567
33.1896
34.7803
-7.51233
-45.1502
-5.49034
-22.6041
3.20495
3.79318
0.774389
-3.38377
7.82969
34.4347
22.2016
32.2663
-28.2787
-23.3505
-2.26892
-24.5246
32.9727
1.9738
32.0122
-13.928
-40.2932
-38.2705
-1.73702
-52.7687
32.9914
32.97
1.70262
0.689424
2.40394
33.8473
-11.429
1.58142
32.6949
-21.7291
-31.3407
12.9068
32.3665
-3.53756
32.6129
30.7164
-34.3822
-35.1675
-9.6222
-35.746
-20.7582
-27.0756
-0.831227
31.4328
12.8081
-1.17929
-29.4837
1.96855
31.8084
1.36049
-2.2428
-20.3324
-30.3099
-34.1727
14.2817
32.837
30.5118
-31.463
10.027
-13.3779
16.2866
-8.41711
1.83218
26.0752
34.665
-1.64828
-0.493284
18.5659
25.6513
-3.04164
1.87161
32.0924
-1.64783
3.05834
6.86426
-15.0632
1.06018
-14.2222
14.6994
-38.7349
28.5774
-0.623007
-14.9873
32.2509
11.9761
-33.4185
0.496636
18.6066
1.54497
30.6141
5.99866
-46.5432
-26.8849
32.4145
-1.76248
-36.8562
22.6688
-9.85412
-7.36391
-13.6873
14.3765
-1.14145
34.688
30.9704
13.0442
31.612
-5.52984
-8.1724
-12.8932
-2.07187
-4.97521
-50.4275
-29.5089
-0.310807
-37.1674
31.677
-1.15639
2.73718
2.78238
-6.17495
-8.06499
26.188
20.3771
-25.5462
1.80991
7.47041
25.6158
15.1294
32.3428
34.2242
0.0117311
32.1257
28.6869
-19.7713
34.4084
-41.8638
18.9255
-13.3233
-36.1917
28.2367
-0.585042
25.048
34.6661
-45.4416
3.03344
3.09174
5.28198
-31.3603
-43.8298
-116.378
1.6818
-36.9606
29.9921
1.00464
-18.8539
-6.73038
-9.17572
-13.6467
34.2993
-0.573194
34.0641
27.6503
32.8199
-2.98042
30.3024
21.1088
-11.9473
-74.5117
-40.6179
34.1083
-7.13602
33.9213
-13.4271
-35.5954
-13.2256
33.9888
-42.7434
29.082
12.7807
32.8408
-35.2182
14.0683
-1.17342
-14.1255
-37.8052
-86.5293
-12.7228
19.4885
28.246
-19.3515
24.1886
29.9676
10.4186
30.6512
32.8806
-12.3549
-32.5918
-33.5279
17.7559
-19.781
-14.9888
23.9874
18.1933
28.7125
-0.60526
9.26247
-13.6139
-13.9771
-1.16849
-1.62256
10.8141
-35.7929
34.7716
-2.28692
34.269
33.1847
31.6484
-0.840886
23.6329
-20.0502
4.55303
29.2892
34.5149
9.69926
2.19113
33.0651
-0.837659
32.5716
-16.1691
-44.9812
12.052
6.83351
3.34786
1.44388
-12.7661
-26.7779
32.1192
24.7356
-33.0881
24.3326
-43.4462
8.15901
-1.89873
-39.5795
32.3265
25.9061
26.1013
25.4746
-30.4291
25.0271
25.061
9.43276
-33.5145
-17.4728
22.3743
-14.0785
-4.99919
29.0889
-4.44194
-16.4814
-1.03284
-0.470746
32.7756
20.9073
31.6602
-16.7262
-36.2356
-39.9746
-47.8824
-8.28885
-13.8488
-22.5546
6.83744
34.3329
-16.4363
-38.1917
27.3061
30.6047
2.21971
33.095
34.1245
-1.64198
-35.2739
-16.8302
28.8792
-4.86927
-47.2056
-37.483
-5.76437
-1.44707
30.6507
21.8119
69.1637
-0.916244
28.6437
33.5267
6.41604
-0.935099
11.9863
1.1085
33.1823
-36.1496
-48.4585
4.62476
0.231256
32.9426
-27.3927
26.5941
33.0302
32.7174
23.5128
32.9843
3.06672
-3.0048
27.9804
17.7921
-32.925
48.0736
-32.7709
0.329363
-11.7797
33.7215
-14.2872
-23.1691
-19.0093
2.31843
-88.9558
-28.0474
-36.7794
15.2515
0.502072
30.5917
-12.1012
46.2574
6.7866
34.4212
-43.4
4.58618
-20.2802
-0.669681
28.9135
-0.838031
30.8738
32.6454
33.0016
-16.2156
-44.9175
33.722
15.9921
11.7871
31.3954
-12.9584
8.86579
-1.08155
-38.1541
6.15098
-10.4261
-45.0059
27.6552
0.98086
0.893089
-42.8497
34.57
18.3526
-10.4956
9.90441
29.1768
1.80689
-37.6631
1.77285
-0.796014
-25.0511
9.74814
0.999671
13.7917
34.5835
34.7395
-4.67868
4.83879
18.0786
24.5605
32.8493
2.43187
27.6337
-111.164
-13.3288
-172.841
1.84086
-0.754977
27.3325
-4.91714
10.6143
32.9227
-43.2454
4.59859
-37.5233
17.7893
32.5898
-22.0784
30.1663
-13.3146
-1.60996
-18.6295
18.938
29.7884
-51.5814
33.7042
-34.38
2.25033
9.76917
32.072
-15.1272
-3.81947
1.09948
4.00325
16.6172
24.7549
-23.5693
32.808
-12.8795
-21.5118
33.7951
-12.4847
-35.3401
23.3161
0.487123
-43.2965
19.9707
34.7899
34.5502
-19.2212
20.9495
-4.65589
-4.35384
34.2589
-37.5165
-20.3938
-0.602115
34.6475
32.8845
-41.9125
33.8872
-50.0737
30.4089
32.2243
2.15759
-42.9673
-0.808965
-18.112
-0.0950798
34.6164
6.01719
-4.7084
34.7678
0.817051
3.89442
-48.1969
26.5653
-42.7046
2.37656
5.81109
-10.727
-0.957823
-38.8612
-11.798
33.0289
29.9301
-0.967059
5.09638
-0.8582
0.577947
-16.9496
-35.558
-47.7802
22.7115
20.3503
0.782307
33.4102
-9.4533
15.3305
26.0826
-46.0526
-4.85029
-9.74869
-14.3683
30.9921
33.3412
32.4565
31.0059
34.5468
19.5907
-88.113
-0.784089
-47.7485
2.351
25.0539
-15.4826
19.1878
12.7645
34.264
-12.7589
10.392
2.46879
-46.7301
1.72776
21.6336
-49.5556
-24.2857
7.29596
-8.99367
2.02723
34.7771
-12.9169
-0.0250241
-12.2479
32.6175
-44.9535
-48.3038
1.67528
-43.0094
21.8929
33.5943
13.444
-13.3405
0.507748
-6.54194
27.9123
-2.31527
-52.7296
-2.78511
7.98094
-23.6425
-70.3042
-20.5299
0.80441
-125.533
28.9016
-7.06326
3.86111
-48.1375
21.1126
-11.9286
0.751138
3.68328
2.64228
-47.6087
-13.4438
32.4388
-38.7627
-1.67114
-5.33003
32.6146
34.1114
-39.5759
0.465832
-22.8
1.95332
-50.0517
-6.48554
-35.1293
-23.4071
-17.7973
-13.7755
-1.5883
3.27625
-40.932
-27.4968
32.3836
-3.13016
34.0652
-0.795222
-32.299
2.69025
-48.7996
31.9731
27.0063
22.049
33.2912
-31.0113
30.1676
1.85666
-34.7022
-27.2639
22.0992
-12.5076
21.1121
30.8054
28.2885
-49.2587
-45.8639
-18.0078
29.7357
12.2888
29.6859
-0.499149
29.5862
-21.5919
-19.769
17.4007
5.77271
1.66908
0.21711
-65.9425
-14.2623
32.8669
-9.9819
-6.10814
-17.2314
20.4683
-1.38189
-18.1461
-2.82806
-0.310489
-8.38296
-28.6939
-1.7836
32.5375
14.4831
32.5095
-15.7244
9.06192
2.8805
-28.8327
9.43005
2.61837
1.78414
33.8464
0.577654
23.0469
-27.4145
33.3254
-23.2912
33.5845
-13.3034
34.4902
-4.41698
-12.8344
-21.2901
33.7372
30.9697
31.0388
-46.854
-0.0848194
-41.5097
30.2129
7.7952
-8.21867
20.5762
-17.7097
5.82864
27.4656
-40.0683
-30.6477
1.14761
-13.5367
-0.830444
-40.7717
-8.70261
-0.27786
-18.4836
-4.55823
1.17677
30.1675
33.2238
-17.6714
-45.5079
50.435
0.120132
-12.5122
-2.07404
-23.8726
-1.70009
-31.6228
-39.8607
-0.890077
-14.2325
34.5822
-39.7025
-3.71247
-1.68236
30.3114
28.1496
12.046
-48.2093
30.2204
-2.25397
30.7392
-25.2394
-59.5947
2.72347
0.767988
30.0526
33.373
-48.3323
19.403
0.777037
32.4113
8.78412
-47.2358
-20.1105
-10.8894
-2.25431
5.51396
-41.4624
29.9735
33.7963
-2.74846
-17.8145
-36.8126
-0.0781459
14.0376
17.3466
19.3415
31.9289
2.72294
-20.0214
-15.2258
-33.6897
23.5701
-1.2374
-11.9597
-39.4842
-46.1055
-18.5305
-1.32109
24.8718
32.4417
-9.04541
-32.458
-38.5462
-53.2793
-46.4597
-46.2217
7.8437
-9.48824
33.2962
13.6619
-39.5622
30.8451
15.941
6.03057
0.00227646
27.2976
-50.6392
32.2574
-32.6709
-14.2852
0.506915
12.8756
31.7091
-1.32742
-39.107
-13.0119
-7.29489
-11.488
27.0046
31.0237
-49.1343
-45.9065
-3.13645
29.4293
-34.2771
-10.8219
31.9499
2.24523
26.7502
-31.6766
-11.9841
-12.5412
-2.98184
-16.6771
33.8709
2.0264
29.3884
-19.1161
30.5304
5.99808
-21.7874
34.7013
19.6474
24.1852
10.5386
20.9912
-0.602956
0.410172
1.53806
-29.4509
4.43672
33.5631
32.771
-43.0383
-3.33485
30.1498
-31.54
-14.1289
-47.3571
30.8141
-0.561751
-44.802
-3.28782
4.3457
-36.2305
31.9741
30.5437
33.9908
-0.0284078
29.7999
-6.91608
-4.97312
15.4818
13.1105
-8.20623
-31.8406
32.7704
33.8948
-21.7699
-161.922
4.93861
-36.2937
-46.7827
-34.014
-50.1614
-15.3497
32.4868
-48.8514
49.1701
-48.8808
-52.1531
26.3199
-2.54871
-69.0356
24.1726
-13.6337
-15.6306
27.0935
-48.537
1.11701
-13.7262
-42.3359
-32.5064
-16.6856
-34.4565
-1.11942
32.5629
-14.9585
34.7018
34.0154
-2.30706
-50.3135
34.0795
-80.6017
33.2905
-18.4456
-4.01645
-1.82024
32.3927
34.5266
-18.2988
0.248916
33.1793
33.3271
-10.6388
-35.8832
-4.13823
-30.2681
-21.3555
0.268403
33.6457
2.6744
-34.5245
-6.26993
-14.0744
-2.55958
34.6553
-21.0021
19.3658
34.3643
-39.334
0.934098
-43.4227
7.38129
3.83269
18.3229
-44.1299
-0.782288
12.3854
30.7565
31.7233
-34.7322
1.87493
34.5602
-1.18935
-11.6153
-1.55974
31.9487
-29.2656
28.2879
21.3222
24.1649
0.654945
-48.7343
-0.699152
28.1661
33.719
-1.39292
-19.837
-18.2168
-37.6271
32.6868
-38.7514
-2.0842
33.7666
-7.99854
1.96727
-28.9124
32.4718
-1.29576
-0.580182
25.4737
34.4498
-47.753
3.42878
-30.7874
32.9031
26.0273
33.8729
-7.33519
31.1145
-1.466
-21.3358
-1.78863
-10.9187
22.6293
-40.6281
-2.54534
-48.934
-20.7162
32.8561
20.4876
0.940099
-36.8561
-1.84647
-45.2966
-49.2845
23.5008
-36.7584
33.7858
30.6725
-0.840995
-3.96877
2.93096
-43.2728
33.2118
-13.5852
2.82056
-7.20393
26.9833
-1.24847
0.529819
25.5836
-10.908
-43.1269
6.03557
12.9757
-7.76434
1.57461
-12.9896
4.71673
33.7501
32.3657
17.9938
-24.1746
-38.8859
-17.0033
-10.0187
31.7612
-28.9173
33.1217
13.0063
1.43309
0.683096
-50.749
-6.477
30.239
34.4034
-47.0663
-10.0802
32.9416
3.27567
22.0779
-33.6696
-37.8917
-1.79606
15.2637
2.17665
32.9754
-50.277
20.9331
-0.792408
-1.892
13.5035
25.8652
-0.921494
-46.2051
5.15365
5.79658
19.0757
-20.3314
20.5959
34.4081
31.5632
-36.789
-40.6584
30.5674
-44.8026
26.1651
32.6516
0.0919552
10.4961
23.3745
-1.95586
-1.72984
-37.1728
-0.885985
1.60589
5.2921
-1.53957
-36.4094
-36.207
32.7455
8.84882
30.8514
17.2714
-34.2061
-25.978
33.5841
34.045
0.698956
-57.0475
-85.0082
32.7369
30.3887
28.9113
-18.6479
0.852908
25.5036
32.7343
-38.7351
-8.27946
-27.0123
-0.851618
1.60904
-1.08549
5.27189
-22.3651
-6.88434
3.42855
-12.0838
23.5388
4.1967
9.58601
-40.3834
-17.4391
-1.93825
-23.0495
-35.8314
-29.2043
21.7392
1.67494
-0.512144
-30.631
32.4618
2.12466
-5.26024
1.55538
-176.72
31.8877
0.878525
2.28131
-36.7678
-5.68634
-32.4552
-0.491796
9.69919
24.4458
26.4137
-20.735
34.2597
33.1249
-39.1167
-9.6406
5.53736
-47.6703
18.5096
-1.31538
-14.2357
-12.2372
34.172
-31.0866
-1.65853
11.6375
31.8924
-0.258168
16.7301
-34.0348
-10.3697
-38.5393
33.1704
-4.40093
-50.073
-27.4484
34.5011
1.06484
33.2163
-35.242
-2.95331
-10.3385
34.3009
8.99481
34.123
32.9321
9.44831
-26.4234
-21.958
-9.46733
32.9537
5.89068
2.14452
31.3076
-35.6492
-9.17502
4.7916
0.887526
-35.7491
33.7745
21.6542
-20.5219
11.1058
34.6353
29.6121
27.6747
-24.8184
-99.5813
16.2759
32.4756
16.609
-43.5593
-1.50941
2.9729
33.1626
-1.31371
-0.758403
-49.1348
16.5773
-44.2238
-2.52726
34.1936
30.023
34.5985
32.2656
-24.4925
-1.51994
27.5082
23.1793
-1.74616
-40.1301
-1.03458
31.0704
-17.2236
29.9041
1.15084
-33.7907
-14.6206
-22.6631
-1.30659
9.93018
32.5558
29.9778
-13.3
25.3646
1.30688
-1.61041
-10.975
0.619664
16.2618
28.0677
-33.6421
34.2845
4.97039
-9.46568
-41.5646
18.9124
29.0056
-3.76159
0.376452
34.303
26.7031
-12.5182
32.9799
-1.3542
2.8968
1.30905
-1.42807
-50.8149
-43.8363
5.17895
23.5249
-12.7635
34.3128
33.8226
-12.2871
31.6093
18.8845
-11.4957
-33.0702
-8.32246
-23.7744
8.68471
22.3421
-1.74146
30.367
32.2597
34.7677
-0.964143
21.1484
-32.7441
-26.2892
33.5574
7.39061
-38.1807
-37.5248
3.12659
32.7972
33.8715
31.0993
-41.6678
3.28052
-29.4912
-19.4967
-32.4895
15.3248
-45.7551
-73.7402
30.9373
-2.15798
-1.10661
-28.5307
-0.333232
-43.2774
19.253
-0.212097
-0.15904
4.80391
-123.02
-28.0914
-32.3747
29.7051
31.1483
-18.4876
-3.04563
-11.7329
30.3789
25.3838
19.9652
-18.0569
13.1583
28.1168
-25.9262
24.4064
-36.0507
-13.7727
32.6894
0.122359
34.8869
21.4155
26.0867
-46.3265
-25.6506
-7.98989
22.1367
-7.87451
-43.3113
-0.906277
34.2239
-10.9512
-50.6367
33.5017
-31.0085
-41.8933
16.8782
15.9158
-0.0307841
-18.8925
-30.5304
-9.50261
-17.7752
4.52363
-3.983
-43.9047
-36.7363
-13.915
-24.5844
-0.621763
-3.58102
32.2354
0.6057
-50.8912
-49.6064
-32.7214
31.8506
29.5853
3.19174
4.24792
-21.5583
-1.67129
-50.7448
-10.1453
-4.98699
-6.14766
-12.5936
-5.8911
1.6361
0.434165
33.5288
-41.4272
-33.509
2.09599
-34.3506
32.6275
33.7935
33.4501
-0.225306
-23.0347
-25.3593
5.58484
17.3784
28.8373
-20.2314
33.8081
-20.0837
-1.70671
-26.0866
-12.2192
-39.5296
-37.7175
25.0944
13.5361
-18.212
-12.9119
-4.24834
6.62778
-1.57551
4.94552
29.7142
7.92718
-12.5983
23.5423
6.18198
1.10272
51.3682
31.8816
-11.217
3.50282
33.9747
7.5427
-48.384
15.2742
-44.4155
34.6233
1.72051
-25.3525
10.3494
0.214143
-134.937
34.5682
31.9686
0.0371924
14.1988
-12.3891
16.7614
28.0913
-1.3433
-1.54437
24.6637
31.7796
-14.7206
-31.9019
8.89425
3.91078
30.5318
-34.3455
7.50208
-9.68998
4.06472
-8.003
26.851
16.3717
-48.0632
33.006
-51.0367
27.6551
-35.8824
-47.6479
0.171059
14.7565
-39.6782
-2.36187
12.1969
-33.3157
1.31682
26.6842
11.5243
31.6027
-16.0905
31.0564
-1.94364
1.57055
-1.72736
31.2101
34.9352
-48.6622
33.7136
-19.035
-14.7422
-44.1041
-1.47166
-1.90467
30.2392
-13.8023
-12.2609
15.6517
31.1741
-23.8963
-2.2919
29.314
-21.7478
-15.0769
35.0453
-11.3036
23.0415
-14.2056
5.21627
14.4967
17.5981
-1.31827
-30.4631
-47.7659
-24.6253
-41.9009
-27.0701
2.84164
-28.2399
11.0966
-14.4848
-37.1663
28.6872
-32.244
-35.8764
-35.3882
24.118
-33.2975
-24.7251
0.570775
24.5872
-34.844
-13.4999
-12.692
31.0948
-32.5492
31.9147
-82.2331
-23.7159
33.2452
-37.8584
-4.90468
-4.17052
-1.73876
29.1993
-9.24992
-0.128585
12.1419
-15.6553
-4.18575
11.461
6.25684
-0.806965
24.2645
-1.4005
28.766
-13.1598
-1.89771
33.8774
32.1425
-63.8972
27.3797
0.670886
33.072
32.9401
5.7019
9.57779
-44.4317
-22.651
32.2564
-0.492804
-43.5336
22.7442
32.5468
0.426711
-18.8485
-4.11998
46.1104
-44.2508
-46.413
1.10736
-37.2803
-13.8025
-10.6642
-22.1102
20.8256
34.0551
-1.67425
-4.78146
34.8735
6.8085
25.3539
-1.52681
27.4054
32.4546
23.7415
-43.7883
32.4268
-42.1697
-37.0278
-17.0043
7.46837
-12.6499
23.8998
-133.535
2.97831
22.0047
-43.5806
30.2958
34.3323
3.57944
-45.5998
-2.74933
14.5353
32.4649
-33.6894
13.9815
-40.5159
28.9733
-23.9599
-17.2793
4.82604
-24.9368
31.4249
-14.6378
-4.53687
-66.2159
-49.8293
22.6968
25.6954
24.1075
34.6545
26.7121
29.4922
-8.60206
29.7063
-3.60124
32.5096
29.7586
-5.91279
-10.6417
17.4085
2.34406
-13.7726
-0.256489
-0.529086
34.1053
32.38
11.6963
-41.5619
0.0744578
-36.8053
-24.6824
17.6807
-15.9041
15.19
32.3387
32.7684
33.788
-20.2579
-38.1474
26.2271
-48.9426
-38.7123
32.8763
4.24747
-0.516013
32.7291
-44.7312
32.9265
-65.7962
-4.79523
31.7702
34.4976
-28.8353
-22.5111
33.4409
30.3819
-28.8167
-2.9104
32.0041
-1.7518
-1.52714
29.8569
-7.14942
-37.573
-12.2176
-10.8682
34.7421
-1.03423
19.9209
28.1237
11.7953
-13.9051
28.7933
22.3761
-41.3987
27.4944
28.311
8.36518
-3.6206
-37.4616
9.69808
22.6691
-4.25673
-79.2955
27.4408
-42.4802
-37.3834
-10.0081
-17.4449
-40.0899
-10.608
-32.7094
-22.5
-14.9071
32.0549
1.98586
29.5873
23.1007
34.0435
-42.675
-14.7256
32.9582
-2.72825
33.9825
14.3735
-40.8329
31.4459
31.3294
-12.4815
-30.8071
33.4655
-12.4566
34.6738
-42.4795
-47.2037
29.6204
14.3486
-37.2616
1.3228
3.63855
32.6004
3.04041
-1.36218
-18.2027
-40.3711
22.9302
32.444
-45.0837
2.23726
-16.3657
15.6605
6.49257
-16.2892
28.448
-0.115744
-26.882
-3.2273
-14.5164
-15.8529
8.62755
-21.9166
-46.7248
-48.1384
32.9854
-36.0488
2.67861
-6.51603
-0.0740552
23.7225
6.2056
27.5028
-1.51626
-13.5122
33.2152
1.54305
-33.2562
7.1051
-35.7166
-49.3681
-1.71028
32.7306
-39.5023
1.32681
-33.5732
1.02568
32.8459
-2.8733
-1.2759
-4.32219
32.1345
-31.6311
34.4109
-37.5007
-2.0224
1.54696
-146.019
21.1633
3.67399
-1.42096
-38.9055
-39.6169
1.25641
-35.8937
34.3065
-14.7614
-15.4513
-41.6736
-54.6325
21.5907
-12.0909
-118.298
-25.3323
30.48
16.2164
-27.6227
-6.42912
-14.8747
27.8385
-16.5152
29.1506
-19.5462
-36.8561
17.3812
14.273
-0.486136
-36.913
-37.4277
2.895
-44.3746
-77.1447
0.0899343
-5.9303
0.283848
-1.72705
-0.447743
18.2509
-11.8847
16.7126
29.049
0.472572
30.3157
13.0962
-35.5172
-24.5643
-10.0254
-95.2507
34.1536
34.3348
33.7261
-13.67
-11.5164
0.18959
-48.5807
1.57377
29.0123
-5.1219
-0.611229
-39.2293
-46.2022
-15.4402
-38.2558
33.8065
-36.6205
-16.3949
34.8928
34.6742
25.8904
25.9863
26.9868
32.4519
-4.73025
-10.2109
-19.957
31.3462
32.8682
-5.2725
6.32116
-3.63009
3.3489
33.2472
7.8993
18.9345
23.5338
1.50061
-12.2766
-1.00453
-1.64567
-0.880126
0.298523
6.69541
29.1164
12.8812
25.648
-33.3499
0.73783
-13.3856
0.01408
-0.20514
-13.3956
-15.2278
33.4993
3.07578
2.66258
-27.6981
32.9456
-0.237661
-7.98414
34.5862
26.7071
29.71
16.0845
-49.2455
34.6533
34.7271
6.02226
-15.8872
0.110716
7.93122
33.1047
31.0198
-1.58011
1.60613
31.182
-2.41044
32.2944
13.6825
-46.9807
13.9361
-4.6558
-47.8904
27.3003
21.0573
30.4429
-13.2091
34.4662
-49.5249
32.0398
28.9237
26.2272
-20.5779
-1.49116
-2.25652
33.7894
-3.02277
32.311
0.299581
-5.27889
1.37815
-13.391
-23.8158
-1.08978
-36.7037
-41.4473
-0.976073
33.9677
0.232431
4.35546
-25.4627
-41.1774
-5.56501
-7.0571
-28.2849
-1.26175
-11.8369
-100.453
18.6312
-3.56693
-13.0261
2.08456
-1.07968
-13.4335
-19.229
-27.872
15.2658
-44.1855
-18.665
-1.52031
-26.0274
3.41651
33.2258
31.9817
-96.1426
-15.74
-4.16426
-39.8104
-35.5831
28.1487
-70.0802
-42.5365
-58.852
-23.4667
0.121627
18.604
-6.09738
26.1508
-40.1567
5.05653
-0.191778
0.646282
5.51633
1.20645
1.59092
34.6286
-21.2824
16.3162
25.5321
-1.48287
17.4207
25.3457
34.2167
5.99757
-35.4813
34.7656
4.75539
3.83982
-13.2136
-16.9022
34.8102
-1.791
2.22781
40.3724
31.8085
28.6625
-48.7723
26.807
1.64734
32.0551
-34.2419
-1.31569
-24.621
4.85594
-0.374075
33.0015
-22.0204
-33.1669
5.74864
17.0388
-50.5479
-104.693
-10.1688
-0.36614
1.05611
33.8948
28.8641
32.4025
1.39406
28.9381
-37.1454
29.7526
27.606
29.3882
-19.2445
-47.087
-1.37951
-11.6024
33.193
-1.55832
16.5965
-18.133
-42.5158
34.6727
-33.1592
-2.58967
2.29692
-39.4186
-2.18975
32.1766
-64.4134
-8.3595
-0.0451459
-5.10308
-50.6183
18.5592
-0.800834
14.9384
30.4126
-45.6294
-2.82066
2.28742
18.338
27.8848
-4.09398
33.8445
27.6406
18.1351
-37.2117
0.989347
-21.3429
-8.5381
33.9028
23.4243
13.7338
33.1282
20.9574
-2.99098
-15.7303
-13.1392
-3.08788
33.7022
-0.277167
-43.0741
-44.6273
31.8103
-4.58275
31.0638
-1.46668
29.704
33.5666
2.73063
-1.03247
31.4851
18.4246
-37.9441
-40.1278
-12.8843
33.7038
3.53928
-6.48989
2.63542
-0.713129
-34.5895
-10.4729
23.4937
-30.4664
-0.467543
29.9203
-12.733
-23.5394
32.2532
-13.8134
4.83725
29.902
34.573
33.7682
5.68186
34.326
-18.088
19.6498
-12.8852
-43.6044
34.4966
-13.5714
28.6823
32.3854
12.5415
-0.497745
30.6889
21.9772
34.0247
0.650643
3.38522
-2.07095
26.4393
33.491
34.3717
-4.99684
20.7456
18.0504
-41.029
-0.0119229
-1.78449
33.7261
33.7746
34.1694
33.218
-0.443034
32.1329
26.0725
-16.4695
-34.5016
-4.50132
20.5869
-11.9572
0.964884
32.6693
-0.151091
-18.5794
25.4476
-4.82325
-4.17426
2.64986
1.15915
-7.20857
-21.1263
17.7732
4.73238
-47.0096
-0.2581
19.1983
-7.83609
1.01499
18.8544
-26.2094
-12.3059
-2.99158
1.17657
-1.02412
-12.2355
24.3924
30.2033
-0.815208
7.45776
-37.3907
13.3651
-50.7441
34.669
-37.6203
-4.5807
-47.0921
-9.03418
-41.3871
-5.00958
-40.1047
4.13656
29.217
24.7993
-39.5374
-39.4314
-47.0417
29.5295
-47.3658
32.6963
-37.9451
32.7501
-4.12274
34.0787
33.3666
-46.6435
4.65859
-76.9537
-21.1453
34.6661
-5.46522
-34.0153
34.4245
-37.8569
-1.57699
2.9868
3.25509
-0.90789
22.9838
32.4899
34.4998
25.4792
25.6543
-15.5083
-15.5702
-9.11625
16.2176
3.88548
-2.48475
-0.339978
-40.2493
-20.7766
-0.879215
-13.1184
-34.6966
-45.8588
32.3074
-12.6827
31.966
-38.4594
17.3553
7.27616
28.8578
-12.4455
4.13899
-47.554
-38.6993
-105.64
31.0323
7.2097
32.1099
24.8824
-0.199345
-50.3985
28.195
-6.07788
-4.34095
-1.21178
-11.0638
33.7159
30.3438
28.2815
21.7117
-94.8164
-0.967411
-112.846
32.0168
31.723
-8.49025
3.97851
-4.49548
-30.5609
34.0224
-0.345028
30.6156
25.7465
32.2442
14.6855
23.9217
32.8624
1.09149
4.27946
-21.6797
9.8257
5.46606
33.0698
13.2052
30.4706
1.67037
-0.523679
-5.30579
33.7395
-37.1017
32.1244
-46.9647
17.9642
-46.6889
-47.7326
-9.99553
27.0847
2.82927
9.04322
-22.1976
26.2342
1.87701
30.1382
31.5247
-46.277
23.1586
-1.38922
28.3316
18.4399
33.9897
-5.1228
-17.1458
-19.597
-28.568
23.4566
33.6678
-11.7441
-18.9825
33.2137
18.0963
7.12701
31.7772
10.1307
-69.098
3.72665
-28.1249
-13.2657
-17.4198
18.6416
-29.2822
33.7902
-11.0051
4.62329
-44.6032
10.5739
33.036
-25.2738
30.5431
30.5258
0.366431
-37.3488
-0.145783
-40.2107
-1.3327
19.3329
-0.840344
-39.199
-40.2408
-7.30567
-2.89247
-31.1199
4.03581
-1.48826
-44.5017
-14.444
-1.69561
-45.1313
25.1732
-39.4021
30.8927
-16.6805
-36.6369
-0.163358
6.45388
-1.52867
-0.279376
34.3164
3.74691
4.0435
34.297
29.8976
29.7715
-7.33344
25.9967
16.8792
-13.4863
34.631
-30.0034
-17.2339
-2.36581
-37.2001
-0.284506
32.4912
17.8493
24.6292
-22.5227
-2.43012
7.88294
-38.2183
-43.3768
9.67759
1.02918
-38.5927
-47.1328
-42.7244
29.5508
-4.7528
-35.8987
29.7273
31.0158
34.2354
-25.1572
15.1644
-11.7003
-14.0594
31.5088
28.6679
31.0634
-34.7288
1.61341
-49.7715
12.7611
34.1109
33.8093
-47.0483
-38.7743
32.4085
-1.18565
-1.37189
-45.8089
1.72642
-7.21672
23.5655
31.129
-12.934
3.56116
15.5154
-7.96573
-7.50974
34.1875
-30.6826
27.7224
0.223187
-4.68173
33.8185
-4.53295
6.78162
-3.13578
-32.4081
-27.5245
-12.8391
-41.8063
23.9827
24.5789
-42.9453
14.9985
-22.7566
34.969
-0.934247
13.5328
25.1855
-6.64754
14.3593
-28.2644
-37.4857
-30.3408
1.40963
-45.1941
-26.1083
34.3114
34.1505
-26.1303
-8.75066
1.9643
-0.497335
27.3618
-36.3566
25.7491
-1.14073
30.1722
-0.578912
34.6423
30.2679
7.95734
-56.8397
-2.76701
-3.67703
-45.4399
-0.0422031
-16.3875
32.822
-45.3851
6.62551
-40.0792
33.208
-28.928
0.166727
0.676442
-46.0215
-1.30232
-1.80347
-40.0666
-38.7792
10.5785
-47.3574
-43.538
-9.21901
0.0860045
-29.1187
34.2015
31.3272
-15.7319
-9.6189
-46.8982
0.149263
1.96334
-20.7248
33.4441
6.38401
4.82019
-11.9265
18.7628
30.0234
34.7964
31.9385
-18.3635
-0.449352
-30.8907
34.583
-10.7329
34.4562
0.493004
-1.19582
-2.20959
32.0623
4.72926
-40.2921
4.33712
24.6256
-0.0690066
30.6245
-28.0573
-37.3165
30.9488
-36.7848
1.61996
34.0733
-39.0373
-44.4152
-15.2141
-48.7958
1.84765
-45.7878
30.3068
33.7447
6.43353
0.538815
-47.5396
34.2761
34.7758
-37.3087
-41.643
31.8353
18.9765
-0.535011
24.0518
-1.36943
-80.0265
-11.8946
1.04889
29.1914
-48.4397
-49.3253
-13.3379
0.659056
-8.39624
1.48942
-6.91188
-41.1024
19.9507
29.5879
-40.1274
10.7848
-38.6904
-42.0672
-3.31184
-11.8338
32.844
-14.1171
-39.2356
2.30517
19.7365
-50.0774
-12.7264
-21.1942
-47.5357
-17.2553
31.0008
32.0682
-5.97575
-10.4715
-16.6766
-47.8827
-10.8624
-25.1479
-37.172
3.41785
-38.0922
-46.6941
0.621268
3.27124
0.970931
-15.004
-1.98751
14.7861
34.3022
27.0926
-40.2288
29.4862
29.9597
-3.32188
29.6055
-19.9052
17.5913
15.6504
12.4218
-0.0578393
28.9222
-15.2142
-9.23241
32.6055
3.41995
1.67852
34.6385
-12.8997
-3.46463
-5.21066
-11.2725
-50.4425
33.4365
-64.5948
0.640026
-12.8705
31.9879
15.0244
-35.2563
30.4401
-37.0337
31.6555
30.9011
-13.0187
-42.1898
-2.31649
-21.4723
-34.5498
-2.55148
-27.9105
18.058
-17.2135
-43.0893
-14.694
-39.2513
17.2152
34.5732
-1.22316
-12.465
-34.9405
34.5533
9.42462
24.5491
32.2629
-32.809
-51.0303
-1.31276
27.8246
-21.4793
4.19977
-44.4444
-10.2311
20.7182
16.8407
-27.3248
-4.74045
31.2445
34.7799
24.6685
-14.0559
3.71822
30.1086
-11.5436
33.904
-3.77159
-41.9884
27.7111
-10.7451
28.5088
-40.6551
14.6851
7.56389
32.9506
12.3317
14.0703
30.0337
-13.8633
17.9035
-20.319
33.1581
26.55
-13.7223
-37.868
-4.79238
4.27608
-4.45509
-12.5749
-14.9821
1.48952
28.6605
27.5974
20.2332
1.98234
32.721
-22.963
-35.9222
-44.9845
31.8025
29.4841
-6.20783
-1.8846
13.9473
-48.4005
-21.504
-8.07712
21.5791
28.7837
24.6054
-46.2282
-40.795
-7.03256
33.0505
-21.793
2.67885
-10.7998
3.80873
29.392
17.1705
33.7976
23.489
-23.8246
-39.0538
2.49296
34.5555
31.9157
35.0704
1.6118
-11.5255
33.0448
-7.22842
13.3723
17.5637
26.4743
-30.5733
30.4355
31.0754
8.53546
-4.71451
-2.31758
-46.4649
34.0734
1.21603
-19.3312
10.2338
24.7508
-12.2808
34.1851
10.8969
0.0431813
34.1496
-0.0176387
-1.94368
-14.8478
18.3533
24.4595
-30.7229
0.855707
27.0711
-15.6653
15.9697
2.45368
32.1528
-7.70825
33.5558
-38.2444
2.22369
29.3923
33.8995
-46.7227
3.40777
-89.2235
15.8571
-1.27537
-42.7056
0.623074
-31.42
-7.37645
0.353267
18.0963
3.43332
-32.3866
-22.0271
33.9028
-45.4582
4.35334
-36.7146
-11.3706
-15.5646
24.2718
-18.0036
-2.35204
14.8815
-39.8911
33.6022
26.4502
-33.9276
-6.10355
28.0407
23.3561
5.17356
11.2097
-38.0516
28.7788
-45.3659
-1.82433
-34.4619
-45.5395
2.86844
19.3489
31.7153
-50.6
10.8432
30.7196
-27.66
-28.6846
3.37339
0.307086
-1.77186
31.2762
8.52119
-12.1473
-21.6594
26.4301
-37.5099
-20.1952
5.3997
-5.51538
2.386
30.8832
34.5668
-50.1302
26.2505
34.4472
-23.0194
-41.4154
-41.9946
-10.639
-13.4873
0.0563153
33.2942
-0.32851
3.8434
15.6621
-5.28467
17.562
0.191193
31.2264
34.6804
-34.1284
-43.5886
-49.3865
-51.0837
1.54344
-2.5838
-50.1711
-44.895
33.295
-49.5373
-7.03677
33.9928
-4.842
30.7879
22.1589
-42.9415
-3.74222
-1.57644
32.3435
-39.6069
33.5924
-18.4002
-36.3181
-34.2684
-12.5842
34.7957
25.9717
-33.8098
-10.3028
0.612713
27.6919
34.6154
-23.7112
12.4031
-1.4907
-15.7133
-1.91378
-26.4716
-11.6294
17.0269
27.6169
3.09319
-23.8613
4.56557
32.2476
27.9296
-63.0053
2.26423
25.2471
-1.69043
-34.2688
1.51455
6.12297
-33.3725
16.1764
-41.7295
4.8478
-50.4375
-49.6969
-1.31515
-0.982266
33.6692
34.1309
34.032
0.391597
31.3054
25.1215
-18.4138
-3.46943
-49.6975
24.7465
34.1105
-45.9516
33.639
3.28341
-35.4281
1.03655
4.22405
12.8172
23.1173
23.4185
16.1831
-13.1565
-3.77008
3.84202
32.2178
-4.33219
34.5016
-2.04116
11.0352
-21.3818
13.8124
-36.6322
2.84258
22.8278
3.57839
15.5137
29.9088
-10.165
-36.5202
-4.33831
-7.71277
-46.6825
34.6844
-22.1526
25.511
-31.5124
24.7995
0.628829
-64.502
1.31089
26.8182
-39.4621
-46.4234
3.10324
-0.447665
-33.1366
32.1491
-21.8478
-12.831
-0.99205
30.0411
33.1919
2.93284
0.091241
-6.93318
0.827122
5.44173
34.122
-2.02929
-14.0241
-3.04169
3.79213
-0.217487
-0.75051
-13.1169
-18.4853
25.2649
27.6464
-32.0252
-13.3998
17.7025
1.92586
4.89599
1.53042
30.158
28.4006
34.4304
-1.94164
-7.9625
-40.0226
-0.169581
7.59718
-3.91484
-34.7278
0.604839
-2.34143
2.1073
16.4206
-18.2406
19.3924
14.5351
-10.2423
24.7533
-14.9774
-17.2022
-1.85581
-12.0301
1.51687
12.8597
-22.793
2.53289
-17.2234
34.1315
-1.68205
24.9989
-46.014
7.2635
1.5827
33.6865
-20.2767
15.4984
26.3418
4.44901
-18.6994
30.2262
31.9407
33.5656
-6.36826
32.3245
33.8464
-0.441432
18.3751
-4.99393
-2.48274
30.7441
-7.48912
12.3453
-141.473
-47.9799
-23.9933
0.170121
0.0705864
-31.7554
-23.1684
-23.2803
-30.8437
-9.22398
26.1591
4.76789
-13.3818
-50.4902
-42.5645
32.9154
31.3846
15.0384
-14.6821
13.7009
32.3435
-24.4269
15.9418
18.3439
30.2154
0.0519638
-38.7551
26.5523
-27.5879
-34.2402
6.39196
-1.6852
-42.883
32.5312
-49.9757
32.6317
-26.994
-20.3305
34.8852
16.5601
3.1844
1.81155
-23.7672
-3.92969
-44.1837
4.57992
31.0636
26.6096
33.1325
1.64766
32.8328
-1.24403
-2.10701
40.6625
-1.37221
-11.8329
-17.603
15.931
-0.402143
29.1132
3.13217
34.7486
30.104
2.73106
-5.03493
-28.2386
-1.34335
-42.65
7.83011
-14.082
-24.1289
-47.1872
-5.60436
-20.9528
-4.82511
28.818
7.76213
-57.388
-1.78017
33.0757
17.4464
32.0392
28.26
-29.8513
-28.3973
-46.4769
0.161771
23.229
-0.92471
5.02961
31.6467
-1.2151
-30.021
-49.2514
-50.751
-0.608023
-2.22886
-29.2823
-12.4901
20.7856
-40.2499
16.6883
-3.90833
-1.14994
30.8088
22.9789
-1.26576
30.309
27.0259
-1.10636
33.3206
32.0468
34.7188
1.24445
1.22505
34.1901
33.2674
18.9324
33.5911
-15.0116
-42.5532
3.37031
-48.0235
33.8944
22.8288
-14.3829
-0.309176
-6.23666
28.894
32.6049
-39.665
-37.2443
8.86811
29.4021
15.9044
34.0613
18.04
26.0263
28.2042
-2.70395
31.935
-15.1299
-12.8911
4.58284
11.3752
29.6551
-1.5646
28.7631
-15.9147
32.5058
-1.40236
-49.065
-12.3795
33.6243
32.1738
-4.09547
32.2139
-2.01968
32.6445
25.3889
-45.099
33.5169
33.9346
-8.26445
30.2603
22.3663
-4.0167
20.8142
8.20529
19.6251
4.29452
19.2145
31.1057
-71.3435
25.2278
-7.99755
-16.6286
-0.08548
21.3708
20.4383
34.7604
1.5134
-19.07
-0.148933
-4.33811
-0.878829
8.03655
32.9031
3.56491
5.09913
7.41893
10.2154
-50.7857
-49.1041
32.7112
6.15853
-12.954
-1.79503
-12.745
-40.961
-48.2913
32.7242
26.1654
26.936
-1.6804
-35.2467
-0.675462
25.8906
-48.0416
-46.2199
31.0968
6.76907
32.5473
-39.7832
26.0046
-32.8217
30.7044
-0.320145
-15.3685
30.9819
32.8427
-36.6916
0.499604
31.7258
25.1449
25.252
-38.8455
33.0005
-5.15811
18.3053
18.9486
2.39956
-39.6738
-21.1786
32.8836
2.68322
-3.21943
2.55472
6.75651
22.2515
32.4689
2.55493
-16.5103
14.1759
-2.01363
6.96541
-1.24837
3.97135
-43.9035
-44.5666
-0.466369
-37.0471
-46.2673
30.6111
-8.91275
30.8767
29.6051
21.418
32.4595
2.80438
-30.409
25.9133
-35.3701
8.75827
-16.0068
34.8403
31.5439
-6.57947
-0.494515
34.9119
34.2639
32.6907
4.1462
-42.1479
-32.8261
-2.38803
32.0411
1.79109
2.74619
-16.1297
-4.96195
33.3777
-35.842
-35.1961
-1.69821
-26.3786
28.7386
-22.8446
-44.6461
-12.042
-15.5606
-44.9733
-1.22798
-35.4365
6.67177
-0.482652
1.85415
33.1206
-13.3923
-36.5526
-3.50977
3.57075
1.52716
-3.64574
33.5727
34.3582
-3.25323
-17.717
-86.9882
16.4241
-33.0526
1.24992
33.4968
22.9587
-37.2147
-36.6507
-0.00890755
-15.01
29.6988
32.5154
32.1393
-48.0067
-43.7234
-36.8868
0.142323
8.035
-19.0007
4.29427
-39.1757
0.915806
34.8821
20.9932
-27.6263
-3.28347
12.5786
-39.8798
30.7231
33.3936
-18.2283
32.088
-35.9019
-0.36738
29.7335
-12.5301
-45.7282
31.972
-13.0563
28.5757
1.25948
-58.5796
-41.2575
-0.563372
5.08029
-5.39092
12.4424
-32.8466
1.87201
-38.0334
11.0777
34.5179
-7.05012
-39.0133
3.57993
13.7382
32.3464
-11.7393
-0.194733
-0.86948
-18.9856
-13.0007
44.2637
-9.3631
2.23085
-39.7299
34.5456
30.9548
31.4769
-48.893
-3.60838
0.0842785
-8.39066
34.8027
27.7051
29.9614
-12.5653
-3.33744
5.10242
33.516
1.03525
19.1056
-50.3593
34.5024
-66.3501
-49.0042
-49.8905
16.9249
26.4103
30.6848
-46.4887
34.6653
6.0625
-10.9042
-14.1317
26.3233
-31.1963
33.7106
4.96451
-38.0235
3.52344
32.7789
-45.8493
-7.75896
34.1874
25.7992
-14.5598
-49.3957
31.808
-6.28572
20.8915
-5.85151
0.257714
31.3967
20.9479
-15.9061
-34.3106
-1.7522
-46.5321
-38.0385
26.5607
22.7205
15.4516
-2.57265
-36.0636
-33.2273
-4.47445
34.0146
21.1588
27.5828
17.4876
-35.3296
-0.926786
1.49824
-39.546
-20.392
9.42912
-44.0422
28.0202
-11.6876
-12.0429
23.005
-32.2494
32.9188
-33.2372
-5.39063
-16.7218
-13.3669
18.7682
32.0218
32.9257
-3.78107
-24.367
32.1559
-36.4818
33.8883
-46.8847
26.1994
22.9923
-55.5357
14.0916
-4.57747
-1.11049
-20.2073
-43.7652
-22.4197
-10.1483
28.8377
31.6836
1.4882
18.2484
-46.8864
33.8131
-12.1279
-40.7683
1.06223
-38.8015
-40.0866
30.7608
-13.1211
-2.66289
5.07157
-3.57106
28.2995
-29.4758
-1.47895
7.76085
-1.45092
-43.4969
-40.7624
-4.06705
34.6904
16.5918
-34.362
-1.76291
-35.7186
-11.3626
23.2761
34.5986
-43.7007
30.7725
-40.7267
0.229112
3.05973
-22.5232
21.6295
-1.50301
-14.2272
32.7008
-27.4138
-48.0924
31.8268
-42.0972
-46.1048
12.4537
-5.63071
-3.88006
17.9679
0.109908
31.3459
30.3029
31.5245
30.7875
0.403876
-35.3868
28.6228
8.35196
33.253
3.7215
30.634
-1.22302
-29.7569
-2.92995
-74.911
-20.6562
-1.36196
1.3185
-5.17553
-23.3621
-3.47509
32.2123
28.5846
1.60768
-5.33023
-20.6822
-31.9577
-1.57665
-6.08436
29.885
20.5989
22.9468
31.7003
32.4048
2.49521
33.858
-6.7562
-0.691448
-16.9932
0.995667
3.81067
-41.2081
13.4868
-35.5493
3.32296
20.6041
-53.6695
-37.202
33.1737
-28.0708
-41.206
31.2045
-50.2609
-38.7049
-43.1911
-0.915577
-2.9073
-2.71174
-48.6786
33.0846
-42.5128
-36.7865
-31.9954
34.6262
-3.88661
-47.2842
30.388
15.2319
6.09063
-0.642296
32.9938
-42.3425
-47.4452
-43.0249
34.6189
25.9493
2.06603
-16.6817
-49.4368
-33.9357
-1.00996
3.26418
-38.7856
1.95738
33.8322
-47.2933
-60.0912
0.314316
18.5092
32.0567
31.2996
2.13422
-44.7987
34.6047
26.2363
-28.699
9.68222
22.5752
9.50419
1.83543
-39.6748
-42.6938
24.6192
-2.49712
-18.7202
-35.0253
-0.897727
2.99308
-41.9026
33.0251
22.8738
33.3043
-12.0328
-45.0552
-32.9738
6.27656
28.1841
-8.6005
-41.7118
14.1973
32.4257
-48.935
34.1738
-109.909
28.3915
7.29533
-18.5191
-44.1141
-12.2257
-16.2724
1.59599
1.29978
-12.57
-49.8113
7.4233
23.7526
25.5625
-3.56471
20.037
0.836654
-30.2388
34.2671
34.7579
-18.1246
31.5344
31.9001
-0.290711
-2.45677
11.7534
32.0111
-46.7129
4.80765
30.8539
1.01152
-22.983
-36.0464
-4.97505
34.0146
-44.7156
31.444
32.9851
21.8393
-2.62519
-62.9214
-41.7758
-40.5076
-30.5957
26.477
-44.1827
-1.77941
-0.76741
-39.2446
-12.0449
-37.4573
31.1667
-12.9254
-22.3098
-1.72936
7.44695
-36.5315
2.49648
-7.10966
-16.5594
-3.28908
66.235
29.9575
4.24087
0.0866013
-1.05126
2.21554
1.25772
11.924
-47.0516
-16.9392
1.79392
14.1743
-2.10308
33.2276
15.5005
-35.424
34.5328
-39.2649
-3.78166
-16.6197
25.5416
-4.12888
-88.228
-41.3582
8.20392
-13.2868
-26.6827
-28.0802
34.399
-46.9549
-1.83302
-20.5945
-54.1353
8.63145
31.9732
32.3472
31.7491
32.0991
30.4169
33.5979
29.4611
-37.0371
-25.5527
-38.9034
-47.1292
-3.48499
30.5696
-1.30004
33.8499
33.1382
-6.81561
-9.88175
2.20854
-13.2664
4.65446
-1.25827
-49.0756
29.2635
-2.62061
21.7986
-0.99435
-121.289
32.4961
-10.6923
-37.3759
27.0593
27.9638
32.4554
6.35448
-36.423
-13.3653
31.9756
2.43015
1.50627
-2.52901
34.2355
14.1138
12.1243
-36.9425
-13.3417
-40.4118
1.79775
-48.935
34.4576
30.5745
16.774
-1.22503
30.6734
-78.5806
-9.05401
-2.78549
29.368
27.6241
2.92964
32.0626
-24.6446
-1.48103
-39.5486
30.5761
27.404
28.1451
-50.3073
31.4425
2.49021
32.2464
0.80145
-11.6386
32.442
-17.679
30.1602
-19.2303
-44.306
-0.804903
-37.0812
2.66023
-40.5231
-33.8935
-22.4831
27.3016
33.2723
-31.7467
34.6788
33.2412
-1.71749
6.57644
-15.1617
31.4264
33.5752
31.2381
-0.43139
30.6436
-47.5027
-18.8894
2.41006
2.67213
-34.8028
-27.9812
0.202916
1.84155
-45.4181
1.49691
34.2091
33.6023
-48.1138
11.8822
4.69763
-20.6052
-4.13914
-17.8653
30.3486
-36.6274
-29.0892
-17.8796
-4.01241
-18.8199
0.290921
32.7807
-10.5749
34.2967
-9.24079
-32.2989
-17.5826
2.50649
-2.41732
-1.1657
1.79097
2.62487
-10.179
-12.6905
30.0251
1.5455
30.4337
-0.323826
26.409
-1.96353
8.21681
34.6865
12.0994
-8.8272
-36.8022
34.7699
-14.5251
32.9953
-19.1226
1.443
-3.29575
-44.9233
33.8274
-85.9163
24.7938
-44.1196
1.88199
30.6044
15.9222
30.1288
-29.0139
-22.0953
-1.01814
-28.2643
14.7565
-0.222664
-69.2627
6.04773
-27.7878
-24.1635
1.49714
-34.1505
-9.69697
0.00695572
-12.7912
30.0276
-20.3001
-43.0399
9.69552
-27.6785
33.107
29.7641
18.8489
-13.2231
-69.2462
-43.3215
34.4356
-0.232554
2.48345
0.910648
27.3403
-11.7994
33.9598
-37.5966
30.6435
-13.8554
-52.5812
-50.7162
-14.2067
32.987
-15.0789
26.1142
-39.0838
11.3443
5.66402
-1.89159
4.44817
-1.88789
-15.1799
-0.0581226
11.0514
1.52053
23.0039
-11.3496
30.363
33.3401
-14.0516
-9.94884
4.62073
5.45916
-1.66632
-0.0795135
34.3861
32.1202
-13.0904
-15.6568
-13.057
-39.635
-51.0166
5.07971
-3.40996
-15.0288
-12.9355
-2.12128
12.3016
-35.6778
29.1614
30.7405
-26.6509
-49.2485
29.2593
-33.1287
0.791278
-52.6868
-11.8106
0.401847
-44.9016
-21.4853
32.5044
16.7997
-11.5187
-39.6301
0.122888
12.3036
21.9297
13.4941
-12.3453
-4.21037
22.8614
-0.12841
21.4603
12.1432
2.55568
19.8269
-14.0624
6.74677
2.8186
-43.511
-10.3371
17.212
-9.33516
-10.5602
-2.78001
32.1923
-43.606
-13.6208
1.35545
2.79434
-49.5588
-37.9715
29.3949
28.7381
27.2022
-36.9602
0.422107
-2.21922
-38.234
2.60072
-26.0913
-43.9904
28.087
4.0333
-1.16173
-13.0749
26.1047
-12.8971
1.92171
-0.437244
-19.4072
4.6961
-33.793
-24.9834
-50.2212
19.6768
-1.86478
28.4642
21.9507
1.40419
-46.7238
29.3173
-14.7268
-12.5376
-46.9905
30.7083
31.7628
0.314861
27.8838
-3.90184
18.2144
24.2377
0.5861
34.6093
-14.6156
-77.2476
29.359
29.972
29.8311
29.5952
-13.9849
-13.2241
31.6516
7.998
29.844
26.0707
0.889732
24.8351
32.9504
-34.9271
31.5456
18.5134
2.87182
8.69493
-31.9289
-1.88118
-40.6239
-14.6563
1.92697
15.1648
-34.608
18.4799
0.638343
28.3143
-9.67795
-5.2926
34.3849
27.6416
28.4602
-45.7624
26.9208
3.15565
-108.13
-2.98158
33.1508
-10.3773
0.38809
0.359538
16.01
0.2119
-11.5832
-11.2249
34.2516
-1.47993
-1.03657
22.4067
-36.5538
-35.1171
-21.9378
-0.0337204
-0.231147
-7.17441
-49.1203
33.178
-4.64179
20.9924
-37.9105
28.0092
-3.78442
34.4981
16.3287
-1.29281
-45.3518
34.3322
19.2174
32.8776
13.8027
32.7038
34.6255
1.54703
1.55157
30.6163
26.6391
-2.54228
-55.7041
-0.444301
-47.4025
32.4453
-35.8544
-49.1261
-1.77753
0.56793
34.8121
-30.9753
-5.50596
-42.7654
-28.4498
34.9014
-13.9679
-30.811
15.803
-13.2849
8.63522
-15.7997
2.20504
-37.3319
34.5672
-32.3489
26.75
4.84547
-49.7335
-32.0987
9.12197
34.1908
-1.92806
-3.95294
-35.2641
-45.5482
0.947443
-19.2843
0.396011
16.6033
-6.33761
-0.439313
-44.7399
-3.86352
-13.3847
-2.98365
-30.128
4.39371
-13.8346
26.9471
-18.0934
-39.3497
-0.0859339
34.2799
-47.8062
21.5518
32.2392
-0.526983
21.721
-52.1145
34.0736
16.9461
32.9919
1.78356
-10.7404
27.114
21.9644
12.5043
-4.58307
1.38
25.0281
-9.70627
-0.0584169
33.004
-44.2129
-1.4227
18.7157
30.7558
-7.31045
1.19274
-36.4542
-8.97377
-18.533
-46.4096
31.6205
24.2209
-41.1017
17.5471
-13.7155
-40.7253
0.870896
24.0506
-33.472
33.998
1.55964
-39.4276
1.55044
19.555
30.94
-9.98815
18.2057
29.3187
6.33874
31.7705
-1.53463
-33.8227
19.2039
-1.29899
23.1
1.12375
-27.3019
-41.4732
-31.397
-0.811027
0.3035
30.9191
-12.1558
3.694
18.3848
-46.0732
30.494
-0.857765
1.97362
-0.410512
8.20543
-23.6241
-4.26393
2.58122
2.70299
-20.8268
-47.9947
32.9948
-10.8896
-44.2001
-10.363
-12.4503
22.0569
55.4068
22.5127
31.009
-33.7507
27.4052
31.3928
-0.934237
-1.37985
34.3349
-0.0426852
-42.085
-28.7556
30.4627
-26.2491
31.4111
34.0314
-13.8555
18.4005
17.3203
18.1546
29.7135
5.96568
5.01767
0.921142
-38.1286
-26.3497
-44.1785
5.10188
-0.055567
-4.86973
27.0958
-21.4824
12.7383
-113.861
-0.588025
4.61883
-2.66913
-24.8914
32.1185
-32.0751
-11.0901
-14.1074
-1.21029
-36.8438
-0.616679
4.2182
-0.740563
-12.7045
-2.22762
-21.0814
3.5557
-10.7776
-7.18785
-33.0033
25.8423
-31.8811
-19.6251
16.4137
31.0688
2.56055
3.0227
-38.89
-100.106
-25.0052
29.9554
-34.2553
-37.0701
2.10719
12.6742
-9.36299
-36.4892
-0.282888
-8.51307
31.5417
2.58608
-30.0921
1.04205
-16.3882
-38.054
-28.341
33.4934
34.4226
27.4132
-19.0845
4.39948
3.44237
-49.2178
-15.964
-1.07062
-1.19421
3.36332
-1.91173
34.0133
-11.3341
-7.86863
6.4538
-15.2078
34.7612
28.1226
29.9675
-1.1888
4.8786
-37.1528
-1.50051
-34.1066
5.53097
-38.6189
33.6058
30.4715
-38.4463
-44.6294
-37.2767
1.48193
-42.7275
-29.1323
-26.0361
30.4978
24.042
-46.2234
31.94
-42.2496
-19.3385
-105.4
-14.5071
29.9522
4.45249
34.682
-31.8942
-10.4507
-0.497732
18.8801
15.749
-20.9834
23.328
-3.9265
1.54878
-12.1955
-3.04974
31.2725
5.04181
-20.6939
30.1814
31.8163
31.9422
0.686023
-30.3956
0.337493
2.05604
-0.28769
-24.422
-14.7786
-14.0499
-13.222
0.650415
5.56394
-45.6699
34.087
20.8119
2.6522
-4.22919
33.219
6.92651
-38.9062
13.7044
34.0992
0.514901
-43.6543
0.474811
-13.499
33.0245
0.174523
-37.7763
6.13682
-7.11647
30.3241
30.2512
-5.40194
-0.46724
16.3947
-12.9352
29.035
1.75143
-0.611888
32.113
29.7224
32.8815
33.8232
-42.302
-9.59306
-3.38408
-41.8495
25.4918
-28.281
32.1358
21.9975
-13.4841
3.31958
2.57579
0.278432
-3.50979
31.6277
-11.5066
-49.0131
32.5989
28.7363
-13.4607
31.1894
-0.358864
4.23359
8.29775
-49.1761
-11.1704
-8.28565
18.6609
34.0266
-43.8499
25.5754
33.444
17.6364
-18.6649
-30.407
26.31
-13.0756
3.5829
-1.44715
-16.8246
34.0931
21.2651
-34.3682
-47.8287
-29.4858
-0.628496
-1.91602
-7.84451
-36.9271
2.83521
-1.05874
-1.07509
33.8999
2.16992
-38.4248
1.83399
33.5526
25.9829
-33.3433
7.14402
0.159673
0.267504
-15.8083
-45.3868
-12.7413
-41.2123
2.39537
-19.7328
-48.9029
-59.6074
1.37515
-8.61905
-0.500303
32.5969
-59.3612
-0.3971
-16.1693
18.0949
1.08446
33.2631
33.7025
7.72387
3.93072
3.43256
34.1825
32.1315
27.75
-32.3277
-7.31219
34.3177
34.0553
-0.91476
14.3997
27.4911
33.4244
-12.5648
-47.5431
11.6737
33.8983
-2.26679
27.0958
4.50317
-38.8152
23.0098
25.1927
-2.29509
-22.4676
-33.2654
-24.4172
-4.05864
30.5257
2.58666
-13.0776
33.8197
9.27517
3.30596
32.442
14.5807
0.960395
0.771
-11.3125
0.553544
-34.6189
11.2202
16.8426
31.1307
-47.6832
-32.4946
32.8192
26.7819
-9.36017
-40.9138
-63.7431
-39.0066
2.24767
-4.3743
0.790963
-0.1109
-10.1036
-17.5608
-44.9076
27.1557
1.60104
-45.0709
22.3377
31.1724
-14.4389
-48.6319
-25.7971
-1.01532
-21.7121
-2.61961
-48.8854
-0.47117
32.0099
-32.9979
-8.56606
-37.2296
2.11057
0.281524
-14.7638
-34.6688
-38.2813
-37.1965
29.8502
-17.7703
28.562
1.99554
-0.341299
30.615
-206.194
-12.8727
-27.7472
30.1843
4.06817
-30.0911
-1.66411
-39.4064
32.8879
20.8429
26.8777
33.6711
-0.00198129
-37.8861
29.7751
-40.8894
-20.085
2.57472
-0.921409
-24.3552
27.2584
-45.2571
33.9104
-12.9513
24.8267
-12.3355
32.1921
28.8418
29.593
-16.0211
-22.5076
-20.0459
-5.03935
0.45725
30.6381
33.9949
0.595788
27.911
34.8575
18.0883
-12.3267
-19.6489
11.3813
-23.3835
27.2923
0.994301
-10.7841
-43.6341
-50.9331
-2.59886
12.07
28.3258
24.6534
-4.8076
2.4983
-4.88837
-1.06797
20.5734
-16.6861
-47.443
4.85576
34.1903
-27.2142
-12.4346
-18.3572
-71.8359
21.2175
-8.06744
33.781
-29.8509
-22.5213
-26.0347
-77.8385
11.594
0.357959
31.8429
-19.1836
-41.8874
1.69657
-34.053
30.8795
-0.0210508
-20.0258
22.0867
-23.0099
-66.2666
3.20349
-29.7499
32.285
31.6159
32.5195
-13.2175
-35.492
33.7225
10.3432
16.4154
-16.7509
6.64578
16.0002
-56.174
-33.4868
-32.1557
5.22379
-41.0707
-27.1582
-14.211
34.4651
17.0548
-11.0938
3.15379
-10.735
-11.9668
-4.79685
14.4597
-1.69929
-1.72715
30.7564
-1.47538
11.4045
61.4164
1.52204
-14.0885
7.62907
-4.13092
-27.5382
-15.4216
-26.0828
32.7221
7.23823
-29.2037
24.4086
-42.1508
31.5942
1.68342
0.992497
25.2945
-39.8309
21.2023
24.7905
34.2902
-57.8237
2.4968
32.5702
-0.299134
16.6046
-42.9413
-0.201265
-12.9103
29.9152
-23.1118
27.4701
-3.93181
-0.623123
-15.7339
-13.3563
-1.03653
1.72561
0.326482
3.29037
-37.1645
-49.2615
25.0476
-38.2944
2.84332
-11.8013
-14.8365
33.9003
-49.066
31.3777
24.6928
31.2288
-2.08326
-0.0399859
13.434
0.765919
-39.7698
4.11223
4.86519
-26.1029
6.29712
-22.7176
1.79693
-37.2157
23.6718
4.54211
18.8847
26.5364
4.3896
-23.7887
29.2861
31.232
33.7828
25.707
-19.8474
-47.5594
-5.00089
7.88441
31.4738
-39.2262
-0.666886
0.67895
30.7468
-47.9576
11.6545
-23.1966
-15.5736
-11.4145
28.9405
-5.40706
-0.0915045
-5.73965
9.25153
-0.211115
22.2212
-35.84
-1.04319
-11.2662
21.8898
-41.5603
-43.8549
-0.918931
0.059605
1.06848
-12.0563
33.7293
6.87375
34.1727
-19.5812
11.8585
11.1545
27.6447
14.219
27.8414
0.444144
-13.108
-14.1287
-24.345
0.333368
0.110959
-47.5453
-42.2297
29.4515
-13.3286
-43.9122
31.0325
7.00325
5.30926
-7.03088
25.6999
-36.9599
34.837
17.9055
-33.7871
-87.3613
0.43881
2.21428
-57.7653
-10.5561
1.1535
-26.9671
-3.48481
0.627027
-32.5194
-48.5738
-48.9336
29.5279
30.4762
19.774
-18.7842
31.073
18.1263
-41.6554
30.783
-14.7213
4.49419
-13.1925
-0.780392
-13.6488
-15.8373
5.19229
32.4718
34.2501
34.0012
-23.0979
33.5179
18.9715
-46.1129
-25.6902
-29.741
31.2945
34.2322
3.72844
9.0187
2.30552
-36.8772
4.12493
3.45359
-38.8064
-44.7608
-12.9406
33.3162
33.4456
1.53277
3.06457
32.0386
1.33883
-8.75495
34.4875
30.8847
28.1043
-16.4961
0.188479
33.7412
3.36309
-3.18688
25.5327
-11.5789
-43.367
10.5385
-34.7999
30.2953
-48.1351
-35.0407
-27.2778
14.9692
34.4006
7.44499
33.5491
33.9545
29.5561
-28.2411
0.397212
28.8186
-50.8868
-48.7302
-17.1724
33.2346
2.00647
-27.4995
-42.2233
-53.4836
-33.951
-37.3781
-39.1494
30.6227
18.0822
7.43664
-35.4561
-51.4094
-4.97928
30.5888
-21.4493
16.2355
-17.7195
2.49941
24.6681
-45.9352
16.6298
17.2752
-40.9169
31.8445
-45.9611
31.5824
25.4388
27.6501
-1.39433
30.906
22.0601
-38.8808
-36.7806
1.8786
1.32906
34.8164
-40.3094
-12.8088
-50.3176
16.3806
-34.6702
-26.3456
-22.8931
34.2012
32.0526
-0.825073
1.43855
-15.9886
-24.7766
-4.44926
30.4575
-4.86298
-4.28311
2.14999
-1.06696
-1.06248
34.2265
-0.84865
21.8891
19.9471
-16.0159
-96.6825
0.324359
-34.4936
21.1289
30.3595
-9.80061
-46.9528
18.2518
34.5743
-47.9786
20.0663
28.2955
16.1123
-0.520662
0.0256018
34.6947
3.21561
12.6826
-2.20112
-40.0618
1.91332
1.19574
34.136
-38.8778
-19.0845
-27.1894
34.562
27.9013
-13.068
-30.8425
-24.9649
-35.2902
33.1969
34.2327
-16.9505
-2.36722
-33.7362
16.3888
16.6746
0.798055
-0.100377
-24.0764
-25.7455
-0.150591
-20.8975
34.2309
-38.972
1.45405
27.571
-10.8974
-6.26476
33.7666
-3.9934
-1.00297
2.06919
33.7351
24.1014
6.43544
30.2815
31.1962
23.1215
-6.35338
31.4101
-34.7666
1.47307
6.37066
-43.487
34.3411
-26.8091
-43.4672
-17.8468
34.4747
-19.6387
1.91442
4.37524
-5.1154
24.9716
34.271
-49.7268
18.0904
2.36234
25.3317
31.4432
34.6804
-13.7389
-5.3345
4.67501
-1.02009
-49.9325
-49.1727
16.3649
33.5256
-13.5086
34.6453
16.9044
-9.43748
-13.149
-2.17776
-10.9525
32.9887
4.54029
33.6631
18.3498
33.5157
17.4131
1.81832
-19.7999
-8.86571
-2.58901
-40.6543
11.3898
17.3359
33.9604
24.3279
-12.1909
32.726
-6.08333
-13.3202
-53.9098
-28.2455
-32.3981
31.7506
34.1649
25.168
30.2724
4.42731
29.2212
2.27189
24.9391
1.52631
-41.144
2.40306
4.83072
0.78163
-12.2752
15.1358
-33.0176
-35.8542
-35.7843
6.20515
-14.3678
-19.3528
-36.5161
1.40875
-0.599818
17.0247
-14.9982
-41.3678
-3.54326
33.0085
17.2553
-31.5941
32.9823
-16.1413
-10.7792
-1.5517
29.264
20.2255
3.58208
-2.6615
-12.4175
0.821875
-35.5613
-31.7012
-17.2124
32.9859
26.5111
-23.2187
29.1754
-2.87459
0.0852398
-2.57414
-15.4397
33.234
31.6704
-41.809
2.14449
-1.02029
34.7288
-9.62456
-12.3291
-36.6408
28.1363
34.2769
24.8854
-12.6368
-10.275
16.3448
23.3908
-21.9563
-49.7259
33.9263
32.8955
-11.7513
-30.1971
25.5914
7.19343
32.1869
-47.0062
-8.64163
20.4446
-48.7007
-0.30699
-43.3096
18.7172
-0.964951
-79.3159
-44.9335
31.917
28.7585
9.36286
-0.752656
25.0833
-46.4369
33.7933
21.2854
-72.6173
4.92907
30.6746
-4.73009
24.6501
2.5829
-0.149087
34.0588
-40.7632
-22.3969
34.1938
-39.6344
27.207
-3.70095
-26.5957
2.43702
-0.43199
57.4759
16.167
-34.134
7.44471
-14.7965
28.6549
-36.8585
-2.34398
32.9827
2.53091
0.492322
-1.13597
-19.0309
5.67931
-15.0174
-14.0954
-42.9367
-3.66979
27.7596
-2.66926
8.82306
-1.01822
-112.508
-51.6436
24.5666
5.02042
-39.3298
0.615207
-22.544
33.4177
-20.9704
28.8932
8.0951
33.8144
-18.8462
9.91083
14.1469
-15.1307
19.078
34.6577
-22.6248
18.1663
32.846
-17.6277
33.2442
-17.5783
16.7961
15.1289
-2.18195
-40.6404
15.4589
2.89614
1.44945
31.8037
21.345
2.4841
-17.3057
16.6081
-23.1181
15.5509
-9.49872
-9.90548
31.9599
2.15458
23.43
17.5071
-45.4913
-0.997209
31.9711
-11.8135
-16.0841
33.3372
1.50865
27.9784
33.2703
14.5454
16.8062
0.836374
-37.1257
-18.3517
-46.8881
-62.1106
-0.491546
31.573
-0.294676
22.8847
27.0239
2.32542
-11.9729
8.41479
-45.2164
-35.179
24.4454
-15.5343
-41.2583
-2.07673
-42.8023
-23.7336
-42.1141
28.0281
-8.50379
33.8767
-38.4688
-7.59466
33.7354
-32.1409
-4.51898
-13.0354
30.5134
34.7333
-36.3194
-1.06607
-0.520649
2.38709
14.7201
31.9779
-2.55058
-14.1943
-30.7453
-24.9212
-41.1791
24.9992
-14.6398
-49.7542
0.41293
24.457
-32.6223
30.3455
-43.8953
-16.1651
5.66105
-0.742972
28.9741
-23.2818
2.67187
29.4217
-38.7271
28.9202
-9.2739
-14.8803
-29.6276
-3.76137
-75.5483
-9.30499
30.719
-47.3925
1.46612
0.29145
-0.916708
-38.2989
32.2342
-11.8447
3.75459
-24.0422
-4.48531
7.61535
-0.45555
13.7363
-42.5789
-7.40861
37.304
-1.09149
-1.97255
-7.01372
-0.14268
19.1218
-22.0873
2.26137
28.075
-42.2747
-43.9298
4.80468
-6.84403
-3.87282
-45.7431
-12.2169
-55.6761
19.6952
-1.01776
-37.7617
8.44815
-2.75108
12.5006
1.94931
2.35214
-49.6898
-15.3287
-1.21388
31.1138
-50.8691
-40.0429
-31.2867
-11.4928
-13.9759
29.5341
18.0639
34.783
-33.7721
31.5965
-44.1176
33.9288
-6.40753
4.2858
32.2314
18.0961
-9.80124
-12.9992
28.659
29.7395
-32.5928
-0.492779
-10.5262
-29.0011
-12.1737
34.3923
30.5045
-14.6316
-24.9486
-15.7662
-46.0179
19.0417
-5.19817
-1.10849
-1.57943
34.5834
-9.96837
-21.7489
0.660325
-26.9696
3.73588
-3.47483
1.99177
-18.5826
-8.42226
-14.3061
28.7183
24.0143
-27.6998
-2.83727
29.1042
22.4927
-40.1026
-28.0517
-13.6976
34.6121
20.0164
27.1273
1.72991
4.49927
-1.49962
16.4512
-5.88796
-1.11187
-1.59118
34.1642
17.6207
-27.1714
34.3067
2.93094
-12.5053
-0.738246
-26.1273
-5.61228
25.1799
-10.3062
-0.342336
0.824917
28.4137
31.948
30.0386
-37.7709
-1.13473
2.10462
2.45192
2.4728
31.4223
-48.5864
-38.4084
28.3163
32.3549
1.57257
1.20507
-22.7678
-39.1552
-8.89606
-32.8758
0.736712
-14.074
-0.392312
-3.49636
34.6918
-2.86182
-13.8758
31.1027
32.7436
33.2862
-1.45292
-1.61235
-9.71129
0.476679
-35.4897
-14.3456
15.7137
9.23753
-3.29634
-27.3823
-35.0557
13.2198
-14.4773
-1.59539
20.791
-38.0425
20.0651
30.277
61.7276
-12.4566
-3.07948
6.34533
-27.5892
3.63869
-1.53722
33.5034
-6.44535
22.8948
-7.19654
2.59321
3.12598
0.676885
1.80089
10.1383
-37.7849
-46.2342
16.2357
-13.3585
-2.96524
44.7683
-48.7347
33.4973
16.0869
-5.72442
-27.942
-39.0591
29.2497
-30.1959
18.7244
28.6486
17.8658
-1.60929
-3.13494
15.3918
28.8878
-32.1824
-10.2659
0.392406
31.3345
33.6321
-0.619074
30.9108
6.568
-14.4527
-8.478
-1.20206
32.5774
-46.3536
13.5069
-11.2021
-0.642659
-26.6722
-8.28823
-11.4456
-43.6158
16.6147
-39.7484
-39.3577
-4.38025
-1.03263
29.3504
-1.52604
18.6698
14.9
33.0053
34.4819
-11.4653
9.81445
14.6242
-20.3538
32.2279
32.0113
-43.9002
2.85416
19.9793
33.0581
0.0554969
5.26842
-5.5754
33.3332
3.06034
33.0233
30.165
6.97547
-28.3895
-0.487585
-36.6574
32.3215
-42.008
0.546561
16.9206
-29.6649
2.69406
30.4178
31.6083
3.76309
-16.0504
-42.8331
18.7747
30.2416
-16.4083
34.654
3.98625
31.7306
0.217488
3.41569
-46.4037
34.1752
30.1359
21.7903
-10.4123
20.4128
1.2928
-1.6546
-20.1243
3.10041
26.0038
-1.42137
32.3629
8.87364
14.4734
34.1079
-11.5194
-43.1557
-50.8547
11.5185
27.6513
-11.9028
32.7418
6.03244
34.4995
30.3553
-0.820363
2.46562
33.4619
-0.94991
1.00926
17.5858
4.48098
-37.1099
34.214
1.52325
-39.043
-0.714222
-2.92832
-38.1327
-0.633496
7.02801
-1.47141
32.9438
-10.4182
30.6553
-20.8468
-13.8029
-34.9123
-19.4349
15.8246
-26.6912
31.9813
1.18431
33.3712
-16.7475
-4.00062
18.0505
-0.805514
3.17521
34.4346
2.08702
-21.7225
-36.5409
-5.99533
19.799
4.09514
29.2124
-33.7563
33.8721
-2.01021
-41.7293
3.72528
12.7389
-33.9469
-41.1949
-0.575883
34.4583
33.0667
28.7959
31.6133
-29.8825
6.76243
29.7706
-32.8484
-1.89166
1.59042
-42.6967
-49.3664
-3.85079
-33.6806
34.3793
-2.33251
17.2095
27.3973
-41.9569
32.2763
31.0118
-39.9803
-10.597
31.8121
-27.2425
34.1813
-38.0547
-3.62775
-42.5685
-6.79542
-8.61924
2.7017
1.38099
32.0951
-0.119738
65.5611
33.3174
-39.2435
58.4164
-37.9747
34.8743
25.0769
-10.3544
0.805527
-29.5365
-10.4766
-2.47456
-16.1575
-35.3421
3.32597
-12.3495
20.0867
1.80584
29.2018
29.0707
1.6329
-40.6793
34.0969
34.1617
-14.164
31.9294
17.607
33.723
0.365423
-38.2159
-13.8034
-0.334996
28.5944
19.3633
0.679496
-5.51495
-41.636
2.17158
-39.4034
14.3279
-0.685657
4.45897
11.6406
-17.1339
19.791
-14.7705
2.22963
-12.6439
32.4956
-23.9663
34.1792
-2.87151
-49.7248
-10.3184
4.65493
-37.7782
30.2134
29.2506
34.1692
-16.1448
27.4339
30.121
-13.1579
-12.4194
28.3807
-17.6345
3.55884
-0.921937
-2.78671
34.1279
18.6317
-16.7786
2.3381
-63.711
-45.945
10.0968
1.35548
31.8618
28.5775
31.9063
31.6098
13.9697
-11.8731
-38.249
-22.0861
31.9361
-47.2264
-25.3334
-13.4618
19.0375
-2.60806
-11.1141
-7.31672
15.6404
13.2832
31.2569
-8.6561
-2.35347
-27.2646
-0.127254
25.8789
-43.0695
-32.4601
7.1728
-10.5602
17.8781
33.8687
0.159059
-2.38796
34.5457
3.54061
-19.8918
1.60487
-29.8764
-4.56121
34.4762
33.5398
-11.4864
33.535
30.291
30.4849
-40.4807
-38.8
-19.0096
1.76802
-21.4471
13.9225
15.4933
-40.127
-3.10401
6.66737
32.9277
-2.82069
-38.5681
-31.5427
-12.6503
5.95231
31.9044
-9.44388
23.2188
6.73354
4.0304
26.4098
-19.4104
-46.9981
15.6748
32.1063
-27.9686
-13.6961
0.609353
1.73739
-3.7255
-2.91785
-5.97953
31.826
-12.6729
14.9369
-2.09094
24.4191
4.04185
-39.3499
3.17879
23.9437
26.4466
-16.2332
0.25983
12.1666
31.6466
-23.6983
-3.92588
-14.4723
2.20234
-17.6074
23.9906
15.1397
-7.09319
-43.0698
2.26039
-4.06633
9.37807
-68.5862
-25.9698
-8.55716
4.81909
34.251
-49.3732
31.9116
33.9543
34.4746
-20.1753
-44.4727
-23.1432
-41.5443
-0.344341
-2.49333
-15.9989
-14.373
-1.58668
-37.05
-13.3179
31.218
2.52212
-40.3169
6.34121
-0.127093
42.8618
34.4695
1.31872
29.4585
2.29429
-48.5564
33.9302
33.8687
23.6884
35.0034
1.44343
32.275
13.9603
1.41835
-39.3655
-46.8141
-47.0704
-4.84854
1.96779
-17.2834
-7.5808
-26.9003
16.3293
-19.3506
25.3238
33.6055
26.7521
29.83
-1.97806
-4.19831
-44.7995
-25.4528
-3.52806
33.8104
-28.3151
13.6972
-11.5307
-11.5729
-2.10792
-3.0263
24.3669
14.7242
-14.2866
20.0063
27.7375
20.9977
6.10838
-1.12553
-38.5984
-42.3147
32.5657
32.104
-2.68637
5.03819
29.5293
21.2693
-39.7459
3.57981
25.7089
-6.7772
-2.19058
0.818658
-14.2225
-14.8088
-16.6147
27.9137
-77.9742
2.54905
-72.7997
-31.979
31.4967
-5.23297
-31.95
24.3313
31.7541
-4.89317
-0.338116
-10.5941
-48.5171
-1.43904
-12.505
16.4118
22.1295
-2.68486
34.4604
34.4179
-27.2629
19.9002
29.5005
-0.962385
20.235
32.126
22.3609
-43.8097
-12.8358
34.0244
-40.0288
27.3402
23.4543
-14.5519
31.7906
-2.47366
31.0015
-47.5963
-9.46175
32.5595
-3.66416
33.7689
1.87764
1.69379
-48.1988
-6.93869
0.538464
-44.7024
-33.7868
0.717913
-1.03055
-28.8025
26.4174
24.068
-11.3136
31.8128
0.112918
31.6621
-0.908187
-44.8049
-1.67267
-13.4497
33.8892
5.00785
-9.77556
19.278
17.62
15.8468
0.399974
29.8665
1.76972
25.1826
32.9058
17.738
27.6362
13.1723
-14.4106
25.7651
-1.69209
-16.4604
1.34574
6.66612
31.7426
-36.438
23.216
30.0612
3.88584
-21.1989
30.4036
-36.5311
1.3106
32.0036
1.39938
26.822
-40.4423
24.0295
-9.88
-1.53226
25.5342
23.5834
28.9681
9.79769
1.50569
38.7508
3.48576
21.3322
23.5029
-13.326
-3.64996
29.6765
-12.3094
32.9369
-31.0482
-23.7771
-29.2281
34.4084
22.3562
29.5246
-11.7123
-19.5834
-30.6702
-6.80137
13.5058
3.82456
-23.9441
30.5528
15.2272
-46.9089
-1.35603
-2.19274
-43.9281
32.3529
34.6012
31.8321
28.7071
0.725591
-6.57169
-3.72482
4.51019
-12.0392
-44.5124
-10.9381
33.3548
-16.4938
-3.66645
-26.4366
-33.2628
2.5193
-16.8581
-37.862
-0.957211
5.54436
-13.7222
13.4105
3.85631
18.3301
-68.3173
-10.7689
33.6549
29.5708
-5.06772
-23.4066
-20.3924
-38.4687
31.8946
2.42757
11.8234
-45.4457
33.9229
17.5785
21.7334
29.9338
27.4383
25.3452
-0.998014
-17.4102
8.11827
-4.86857
3.28809
5.68254
6.38464
-39.1385
-2.42009
-36.8482
31.8367
-1.823
-15.0889
18.1461
30.1457
33.6533
3.35666
19.8809
-36.0944
9.30092
1.28023
-15.547
23.6184
-32.4273
8.88965
-30.8707
3.67548
-25.7562
-8.08753
23.3255
33.0288
-14.7282
-15.1734
21.9862
-34.6697
28.9442
-9.06849
34.2458
30.0939
2.4289
-28.5177
-23.5253
-3.81234
18.4264
25.0646
30.3236
1.70564
-50.4627
30.3052
33.6609
0.720098
1.72923
14.7801
-39.6716
25.6811
27.1672
-11.3472
-42.7423
-2.85486
-46.7125
0.0102792
-20.5062
3.5155
-51.968
-37.3986
-0.965983
0.0847041
0.0968465
3.41759
-1.68809
-48.5904
20.4684
-5.37141
1.66926
-31.6423
-41.5626
-0.428194
30.2367
-16.4495
-8.62421
-10.0787
-12.7479
19.8687
27.1455
-37.9296
-34.555
-33.8288
34.7001
-44.2629
-0.579894
31.4283
5.45543
13.9572
28.6287
24.4455
24.4698
32.6473
28.8039
-5.49161
-15.9617
0.154893
-26.5562
28.8389
-23.5381
0.929858
-3.60685
14.476
3.03629
-27.9181
-23.3038
1.75123
-10.0065
27.5892
-48.2906
0.16492
-21.0617
28.7295
-14.3761
31.242
21.6487
8.40687
-36.7797
-20.0923
-39.9563
-1.10045
-34.8284
0.213844
-12.1306
2.26669
-2.27734
-23.4649
-31.9262
-14.2588
3.55489
2.3677
-7.08689
31.1167
8.49383
30.4779
1.84146
-12.7111
13.7878
26.2042
-13.0277
24.4106
2.13699
-0.337958
0.775329
30.1998
1.41737
-34.37
13.7605
2.1821
28.4708
3.61756
-3.12344
11.5927
-13.8119
31.4486
-39.5966
-11.7919
-15.6128
31.6732
10.5361
-41.886
-13.992
30.4234
30.8703
-13.0051
-1.1153
-9.67224
-13.8841
2.38601
-37.7628
9.61555
-3.30971
1.74241
-8.45586
-3.57544
34.1177
19.6484
-19.8509
25.706
-13.585
34.1109
-28.5825
0.36027
16.928
-10.4585
-47.7089
-13.3171
-0.399777
5.92586
-11.6323
-13.6449
29.1116
-3.76415
1.32957
-35.7558
-15.9148
18.9571
-49.8253
-45.0915
-14.0115
1.49378
-15.2362
-10.4993
11.011
-44.5542
2.77593
8.70716
-38.9772
33.1799
-65.483
33.788
-2.15369
55.5332
-25.544
-16.5372
-1.30021
-20.6518
22.2804
22.0299
32.1216
34.4437
-42.5061
-24.0012
-17.1228
-2.90958
-29.0351
33.7668
-19.1475
-26.5111
13.9351
25.7039
-1.83287
2.35504
-46.3442
-6.01442
1.06228
-2.84861
27.3666
6.31138
0.480377
21.7887
5.60918
32.254
-37.2793
27.2821
-44.4954
-10.9822
-2.29026
34.5402
-0.454185
-0.563616
-14.2039
0.456745
2.73394
31.4674
2.38847
1.66627
15.8396
10.2222
-24.7853
-7.54554
3.91281
27.469
-17.8904
-38.0865
34.6328
-50.9098
9.33403
-1.12457
15.311
-31.4575
30.839
-13.1878
-6.05209
-26.0145
31.1866
30.7507
0.406279
-21.046
-25.4359
26.9133
-5.30798
-3.35711
34.0794
-0.661802
-12.3657
-11.5042
16.848
-5.23593
-51.8313
33.2228
-55.5743
-13.4552
0.649543
-30.2626
-8.8168
26.9815
30.9379
5.88898
33.9919
-11.1421
12.2529
-44.1507
-36.3112
2.57587
-43.5447
-44.2268
-0.436505
30.5169
-1.53123
32.1985
-15.7039
-20.3818
-4.20605
31.2419
31.3325
-27.8351
-2.0123
33.8782
0.705489
-44.582
-12.9613
29.6102
32.2313
-15.5437
23.5019
-1.20797
11.0995
-13.7876
10.109
-1.95416
24.0117
-11.519
-10.1211
-1.184
-7.43202
-57.2607
13.6582
-14.6479
20.7892
16.5494
19.6216
17.3974
-13.8392
-36.8373
26.8344
-40.0591
0.30511
18.4136
-25.4913
-2.48709
27.0196
19.2054
8.70414
-28.8708
-3.23116
-49.9995
0.12981
3.25394
-42.1636
-39.9017
-7.71173
-4.79958
-42.8473
1.9873
25.4268
-7.85749
-50.3424
-5.90311
-42.1746
3.6034
-59.6364
-4.87566
-44.8633
-2.52208
21.1513
0.136589
10.8785
8.23347
15.6041
-18.3791
9.94186
-1.44933
15.6678
-1.38491
10.6467
13.6956
-87.9345
-2.51976
-34.792
-1.0047
-0.893993
26.1404
-38.6292
15.1397
-47.1963
10.1455
20.6861
-0.275075
-40.7742
29.3188
-41.0069
-44.2945
0.538062
1.35165
-13.5409
-77.895
29.77
17.4023
-49.9113
10.6712
30.6652
-0.468024
33.7237
29.2504
1.91136
-2.57389
-4.90556
34.2489
30.0823
34.1418
29.2847
-8.494
17.5737
13.6162
-0.0919452
-12.8098
24.6123
-17.1842
-39.2387
6.86799
13.3466
3.0001
-33.6654
-35.7752
25.8987
-0.127544
-12.8584
29.5049
-42.1921
-11.0189
33.0153
32.1638
3.2801
33.962
-5.06717
16.6095
-5.22617
-46.8384
32.6549
-1.5508
-0.397914
32.9856
34.2449
-7.02335
-1.99152
0.689647
0.823854
27.1898
-1.05584
0.887006
21.8824
4.53149
32.272
-11.7451
0.328576
-2.40189
1.60534
-38.1412
-37.9973
-0.506332
-8.62069
-20.1052
33.614
-39.2811
11.954
3.73301
60.1908
-35.7679
3.04331
-8.66315
-1.57528
-11.7695
23.7918
-15.3204
-6.85186
-23.5322
27.1321
-1.93714
-3.14471
-20.3131
-25.3925
-1.59741
3.74085
1.41468
30.0262
-27.169
-1.52335
-48.4286
-14.3476
33.835
-24.5474
24.5666
-41.1739
2.19391
1.34644
32.3275
29.8025
54.272
-1.62917
-0.424688
-0.0504386
-1.73761
-36.8805
-33.026
1.56089
-36.2269
-0.785355
-8.52676
-5.06166
-59.4801
-36.945
3.16573
-28.5567
13.2162
27.9785
28.4233
17.2019
21.4562
22.2457
0.680635
-12.1628
3.79358
19.4413
-46.5087
-13.4642
30.6758
1.82748
-1.79672
34.093
31.9979
3.67716
18.9442
15.3198
32.2869
7.46617
-44.7656
-2.127
29.5493
-11.9896
-40.571
-23.3489
25.6747
-18.4536
-2.14425
-32.8771
-32.073
-16.5886
24.9158
26.7607
0.292673
5.34444
-18.5108
29.0307
-34.3306
-9.22077
-8.72748
-30.9675
0.482687
7.13396
-0.770639
2.28189
29.7653
2.29921
1.63602
-0.889324
-49.7551
-1.81728
31.5019
-31.4393
28.5187
17.8288
-4.46936
34.1075
24.4445
23.0361
31.2162
8.1244
30.5929
30.3749
2.5207
21.6718
27.0664
-1.73712
-20.1898
-20.9065
31.8669
13.1381
22.5742
3.52099
26.6462
-1.41751
-5.60412
-8.09017
34.6115
29.3343
3.54498
-7.15103
-3.49263
14.3473
0.851212
21.2676
-12.9222
33.7741
0.579738
1.22324
-14.3358
4.07997
-2.61092
33.5719
-19.7904
-19.0552
3.59087
-4.63435
-3.32315
28.089
25.2972
27.4685
9.27389
23.3637
13.8125
32.2323
-1.94442
21.051
-0.359342
1.40605
1.63828
3.17677
2.65284
1.52674
-27.9403
-5.34769
-35.6019
19.8704
0.0275801
8.57857
-57.5588
31.0944
1.54811
-38.3896
27.9478
32.0617
11.7848
14.1095
-25.0333
-73.8928
2.78527
1.94566
25.1331
-9.19142
0.27747
23.7784
33.9024
-5.47028
-1.79584
-0.326226
3.84988
2.60401
1.2405
-11.1494
-38.418
25.323
32.2938
-40.2544
-36.7235
33.4111
-1.3408
4.38916
-49.0757
16.8654
1.67713
30.4267
-34.3431
17.0919
34.4762
-0.238317
-24.2091
-9.88102
-0.654951
-24.2272
29.8438
-1.97785
-24.8612
1.49604
-27.5115
11.3925
-2.7103
-30.5055
-0.378275
15.1659
-12.3947
34.0799
33.5386
-16.2948
-9.95888
33.3628
33.5967
-12.1868
-27.8402
28.3751
13.203
8.39565
-9.46898
-44.7591
-49.6059
-18.0329
-3.93938
-35.2706
-1.70649
0.475305
23.9396
25.2022
33.6638
1.88269
15.5038
-8.01259
0.726065
-9.08766
-13.7189
34.0995
2.23498
3.40783
-4.52711
1.42603
26.2366
-6.2381
29.3003
1.66353
-2.20385
-58.8143
-49.3468
-6.4
-53.6128
-3.03188
2.49513
21.6074
6.7309
8.29336
-10.441
0.634905
-0.100042
25.4511
-8.7747
-12.4123
3.68694
34.4164
1.03461
-38.6552
1.60096
33.4726
1.79108
-1.726
-37.461
26.9785
-15.2825
0.50867
3.22454
15.5069
2.25077
-6.04869
29.8398
32.1341
34.087
26.6537
2.26897
-6.07296
5.56648
33.1861
28.4274
-11.5865
0.385993
25.1749
-0.88977
27.8288
-17.2137
30.3534
17.0935
26.4714
34.4878
8.10679
-23.5088
-0.0126098
-12.5528
-8.30597
34.4368
4.474
1.08958
-1.18129
19.1862
-46.8784
10.105
33.251
1.73235
22.8323
10.3094
-33.3519
33.3157
29.3076
-27.2799
3.65118
-13.6705
-42.9315
12.3026
-12.556
5.72262
-0.960758
34.5236
26.7537
-41.8383
-33.8642
34.0173
33.352
31.3831
-21.6456
-17.1042
-8.56453
-3.28915
23.9429
-5.67577
-1.08751
25.7206
-13.7889
2.16
-4.4869
34.6668
-1.77793
-12.8504
2.86089
26.4261
8.01517
-17.937
-2.46935
1.45848
33.5222
-31.395
-36.7579
2.66335
-11.3742
-17.2162
34.392
12.512
31.4842
-1.87163
30.4986
-49.65
-1.17745
0.278479
29.6844
30.1426
0.212505
30.3017
-8.00563
-10.0016
-7.78179
12.0536
16.0065
-12.8007
-5.58354
-1.68828
-39.0686
1.5417
30.5768
-0.0945059
32.8565
-13.6249
-5.25785
-9.47213
-2.36872
-38.4542
22.2572
-2.00848
-23.3648
-37.378
1.48093
1.36509
1.87109
8.23485
-1.65251
-12.9462
-34.6059
0.506921
-79.9833
-9.5938
-19.5404
1.92006
-1.55397
30.5109
-27.8806
-2.31774
33.996
14.8434
9.09751
-5.55028
-12.7216
1.72223
47.8554
32.2145
1.21606
2.12507
5.91584
27.4642
-9.82232
-9.83321
-17.6185
2.54453
17.3678
15.9638
-49.3574
-5.37025
-0.397926
-20.7559
28.9811
33.5961
-63.0828
0.342555
7.94848
25.8736
17.605
2.59324
10.9305
-2.07462
-1.91486
55.1422
29.8236
2.508
10.9252
-26.1282
21.4923
-8.87181
-13.6878
21.6015
8.68222
-47.6821
1.80657
10.0259
31.1577
-24.4921
-17.1282
33.0505
-41.8767
2.50268
2.1157
-26.8375
12.2568
28.226
-1.35029
1.63927
31.0433
-53.1217
-8.62242
30.2911
33.1517
1.41877
34.5023
25.5901
-50.9057
1.66215
33.7368
32.7963
31.426
33.7964
33.3353
-49.19
-10.7952
26.3005
-8.88925
1.69253
26.8963
-7.8626
-0.0705231
-51.6712
34.6696
29.0473
0.480744
19.6172
33.6169
15.0812
13.0406
-33.7118
14.3854
0.1032
-34.4459
30.0878
2.04915
33.0165
1.66333
10.4509
-49.2955
-14.7138
30.265
32.9182
1.87006
28.2008
4.68153
33.5479
-6.03432
-40.0178
5.56103
-8.26406
3.04972
29.1325
31.9915
29.24
5.66601
-2.60307
-9.97708
-24.1963
32.9302
3.29263
4.12726
16.1074
17.359
-39.3092
-4.42987
8.97496
-16.982
-7.5274
-8.10319
26.4999
10.3752
9.82823
12.7215
-26.899
-20.8933
1.46832
-38.5218
-41.1058
2.90749
-41.7942
1.98981
2.78104
-13.9877
-34.1226
-5.81607
15.6906
-13.0807
2.48823
-4.1991
-8.46164
1.62168
9.52011
-49.9656
-7.11151
-40.6877
1.57284
9.37767
-24.3849
-9.38377
)
;
boundaryField
{
frontAndBack
{
type empty;
}
wing_baffle
{
type zeroGradient;
}
outlet
{
type fixedValue;
value uniform 0;
}
tunnel
{
type slip;
}
inlet
{
type zeroGradient;
}
wing
{
type zeroGradient;
}
}
// ************************************************************************* //
| [
"rlee32@gatech.edu"
] | rlee32@gatech.edu | |
f6d700b86f2568e19e3aaee56b8931c3054d1d51 | 431448602cae35d1bf5940a7ef1e8a69c3f6685e | /10901 - Ferry Loading III/d.cpp | a5dea1286f637b84394798a73044345a6414d71a | [] | no_license | danielh1204/UVa | b20a852ffa35c742c63785c7ea920192cdd189fb | d56e28934fefe75a7e698a3adaef234fb61fa51e | refs/heads/master | 2023-03-20T02:57:34.665729 | 2015-04-02T19:06:32 | 2015-04-02T19:06:32 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,380 | cpp | #include <cstdio>
#include <queue>
#include <vector>
#include <iostream>
#include <utility>
#include <string>
using namespace std;
vector< queue< pair<int, int> > > q(2);
vector< int > stack;
vector< int > seq;
int main()
{
int TC;
scanf("%d",&TC);
bool flag = false;
while(TC--)
{
if(flag) printf("\n");
int n,t,m;
scanf("%d%d%d",&n,&t,&m);
seq = vector<int>(n+3, 0);
stack.clear();
for(int i=0;i<m;++i)
{
int T;
string str;
cin>>T; cin>>str;
if(str == "left")
{
q[0].push(make_pair(T,i));
}
else
q[1].push(make_pair(T,i));
}
int s = 0;
int now = -t;
while(!q[0].empty() || !q[1].empty())
{
now += t;
//printf("%d\n",now);
if(q[s].empty())
{
s = (s+1)%2;
continue;
}
if(q[s].front().first > now )
{
int r = (s+1)%2;
if(q[r].front().first < q[s].front().first)
{
now = q[r].front().first;
s = (s+1)%2;
continue;
}
else
{
now = q[s].front().first;
}
}
while( q[s].front().first <= now && stack.size() != n)
{
stack.push_back(q[s].front().second);
q[s].pop();
if(q[s].empty()) break;
}
while(!stack.empty())
{
// printf("%d\n",stack.back());
seq[stack.back()] = now+t;
stack.pop_back();
}
s = (s+1) %2;
}
for(int i=0;i<m;++i)
{
printf("%d\n",seq[i]);
}
flag = true;
}
return 0;
} | [
"ggkgaya@hotmail.com"
] | ggkgaya@hotmail.com |
b0bef87147f5ad7335e57f3aa15fb7c26a9f9133 | 0811473df9f1fc541e0c430b9eae4ebf5e7634a5 | /example/pop_back_args.cpp | 73bab59e8ac0e82072c0ee0a687750733cab8753 | [
"BSL-1.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | Hincoin/callable_traits | ff6a90b1fad12b439cb0beb78277e1d88ac9794c | 128e18ded8d354f4eb64963cdfd0c40800cf4b50 | refs/heads/master | 2021-01-18T13:45:06.638589 | 2016-06-30T21:22:48 | 2016-06-30T21:22:48 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 798 | cpp | /*<-
Copyright Barrett Adair 2016
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE.md or copy at http ://boost.org/LICENSE_1_0.txt)
->*/
//[ pop_back_args
#include <callable_traits/pop_back_args.hpp>
namespace ct = callable_traits;
static_assert(std::is_same<
ct::pop_back_args_t<int(char, short, int)>,
int(char, short)
>::value, "");
struct foo;
static_assert(std::is_same<
ct::pop_back_args_t<int(foo::*)(char, short, int), 2>,
int(foo::*)(char)
>::value, "");
static_assert(std::is_same<
ct::pop_back_args_t<int(*)(char, short, int), 3>,
int(*)()
>::value, "");
static_assert(std::is_same<
//underflow is handled
ct::pop_back_args_t<int(&)(char, short, int), 27>,
int(&)()
>::value, "");
int main() {}
//]
| [
"badair@harding.edu"
] | badair@harding.edu |
16d03cdda680c66caaedd47ed4cc45e0e38a8c55 | 142f982db362675d8ae68f3a257673823ce89715 | /src/Messages/crypto.cpp | d6cb4428d4acfa701403c38af4ac9af3cfffb4a7 | [
"MIT"
] | permissive | MPinna/FourInARow | 2c11e4f3a4769b7f8ad61076105d5e0717f2730c | 93ed52215a1bf8c80dce26f3f20bbb8c56aca9c7 | refs/heads/main | 2023-08-13T20:13:00.478303 | 2021-09-20T04:54:02 | 2021-09-20T04:54:02 | 346,315,583 | 0 | 0 | MIT | 2021-07-24T07:37:39 | 2021-03-10T10:22:55 | C++ | UTF-8 | C++ | false | false | 5,852 | cpp | #include "../../include/Messages/crypto.hpp"
#include <openssl/evp.h>
#include <openssl/pem.h>
int
Tag::setTag(unsigned char *tag, unsigned short int size)
{
if(!tag)
{
std::cerr << "Tag::setTag(): EMPTY Tag!";
return -1;
}
if(size > SIZE_MAX / sizeof(unsigned short int))
{
std::cerr << "Tag::setTag(): size overcame SIZE_MAX!";
return -1;
}
this->_tag = new unsigned char[size];
memcpy(this->_tag, tag, size);
this->_taglen = size;
return 1;
}
int
Tag::getSize()
{
return (
sizeof(this->_taglen) +
this->_taglen
);
}
size_t
Tag::HtoN(unsigned char *data)
{
size_t pos{0};
uint16_t tag_size{htons(this->_taglen)};
memcpy(data, &tag_size, sizeof(uint16_t));
pos += sizeof(uint16_t);
memcpy(data + pos, this->_tag, this->_taglen);
pos += this->_taglen;
return pos;
}
size_t
Tag::NtoH(unsigned char *ser_buf)
{
size_t pos{0};
uint16_t tag_size{0};
memcpy(&tag_size, ser_buf + pos, sizeof(uint16_t));
this->_taglen = ntohs(tag_size);
pos += sizeof(uint16_t);
this->setTag(ser_buf + pos, this->_taglen);
pos += this->_taglen;
return pos;
}
size_t
Tag::NtoHtaglen(unsigned char *ser_buf)
{
size_t pos{0};
uint16_t tag_size{0};
memcpy(&tag_size, ser_buf + pos, sizeof(uint16_t));
this->_taglen = ntohs(tag_size);
pos += sizeof(uint16_t);
return pos;
}
int
Tag::print()
{
assert(this->_taglen != 0);
if(!this->_tag)
{
std::cerr << "Tag::print() tag length = 0, tag not initialized yet";
return -1;
}
assert(this->_tag);
if(!this->_tag)
{
std::cerr << "Tag::print() empty tag, cannot display output";
return -1;
}
std::cout << "Tag: " << std::endl;
BIO_dump_fp(stdout, (const char *)this->_tag, this->_taglen);
std::cout << "\nTag size: " << this->_taglen << std::endl;
return 1;
}
size_t
DHKey::getSize()
{
return (
sizeof(this->_dh_lenght) +
this->_dh_lenght
);
}
int
DHKey::setKey(EVP_PKEY *key)
{
BIO *bio = BIO_new(BIO_s_mem());
if(bio == NULL)
{
std::cerr << "DHKey::setKey <== BIO_new() failed!";
return 0;
}
if(PEM_write_bio_PUBKEY(bio, key) < 1)
{
std::cerr << "DHKey::setKey <== PEM_write_bio_PUBKEY() failed!";
return 0;
}
const int size = BIO_pending(bio);
this->_dh_key = new unsigned char[size];
BIO_read(bio, this->_dh_key, size);
this->_dh_lenght = size;
BIO_free(bio);
return 1;
}
size_t
DHKey::HtoN(unsigned char *data)
{
size_t pos{0};
uint16_t dh_lenght{htons(this->_dh_lenght)};
memcpy(data + pos, &dh_lenght, sizeof(uint16_t));
pos += sizeof(uint16_t);
memcpy(data + pos, this->_dh_key, this->_dh_lenght);
pos += this->_dh_lenght;
return pos;
}
size_t
DHKey::NtoH(unsigned char *ser_data)
{
size_t pos{0};
uint16_t dh_lenght{0};
memcpy(&dh_lenght, ser_data + pos, sizeof(uint16_t));
this->_dh_lenght = ntohs(dh_lenght);
pos += sizeof(uint16_t);
this->_dh_key = new unsigned char[dh_lenght];
memcpy(this->_dh_key, ser_data + pos, dh_lenght);
pos += dh_lenght;
return pos;
}
void
DHKey::print()
{
std::cout <<
"DH Key length: " << this->_dh_lenght <<
"\nDH Key: " << this->_dh_key <<
std::endl;
}
int
DHParams::setParams(DH *params)
{
BIO *bio = BIO_new(BIO_s_mem());
if(bio == NULL)
{
std::cerr << "<== DHParams::setParams(BIO_new) failed!" << std::endl;
return 0;
}
if(PEM_write_bio_DHparams(bio, params) < 1)
{
std::cerr << "<== DHParams::setParams(PEM_write_bio_DHparams) failed!";
return 0;
}
const int dh_size = BIO_pending(bio);
this->_params = new unsigned char[dh_size];
BIO_read(bio, this->_params, dh_size);
this->_params_length = dh_size;
BIO_free(bio);
return 1;
}
size_t
DHParams::getSize()
{
return (
sizeof(this->_params_length) +
this->_params_length
);
}
size_t
DHParams::HtoN(unsigned char *data)
{
size_t pos{0};
uint16_t params_length{htons(this->_params_length)};
memcpy(data + pos, ¶ms_length, sizeof(params_length));
pos += sizeof(params_length);
memcpy(data + pos, this->_params, this->_params_length);
pos += this->_params_length;
return pos;
}
size_t
DHParams::NtoH(unsigned char *ser_data)
{
size_t pos{0};
uint16_t params_length{0};
memcpy(¶ms_length, ser_data + pos, sizeof(params_length));
this->_params_length = ntohs(params_length);
pos += sizeof(this->_params_length);
this->_params = new unsigned char[params_length];
memcpy(this->_params, ser_data + pos, this->_params_length);
pos += _params_length;
return pos;
}
void
DHParams::print()
{
std::cout <<
"Params length: " << this->_params_length <<
"\nDH Params: " << this->_params <<
std::endl;
}
void Digest::setDigest(unsigned char *digest)
{
this->_digest = new unsigned char[(strlen((char *)digest) + 1)];
memcpy(this->_digest, digest + '\0', strlen((char *)digest) + 1);
this->_dig_size = strlen((char *)digest) + 1;
}
void Digest::serialize(unsigned char *to_ser_buf)
{
size_t pos{0};
uint16_t dig_size{htons(this->_dig_size)};
memcpy(to_ser_buf + pos, &dig_size, sizeof(uint16_t));
pos += sizeof(uint16_t);
memcpy(to_ser_buf + pos, this->_digest, this->_dig_size);
pos += this->_dig_size;
}
void Digest::deserialize(unsigned char *ser_buf)
{
size_t pos{0};
uint16_t dig_size{0};
memcpy(&dig_size, ser_buf + pos, sizeof(uint16_t));
this->_dig_size = ntohs(dig_size);
pos += sizeof(uint16_t);
this->setDigest(ser_buf + pos);
pos += this->_dig_size;
} | [
"l.digregoriozitel@studenti.unipi.it"
] | l.digregoriozitel@studenti.unipi.it |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.